/* ===================================
   Lei da Atração Bíblica - Styles
   Designer: Custom Landing Page
   Paleta: Dourado (#D4AF37, #B8860B) e Branco (#FFFFFF)
   =================================== */

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

:root {
    /* Cores Principais - RGB(26, 24, 74) e Dourado Fechado */
    --primary-blue: rgb(26, 24, 74);
    --secondary-blue: rgba(26, 24, 74, 0.8);
    --light-blue: rgba(26, 24, 74, 0.6);
    --primary-gold: #b8860b;
    --dark-gold: #996f00;
    --light-gold: #d4af37;
    --white: #FFFFFF;
    --cream: #f8f9ff;
    --text-dark: rgb(26, 24, 74);
    --text-gray: rgba(26, 24, 74, 0.7);
    --text-light: #9c27b0;
    
    /* Gradientes */
    --gradient-blue: linear-gradient(135deg, rgb(26, 24, 74) 0%, rgba(26, 24, 74, 0.8) 100%);
    --gradient-gold: linear-gradient(135deg, #b8860b 0%, #996f00 100%);
    --gradient-light: linear-gradient(135deg, #f8f9ff 0%, #f0e6d2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 24, 74, 0.9) 0%, rgba(26, 24, 74, 0.7) 100%);
    --gradient-magic: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.3) 0%, rgba(26, 24, 74, 0.1) 70%);
    
    /* Tipografia */
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Sombras */
    --shadow-soft: 0 10px 40px rgba(26, 24, 74, 0.15);
    --shadow-medium: 0 20px 60px rgba(26, 24, 74, 0.25);
    --shadow-strong: 0 30px 80px rgba(26, 24, 74, 0.35);
    --shadow-gold: 0 0 20px rgba(184, 134, 11, 0.4);
    
    /* Transições */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Tipografia Base */
body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    background-color: rgb(26, 24, 74) !important;
    background: rgb(26, 24, 74) !important;
    overflow-x: hidden;
}

/* Forçar background azul no hero */
.hero, .hero-background {
    background: rgb(26, 24, 74) !important;
    background-color: rgb(26, 24, 74) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Seções */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(184, 134, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    background: transparent !important;
}

.logo:hover {
    /* Hover simples sem efeitos */
    transform: none;
    filter: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

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

.cta-nav {
    background: var(--gradient-gold);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid transparent;
}

.cta-nav:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
    border-color: var(--primary-gold);
}

.cta-nav::after {
    display: none;
}

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

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



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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: rgb(26, 24, 74) !important;
    background-color: rgb(26, 24, 74) !important;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--light-gold);
    animation: sparkleFloat 12s linear infinite;
    opacity: 0;
}

.sparkle:nth-child(odd) {
    animation-duration: 15s;
    background: var(--primary-gold);
    box-shadow: 0 0 8px var(--primary-gold);
}

.sparkle:nth-child(3n) {
    width: 6px;
    height: 6px;
    animation-duration: 10s;
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0px) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) translateX(-10px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) translateX(5px) scale(0);
    }
}







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

.hero-text {
    order: 1;
    margin-top: -10px;
}



.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Evitar quebras inadequadas */
.title-highlight,
.title-subtitle {
    word-break: keep-all;
    hyphens: none;
}

.title-highlight {
    display: block;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.title-subtitle {
    display: block;
    font-size: 28px;
    color: #f4d03f;
    font-weight: 400;
    margin-top: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 18px;
    color: #f7dc6f;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8f9fa;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.installment-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cash-price {
    font-size: 14px;
    color: #f4d03f;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.course-preview {
    position: relative;
    max-width: 400px;
    margin-top: -25px;
}

.course-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(248, 249, 255, 0.9);
    border-radius: 20px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.problem-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.95);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(26, 24, 74, 0.4);
}

.problem-icon i {
    font-size: 32px;
    color: var(--white);
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
}

.problem-solution {
    text-align: center;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.problem-solution h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.problem-solution p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description p {
    font-size: 18px;
    margin-bottom: 20px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.credential-item i {
    color: var(--primary-gold);
    font-size: 24px;
    width: 30px;
}

.credential-item span {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.4;
}

.centered-text {
    text-align: center;
    width: 100%;
}

.about-image {
    display: flex;
    justify-content: center;
}

.instructor-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
    background: var(--white);
}

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

.benefit-item {
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.benefit-item:hover::before {
    left: 0;
    opacity: 0.05;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(26, 24, 74, 0.4);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.benefit-item p {
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* ===================================
   CONTENT SECTION
   =================================== */

.content {
    background: var(--gradient-light);
}

.content-intro {
    text-align: center;
    margin-bottom: 60px;
}

.course-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.content-extras {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.content-extras h4 {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-extras p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    margin: 8px 0;
}

.modules-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.module-item {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.module-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-title i {
    color: var(--primary-gold);
    font-size: 24px;
}

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

.lesson-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--cream);
    border-radius: 10px;
    transition: var(--transition-fast);
    flex-wrap: nowrap;
}

.lesson-item:hover {
    background: var(--light-gold);
}

.lesson-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    min-width: 32px;
    min-height: 32px;
}

.lesson-title {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
    text-align: left;
}

/* ===================================
   BIBLICAL FOUNDATION SECTION
   =================================== */

.biblical-foundation {
    background: var(--white);
}

.foundation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.bible-verses {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.verse-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--cream);
    border-radius: 15px;
    border-left: 5px solid var(--primary-gold);
}

.verse-icon {
    flex-shrink: 0;
}

.verse-icon i {
    font-size: 32px;
    color: var(--primary-gold);
}

.verse-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.verse-content cite {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
}

.foundation-description p {
    font-size: 18px;
    line-height: 1.7;
}

.foundation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.golden-circle {
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: glow 3s ease-in-out infinite alternate;
}

.golden-circle i {
    font-size: 80px;
    color: var(--white);
}

@keyframes glow {
    0% { box-shadow: var(--shadow-medium), 0 0 0 0 rgba(212, 175, 55, 0.3); }
    100% { box-shadow: var(--shadow-strong), 0 0 0 20px rgba(212, 175, 55, 0); }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    background: var(--cream);
}

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

.testimonial-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    text-align: center;
}

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

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 18px;
}

.testimonial-content blockquote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: magicGlow 8s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes magicGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.cta-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 400px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.price-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

.price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-value-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.cta-installment-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-cash-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.currency {
    font-size: 24px;
    font-weight: 500;
}

.amount {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.cents {
    font-size: 24px;
    font-weight: 500;
}

.price-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-buttons {
    margin: 40px 0;
    position: relative;
    z-index: 10;
}

.cta-buttons .btn-primary {
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-flex !important;
    position: relative;
    z-index: 10;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee-icon i {
    font-size: 40px;
    color: var(--white);
}

.guarantee-text h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.faq {
    background: var(--white);
}

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

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gold);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 16px;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.6;
}

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: -35px;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-logo {
    height: 138px;
    width: auto;
    margin-bottom: -10px;
    /* Logo do footer usando src do HTML */
    /* Remover fundo escuro da logo e melhorar visibilidade */
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3)) brightness(1.1) contrast(1.1) invert(0%) saturate(1.2);
    mix-blend-mode: normal;
    background: transparent !important;
    border-radius: 8px;
    transition: var(--transition-fast);
    /* Neutralizar qualquer fundo preto */
}

/* ===================================
   DESKTOP LOGO - IMPLEMENTAÇÃO PADRÃO
   =================================== */

/* Logo desktop é controlado pelo responsive.css */
    object-fit: contain;
    image-rendering: crisp-edges;
}

.footer-logo:hover {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5)) brightness(1.2) contrast(1.2) invert(0%) saturate(1.3);
    transform: scale(1.05);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
