/* ============================================
   ITAMÁRIO BEZERRA | ADVOCACIA
   Apple Liquid Glass Design System
   ============================================ */

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* Palette — deep midnight blues + warm gold accents */
    --bg-primary: #000000;
    --bg-elevated: #0a0a0c;
    --bg-secondary: #111114;
    --bg-tertiary: #1a1a1f;

    --gold-50: #FFF8E7;
    --gold-100: #F5E6B8;
    --gold-200: #E8CF82;
    --gold-300: #D4B254;
    --gold-400: #C9A84C;
    --gold-500: #B8922E;
    --gold-600: #9A7A24;

    --text-primary: #F5F5F7;
    --text-secondary: rgba(245, 245, 247, 0.7);
    --text-tertiary: rgba(245, 245, 247, 0.45);
    --text-gold: var(--gold-300);

    /* Liquid Glass tokens */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(40px);
    --glass-blur-sm: blur(20px);

    /* Typography — Apple-like system */
    --font-display: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-text: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;

    /* Sizing */
    --max-width: 1120px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.7s;
}

html {
    scroll-behavior: auto;
    /* Disabled native for Lenis */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-text);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.08) 0px, transparent 600px),
        radial-gradient(circle at 90% 40%, rgba(201, 168, 76, 0.04) 0px, transparent 500px),
        radial-gradient(circle at 30% 60%, rgba(201, 168, 76, 0.08) 0px, transparent 500px),
        radial-gradient(circle at 80% 80%, rgba(201, 168, 76, 0.05) 0px, transparent 600px);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-bg__gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    will-change: transform;
}

.ambient-bg__gradient--1 {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 60%);
    top: -300px;
    right: -200px;
}

.ambient-bg__gradient--2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 207, 130, 0.1), transparent 60%);
    bottom: 10%;
    left: -200px;
}

@keyframes ambientDrift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

/* Noise texture overlay */
.ambient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* ============================================
   LIQUID GLASS COMPONENTS
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* Top edge highlight — the "liquid" shine */
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Inner glow */
.glass::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.navbar.is-scrolled {
    padding: 12px 0;
}

.navbar__glass {
    max-width: calc(var(--max-width) - 48px);
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid transparent;
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.navbar.is-scrolled .navbar__glass {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-color: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar__logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: opacity var(--duration-fast) ease;
}

.navbar__logo-img:hover {
    opacity: 0.85;
}

/* Nav Links */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all var(--duration-fast) ease;
    letter-spacing: -0.01em;
}

.navbar__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.navbar__cta-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    padding: 9px 22px;
    border-radius: 100px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    letter-spacing: -0.01em;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.navbar__cta-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    z-index: 1001;
    position: relative;
}

.navbar__toggle-line {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.navbar__toggle-line:nth-child(1) {
    transform: translateY(-4px);
}

.navbar__toggle-line:nth-child(2) {
    transform: translateY(4px);
}

.navbar__toggle.is-active .navbar__toggle-line:nth-child(1) {
    transform: rotate(45deg);
}

.navbar__toggle.is-active .navbar__toggle-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    text-align: center;
    overflow: hidden;
}

/* Hero radial glow behind content */
.hero__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(60px);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gold);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    opacity: 0;
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.1s forwards;
}

.hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 72px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.2s forwards;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-200));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero__desc {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 44px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.35s forwards;
}

.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.5s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    letter-spacing: -0.01em;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--bg-primary);
    padding: 16px 36px;
    font-size: 15px;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
}

.btn--gold:active {
    transform: translateY(0) scale(0.98);
}

.btn--glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 16px 32px;
    font-size: 15px;
}

.btn--glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.8s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-tertiary);
    max-width: 520px;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Divider line between sections */
.section-divider {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-divider__line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Photo area */
.about__photo {
    position: relative;
}

.about__photo-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-lg);
}

/* Subtle inner edge highlight */
.about__photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 var(--glass-highlight);
    pointer-events: none;
}

.about__photo-img,
.about__photo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about__photo-placeholder {
    background: linear-gradient(160deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.about__photo-placeholder svg {
    width: 75%;
    height: auto;
    opacity: 0.15;
}

/* Stats ribbon */
.about__stats {
    position: absolute;
    bottom: -24px;
    left: 24px;
    right: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about__stat {
    text-align: center;
    padding: 20px 12px;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--glass-border);
    transition: background var(--duration-fast) ease;
}

.about__stat:last-child {
    border-right: none;
}

.about__stat:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.about__stat:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about__stat:hover {
    background: rgba(201, 168, 76, 0.06);
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: -0.02em;
    line-height: 1;
}

.about__stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* About text */
.about__body .section-header {
    margin-bottom: 28px;
}

.about__body p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.about__body p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   AREAS DE ATUAÇÃO
   ============================================ */
.areas {
    padding: 120px 0;
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-card {
    border-radius: var(--radius-lg);
    padding: 44px 28px 36px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    cursor: default;
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid var(--glass-border);
}

/* Top edge light */
.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

/* Hover gradient overlay */
.area-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    pointer-events: none;
}

.area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.area-card:hover::before {
    left: 5%;
    right: 5%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.area-card:hover::after {
    opacity: 1;
}

/* Featured card */
.area-card--primary {
    border-color: rgba(201, 168, 76, 0.15);
    background: rgba(201, 168, 76, 0.03);
}

.area-card--primary::before {
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.area-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 9px;
    font-weight: 700;
    color: var(--bg-primary);
    background: var(--gold-400);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.area-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.area-card:hover .area-card__icon {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.area-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-400);
    transition: fill var(--duration-fast) ease;
}

.area-card:hover .area-card__icon svg {
    fill: var(--bg-primary);
}

.area-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.area-card__text {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   WHY (Diferenciais)
   ============================================ */
.why {
    padding: 120px 0;
}

.why__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.why__text .section-header {
    margin-bottom: 28px;
}

.why__text .section-desc {
    margin-bottom: 32px;
}

.why__cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-300);
    transition: all var(--duration-fast) ease;
    padding: 4px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.why__cta-inline:hover {
    color: var(--gold-200);
    border-bottom-color: var(--gold-300);
    gap: 12px;
}

.why__cta-inline svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--duration-fast) ease;
}

.why__cta-inline:hover svg {
    transform: translateX(3px);
}

/* Why cards grid */
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-item {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid var(--glass-border);
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.why-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-item__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-400);
}

.why-item__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.why-item__desc {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* ============================================
   CHATBOT CTA
   ============================================ */
.cta {
    padding: 80px 0 120px;
}

.chatbot-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chatbot__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(10, 10, 12, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.chatbot__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-400);
}

.chatbot__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.chatbot__status {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.chatbot__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34C759;
}

.chatbot__messages {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    animation: msgPop 0.4s var(--ease-spring) forwards;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom left;
}

.chat-msg--bot {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-msg--user {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--bg-primary);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    transform-origin: bottom right;
}

.chatbot__options {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-opt-btn {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-300);
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s ease;
    animation: msgPop 0.4s var(--ease-spring) forwards;
    opacity: 0;
}

.chat-opt-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: msgPop 0.4s var(--ease-spring) forwards;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    animation: typingPulse 1.4s infinite ease-in-out both;
}

.chat-typing span:nth-child(1) {
    animation-delay: -0.32s;
}

.chat-typing span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingPulse {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes msgPop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--glass-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--glass-border);
}

.footer__brand {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer__bio {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
}

.footer__social-link:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-tertiary);
    transition: fill var(--duration-fast) ease;
}

.footer__social-link:hover svg {
    fill: var(--bg-primary);
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 13px;
    color: var(--text-tertiary);
    transition: all var(--duration-fast) ease;
}

.footer__links a:hover {
    color: var(--gold-300);
}

.footer__contact-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer__contact-entry svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-400);
    flex-shrink: 0;
}

.footer__contact-entry span,
.footer__contact-entry a {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer__contact-entry a:hover {
    color: var(--gold-300);
}

.footer__bottom {
    padding-top: 28px;
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: -0.01em;
}

.footer__bottom a {
    color: var(--gold-400);
    transition: color var(--duration-fast) ease;
}

.footer__bottom a:hover {
    color: var(--gold-200);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.fab-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp:active {
    transform: scale(0.95);
}

.fab-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* Subtle ring pulse */
.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: fabRing 3s ease-in-out infinite;
}

@keyframes fabRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* ============================================
   SCROLL REVEAL (FLUID)
   ============================================ */
.sr {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(60px) scale(0.98);
    transition: opacity 1.4s var(--ease-out-expo),
        transform 1.4s var(--ease-out-expo),
        filter 1.4s var(--ease-out-expo);
    will-change: opacity, transform, filter;
}

.sr--left {
    transform: translateX(-60px) scale(0.98);
}

.sr--right {
    transform: translateX(60px) scale(0.98);
}

.sr.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translate(0, 0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about__photo-frame {
        max-width: 340px;
        margin: 0 auto;
    }

    .about__stats {
        left: 0;
        right: 0;
    }

    .about__body p {
        text-align: left;
    }

    .areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .why__text .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer__bio {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact-entry {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar__glass {
        padding: 10px 16px;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 24px 24px;
        border-top: none;
        border-left: none;
        border-right: none;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .navbar.is-scrolled .navbar__glass {
        border-radius: 0 0 24px 24px;
        background: rgba(10, 10, 12, 0.85);
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(5, 5, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--duration-normal) var(--ease-out-expo), visibility var(--duration-normal);
        z-index: -1;
    }

    .navbar__nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .navbar__link {
        font-size: 24px;
        font-weight: 600;
        padding: 12px 0;
    }

    .navbar__cta-btn {
        margin-top: 20px;
        font-size: 18px;
        padding: 16px 40px;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero {
        padding: 15dvh 20px 80px;
        min-height: 100dvh;
    }

    .hero__title {
        font-size: clamp(34px, 10vw, 44px);
    }

    .hero__desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0 10px;
    }

    .btn--gold,
    .btn--glass {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    section {
        padding: 80px 0;
    }

    .about {
        padding: 80px 0;
    }

    .about__grid {
        gap: 48px;
    }

    .areas {
        padding: 80px 0;
    }

    .areas__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .area-card {
        padding: 32px 24px;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about__stats {
        grid-template-columns: 1fr;
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
        border-radius: var(--radius-md);
        box-shadow: none;
        border: 1px solid var(--glass-border);
    }

    .about__stat {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 24px;
    }

    .about__stat:last-child {
        border-bottom: none;
    }

    .cta__card {
        padding: 48px 20px;
        margin: 0 -10px;
        /* pull out of container padding slightly */
    }

    .fab-whatsapp {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }

    .fab-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   WHATSAPP MODAL
   ============================================ */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.wa-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.wa-modal__card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.5s var(--ease-spring);
    box-shadow: var(--glass-shadow-lg);
    overflow: hidden;
}

.wa-modal.is-active .wa-modal__card {
    transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
    .navbar__logo-img {
        height: 70px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero {
        padding-top: 130px;
    }
}