/* ============================================
   DESIGN PREMIUM - REAL BELEZA
   Terapia Capilar com Leiciane Moreira
   ============================================ */

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1E3A8A;
    --accent-color: #E8B4A8;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #10B981;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* ============================================
   HEADER STICKY
   ============================================ */

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5aa8 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a227 100%);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5aa8 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-cta {
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a227 100%);
    color: var(--secondary-color);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.hero-price {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-price strong {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

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

.check {
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ============================================
   PROBLEMA E SOLUÇÃO
   ============================================ */

.problema-solucao {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f0c4b8 100%);
    padding: 60px 20px;
    text-align: center;
}

.problema-solucao h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.problema-solucao p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   BENEFÍCIOS
   ============================================ */

.beneficios {
    padding: 80px 20px;
    background: var(--light-bg);
}

.beneficios h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   MÓDULOS
   ============================================ */

.modulos {
    padding: 80px 20px;
    background: var(--white);
}

.modulos h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.modulos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.modulo-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modulos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modulo-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.modulo-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 180, 168, 0.1) 100%);
}

.modulo-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.modulo-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
}

.depoimentos h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.depoimento-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.depoimento-text {
    padding: 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5aa8 100%);
    color: var(--white);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimento-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-nome {
    font-weight: 700;
    font-size: 14px;
}

.depoimento-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ============================================
   SOBRE PROFESSORA
   ============================================ */

.sobre-professora {
    padding: 80px 20px;
    background: var(--white);
}

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

.sobre-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    color: var(--secondary-color);
}

.stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BÔNUS
   ============================================ */

.bonus {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f5f5f5 100%);
}

.bonus h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.bonus-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
}

.bonus-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.bonus-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

/* ============================================
   CERTIFICADO
   ============================================ */

.certificado {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5aa8 100%);
    color: var(--white);
}

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

.certificado-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.certificado-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.certificado-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.certificado-text .btn-primary {
    margin-top: 20px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 80px 20px;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(232, 180, 168, 0.1) 100%);
}

.faq-question {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.cta-final {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d5aa8 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.final-price {
    margin-top: 20px;
    font-size: 16px;
}

.final-price strong {
    color: var(--primary-color);
    font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

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

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        width: 100%;
    }

    .cta-button-header {
        width: 100%;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-video {
        order: -1;
    }

    .modulos-container,
    .sobre-content,
    .certificado-content {
        grid-template-columns: 1fr;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .beneficios-grid,
    .bonus-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        max-width: 100%;
    }

    .cta-final h2 {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .beneficios h2,
    .modulos h2,
    .depoimentos h2,
    .bonus h2,
    .faq h2 {
        font-size: 24px;
    }

    .benefit-card,
    .bonus-card {
        padding: 20px;
    }

    .cta-final h2 {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }
}
