:root {
        /* Core Colors */
        --cream: #F8F4EF;
        --sage: #3f744f;
        --sage-dark: #5A9B72;
        --sage-light: #C2D9CA;
        --sage-accent: #6ac48b;
        --rose: #C9A89A;
        --rose-light: #E8D0CA;
        --rose-dark: #D9B8B0;
        --text-dark: #2D2926;
        --text-mid: #5C534C;
        --text-soft: #8C8078;
        --whatsapp: #25D366;
        
        /* Glass Effect */
        --glass-bg: rgba(255, 255, 255, 0.62);
        --glass-border: rgba(255, 255, 255, 0.75);
        --glass-shadow: rgba(180, 165, 148, 0.18);
        
        /* Gradients */
        --gradient-1: #D9EAE0;
        --gradient-2: #E8D0CA;
        --gradient-3: #E8D9B8;

        /* Spacing */
        --space-xs: 8px;
        --space-sm: 16px;
        --space-md: 24px;
        --space-lg: 40px;
        --space-xl: 64px;
        --space-2xl: 100px;

        /* Typography */
        --font-primary: 'Nunito', sans-serif;
        --font-heading: 'Playfair Display', serif;

        /* Transitions */
        --transition: 0.3s ease;
}

/* BASE RESET */
*, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
}

html {
        scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
        }
}

body {
        font-family: var(--font-primary);
        background: var(--cream);
        color: var(--text-dark);
        overflow-x: hidden;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        transition: background 0.4s, color 0.4s;
}

img {
        display: block;
        max-width: 100%;
}

a:focus-visible,
button:focus-visible {
        outline: 3px solid var(--sage-accent);
        outline-offset: 3px;
}

/* DARK MODE */
body.dark-mode {
        --cream: #1a1a1e;
        --glass-bg: rgba(40, 40, 45, 0.75);
        --glass-border: rgba(80, 80, 90, 0.5);
        --glass-shadow: rgba(0, 0, 0, 0.3);
        --sage: #6ac48b;
        --sage-dark: #5fc587;
        --sage-light: #3a5a47;
        --rose: #d9a89c;
        --rose-light: #5a3d35;
        --text-dark: #e8e6e3;
        --text-mid: #b8b5b0;
        --text-soft: #928d85;
        --gradient-1: #2a3e35;
        --gradient-2: #3e2e2a;
        --gradient-3: #3e3628;
}

/* BACKGROUND & LAYOUT */
.bg-canvas {
        position: fixed;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        pointer-events: none;
}

.blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.42;
        animation: drift 18s ease-in-out infinite alternate;
        transition: opacity 0.4s;
}

.blob-1 {
        width: 700px;
        height: 700px;
        top: -200px;
        left: -200px;
        background: radial-gradient(circle, var(--gradient-1), var(--sage-light));
}

.blob-2 {
        width: 500px;
        height: 500px;
        top: 40%;
        right: -150px;
        background: radial-gradient(circle, var(--gradient-2), rgba(201, 168, 154, 0.33));
        animation-delay: -6s;
}

.blob-3 {
        width: 400px;
        height: 400px;
        bottom: 10%;
        left: 20%;
        background: radial-gradient(circle, var(--gradient-3), rgba(196, 169, 107, 0.27));
        animation-delay: -12s;
}

body.dark-mode .blob {
        opacity: 0.25;
}

@keyframes drift {
        from { transform: translate(0, 0) scale(1); }
        to { transform: translate(30px, 40px) scale(1.06); }
}

.container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 var(--space-md);
}

.section {
        position: relative;
        z-index: 1;
        padding: var(--space-2xl) 0;
        scroll-margin-top: 100px;
}

.glass {
        background: var(--glass-bg);
        backdrop-filter: blur(22px) saturate(1.5);
        border: 1.5px solid var(--glass-border);
        border-radius: 24px;
        box-shadow: 0 8px 32px var(--glass-shadow),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(200, 190, 180, 0.2);
}

body.dark-mode .glass {
        box-shadow: 0 8px 32px var(--glass-shadow),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* NAVIGATION */
nav {
        position: fixed;
        top: var(--space-sm);
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        width: calc(100% - 48px);
        max-width: 1080px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 14px 28px;
        background: rgba(253, 252, 251, 0.72);
        backdrop-filter: blur(28px) saturate(1.8);
        border: 1.5px solid rgba(255, 255, 255, 0.8);
        border-radius: 22px;
        box-shadow: 0 4px 24px rgba(160, 145, 130, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all var(--transition);
}

body.dark-mode nav {
        background: rgba(28, 28, 32, 0.72);
        border-color: rgba(80, 80, 90, 0.5);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(80, 80, 90, 0.3);
}

.nav-logo {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 500;
        text-decoration: none;
        color: var(--text-dark);
        transition: opacity 0.2s;
}

.nav-logo:hover {
        opacity: 0.7;
}

.nav-logo span {
        color: var(--sage);
}

.nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
}

.nav-links a {
        text-decoration: none;
        color: var(--text-mid);
        font-size: 0.88rem;
        font-weight: 600;
        transition: color 0.2s;
}

.nav-links a:hover {
        color: var(--sage);
}

.nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
}

.nav-social {
        display: flex;
        align-items: center;
        gap: 8px;
}

.social-icon-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1.5px solid var(--glass-border);
        background: var(--glass-bg);
        color: var(--text-mid);
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(160, 145, 130, 0.15);
        transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.social-icon-btn svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
}

.social-icon-btn:hover {
        transform: translateY(-2px);
        color: var(--sage-dark);
        border-color: rgba(106, 196, 139, 0.5);
        background: rgba(106, 196, 139, 0.12);
}

body.dark-mode .social-icon-btn {
        background: rgba(60, 60, 70, 0.75);
        border-color: rgba(100, 100, 110, 0.5);
        color: var(--text-dark);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .social-icon-btn:hover {
        background: rgba(106, 196, 139, 0.22);
        border-color: rgba(106, 196, 139, 0.6);
}

.nav-cta {
        background: linear-gradient(135deg, var(--sage-dark), var(--sage));
        color: white;
        border: none;
        border-radius: 50px;
        padding: 10px 22px;
        font-size: 0.86rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(90, 155, 114, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        transition: all 0.25s;
}

.nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(90, 155, 114, 0.45);
}

body.dark-mode .nav-cta {
        box-shadow: 0 4px 16px rgba(90, 155, 114, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1.5px solid var(--glass-border);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(160, 145, 130, 0.15);
}

.dark-mode-toggle:hover {
        transform: scale(1.05);
}

.theme-icon {
        position: absolute;
        font-size: 1.3rem;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-icon-light {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
}

.theme-icon-dark {
        opacity: 0;
        transform: translateY(30px) rotate(180deg);
}

body.dark-mode .theme-icon-light {
        opacity: 0;
        transform: translateY(-30px) rotate(-180deg);
}

body.dark-mode .theme-icon-dark {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
}

body.dark-mode .dark-mode-toggle {
        background: rgba(60, 60, 70, 0.75);
        border-color: rgba(100, 100, 110, 0.5);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
        display: none;
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--whatsapp), #128C7E);
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 100;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all var(--transition);
}

.floating-whatsapp:hover {
        transform: scale(1.1);
}

.floating-whatsapp::before {
        content: '💬';
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
}

/* HERO SECTION */
#inicio {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 0 80px;
        position: relative;
        z-index: 1;
        scroll-margin-top: 0;
}

.hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
        align-items: center;
}

.hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
        background: rgba(139, 175, 150, 0.15);
        border: 1px solid rgba(139, 175, 150, 0.4);
        border-radius: 50px;
        padding: 6px var(--space-sm);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: var(--sage-accent);
        text-transform: uppercase;
        margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
        content: '●';
        font-size: 0.5rem;
        color: var(--sage-dark);
}

h1.hero-headline {
        font-family: var(--font-heading);
        font-size: clamp(2.4rem, 4.5vw, 3.6rem);
        line-height: 1.18;
        font-weight: 500;
        margin-bottom: 20px;
}

h1.hero-headline em {
        font-style: italic;
        color: var(--sage);
}

h1.hero-headline strong {
        font-weight: 500;
        color: var(--rose);
}

.hero-sub {
        font-size: 1.08rem;
        line-height: 1.75;
        color: var(--text-mid);
        margin-bottom: var(--space-lg);
        max-width: 480px;
}

.hero-btns {
        display: flex;
        gap: var(--space-sm);
        flex-wrap: wrap;
}

.hero-social {
        margin-top: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
}

.hero-social-label {
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-soft);
        margin-right: 2px;
}

/* Buttons */
.btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--sage-dark), var(--sage));
        color: white;
        text-decoration: none;
        border: none;
        border-radius: 50px;
        padding: var(--space-sm) 32px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 8px 28px rgba(90, 155, 114, 0.38),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.3);
        transition: all var(--transition);
}

.btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(90, 155, 114, 0.48);
}

body.dark-mode .btn-primary {
        box-shadow: 0 8px 28px rgba(90, 155, 114, 0.38),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
        border: 1.5px solid var(--glass-border);
        border-radius: 50px;
        padding: var(--space-sm) 28px;
        font-size: 0.96rem;
        font-weight: 600;
        color: var(--text-mid);
        text-decoration: none;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(160, 145, 130, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: all 0.25s;
}

.btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.85);
}

body.dark-mode .btn-secondary {
        background: rgba(60, 60, 70, 0.75);
        border-color: rgba(100, 100, 110, 0.5);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-mode .btn-secondary:hover {
        background: rgba(70, 70, 80, 0.85);
}

.hero-image-wrap {
        position: relative;
        display: flex;
        justify-content: center;
}

.hero-photo-card {
        width: 100%;
        max-width: 420px;
        border-radius: 36px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.85);
        box-shadow: 0 24px 64px rgba(140, 128, 120, 0.2),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.95);
        aspect-ratio: 4/5;
        background: linear-gradient(160deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-3) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
}

body.dark-mode .hero-photo-card {
        border-color: rgba(80, 80, 90, 0.5);
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.1);
}

.photo-placeholder {
        display: flex;
}

.photo-placeholder img {
        object-fit: cover;
        object-position: 0 32px;
        width: 100%;
        height: 100%;
        align-self: flex-end;
}

.floating-badge-2 {
        position: absolute;
        top: var(--space-md);
        right: -8px;
        background: linear-gradient(135deg, rgba(139, 175, 150, 0.88), rgba(90, 155, 114, 0.8));
        backdrop-filter: blur(16px);
        border: 1.5px solid rgba(255, 255, 255, 0.55);
        border-radius: 18px;
        padding: 14px 18px;
        box-shadow: 0 8px 24px rgba(90, 155, 114, 0.32);
        color: white;
        font-weight: bold;
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.5;
}

body.dark-mode .floating-badge-2 {
        border-color: rgba(106, 196, 139, 0.3);
}

.floating-badge-2 .big {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        display: block;
        margin-bottom: 4px;
}

/* TYPOGRAPHY */
.section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--rose);
        margin-bottom: var(--space-sm);
}

.section-eyebrow::before {
        content: '';
        width: 28px;
        height: 2px;
        background: var(--rose);
        border-radius: 2px;
}

.cta-eyebrow {
        justify-content: center;
        margin-bottom: 20px;
}

.cta-eyebrow::before {
        display: none;
}

.section-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        font-weight: 500;
        line-height: 1.22;
        margin-bottom: 20px;
}

.section-title em {
        font-style: italic;
        color: var(--sage);
}

.section-body {
        font-size: 1.02rem;
        line-height: 1.8;
        color: var(--text-mid);
        margin-bottom: var(--space-sm);
}

/* SOBRE SECTION */
.sobre-inner {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        gap: 72px;
        align-items: center;
}

.sobre-credentials {
        display: flex;
        flex-direction: column;
        gap: 14px;
}

.cred-card {
        padding: 18px 22px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
}

.cred-card-featured {
        border: 2px solid var(--sage-accent);
        background: rgba(106, 196, 139, 0.08) !important;
}

.cred-icon {
        font-size: 1.6rem;
        flex-shrink: 0;
}

.cred-title {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 2px;
}

.cred-sub {
        font-size: 0.77rem;
        color: var(--text-mid);
        font-weight: 500;
}

.cred-specialties {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 6px;
}

.specialty-pill {
        display: inline-block;
        background: var(--sage-light);
        color: var(--sage-dark);
        padding: 5px 11px;
        border-radius: 12px;
        font-size: 0.72rem;
        font-weight: 600;
        white-space: nowrap;
}


/* MÉTODO SECTION */
#metodo {
        background: linear-gradient(180deg, transparent, rgba(139, 175, 150, 0.07) 50%, transparent);
}

.metodo-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto var(--space-xl);
}

.metodo-body {
        margin-bottom: 0;
}

.steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
}

.step-card {
        padding: 36px 28px;
        border-radius: 24px;
        transition: transform var(--transition);
}

.step-card:hover {
        transform: translateY(-6px);
}

.step-head {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
}

.step-number {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        font-weight: 400;
        line-height: 1;
        color: var(--sage);
        margin-bottom: var(--space-sm);
}

.step-icon {
        font-size: 2rem;
}

.step-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text-dark);
        margin-bottom: 10px;
}

.step-desc {
        font-size: 0.92rem;
        line-height: 1.7;
        color: var(--text-mid);
}

.info-strip {
        margin-top: 40px;
        padding: 32px var(--space-lg);
        border-radius: 24px;
        display: flex;
        gap: var(--space-lg);
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
}

.info-item-divider {
        width: 1px;
        background: rgba(0, 0, 0, 0.08);
}

.info-item-icon {
        font-size: 2rem;
        margin-bottom: var(--space-xs);
}

.info-item-title {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-dark);
        margin-bottom: 4px;
}

.info-item-sub {
        font-size: 0.84rem;
        color: var(--text-soft);
}

/* BENEFÍCIOS SECTION */
.beneficios-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 56px;
}

.beneficios-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
}

.beneficio-group {
        padding: 44px;
        border-radius: 32px;
}

.beneficio-group h3 {
        font-family: var(--font-heading);
        font-size: 1.45rem;
        font-weight: 500;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        gap: 12px;
}

.beneficio-item {
        display: flex;
        gap: 14px;
        margin-bottom: 20px;
        align-items: flex-start;
}

.check {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 900;
        color: white;
}

.check-sage {
        background: linear-gradient(135deg, var(--sage-dark), var(--sage));
}

.check-rose {
        background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}

.beneficio-text strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 3px;
}

.beneficio-text span {
        font-size: 0.85rem;
        color: var(--text-soft);
        line-height: 1.5;
}

/* GALLERY SECTION */
.gallery-header {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 36px;
}

.gallery-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 700px;
        margin: 0 auto;
}

.gallery-carousel {
        display: flex;
        gap: 10px;
        overflow: hidden;
        padding: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex: 1;
}

.gallery-carousel::-webkit-scrollbar {
        display: none;
}

.gallery-card {
        position: relative;
        flex: 0 0 100%;
        aspect-ratio: 4 / 5;
        border-radius: 30px;
        overflow: hidden;
        scroll-snap-align: start;
        background: transparent;
        box-shadow: none;
        transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-indicators {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 14px;
}

.gallery-indicator {
        width: 10px;
        height: 10px;
        border: none;
        border-radius: 50%;
        background: rgba(92, 83, 76, 0.32);
        cursor: pointer;
        transition: transform var(--transition), background var(--transition), opacity var(--transition);
        opacity: 0.65;
}

.gallery-indicator:hover {
        transform: scale(1.15);
        opacity: 0.9;
}

.gallery-indicator.active {
        background: var(--sage);
        opacity: 1;
        transform: scale(1.25);
}

body.dark-mode .gallery-indicator {
        background: rgba(232, 230, 227, 0.32);
}

body.dark-mode .gallery-indicator.active {
        background: var(--sage);
}

.gallery-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
}

.gallery-overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: 34px 20px 18px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0) 100%);
        color: #fff;
        z-index: 1;
}

.gallery-tag {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(3px);
}

.gallery-caption {
        margin-top: 8px;
        font-size: 0.84rem;
        line-height: 1.4;
        font-weight: 600;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gallery-nav-btn {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid var(--glass-border);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        color: var(--text-dark);
        font-size: 1.8rem;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(160, 145, 130, 0.15);
        transition: all var(--transition);
}

.gallery-nav-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 18px rgba(160, 145, 130, 0.25);
        background: rgba(255, 255, 255, 0.85);
}

.gallery-nav-btn:active {
        transform: scale(0.95);
}

body.dark-mode .gallery-nav-btn {
        background: rgba(60, 60, 70, 0.75);
        border-color: rgba(100, 100, 110, 0.5);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .gallery-nav-btn:hover {
        background: rgba(70, 70, 80, 0.9);
}


/* DEPOIMENTOS SECTION */
.dep-header {
        text-align: center;
        max-width: 560px;
        margin: 0 auto 56px;
}

.dep-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        margin-bottom: 28px;
}

.dep-card {
        padding: 32px;
        border-radius: 24px;
        transition: transform var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
}

body.dark-mode .dep-card {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.dep-card:hover {
        transform: translateY(-4px);
}

.dep-quote {
        font-size: 0.94rem;
        line-height: 1.75;
        color: var(--text-mid);
        margin-bottom: 22px;
        font-style: italic;
}

.dep-quote::before {
        content: '\201C';
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: rgba(139, 175, 150, 0.35);
        line-height: 0;
        vertical-align: -0.5em;
        margin-right: 4px;
}

.dep-author {
        display: flex;
        align-items: center;
        gap: 12px;
}

.dep-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
        border: 2px solid rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
}

.dep-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-dark);
}

.dep-role {
        font-size: 0.77rem;
        color: var(--text-soft);
}

/* CTA SECTION */
#cta {
        padding: 120px 0;
        text-align: center;
        position: relative;
        z-index: 1;
}

.cta-card {
        max-width: 760px;
        margin: 0 auto;
        padding: var(--space-xl) 56px;
        border-radius: 40px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(28px) saturate(1.6);
        border: 2px solid rgba(255, 255, 255, 0.88);
        box-shadow: 0 24px 64px rgba(140, 128, 120, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.95);
}

body.dark-mode .cta-card {
        background: rgba(40, 40, 45, 0.75);
        border: 2px solid rgba(80, 80, 90, 0.5);
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.cta-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        font-weight: 500;
        line-height: 1.22;
        margin-bottom: 18px;
}

.cta-title em {
        font-style: italic;
        color: var(--sage);
}

.cta-body {
        font-size: 1.05rem;
        line-height: 1.75;
        color: var(--text-mid);
        margin-bottom: 36px;
}

.btn-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--whatsapp), #128C7E);
        color: white;
        text-decoration: none;
        border: none;
        border-radius: 50px;
        padding: 18px var(--space-lg);
        font-size: 1.08rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 32px rgba(37, 211, 102, 0.38),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.25);
        transition: all var(--transition);
}

.btn-whatsapp:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 44px rgba(37, 211, 102, 0.48);
}

body.dark-mode .btn-whatsapp {
        box-shadow: 0 10px 32px rgba(37, 211, 102, 0.38),
                inset 0 1.5px 0 rgba(255, 255, 255, 0.1);
}

.cta-disclaimer {
        margin-top: 20px;
        font-size: 0.82rem;
        color: var(--text-soft);
        font-weight: 500;
}

/* FOOTER */
footer {
        position: relative;
        z-index: 1;
        background: rgba(45, 41, 38, 0.96);
        backdrop-filter: blur(20px);
        padding: 48px 0 32px;
        color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: var(--space-md);
}

.footer-brand {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
}

.footer-brand span {
        color: var(--sage-light);
}

.footer-tagline {
        font-size: 0.79rem;
        color: rgba(255, 255, 255, 0.42);
        margin-top: 4px;
}

.footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
}

.social-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.06);
        transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.social-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        flex-shrink: 0;
}

.social-btn:hover {
        transform: translateY(-2px);
        background: rgba(106, 196, 139, 0.2);
        border-color: rgba(106, 196, 139, 0.5);
}

.footer-links {
        display: flex;
        gap: var(--space-md);
        flex-wrap: wrap;
}

.footer-links a {
        color: rgba(255, 255, 255, 0.52);
        text-decoration: none;
        font-size: 0.84rem;
        transition: color 0.2s;
}

.footer-links a:hover {
        color: var(--sage-light);
}

.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 32px;
        padding-top: var(--space-md);
        text-align: center;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.32);
}

/* ANIMATIONS */
.reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s, transform 0.7s;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
        :root {
                --space-2xl: 80px;
        }

        .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
        }

        .hero-image-wrap {
                order: -1;
        }

        .hero-photo-card {
                max-width: 300px;
                aspect-ratio: 1/1;
        }

        .sobre-inner,
        .steps-grid,
        .beneficios-inner,
        .dep-grid {
                grid-template-columns: 1fr;
        }

        .gallery-carousel {
                padding: 0;
        }

        .gallery-card {
                border-radius: 24px;
        }

        .gallery-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.6rem;
        }

        .nav-links {
                display: none;
        }

        .nav-social {
                display: none;
        }

        .cta-card {
                padding: 44px 28px;
        }

        .footer-inner {
                flex-direction: column;
                text-align: center;
        }

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

        .info-item-divider {
                display: none;
        }
}

@media (max-width: 600px) {
        :root {
                --space-md: 16px;
                --space-lg: 24px;
                --space-xl: 40px;
                --space-2xl: 60px;
        }

        .container {
                padding: 0 var(--space-sm);
        }

        .section {
                padding: var(--space-xl) 0;
        }

        nav {
                padding: 12px 20px;
        }

        .dark-mode-toggle {
                width: 44px;
                height: 44px;
        }

        .theme-icon {
                font-size: 1.15rem;
        }

        .nav-cta {
                display: none;
        }

        .floating-whatsapp {
                display: flex;
        }

        .hero-btns {
                flex-direction: column;
                width: 100%;
        }

        .hero-btns a {
                width: 100%;
                justify-content: center;
        }

        .hero-social {
                width: 100%;
                justify-content: center;
                gap: 14px;
                margin-top: 16px;
                padding: 12px 14px;
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.62);
                border: 1.5px solid var(--glass-border);
                box-shadow: 0 8px 20px rgba(160, 145, 130, 0.14);
        }

        body.dark-mode .hero-social {
                background: rgba(60, 60, 70, 0.72);
                border-color: rgba(100, 100, 110, 0.5);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
        }

        .hero-social .social-icon-btn {
                width: 48px;
                height: 48px;
                border-width: 2px;
                background: rgba(255, 255, 255, 0.9);
                color: var(--sage-dark);
        }

        .hero-social .social-icon-btn svg {
                width: 20px;
                height: 20px;
        }

        body.dark-mode .hero-social .social-icon-btn {
                background: rgba(80, 80, 90, 0.86);
                color: var(--sage);
        }

        .hero-social-label {
                width: 100%;
                text-align: center;
        }

        .beneficio-group {
                padding: 28px 20px;
        }

        .gallery-carousel {
                padding: 8px 0 10px;
        }

        .gallery-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 1.4rem;
        }
}

@media print {
        .bg-canvas, nav, .btn-primary, .btn-secondary, 
        .btn-whatsapp, .floating-badge-2 {
                display: none !important;
        }

        body {
                background: white;
                color: black;
        }

        .section {
                page-break-inside: avoid;
        }
}
