/* ============================================
   GUIA PRÁTICO DE NATUROPATIA - LANDING PAGE
   CSS Completo Original + Certificações
   Versão 2.0 - Mobile First
   ============================================ */

/* Reset e Correções */
:root {
    color-scheme: light only;
    --green-dark: #1a4d2e;
    --green-medium: #2c5530;
    --green-light: #4f772d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    color-scheme: light only;
}

section {
    position: relative;
    z-index: 1;
}

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

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 119, 45, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(79, 119, 45, 0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Classes de animação */
.animate-slide-down {
    animation: slideDown 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Animação ao scroll */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animação ao scroll - versão alternativa com delay */
.animate-on-scroll-delayed {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll-delayed.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle global */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: -20px auto 50px;
    line-height: 1.8;
}

/* ============================================
   HERO SECTION
   ============================================ */

.curso-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 50%, var(--green-light) 100%);
    padding: 100px 0 2rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    background-size: 400% 400%;
}

.curso-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.curso-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.curso-hero-badge span {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.curso-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.curso-hero-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.curso-hero-subtitle strong {
    color: #fff;
    font-weight: 700;
}

/* Stats */
.curso-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 6px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

.stat-icon i {
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff !important;
    display: block !important;
    margin-bottom: 3px;
    font-family: 'Playfair Display', serif;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1.2;
}

/* Garantir que o conteúdo do stat-number sempre apareça */
.stat-number::before {
    content: none !important;
}

.stat-number::after {
    content: none !important;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Logo ABRATH */
.stat-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-logo-wrapper {
    width: 100%;
    max-width: 65px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 5px;
}

.abrath-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cert-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Hero Image */
.curso-hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-width: 60%;
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

/* ============================================
   QUEM SOU EU - LAYANE SPINDOLA
   ============================================ */

.sobre-layane {
    padding: 80px 0;
    background: #fff;
}

.sobre-layane-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.sobre-layane-image {
    position: relative;
}

.image-frame-sobre {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame-sobre img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.sobre-layane-text .section-title {
    text-align: left;
    margin-bottom: 28px;
    font-size: 2.2rem;
}

.sobre-layane-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.sobre-layane-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 12px;
    border-left: 4px solid #4f772d;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.credential-item i {
    font-size: 1.5rem;
    color: #4a7c59;
}

.credential-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.sobre-layane-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-box-sobre {
    background: linear-gradient(135deg, #4f772d, #2c5530);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(79, 119, 45, 0.3);
    transition: all 0.3s ease;
}

.stat-box-sobre:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(79, 119, 45, 0.4);
}

.stat-number-sobre {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.stat-label-sobre {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* ============================================
   CERTIFICAÇÕES E RECONHECIMENTOS
   ============================================ */

.certificacoes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.certificacoes-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
}

.certificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.certificacao-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.certificacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.certificacao-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.certificacao-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 1rem;
}

.certificacao-card:hover .certificacao-image img {
    transform: scale(1.05);
}

.certificacao-info {
    padding: 2rem;
    text-align: center;
}

.certificacao-info h3 {
    font-size: 1.4rem;
    color: #4f772d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.certificacao-info h3 i {
    margin-right: 0.5rem;
    color: #d4af37;
}

.certificacao-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.curso-beneficios {
    background: linear-gradient(135deg, #1a4d2e 0%, #2c5530 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.beneficios-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios-lista li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.beneficios-lista li:last-child {
    border-bottom: none;
}

.beneficios-lista li i {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.beneficios-lista li strong {
    color: #f4e4b8;
}

/* Responsividade Mobile para Certificações */
@media (max-width: 768px) {
    .certificacoes-section {
        padding: 60px 0;
    }

    .certificacoes-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .certificacoes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certificacao-image {
        height: 250px;
    }

    .certificacao-info {
        padding: 1.5rem;
    }

    .certificacao-info h3 {
        font-size: 1.2rem;
    }

    .curso-beneficios {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .beneficios-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .beneficios-lista li {
        font-size: 1.05rem;
        padding: 1.2rem 0;
        line-height: 1.8;
        gap: 1.2rem;
    }
    
    .beneficios-lista li i {
        font-size: 1.4rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .certificacoes-section {
        padding: 40px 0;
    }

    .certificacoes-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .certificacao-image {
        height: 200px;
    }

    .certificacao-info {
        padding: 1.2rem;
    }

    .certificacao-info h3 {
        font-size: 1.1rem;
    }

    .curso-beneficios {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .beneficios-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .beneficios-lista li {
        font-size: 1rem;
        padding: 1rem 0;
        line-height: 1.8;
        gap: 1rem;
    }
    
    .beneficios-lista li i {
        font-size: 1.3rem;
        margin-top: 0.2rem;
    }
}

/* ============================================
   SESSÕES DO CURSO
   ============================================ */

.curso-sessoes {
    padding: 80px 0;
    background: #fff;
}

.sessoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.sessao-card {
    background: #fff;
    border: 2px solid #e8f5e9;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sessao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f772d, #2c5530);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sessao-card:hover::before {
    transform: scaleX(1);
}

.sessao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 85, 48, 0.15);
    border-color: #4f772d;
}

.sessao-icon-wrapper {
    margin-bottom: 24px;
}

.sessao-icon {
    font-size: 4rem;
    display: inline-block;
    transition: transform 0.4s ease;
    color: #4a7c59;
}

.sessao-icon i {
    display: block;
}

.sessao-card:hover .sessao-icon {
    transform: scale(1.2) rotate(10deg);
}

.sessao-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 60px;
}

.sessao-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.sessao-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.sessao-lista li {
    padding: 10px 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.sessao-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4f772d;
    font-weight: bold;
    font-size: 1.2rem;
}

.sessao-card:hover .sessao-lista li {
    padding-left: 36px;
}

/* ============================================
   GUIA DE DOENÇAS
   ============================================ */

.guia-doencas {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.doencas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.doenca-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.doenca-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.doenca-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.doenca-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doenca-card:hover .doenca-image img {
    transform: scale(1.15);
}

.doenca-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(79, 119, 45, 0.95);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.doenca-number {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.doenca-content {
    padding: 28px 24px;
    text-align: center;
}

.doenca-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0 0 12px 0;
}

.doenca-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CONTEÚDO DO CURSO
   ============================================ */

.curso-conteudo {
    padding: 80px 0;
    background: #fff;
}

.conteudo-lista {
    max-width: 900px;
    margin: 60px auto 0;
}

.conteudo-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border-left: 5px solid #4f772d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.conteudo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #4f772d, #2c5530);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.conteudo-item:hover::before {
    transform: scaleY(1);
}

.conteudo-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.conteudo-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    color: #4a7c59;
}

.conteudo-icon i {
    display: block;
}

.conteudo-item:hover .conteudo-icon {
    transform: scale(1.2) rotate(10deg);
}

.conteudo-item:hover .conteudo-icon i {
    color: #4f772d;
}

.conteudo-item h4 {
    margin: 0 0 8px 0;
    color: #2c5530;
    font-size: 1.1rem;
}

.conteudo-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   ACESSO IMEDIATO
   ============================================ */

.acesso-imediato {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #2c5530 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.acesso-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.acesso-text .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 24px;
}

.acesso-text .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin: 0 0 24px 0;
}

.acesso-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.acesso-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.acesso-lista li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.acesso-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.image-frame img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

.acesso-badges {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 95%;
}

.badge-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c5530;
}

/* ============================================
   CTA FINAL
   ============================================ */

.curso-cta-final {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 119, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 85, 48, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    background-size: 400% 400%;
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4f772d, #2c5530);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(79, 119, 45, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.cta-final-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.cta-final-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-final-preco {
    margin-bottom: 50px;
}

.preco-destaque {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 2px solid #e8f5e9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.preco-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.preco-parcelado {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.preco-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 8px;
}

.preco-valor {
    font-size: 3rem;
    font-weight: 800;
    color: #4f772d;
    font-family: 'Playfair Display', serif;
}

.preco-vista {
    font-size: 1.2rem;
    color: #666;
}

.preco-vista strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.cta-final-garantia {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.garantia-icon {
    font-size: 1.5rem;
    color: #4a7c59;
}

.garantia-icon i {
    display: block;
}

.cta-final-obs {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* ============================================
   NOVAS SEÇÕES - COPYS ADICIONAIS
   ============================================ */

/* Seção da Solução */
.curso-solucao {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.solucao-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solucao-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 24px;
    font-weight: 400;
}

.solucao-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

.solucao-beneficios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border-left: 5px solid #4f772d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.beneficio-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.beneficio-icon {
    font-size: 3rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    color: #4a7c59;
}

.beneficio-icon i {
    display: block;
}

.beneficio-item:hover .beneficio-icon {
    transform: scale(1.2) rotate(10deg);
}

.beneficio-item:hover .beneficio-icon i {
    color: #4f772d;
}

.beneficio-content h4 {
    font-size: 1.3rem;
    color: #2c5530;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.beneficio-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.faq-lista {
    max-width: 900px;
    margin: 60px auto 40px;
}

.faq-item {
    background: #fff;
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4f772d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-pergunta h4 {
    margin: 0;
    font-size: 1.15rem;
    color: #2c5530;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: #4f772d;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-resposta {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-resposta p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.faq-contato {
    text-align: center;
    margin-top: 50px;
    padding: 32px;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-radius: 16px;
}

.faq-contato p {
    margin: 8px 0;
    font-size: 1.05rem;
    color: #2c5530;
}

.faq-contato a {
    color: #4f772d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-contato a:hover {
    color: #2c5530;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .curso-hero {
        padding: 120px 0 2rem;
        min-height: 100vh;
        max-height: none;
    }
    
    .curso-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .curso-hero-image {
        order: -1;
    }
    
    .curso-hero-text {
        order: 2;
    }
    
    .curso-hero-title {
        font-size: 2.1rem;
        margin-bottom: 18px;
        line-height: 1.2;
        text-align: center;
    }
    
    .curso-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 26px;
        line-height: 1.5;
        text-align: center;
    }
    
    .curso-hero-text .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .curso-hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 12px 16px;
        border-radius: 10px;
        text-align: center;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-logo-wrapper {
        max-width: 80px;
        height: 55px;
        margin-bottom: 8px;
        padding: 8px;
    }
    
    .curso-hero-badge {
        padding: 6px 16px;
        margin-bottom: 16px;
    }
    
    .curso-hero-badge span {
        font-size: 0.75rem;
    }
    
    .image-wrapper {
        max-width: 70%;
        margin: 0 auto;
    }
    
    .sobre-layane-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sobre-layane-text .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .sobre-layane-credentials {
        grid-template-columns: 1fr;
    }
    
    .sobre-layane-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sessoes-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sessao-titulo {
        min-height: auto;
    }
    
    .doencas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .acesso-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .acesso-text .section-title,
    .acesso-text .section-subtitle {
        text-align: center;
    }
    
    .acesso-badges {
        position: static;
        transform: none;
        margin-top: 32px;
        width: 100%;
    }
    
    .section-title {
        text-align: center;
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        bottom: -20px;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .cta-final-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .cta-final-preco {
        margin-bottom: 40px;
    }
    
    .cta-final-content .btn {
        margin-bottom: 40px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .preco-valor {
        font-size: 2.5rem;
    }
    
    .cta-final-garantia {
        flex-direction: column;
        gap: 16px;
        margin-top: 0;
    }
    
    .garantia-box {
        margin-top: 0;
    }
    
    .solucao-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .solucao-desc {
        font-size: 1rem;
        text-align: center;
    }
    
    .beneficio-item {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .beneficio-icon {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .curso-hero {
        padding: 140px 0 2rem;
    }
    
    .curso-hero-title {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }
    
    .curso-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }
    
    .curso-hero-stats {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 10px 12px;
    }
    
    .stat-icon {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-logo-wrapper {
        max-width: 70px;
        height: 45px;
        margin-bottom: 6px;
        padding: 6px;
    }
    
    .curso-hero-badge {
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .curso-hero-badge span {
        font-size: 0.7rem;
    }
    
    .image-wrapper {
        max-width: 75%;
    }
    
    .curso-sessoes,
    .guia-doencas,
    .curso-conteudo,
    .acesso-imediato,
    .curso-cta-final,
    .sobre-layane,
    .curso-solucao,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .sobre-layane-text .section-title {
        font-size: 1.8rem;
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .sobre-layane-text .section-title::after {
        bottom: -20px;
    }
    
    .section-title {
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        bottom: -20px;
    }
    
    .sobre-layane-description {
        font-size: 1rem;
    }
    
    .sobre-layane-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number-sobre {
        font-size: 2.2rem;
    }
    
    .sessao-card {
        padding: 32px 24px;
    }
    
    .sessao-titulo {
        font-size: 1.3rem;
    }
    
    .doencas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doenca-image {
        height: 200px;
    }
    
    .conteudo-item {
        padding: 20px 16px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .conteudo-icon {
        font-size: 2.5rem;
    }
    
    .acesso-badges {
        grid-template-columns: 1fr;
    }
    
    .cta-final-title {
        font-size: 2rem;
    }
    
    .cta-final-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-final-preco {
        margin-bottom: 35px;
    }
    
    .cta-final-content .btn {
        margin-bottom: 35px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .preco-destaque {
        padding: 28px 20px;
    }
    
    .preco-valor {
        font-size: 2rem;
    }
    
    .preco-vista strong {
        font-size: 1.3rem;
    }
    
    .cta-final-garantia {
        margin-top: 0;
    }
    
    .garantia-box {
        margin-top: 0;
    }
    
    .solucao-intro {
        font-size: 1rem;
    }
    
    .beneficio-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .beneficio-content h4 {
        font-size: 1.2rem;
    }
    
    .faq-pergunta {
        padding: 20px 16px;
    }
    
    .faq-pergunta h4 {
        font-size: 1.05rem;
    }
    
    .faq-item.active .faq-resposta {
        padding: 0 16px 20px;
    }
}

/* ============================================
   FOOTER (PADRÃO SITE PRINCIPAL)
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a4d2e 0%, #2c5530 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e4b8, #d4af37);
}

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

.footer-column {
    padding: 0.5rem;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column h4 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: #d4af37;
    color: #1a4d2e;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    opacity: 0.8;
}

/* Footer Responsivo - Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 1.3rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

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

    .footer-column ul li a {
        font-size: 0.95rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Footer Responsivo - Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }

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

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}
