/* Fontes Oficiais */
@font-face {
    font-family: 'Rock It';
    src: url('rockitregular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Yanone Kaffeesatz';
    src: url('YanoneKaffeesatz-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Yanone Kaffeesatz';
    src: url('YanoneKaffeesatz-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Pantone Oficial */
    --primary-color: #5C4714;        /* Pantone 4485C */
    --secondary-color: #F25900;      /* Pantone 1655C */
    --tertiary-color: #BFD1D6;      /* Pantone 551C */
    --quaternary-color: #6399AB;    /* Pantone 549C */
    --accent-color: #004557;         /* Pantone 548C */
    --neutral-light: #DED6B5;       /* Pantone 4535C (80%) */
    --neutral-medium: #EAE5D1;      /* Pantone 4535C (50%) */
    
    /* Cores de texto */
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #5C4714 0%, #6399AB 100%);
    --gradient-secondary: linear-gradient(135deg, #F25900 0%, #DED6B5 100%);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, .title-main, .logo h1 {
    font-family: 'Rock It', 'Yanone Kaffeesatz', sans-serif;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Tipografia limpa para o hero */
.title-main {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: block;
    margin-bottom: 10px;
}

.title-sub {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: block;
    font-weight: 400;
}

.hero-description {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

h2, h3, h4, h5, h6 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 85, 48, 0.8) 0%, rgba(139, 69, 19, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.7),
        1px -1px 0 rgba(0,0,0,0.7),
        -1px 1px 0 rgba(0,0,0,0.7),
        1px 1px 0 rgba(0,0,0,0.7),
        0 0 2px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.6),
        1px -1px 0 rgba(0,0,0,0.6),
        -1px 1px 0 rgba(0,0,0,0.6),
        1px 1px 0 rgba(0,0,0,0.6),
        0 0 2px rgba(0,0,0,0.4);
}

.hero-countdown {
    margin: 2rem 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    display: block;
    margin-top: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Filosofia Section */
.filosofia {
    background: var(--bg-light);
}

.filosofia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.filosofia-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.filosofia-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.filosofia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.filosofia-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Expedição Atual */
.expedição-atual {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
}

.expedição-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expedição-header h2 {
    color: var(--text-light);
    font-size: 3rem;
}

.expedição-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.expedição-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.expedição-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.expedição-etapas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.etapa {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.etapa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.etapa-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.etapa-status.concluida {
    background: #28a745;
    color: white;
}

.etapa-status.em-breve {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Sobre Section */
.sobre {
    background: var(--bg-light);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Expedições Timeline */
.expedições {
    background: white;
}

.expedições-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.expedições-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Social Media Section */
.social-media {
    background: var(--bg-light);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-link {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-link i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-link.youtube i { color: #ff0000; }
.social-link.instagram i { color: #e4405f; }
.social-link.newsletter i { color: var(--primary-color); }

.social-link span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contato {
    background: var(--primary-color);
    color: var(--text-light);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contato-items {
    margin-top: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contato-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contato-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .hero-title .title-sub {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .expedição-content,
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-stats {
        justify-content: center;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-content {
        margin: 1rem 0 0 0;
    }

    .expedições-timeline::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero-title .title-main {
        font-size: 2rem;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-item {
        flex: 1;
        min-width: 80px;
    }

    .filosofia-grid,
    .social-links {
        grid-template-columns: 1fr;
    }
}



/* Loja Section */
.loja {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-medium) 0%, var(--tertiary-color) 100%);
}

.loja-content {
    display: grid;
    gap: 60px;
}

.produto-destaque {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    align-items: center;
}

.produto-imagem {
    position: relative;
}

.produto-imagem img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.produto-info h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.produto-subtitulo {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.produto-descricao {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.produto-preco {
    margin-bottom: 30px;
}

.preco-atual {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.preco-parcelado {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.produto-acoes {
    display: flex;
    gap: 15px;
}

.produto-acoes .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.outros-produtos {
    margin-top: 40px;
}

.outros-produtos h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.produto-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.produto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.produto-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.produto-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.produto-card .preco {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Fases da Timeline */
.fase-container {
    margin: 60px 0;
}

.fase-header {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.fase-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.fase-numero {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-right: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fase-info h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.fase-info p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Cores específicas para cada fase */
.convite {
    background: linear-gradient(135deg, var(--quaternary-color) 0%, var(--tertiary-color) 100%);
}

.chamado-divino {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--quaternary-color) 100%);
}

.grande-desafio {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.provacao-suprema {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.ressurreicao {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--quaternary-color) 100%);
    color: var(--text-dark);
}

.ressurreicao .fase-numero,
.ressurreicao .fase-info h3,
.ressurreicao .fase-info p {
    color: var(--text-dark);
    text-shadow: none;
}

.timeline-item.current {
    background: var(--gradient-secondary);
    color: white;
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.timeline-item.current .timeline-year {
    background: var(--secondary-color);
    color: white;
}

.timeline-item.future {
    opacity: 0.7;
    border: 2px dashed var(--quaternary-color);
    background: transparent;
}

.timeline-item.future .timeline-year {
    background: var(--quaternary-color);
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .produto-destaque {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .produto-acoes {
        flex-direction: column;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .fase-header {
        padding: 20px;
    }
    
    .fase-header h3 {
        font-size: 1.5rem;
    }
}


/* Responsividade para Fases */
@media (max-width: 768px) {
    .fase-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .fase-numero {
        font-size: 3rem;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .fase-info h3 {
        font-size: 2rem;
    }
    
    .fase-info p {
        font-size: 1rem;
    }
    
    .fase-container {
        margin: 40px 0;
    }
}


/* Estilos para informações do livro */
.produto-editora {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.produto-lancamentos {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.lancamento-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lancamento-item:last-child {
    margin-bottom: 0;
}

.lancamento-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.lancamento-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.lancamento-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsividade para lançamentos */
@media (max-width: 768px) {
    .produto-lancamentos {
        padding: 0.8rem;
    }
    
    .lancamento-item {
        gap: 0.8rem;
    }
    
    .lancamento-item i {
        font-size: 1rem;
    }
}



/* ===== BIBLIOTECA GIRAVENTURA ===== */
.loja {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.livros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.livro-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.livro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.livro-imagem {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.livro-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.livro-card:hover .livro-imagem img {
    transform: scale(1.05);
}

.livro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.livro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.livro-card:hover .livro-overlay {
    opacity: 1;
}

.livro-overlay i {
    font-size: 24px;
    margin-bottom: 10px;
}

.livro-overlay span {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.livro-info {
    padding: 25px;
    position: relative;
}

.livro-info h3 {
    font-family: 'Rock It', sans-serif;
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.2;
}

.livro-subtitulo {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.livro-editora {
    color: #34495e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.livro-ano {
    position: absolute;
    top: -15px;
    right: 25px;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* ===== MODAIS DOS LIVROS ===== */
.book-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff6b35;
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    position: relative;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.modal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info h2 {
    font-family: 'Rock It', sans-serif;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-info h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 400;
}

.modal-editora {
    color: #34495e;
    font-size: 14px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.modal-description {
    margin-bottom: 30px;
}

.modal-description p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.modal-specs {
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #34495e;
}

.spec-item i {
    color: #3498db;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-size: 14px;
    font-weight: 500;
}

.modal-lancamentos {
    margin-bottom: 30px;
}

.lancamento-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.lancamento-item i {
    color: #3498db;
    margin-right: 15px;
    font-size: 18px;
}

.lancamento-item strong {
    color: #2c3e50;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

.lancamento-item p {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}

.modal-video {
    margin-bottom: 30px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.video-link i {
    margin-right: 8px;
    font-size: 16px;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVIDADE DOS MODAIS ===== */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .modal-info h2 {
        font-size: 24px;
    }
    
    .modal-info h3 {
        font-size: 18px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .livros-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .livro-imagem {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .livros-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
}


/* ===== ESTILOS PARA IMAGENS DA TIMELINE ===== */

.timeline-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.timeline-image img:hover {
    opacity: 0.95;
}

/* Ajustes para diferentes tamanhos de tela */
@media (max-width: 768px) {
    .timeline-image {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .timeline-image {
        border-radius: 8px;
        margin-bottom: 12px;
    }
}

/* Efeito especial para a expedição atual */
.timeline-item.current .timeline-image {
    border: 3px solid #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.timeline-item.current .timeline-image:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* Efeito para expedições futuras */
.timeline-item.future .timeline-image {
    opacity: 0.7;
    filter: grayscale(20%);
}

.timeline-item.future .timeline-image:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* Animação de entrada para as imagens */
.timeline-image {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy loading placeholder */
.timeline-image img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsividade aprimorada para timeline com imagens */
.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-content h3 {
    margin-top: 10px;
}

.timeline-content p {
    margin-top: 15px;
    text-align: justify;
    max-width: 400px;
}

/* Ajuste para dispositivos muito pequenos */
@media (max-width: 320px) {
    .timeline-image {
        margin-bottom: 10px;
    }
    
    .timeline-content p {
        text-align: left;
        font-size: 14px;
    }
}


/* ===== MODAL DA FILOSOFIA DO PROJETO ===== */

.philosophy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.philosophy-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.philosophy-modal-header {
    background: linear-gradient(135deg, #5C4714, #F25900);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.philosophy-modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.philosophy-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.philosophy-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.philosophy-modal-body {
    padding: 30px;
    line-height: 1.7;
}

.philosophy-quote {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #EAAE5D, #DED6B5);
    border-radius: 12px;
    border-left: 5px solid #5C4714;
}

.philosophy-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #004557;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.philosophy-quote cite {
    font-size: 1rem;
    color: #6399AB;
    font-weight: 600;
}

.philosophy-content h3 {
    color: #5C4714;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 2px solid #BFD1D6;
    padding-bottom: 8px;
}

.philosophy-content p {
    color: #004557;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .philosophy-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .philosophy-modal-header {
        padding: 20px;
    }
    
    .philosophy-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .philosophy-modal-body {
        padding: 20px;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.3rem;
    }
    
    .philosophy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .philosophy-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .philosophy-modal-header {
        padding: 15px;
    }
    
    .philosophy-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .philosophy-modal-body {
        padding: 15px;
    }
    
    .philosophy-quote {
        padding: 15px;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.2rem;
    }
}

/* Scroll personalizado para o modal */
.philosophy-modal-content::-webkit-scrollbar {
    width: 8px;
}

.philosophy-modal-content::-webkit-scrollbar-track {
    background: #BFD1D6;
    border-radius: 10px;
}

.philosophy-modal-content::-webkit-scrollbar-thumb {
    background: #5C4714;
    border-radius: 10px;
}

.philosophy-modal-content::-webkit-scrollbar-thumb:hover {
    background: #F25900;
}


/* ===== SEÇÃO NEWSLETTER ===== */

.newsletter {
    background: linear-gradient(135deg, #004557, #6399AB);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bike" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23bike)"/></svg>');
    opacity: 0.1;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.benefit-item i {
    color: #F25900;
    font-size: 1.2rem;
    width: 20px;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-form h3 {
    color: #5C4714;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #BFD1D6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #5C4714;
    box-shadow: 0 0 0 3px rgba(92, 71, 20, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #004557;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #6399AB;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #5C4714;
    border-color: #5C4714;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.whatsapp-field {
    animation: slideDown 0.3s ease;
}

.newsletter-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #5C4714, #F25900);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 71, 20, 0.3);
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: #6399AB;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy i {
    color: #5C4714;
}

/* Animações */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 100px;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .newsletter-form h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter {
        padding: 40px 0;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        padding: 25px 15px;
    }
    
    .newsletter-btn {
        font-size: 1rem;
        padding: 12px;
    }
}

