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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #3a2f2a;
    background-color: #faf8f5;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c1810;
}

h2 {
    font-size: 2.5rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #5d4037;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a3c2a;
}

ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #4a3c2a;
}

.lista-alinhada {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 2rem;
    list-style-position: outside;
}

.lista-alinhada li {
    text-align: left;
    margin-bottom: 0.8rem;
}

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

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 69, 19, 0.8) 0%,
        rgba(160, 82, 45, 0.7) 50%,
        rgba(210, 180, 140, 0.6) 100%
    );
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.logo-integrando {
    height: 92px; /* 15% maior que 80px */
    width: auto;
}

.logo-raquel {
    height: 69px; /* 15% maior que 60px */
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f5deb3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #d2691e 100%);
}

.cta-button.primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.destaque {
    font-size: 1.3rem;
    color: #8b4513;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

/* Quem Conduz */
.quem-conduz {
    background: #fff;
}

.facilitator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.facilitator-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.facilitator-text h2 {
    text-align: left;
    color: #8b4513;
}

.facilitator-text p {
    color: #4a3c2a;
    font-size: 1.1rem;
    text-align: left;
}

/* Desafio nos Atendimentos */
.desafio-atendimentos {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
}

/* Resistência ao Livro */
.resistencia-livro {
    background: #fff;
}

.book-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.book-text h2 {
    text-align: left;
    color: #8b4513;
}

.book-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.book-text ul {
    text-align: left;
}

.book-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* A Proposta */
.proposta {
    background: linear-gradient(135deg, #deb887 0%, #d2691e 100%);
    color: white;
}

.proposta h2 {
    color: #f5deb3;
}

.proposta p {
    color: #f5deb3;
}

/* O que vamos viver juntos */
.viver-juntos {
    background: #fff;
}

.contos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.conto-item {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.conto-item:hover {
    transform: translateY(-5px);
}

.conto-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Estrutura do Grupo */
.estrutura-grupo {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
}

.estrutura-grupo h2 {
    color: #f5deb3;
}

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

.estrutura-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.estrutura-item h3 {
    color: #f5deb3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.estrutura-item p {
    color: #f5deb3;
    font-size: 1.1rem;
    font-weight: 600;
}


.price {
    font-size: 2rem !important;
    color: white !important;
    font-weight: 700 !important;
}

/* Linha do Tempo */
.linha-tempo {
    background: #fff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-year {
    background: #8b4513;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 2rem;
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
}

.timeline-content p {
    color: #5d4037;
    margin: 0;
}

/* Este grupo é para você se */
.para-voce {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
}

.checklist {
    max-width: 800px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.3);
    padding: 1.5rem;
    border-radius: 10px;
}

.check {
    color: #8b4513;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.check-item p {
    margin: 0;
    color: #5d4037;
    text-align: left;
}

/* O que você vai receber */
.vai-receber {
    background: #fff;
}

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

.beneficio-item {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.beneficio-item p {
    color: #5d4037;
}

/* O que muda */
.o-que-muda {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
}

.o-que-muda h2 {
    color: #f5deb3;
}

.comparacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.sem-contos, .com-contos {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.sem-contos h3, .com-contos h3 {
    color: #f5deb3;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sem-contos ul, .com-contos ul {
    list-style: none;
    padding: 0;
}

.sem-contos li, .com-contos li {
    color: #f5deb3;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.sem-contos li::before {
    content: "✗";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.com-contos li::before {
    content: "✓";
    color: #51cf66;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Depoimentos - 2 colunas em desktop */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas fixas */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px; /* Centraliza e limita a largura */
    margin-left: auto;
    margin-right: auto;
}

.depoimento {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.depoimento::before {
    content: '"';
    font-size: 4rem;
    color: #8b4513;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.depoimento p {
    color: #5d4037;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f5deb3 0%, #deb887 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #5d4037;
    margin: 0;
}

/* Convite Final */
.convite-final {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.convite-content h2 {
    color: #f5deb3;
    margin-bottom: 2rem;
}

.convite-content p {
    color: #f5deb3;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Footer */
.footer {
    background: #2c1810;
    color: #deb887;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    width: auto;
    opacity: 0.8;
}

.footer-logo:first-child {
    height: 104px; /* LogoPNG-1200sfundo.png - 30% maior que 80px */
}

.footer-logo:last-child {
    height: 67px; /* Logo Raquel mantém o tamanho anterior */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .book-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-text h2 {
        text-align: center;
    }
    
    .book-text p, .book-text ul {
        text-align: center;
    }
    
    .facilitator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .facilitator-text h2 {
        text-align: center;
    }
    
    .facilitator-text p {
        text-align: center;
    }
    
    .logos {
        gap: 1.5rem;
    }
    
    .logo-integrando,
    .logo-raquel {
        height: 60px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comparacao {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo:first-child {
        height: 85px; /* Proporcional no mobile */
    }
    
    .footer-logo:last-child {
        height: 60px; /* Menor no mobile */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .contos-grid,
    .estrutura-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Hover Effects */
.conto-item,
.estrutura-item,
.beneficio-item,
.timeline-item,
.depoimento,
.faq-item {
    transition: all 0.3s ease;
}

.conto-item:hover,
.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* NOVOS ESTILOS PARA PREÇO - SUGERIDOS PELO DEEPSEEK */
.preco-completo {
    text-align: center;
}

.preco-antigo {
    color: #f5deb3;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.desconto {
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.preco-pix {
    color: #f5deb3;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.parcelamento {
    color: #f5deb3;
    font-size: 1rem;
}
/* ESTRUTURA COMPLETA COM GRID */
.estrutura-grid-completa {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 2rem;
    margin-top: 3rem;
}

.estrutura-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.estrutura-item h3 {
    color: #f5deb3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.estrutura-item p {
    color: #f5deb3;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Item Valor - ocupa 2 colunas (Modalidade + Duração) */
.valor-duas-colunas {
    grid-column: 1 / 3; /* Ocupa da coluna 1 até a 3 (2 colunas) */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo-valor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Botão - ocupa 1 coluna (alinhado com Agenda) */
.botao-coluna {
    grid-column: 3 / 4; /* Ocupa a terceira coluna */
    display: flex;
    align-items: center;
    justify-content: center;
	background: none; /* Remove o fundo */
    backdrop-filter: none; /* Remove o blur */
    box-shadow: none; /* Remove a sombra */
}

.botao-coluna .cta-button {
    margin: 0;
    white-space: nowrap;
}

/* Estilos para o preço */
.preco-completo {
    text-align: center;
    flex: 1;
}

.preco-antigo {
    color: #ccc;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.desconto {
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.preco-pix {
    color: #f5deb3;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.parcelamento {
    color: #f5deb3;
    font-size: 0.9rem;
}

.qrcode-area {
    text-align: center;
    flex-shrink: 0;
}

.qrcode {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 2px solid #f5deb3;
}

.legenda-qrcode {
    color: #f5deb3;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Remove o botão antigo */
.cta-center {
    display: none;
}

/* Para celular, empilhamos tudo */
@media (max-width: 768px) {
    .estrutura-grid-completa {
        grid-template-columns: 1fr;
    }
    
    .valor-duas-colunas {
        grid-column: 1 / 2;
    }
    
    .botao-coluna {
        grid-column: 1 / 2;
        order: -1; /* Botão antes do valor no mobile */
		background: none; /* Remove o fundo no mobile também */
        backdrop-filter: none; /* Remove o blur */
        box-shadow: none; /* Remove a sombra */
    }
    
    .conteudo-valor {
        flex-direction: column;
        gap: 1rem;
    }
    
    .qrcode {
        width: 80px;
        height: 80px;
    }
}