/* ============================================================
   GEÓRGIA ANDRADE ADVOCACIA – Design System & Styles v2
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
    /* Colors */
    --color-primary: #47132a;
    --color-primary-light: #5e1d3a;
    --color-primary-dark: #340e1f;
    --color-primary-rgb: 71, 19, 42;
    --color-accent: #C9A96E;
    --color-accent-light: #DFC89A;
    --color-accent-dark: #A88B52;
    --color-bg-light: #F8F6F3;
    --color-bg-warm: #F3EDE6;
    --color-white: #FFFFFF;
    --color-text-dark: #2D2D2D;
    --color-text-muted: #6B6B6B;
    --color-text-on-dark: #E8E0D8;
    --color-success: #2E7D32;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Sizes */
    --max-width: 1200px;
    --header-height: 72px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-accent-light), var(--color-accent));
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-primary-dark);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ── Lucide Icon Defaults ── */
.lucide {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

/* ── Utilities ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-padding {
    padding: var(--space-5xl) 0;
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Section Headers ── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-title--light {
    color: var(--color-white);
}

.section-title--dark {
    color: var(--color-primary);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description--light {
    color: var(--color-text-on-dark);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

/* ============================================================
   HEADER / NAVIGATION – Redesigned
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header--transparent {
    background: transparent;
}

.header--scrolled {
    background: rgba(52, 14, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    height: 64px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.header__logo img {
    height: 42px;
    width: auto;
    transition: height var(--transition-base);
}

.header--scrolled .header__logo img {
    height: 36px;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__menu a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-fast);
}

.header__menu a:hover,
.header__menu a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Header CTA – small, elegant pill */
.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(201, 169, 110, 0.25);
}

.header__cta:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.header__cta .lucide {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    z-index: 1001;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.menu-toggle span:nth-child(1) { width: 100%; }
.menu-toggle span:nth-child(2) { width: 70%; }
.menu-toggle span:nth-child(3) { width: 85%; }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    width: 100%;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
    width: 100%;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   SECTION DIVIDER WAVES – Creative Transitions
   ============================================================ */
.section-divider-wave {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 5;
}

.section-divider-wave svg {
    width: 100%;
    display: block;
}

/* About (light) → Services (dark) */
.section-divider-wave--to-dark {
    background: var(--color-bg-light);
    margin-top: -1px;
}

.section-divider-wave--to-dark svg {
    height: 80px;
}

/* Services (dark) → Team (light) */
.section-divider-wave--to-light {
    background: var(--color-bg-light);
    margin-bottom: -1px;
}

.section-divider-wave--to-light svg {
    height: 80px;
}

/* Team (light) → Testimonials (warm) */
.section-divider-wave--angle {
    background: var(--color-bg-light);
    margin-top: -1px;
}

.section-divider-wave--angle svg {
    height: 60px;
}

/* Testimonials (warm) → FAQ (dark) */
.section-divider-wave--to-dark-2 {
    background: var(--color-bg-warm);
    margin-top: -1px;
}

.section-divider-wave--to-dark-2 svg {
    height: 80px;
}

/* FAQ (dark) → Contact (light) */
.section-divider-wave--to-light-2 {
    background: var(--color-bg-light);
    margin-bottom: -1px;
}

.section-divider-wave--to-light-2 svg {
    height: 80px;
}

/* Contact (light) → Footer (dark) */
.section-divider-wave--contact-footer {
    background: var(--color-bg-light);
    margin-top: -1px;
}

.section-divider-wave--contact-footer svg {
    height: 100px;
}

@media (max-width: 768px) {
    .section-divider-wave--to-dark svg,
    .section-divider-wave--to-light svg,
    .section-divider-wave--to-dark-2 svg,
    .section-divider-wave--to-light-2 svg {
        height: 50px;
    }
    .section-divider-wave--angle svg {
        height: 35px;
    }
    .section-divider-wave--contact-footer svg {
        height: 60px;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Decorative floating elements */
.hero__decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    pointer-events: none;
}

.hero__decoration--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero__decoration--2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__decoration--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 30%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding-top: var(--header-height);
}

.hero__content {
    padding: var(--space-3xl) 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.8s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}


.hero__title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero__services {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.hero__service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-on-dark);
    white-space: nowrap;
}

.hero__service-tag .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.hero__service-separator {
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-on-dark);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero__national-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin: 0 0 var(--space-xl);
    padding: 12px 16px;
    max-width: 470px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.55);
    border-radius: var(--radius-md);
    color: var(--color-white);
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.hero__national-flag {
    display: flex;
    width: 46px;
    min-width: 46px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.hero__national-flag svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero__national-badge strong,
.hero__national-badge small {
    display: block;
}

.btn--hero-lead {
    min-width: 260px;
    padding: 17px 30px;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    border: 2px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 10px 28px rgba(201, 169, 110, 0.42);
}

.btn--hero-lead:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(201, 169, 110, 0.56);
}

.btn--hero-lead .lucide {
    width: 23px;
    height: 23px;
}

.btn--hero-lead span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn--hero-lead small {
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15px;
    opacity: 0.8;
}

.hero__national-badge strong {
    font-size: 0.85rem;
    font-weight: 700;
}

.hero__national-badge small {
    margin-top: 2px;
    color: var(--color-text-on-dark);
    font-size: 0.76rem;
    opacity: 0.85;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn .lucide {
    width: 18px;
    height: 18px;
}

/* Hero Image – No frame, transparent bg ready */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px; /* Increased from 420px */
}

.hero__image-glow {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.2) 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.hero__photo {
    position: relative;
    width: 100%;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__image-wrapper:hover .hero__photo {
    transform: scale(1.05) translateY(-5px);
}

.hero__photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 750px; /* Increased */
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4));
}

/* Floating Elements */
.hero__floating-elements {
    position: absolute;
    inset: -30px;
    z-index: 5;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--color-accent-dark);
    border: 1px solid rgba(201, 169, 110, 0.2);
    animation: float-creative 6s ease-in-out infinite;
}

.floating-item i {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.item-scale { top: 15%; left: 0%; animation-delay: 0s; }
.item-gavel { top: 65%; left: -5%; animation-delay: -2s; }
.item-file { top: 10%; right: 5%; animation-delay: -4s; }
.item-shield { top: 75%; right: 0%; animation-delay: -1s; }

@keyframes float-creative {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(8deg); }
    66% { transform: translate(-8px, 10px) rotate(-4deg); }
}


.hero__image-dots {
    position: absolute;
    top: 10%;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--color-accent) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.hero__image-ring {
    position: absolute;
    bottom: 10%;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    z-index: 0;
    animation: float 7s ease-in-out infinite reverse;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    background: var(--color-bg-light);
    position: relative;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image-container {
    position: relative;
}

.about__image {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image::before,
.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about__image::before {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: organic-morph 12s infinite alternate;
}

.about__image::after {
    background: linear-gradient(225deg, rgba(71, 19, 42, 0.05) 0%, transparent 50%);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    animation: organic-morph 15s infinite alternate-reverse;
    transform: scale(1.1);
}

.about__image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

@keyframes organic-morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}


@keyframes organic-blob-alt {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}


.about__experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.about__experience-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
    color: var(--color-text-on-dark);
}

.about__content {
    padding: var(--space-xl) 0;
}

.about__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(71, 19, 42, 0.1);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.about__stat-number span {
    color: var(--color-accent);
}

.about__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   AUDIENCE / QUEM ATENDEMOS
   ============================================================ */
.audience {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.audience__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(71, 19, 42, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: default;
}

.audience__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 110, 0.3);
}

.audience__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(71, 19, 42, 0.06), rgba(201, 169, 110, 0.12));
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.audience__icon .lucide {
    width: 28px;
    height: 28px;
    stroke-width: 1.6;
}

.audience__item:hover .audience__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-accent);
    transform: scale(1.1);
}

.audience__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png'),
        url('../assets/favicon/favicon.png');
    background-size: 
        90px 90px,
        130px 130px,
        55px 55px,
        110px 110px,
        70px 70px,
        100px 100px,
        60px 60px,
        85px 85px,
        120px 120px,
        75px 75px,
        95px 95px,
        65px 65px,
        105px 105px,
        80px 80px,
        50px 50px;
    background-position: 
        3% 8%,
        22% 72%,
        47% 18%,
        73% 55%,
        91% 12%,
        12% 42%,
        58% 88%,
        82% 38%,
        37% 58%,
        67% 3%,
        8% 92%,
        95% 78%,
        52% 45%,
        28% 25%,
        78% 90%;
    background-repeat: no-repeat;
    opacity: 0.035;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
    color: var(--color-accent);
}

.service-card__icon .lucide {
    width: 26px;
    height: 26px;
    stroke-width: 1.6;
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-primary-dark);
    transform: scale(1.08) rotate(-3deg);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--color-text-on-dark);
    line-height: 1.7;
    opacity: 0.8;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
    background: var(--color-bg-light);
    position: relative;
}

.team__inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.team__photo-container {
    position: relative;
}

.team__photo {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team__photo::before,
.team__photo::after {
    content: '';
    position: absolute;
    inset: -5%;
    z-index: 0;
}

.team__photo::before {
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.team__photo::after {
    background: linear-gradient(45deg, rgba(71, 19, 42, 0.08) 0%, transparent 60%);
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    animation: organic-morph 10s infinite alternate-reverse;
}

.team__photo img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}


@keyframes organic-blob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}


.team__info {
    padding: var(--space-xl) 0;
}

.team__name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.team__role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
}

.team__bio {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.team__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.team__credential {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: var(--color-white);
    border: 1px solid rgba(71, 19, 42, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.team__credential:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.team__credential .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* ============================================================
   TESTIMONIALS / CAROUSEL
   ============================================================ */
.testimonials {
    background: var(--color-bg-warm);
    position: relative;
    overflow: hidden;
}

.testimonials__quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-family: var(--font-display);
    color: rgba(71, 19, 42, 0.03);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel__slide {
    min-width: 100%;
    padding: 0 var(--space-xl);
}

.testimonial-card {
    text-align: center;
    padding: var(--space-3xl);
}

.testimonial-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-xl);
    border: 3px solid var(--color-accent);
    box-shadow: var(--shadow-md);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--color-accent);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.4;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.testimonial-card__info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-card__stars .lucide {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    color: var(--color-accent);
}

/* Carousel Controls */
.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.carousel__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(71, 19, 42, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    color: var(--color-primary);
}

.carousel__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08);
}

.carousel__btn .lucide {
    width: 20px;
    height: 20px;
}

.carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(71, 19, 42, 0.15);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.carousel__dot.active {
    background: var(--color-primary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: rgba(201, 169, 110, 0.25);
}

.faq__item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    gap: var(--space-md);
}

.faq__question:hover {
    color: var(--color-accent-light);
}

.faq__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.faq__icon .lucide {
    width: 16px;
    height: 16px;
}

.faq__item.active .faq__icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
}

.faq__answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: var(--color-text-on-dark);
    line-height: 1.8;
    opacity: 0.85;
}

/* ============================================================
   LEAD FORM – SALÁRIO MATERNIDADE
   ============================================================ */
.lead-form {
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-light) 100%);
    position: relative;
}

.lead-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.lead-form__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.lead-form__title em {
    color: var(--color-accent-dark);
    font-style: italic;
}

.lead-form__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.lead-form__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.lead-form__benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-primary);
}

.lead-form__benefit .lucide {
    width: 18px;
    height: 18px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

/* Form Card */
.lead-form__form-wrapper {
    position: relative;
}

.lead-form__form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(71, 19, 42, 0.06);
}

.lead-form__form-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(71, 19, 42, 0.08);
}

.lead-form__form-title .lucide {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.lead-form__field {
    margin-bottom: var(--space-lg);
}

.lead-form__field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-form__field input,
.lead-form__field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(71, 19, 42, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: var(--color-bg-light);
    transition: all var(--transition-fast);
    outline: none;
}

.lead-form__field input:focus,
.lead-form__field select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    background: var(--color-white);
}

.lead-form__field input::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

.lead-form__submit {
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
    margin-top: var(--space-sm);
}

.lead-form__submit .lucide {
    width: 18px;
    height: 18px;
}

.lead-form__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

.lead-form__disclaimer .lucide {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Success state */
.lead-form__success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.lead-form__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.05));
    border-radius: 50%;
    color: var(--color-success);
}

.lead-form__success-icon .lucide {
    width: 32px;
    height: 32px;
}

.lead-form__success h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.lead-form__success p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Angle divider for Lead Form → Contact */
.section-divider-wave--angle-2 {
    background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-light));
    margin-top: -1px;
}

.section-divider-wave--angle-2 svg {
    height: 60px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--color-bg-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(71, 19, 42, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 110, 0.3);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(71, 19, 42, 0.08), rgba(201, 169, 110, 0.1));
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.contact-card__icon .lucide {
    width: 22px;
    height: 22px;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.contact-card__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-card__text a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-card__text a:hover {
    color: var(--color-accent);
}

.contact__socials {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.social-link .lucide {
    width: 20px;
    height: 20px;
}

/* Maps */
.contact__maps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-white);
}

.map-container__label {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.map-container__label .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-text-on-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 360px;
}

.footer__logo img {
    height: 50px;
    width: auto;
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__link {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer__link .lucide {
    width: 14px;
    height: 14px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.footer__bottom a {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

.footer__bottom a:hover {
    color: var(--color-accent-light);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

.whatsapp-float__btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float__tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    color: var(--color-text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.whatsapp-float__tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--color-white);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}



/* ============================================================
   RESPONSIVE – TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .header__menu {
        gap: 2px;
    }

    .header__menu a {
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .hero__content {
        order: 1;
        padding-bottom: 0;
    }

    .hero__image {
        order: 0;
    }

    .hero__image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero__services {
        justify-content: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__national-badge {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero__actions {
        justify-content: center;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team__photo-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .team__credentials {
        justify-content: center;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .audience__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .lead-form__inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .audience__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .audience__item {
        padding: var(--space-lg) var(--space-sm);
    }

    .audience__icon {
        width: 52px;
        height: 52px;
    }

    .audience__icon .lucide {
        width: 22px;
        height: 22px;
    }

    .audience__label {
        font-size: 0.72rem;
    }

    .lead-form__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .lead-form__form {
        padding: var(--space-xl);
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .section-padding {
        padding: var(--space-3xl) 0;
    }

    .menu-toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-primary-dark);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-4xl) var(--space-xl);
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }

    .header__menu a {
        font-size: 1.2rem;
        padding: var(--space-md);
        text-align: center;
        width: 100%;
        color: var(--color-white);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Hero Center on Mobile */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-4xl);
        text-align: center;
    }

    .carousel__btn {
        display: none !important;
    }

    .carousel__dots {
        margin-top: var(--space-lg);
    }

    .hero__inner {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .hero__content {
        order: 1;
    }

    .hero__badge {
        margin: 0 auto var(--space-md);
    }

    .hero__services {
        justify-content: center;
        margin-bottom: var(--space-xl);
        width: 100%;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hero__service-tag {
        padding: 6px 10px;
        gap: 6px;
        font-size: 0.74rem;
    }

    .hero__service-tag .lucide {
        width: 14px;
        height: 14px;
    }

    .hero__image {
        order: 2;
    }

    .hero__image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn--hero-lead {
        min-width: 0;
        padding: 18px 22px;
        font-size: 1.1rem;
    }

    .btn--hero-lead span {
        align-items: center;
    }

    .hero__national-badge {
        width: 100%;
        max-width: 420px;
        padding: 11px 13px;
    }

    /* About Center on Mobile */
    .about__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .about__image-container {
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .about__experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin: 0 auto;
        padding: var(--space-md) var(--space-lg);
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--space-xs);
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }

    /* Testimonials Mobile */
    .carousel__slide {
        padding: 0 var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-xl) var(--space-sm);
    }

    .testimonial-card__quote {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .testimonial-card__avatar {
        width: 50px;
        height: 50px;
        margin-bottom: var(--space-lg);
    }

    /* Services Grid */
    .services__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-md);
    }

    /* Team Center on Mobile */
    .team__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team__photo-container {
        max-width: 280px;
        margin: 0 auto var(--space-xl);
    }

    /* Lead Form */
    .lead-form__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lead-form__benefits {
        display: inline-block;
        text-align: left;
    }

    /* Footer Center on Mobile */
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .footer__logo {
        justify-content: center;
    }

    .section-header {
        text-align: center !important;
    }

    .section-divider {
        margin: var(--space-sm) auto var(--space-xl) !important;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr !important;
    }

    .about__stats {
        grid-template-columns: 1fr !important;
        gap: var(--space-sm);
    }

    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.7rem;
    }

    .testimonial-card__quote {
        font-size: 1rem;
    }

    .about__stat-number {
        font-size: 1.8rem;
    }

    .audience__grid {
        grid-template-columns: 1fr !important;
    }

    .map-container iframe {
        height: 240px !important;
    }

    .contact-card {
        padding: var(--space-md);
    }

    .hero__services {
        gap: clamp(3px, 1.5vw, 6px);
    }

    .hero__service-tag {
        padding: 5px clamp(4px, 2vw, 8px);
        gap: 4px;
        font-size: clamp(0.56rem, 2.45vw, 0.7rem);
    }

    .hero__service-tag .lucide {
        width: clamp(11px, 3.4vw, 14px);
        height: clamp(11px, 3.4vw, 14px);
    }

    .hero__service-separator {
        width: 3px;
        height: 3px;
    }
}

/* ============================================================
   MOBILE-FIRST CONVERSION POLISH
   ============================================================ */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header__logo img {
        max-width: min(52vw, 190px);
        height: auto;
    }

    .header__cta {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        margin-top: var(--space-md);
    }

    /* Remove the duplicated top offset between the fixed header and hero. */
    .hero {
        padding-top: calc(var(--header-height) + var(--space-sm));
        padding-bottom: var(--space-3xl);
    }

    .hero__inner {
        padding-top: 0;
        gap: var(--space-lg);
    }

    .hero__content {
        width: 100%;
        padding: var(--space-lg) 0 var(--space-md);
    }

    .hero__title {
        text-wrap: balance;
    }

    .hero__subtitle {
        margin-bottom: var(--space-xl);
    }

    .hero__national-badge {
        align-items: center;
        margin-bottom: var(--space-xl);
        text-align: left;
    }

    .hero__national-flag {
        width: 42px;
        min-width: 42px;
    }

    .hero__national-badge strong {
        font-size: 0.8rem;
    }

    .hero__national-badge small {
        font-size: 0.72rem;
    }

    .hero__actions .btn {
        min-height: 54px;
    }

    .lead-form__form,
    .contact-card {
        border-radius: var(--radius-lg);
    }

    /* Keep the audience cards compact and easy to scan in two columns. */
    .audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .audience__item {
        min-height: 132px;
        justify-content: center;
        gap: var(--space-sm);
        padding: var(--space-md) var(--space-xs);
    }

    .audience__icon {
        width: 48px;
        height: 48px;
    }

    .audience__icon .lucide {
        width: 21px;
        height: 21px;
    }

    .audience__label {
        font-size: 0.76rem;
        line-height: 1.3;
    }

    /* Use the available width for the team image instead of leaving a blank side area. */
    .team__photo-container {
        width: 100%;
        max-width: 360px;
        margin: 0 auto var(--space-lg);
    }

    .team__photo img {
        width: 100%;
        height: 100%;
    }

    .team__info {
        padding: 0;
    }

    .team__credentials {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .team__credential {
        width: 100%;
        min-height: 64px;
        justify-content: flex-start;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        font-size: 0.74rem;
        line-height: 1.3;
        text-align: left;
    }

    .team__credential .lucide {
        min-width: 16px;
    }

    /* Align the explanatory copy and form card without the large mobile gap. */
    .lead-form__inner {
        gap: var(--space-xl);
    }

    .lead-form__content,
    .lead-form__form-wrapper {
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .lead-form__form {
        padding: var(--space-xl) var(--space-lg);
        text-align: left;
    }

    .lead-form__form-title {
        margin-bottom: var(--space-lg);
    }

    .lead-form__field {
        margin-bottom: var(--space-md);
    }

    .lead-form__field input,
    .lead-form__field select {
        min-height: 50px;
        font-size: 16px;
    }

    .lead-form__submit {
        min-height: 54px;
    }

    .footer__bottom {
        flex-direction: column;
        justify-content: center;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer__bottom p {
        max-width: 34rem;
    }

    .footer__link {
        justify-content: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .whatsapp-float {
        bottom: 16px;
        left: 16px;
    }

    .whatsapp-float__btn {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 380px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero__title {
        font-size: 1.55rem;
    }

    .hero__services {
        gap: var(--space-xs);
    }

    .hero__service-separator {
        display: none;
    }

    .hero__national-badge {
        gap: 10px;
        padding: 10px;
    }

    .hero__national-flag {
        width: 38px;
        min-width: 38px;
    }

    .audience__item {
        min-height: 124px;
    }

    .team__credential {
        min-height: 68px;
        padding: 9px;
        font-size: 0.7rem;
    }

    .btn--hero-lead {
        padding-left: 16px;
        padding-right: 16px;
    }
}






/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .header,
    .whatsapp-float,
    .carousel__controls {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: #fff !important;
    }

    .hero__title,
    .section-title {
        color: #000 !important;
    }
}

/* ============================================================
   ENHANCED UI – Creative Animations & Interactions (AdSense Ready)
   ============================================================ */

/* ── Scroll Progress Bar ── */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}
.scroll-progress-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
    background-size: 200% 100%;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
    animation: gradientFlow 3s linear infinite;
    transition: width 0.1s ease;
}


/* ── Service Card Enhancements ── */
.service-card {
    /* Retain original overflow:hidden to not break layout */
    position: relative;
}
.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.2);
}
.service-card:hover .service-card__icon {
    transform: rotate(8deg) scale(1.15);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), rgba(201, 169, 110, 0.1));
}
.service-card__badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4);
    z-index: 10;
    animation: badgePulse 2s infinite ease-in-out;
}
@keyframes badgePulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4); }
    50% { transform: translateY(2px); box-shadow: 0 6px 16px rgba(201, 169, 110, 0.6); }
}

/* ── Button Shimmer Glow ── */
.btn--primary, .cta-interstitial__btn {
    position: relative;
    overflow: hidden;
}
.btn--primary::after, .cta-interstitial__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
}
.btn--primary:hover::after, .cta-interstitial__btn:hover::after {
    animation: shimmerSweep 0.7s ease forwards;
}
@keyframes shimmerSweep {
    100% { left: 200%; }
}

/* ── CTA Interstitial ── */
.cta-interstitial {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-interstitial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}
.cta-interstitial__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}
.cta-interstitial__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    line-height: 1.2;
}
.cta-interstitial__text {
    font-size: 1.1rem;
    color: var(--color-text-on-dark);
    opacity: 0.9;
    margin-bottom: var(--space-md);
}
.cta-interstitial__btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-primary-dark);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.cta-interstitial__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* ── Policy Links ── */
.footer__policy-links {
    margin-top: var(--space-sm);
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}
.footer__policy-links a {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}
.footer__policy-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

