@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #2B2D2F;          /* Dark Charcoal (From logo text) */
    --primary-light: #4E5052;    /* Medium Charcoal (Hover states) */
    --primary-dark: #181A1B;     /* Very Dark Charcoal (Headers, sections) */
    --secondary: #DFBF7C;        /* Honey Gold (From logo honey/bee) */
    --secondary-light: #EAD6AA;  /* Light Honey Gold */
    --accent: #DFBF7C;           /* Honey Gold Accent (CTAs) */
    --accent-hover: #CCA85F;     /* Darker Honey Gold for Hover */
    
    /* Neutral Colors */
    --bg-light: #FBFBF9;         /* Soft Sand (Warm background) */
    --bg-white: #FFFFFF;         /* Pure White (Cards background) */
    --bg-dark: #181A1B;          /* Dark Section BG (Teal replaced with Charcoal) */
    --text-primary: #2B2D2F;     /* Charcoal text */
    --text-secondary: #5C5E60;   /* Muted grey text */
    --text-light: #E5ECEB;       /* Muted light text */
    --border-color: #E2E8F0;     /* Light grey borders */
    --border-light: rgba(255, 255, 255, 0.1); /* Semi-transparent border */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(43, 45, 47, 0.05);
    --shadow-md: 0 10px 20px rgba(43, 45, 47, 0.08);
    --shadow-lg: 0 20px 40px rgba(43, 45, 47, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Layout & Transitions */
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.text-white { color: #ffffff; }

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(200, 157, 60, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 157, 60, 0.15);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 50px;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 59, 56, 0.15);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
}

.btn-light:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   NAVIGATION (HEADER)
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(251, 251, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 59, 56, 0.05);
    transition: var(--transition);
}

.header-nav.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    transition: var(--transition);
}

.header-nav.scrolled .nav-wrap {
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(43, 45, 47, 0.15);
}

.logo-text span {
    color: var(--secondary);
}

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

@media (max-width: 1200px) and (min-width: 992px) {
    .nav-links {
        gap: 16px;
    }
    .nav-link {
        font-size: 0.9rem;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 6px 0;
}

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

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

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.nav-toggle span:nth-child(1) { top: 0px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.nav-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
        z-index: 999;
        padding: 40px;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links .btn {
        width: 100%;
        margin-top: 20px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 59, 56, 0.03) 0%, rgba(200, 157, 60, 0.03) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(200, 157, 60, 0.15) 0%, rgba(16, 59, 56, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    animation: pulseCircle 8s infinite alternate ease-in-out;
}

@keyframes pulseCircle {
    0% { transform: scale(1); filter: blur(20px); }
    100% { transform: scale(1.15); filter: blur(30px); }
}

.hero-scene {
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 30px;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(185deg, #ffffff 0%, #f7f9f9 100%);
}

.scene-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scene-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4dd9ac;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(77, 217, 172, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(77, 217, 172, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(77, 217, 172, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(77, 217, 172, 0); }
}

.scene-meta {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 600;
}

.scene-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.scene-card-title {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scene-card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.scene-card-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.scene-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 59, 56, 0.05);
}

.chart-bar {
    flex: 1;
    background-color: rgba(16, 59, 56, 0.05);
    border-radius: 4px 4px 0 0;
    height: var(--h);
    transition: var(--transition);
    position: relative;
}

.chart-bar.highlight {
    background: linear-gradient(to top, var(--primary) 0%, var(--secondary) 100%);
}

.scene-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .hero-scene {
        margin: 0 auto;
    }
}

/* ==========================================================================
   PARA QUIÉN ES ESTO (TARGET PATIENTS)
   ========================================================================== */
.target {
    background-color: var(--bg-white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.target-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
}

.target-card:hover::before {
    background-color: var(--secondary);
}

.target-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 59, 56, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.target-card:hover .target-icon {
    background-color: var(--primary);
    color: var(--bg-white);
}

.target-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.target-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-card {
        padding: 30px 24px;
    }
}

/* ==========================================================================
   NUESTRA DIFERENCIA (THE INTEGRATIVE BRIDGE)
   ========================================================================== */
.difference {
    background-color: var(--bg-light);
}

.diff-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.diff-content {
    display: flex;
    flex-direction: column;
}

.diff-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

.diff-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-row {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.diff-row:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(16, 59, 56, 0.15);
}

.diff-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.diff-label.conventional { color: #888888; }
.diff-label.holistic { color: #a47e24; }
.diff-label.apival { color: var(--primary); }

.diff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

.diff-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.diff-row.active-row {
    border: 2px solid var(--secondary);
    background-color: rgba(200, 157, 60, 0.03);
}

.diff-row.active-row .diff-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Multidisciplinary Specialties */
.specs-panel {
    background-color: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-panel h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.specs-panel p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.spec-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(4px);
}

.spec-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.spec-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .diff-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .specs-panel {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .diff-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEGURIDAD & PROCESO (4 STEPS PROCESS)
   ========================================================================== */
.process {
    background-color: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 80px;
    height: 80px;
    background-color: var(--bg-white);
    border: 3px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-num {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(200, 157, 60, 0.15);
}

.process-step.active .step-num {
    border-color: var(--primary);
    color: #ffffff;
    background-color: var(--primary);
}

.process-step h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   TESTIMONIALS / CASOS DE ÉXITO
   ========================================================================== */
.testimonials {
    background-color: var(--bg-light);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 59, 56, 0.1);
}

.test-quote {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
}

.test-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(200, 157, 60, 0.15);
    position: absolute;
    top: -24px;
    left: -15px;
    line-height: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(16, 59, 56, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 59, 56, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(16, 59, 56, 0.1);
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .test-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq {
    background-color: var(--bg-white);
}

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

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 59, 56, 0.15);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--secondary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: var(--transition);
}

/* Horizontal line */
.faq-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.open {
    border-color: var(--secondary);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .faq-trigger {
        padding: 20px 20px;
        font-size: 0.95rem;
    }
    
    .faq-content-inner {
        padding: 0 20px 20px;
    }
}

/* ==========================================================================
   CONTACT & CTA SECTION
   ========================================================================== */
.contact {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(200, 157, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: #ffffff;
}

.contact-info .section-tag {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary-light);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Form Container */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-container h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-container p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C89D3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-select option {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 157, 60, 0.15);
}

.form-textarea {
    resize: none;
    height: 100px;
}

@media (max-width: 992px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-container {
        padding: 30px 24px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand .logo-icon {
    background-color: #ffffff;
    color: var(--primary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
    color: var(--secondary-light);
    transform: translateX(4px);
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-agency {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-agency a {
    color: var(--secondary-light);
    font-weight: 600;
}

.footer-agency a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   VIDEO GALLERY (CANAL EDUCATIVO REELS)
   ========================================================================== */
.videos {
    background-color: var(--bg-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 Aspect Ratio for Reels/Shorts */
    background-color: var(--primary-dark);
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.video-card:hover .video-thumbnail-wrapper img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(223, 191, 124, 0.9); /* Honey gold with transparency */
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 10;
}

.video-play-btn svg {
    margin-left: 4px; /* Align play triangle */
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(223, 191, 124, 0.4);
}

.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-badge svg {
    color: var(--secondary);
}

.video-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-title {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.video-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.video-link:hover {
    color: var(--primary-light);
}

.video-link svg {
    transition: var(--transition);
}

.video-card:hover .video-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE REFINEMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Scales title better on mobile */
    }
    
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem); /* Scales section titles better */
    }
}

@media (max-width: 480px) {
    /* Prevent badge from causing horizontal overflow */
    .scene-badge-float {
        right: 10px;
        bottom: -15px;
        padding: 10px 16px;
    }
    
    .badge-num {
        font-size: 1.5rem;
    }
    
    /* Optimize padding for mobile */
    .section-padding {
        padding: 50px 0;
    }
    
    /* Spacing fixes for hero elements */
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 400px) {
    /* Prevent logo wrapping on tiny screens */
    .logo {
        font-size: 1.15rem;
        gap: 8px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (MOBILE OPTIMIZED)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   OUR STORY SECTION
   ========================================================================== */
.story {
    background-color: var(--bg-white);
}

.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .story-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.story-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.story-img:hover {
    transform: scale(1.03);
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Masonry Layout for Gallery */
.gallery-item:nth-child(1) {
    grid-column: span 3;
    aspect-ratio: 1.5;
}
.gallery-item:nth-child(2) {
    grid-column: span 3;
    aspect-ratio: 1.5;
}
.gallery-item:nth-child(3) {
    grid-column: span 2;
}
.gallery-item:nth-child(4) {
    grid-column: span 2;
}
.gallery-item:nth-child(5) {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    .gallery-item:nth-child(5) {
        grid-column: span 2;
        aspect-ratio: 2; /* Spans 2 columns to avoid empty space gap */
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 1.5;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 26, 27, 0.9) 0%, rgba(24, 26, 27, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-info span {
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* ==========================================================================
   SUPPORTING PHOTO & HERO CUSTOM STYLES
   ========================================================================== */
.scene-img {
    width: 100%;
    height: 280px; /* Slightly taller for more visual impact on desktop */
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .scene-img {
        height: 200px; /* Shorter on mobile devices for balance */
    }
}

.diff-photo-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin-left: auto; /* Aligns nicely with specs panel on PC */
}

@media (max-width: 992px) {
    .diff-photo-card {
        margin: 24px auto 0; /* Centered and spaced on tablet/mobile */
        max-width: 100%;
    }
}

.diff-img {
    width: 100%;
    height: 220px; /* Better aspect ratio for desktop */
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.diff-photo-caption {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}
