/* ============================================
   Jorge Oliveira & Associados
   Premium Redesign — Glassmorphism + Editorial
   ============================================ */

/* CSS Variables */
:root {
    /* Dark Palette */
    --bg-primary: #080E1A;
    --bg-secondary: #0C1425;
    --bg-card: #101B30;
    --bg-elevated: #152240;

    /* Accent — Warm Gold */
    --gold: #C9A96E;
    --gold-light: #DFC08A;
    --gold-dark: #A8884F;
    --gold-glow: rgba(201, 169, 110, 0.25);

    /* Glass */
    --glass-bg: rgba(16, 27, 48, 0.6);
    --glass-border: rgba(201, 169, 110, 0.1);
    --glass-hover: rgba(201, 169, 110, 0.18);

    /* Text */
    --text-primary: #F1ECE4;
    --text-secondary: #A0A8B8;
    --text-muted: #6B7590;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A96E 0%, #DFC08A 50%, #A8884F 100%);
    --gradient-bg: linear-gradient(180deg, #080E1A 0%, #0C1425 50%, #080E1A 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(16, 27, 48, 0.8) 0%, transparent 60%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(201, 169, 110, 0.06) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(21, 34, 64, 0.6) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(201, 169, 110, 0.04) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(12, 20, 37, 0.5) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(201, 169, 110, 0.05) 0px, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.15);
    --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.08);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.3s var(--ease-smooth);
    --t-medium: 0.5s var(--ease-out);
    --t-slow: 0.7s var(--ease-out);

    /* Layout */
    --container-max: 1200px;
    --section-py: 130px;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ============================================ RESET ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium text selection */
::selection {
    background: rgba(201, 169, 110, 0.25);
    color: var(--gold-light);
}

::-moz-selection {
    background: rgba(201, 169, 110, 0.25);
    color: var(--gold-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================ GLOBAL TYPOGRAPHY ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header .section-tag::before {
    display: none;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    opacity: 0.4;
}

.section-divider .line {
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.section-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ============================================ ANIMATIONS ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes meshMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
    }

    25% {
        background-position: 20% 30%, 80% 20%, 10% 70%, 90% 60%, 30% 40%;
    }

    50% {
        background-position: 40% 10%, 60% 40%, 20% 50%, 80% 80%, 60% 20%;
    }

    75% {
        background-position: 10% 40%, 90% 10%, 30% 80%, 70% 50%, 40% 60%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================ PRELOADER ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    height: 75px;
    margin: 0 auto 30px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    animation: loading 1.5s ease forwards;
}

/* ============================================ HEADER — GLASSMORPHISM ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--t-medium);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(8, 14, 26, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: all var(--t-fast);
}

.header.scrolled .logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(241, 236, 228, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--t-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--t-fast);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.35);
}

.btn-outline:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-header {
    padding: 10px 22px;
    font-size: 0.75rem;
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 8px;
}

.btn-header:hover {
    background: rgba(201, 169, 110, 0.2);
    border-color: var(--gold);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.85rem;
    border-radius: var(--radius);
}

/* ============================================ HERO — CINEMATOGRAPHIC ============================================ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 30px;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    background-size: 200% 200%;
    animation: meshMove 20s ease infinite;
    opacity: 0.8;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(8, 14, 26, 0.9) 0%, transparent 60%),
        linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 6s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 110, 0.12);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(21, 34, 64, 0.8);
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(201, 169, 110, 0.08);
    top: 60%;
    left: 40%;
    animation-delay: 1.5s;
}

/* Vertical guide lines */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 110, 0.06) 30%, rgba(201, 169, 110, 0.06) 70%, transparent 100%);
}

.hero-lines .line:nth-child(1) {
    left: 20%;
}

.hero-lines .line:nth-child(2) {
    left: 50%;
}

.hero-lines .line:nth-child(3) {
    left: 80%;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50px;
    margin-bottom: 22px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-badge .separator {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-badge i {
    font-size: 0.9rem;
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.3vw, 3.7rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .thin {
    display: block;
    font-weight: 300;
    color: var(--text-primary);
}

.hero-title .bold {
    display: block;
    font-weight: 700;
    color: var(--gold);
    font-style: italic;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 24px;
}

/* Hero features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    width: 440px;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 14, 26, 0.6) 100%);
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(8, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius);
    padding: 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: var(--shadow-md);
}

.badge-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.badge-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    pointer-events: none;
}



/* ============================================ STATS ============================================ */
.stats {
    margin-top: 100px;
    padding: 50px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(201, 169, 110, 0.12);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.7;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================ ABOUT ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center top;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(8, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge .badge-number {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-badge .badge-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.about-content {
    position: relative;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: 1rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-signature {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.signature-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.signature-info span {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ============================================ AREAS — GLASS CARDS ============================================ */
.areas {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    transition: all var(--t-medium);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-medium);
}

.area-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--t-medium);
    pointer-events: none;
}

.area-card:hover {
    transform: translateY(-3px);
    border-color: var(--glass-hover);
    box-shadow: var(--shadow-gold);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover::after {
    opacity: 1;
}

.area-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 16px;
    margin-bottom: 28px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all var(--t-medium);
}

.area-card:hover .area-icon {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.25);
}

.area-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.area-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
}

.area-link i {
    transition: transform var(--t-fast);
    font-size: 0.75rem;
}

.area-link:hover i {
    transform: translateX(6px);
}

/* Secondary Areas */
.areas-secondary {
    margin-top: 60px;
    text-align: center;
}

.areas-secondary .section-tag {
    justify-content: center;
}

.areas-secondary .section-tag::before {
    display: none;
}

.areas-secondary-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.area-secondary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 50px;
    transition: all var(--t-fast);
}

.area-secondary-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
}

.area-secondary-item i {
    color: var(--gold);
    font-size: 1rem;
}

.area-secondary-item span {
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ============================================ TEAM — EDITORIAL ============================================ */
.team {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-medium);
    position: relative;
}

.team-card:hover {
    transform: translateY(-3px);
    border-color: var(--glass-hover);
    box-shadow: var(--shadow-md);
}

.team-photo-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--ease-out);
}

.team-card:hover .team-photo {
    transform: scale(1.02);
}

.team-info {
    padding: 28px 32px 36px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.25;
}

.team-role {
    display: inline-block;
    color: var(--bg-primary);
    background: var(--gradient-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.team-oab {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ============================================ DIFFERENTIALS ============================================ */
.differentials {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.85;
    font-size: 1.02rem;
}

.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.differential-item {
    display: flex;
    gap: 20px;
    padding: 22px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all var(--t-fast);
}

.differential-item:hover {
    border-color: var(--glass-hover);
    background: rgba(16, 27, 48, 0.8);
}

.differential-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.differential-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.differential-text p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Visual card */
.differentials-visual {
    position: relative;
}

.visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.visual-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 24px;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================ TESTIMONIALS ============================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--t-fast);
}

.testimonial-card:hover {
    border-color: var(--glass-hover);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 1.6rem;
    color: var(--gold);
    opacity: 0.5;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-initials {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ============================================ CTA ============================================ */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        var(--bg-secondary);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.85;
    font-size: 1.02rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================ CONTACT ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.85;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 100%;
    overflow: hidden;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 18px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all var(--t-fast);
    max-width: 100%;
    overflow: hidden;
}

.contact-item:hover {
    border-color: var(--glass-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.06);
}

.contact-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-size: 0.92rem;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--gold);
}

.contact-text a:hover {
    color: var(--gold-light);
}

.contact-map {
    height: 100%;
    min-height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* ============================================ FOOTER ============================================ */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.footer-oab {
    display: flex;
    gap: 16px;
}

.footer-oab span {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.7;
}

.footer-links h4,
.footer-areas h4,
.footer-contact h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-areas ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-areas li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-areas a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--t-fast);
}

.footer-links a:hover,
.footer-areas a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
    opacity: 0.7;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-copyright p,
.footer-credits p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-credits a {
    color: var(--gold);
    font-weight: 500;
}

.footer-credits a:hover {
    color: var(--gold-light);
}

/* ============================================ FLOATING BUTTONS ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--t-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-fast);
    z-index: 998;
    font-size: 0.85rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-image-frame {
        width: 320px;
        height: 400px;
    }

    .hero-image-badge {
        left: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .about-grid,
    .differentials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-photo {
        height: 450px;
    }

    .team-grid {
        max-width: 500px;
        margin: 0 auto;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
    }

    /* Mobile Nav — Dark Glass */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: rgba(8, 14, 26, 0.96);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: right var(--t-medium);
        z-index: 1001;
        border-left: 1px solid rgba(201, 169, 110, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 16px 30px;
        color: var(--text-primary);
        letter-spacing: 1.5px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .btn-header {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 120px 0 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-orb-1 {
        width: 250px;
        height: 250px;
    }

    .hero-orb-2,
    .hero-orb-3 {
        display: none;
    }

    /* Section Headers — More compact */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    /* Stats — Clean stacking */
    .stats {
        margin-top: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    /* About */
    .about-photo {
        height: 380px;
    }

    .about-text p {
        font-size: 0.92rem;
    }

    .about-signature {
        margin-top: 25px;
        padding-top: 22px;
    }

    /* Areas — Cards */
    .area-card {
        padding: 32px 22px;
    }

    .area-description {
        font-size: 0.88rem;
    }

    .areas-secondary-grid {
        flex-direction: column;
        align-items: center;
    }

    /* Team — Centered Cards */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .team-photo-wrapper {
        height: auto;
    }

    .team-photo {
        height: auto;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-bio {
        font-size: 0.88rem;
    }

    /* Differentials */
    .differential-item {
        padding: 22px 24px;
    }

    .differential-text p {
        font-size: 0.88rem;
    }

    .visual-card {
        padding: 35px 22px;
    }

    .visual-card h3 {
        font-size: 1.4rem;
    }

    .visual-card p {
        font-size: 0.88rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* CTA — Bold mobile */
    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 0.92rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    /* Contact */
    .contact-item {
        padding: 14px 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .contact-text strong {
        font-size: 0.85rem;
    }

    .contact-text p {
        font-size: 0.82rem;
    }

    .contact-map {
        min-height: 280px;
    }

    /* Footer — Clean stacking */
    .footer {
        padding: 50px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-description {
        font-size: 0.88rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 110px 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.62rem;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .hero-image-frame {
        width: 260px;
        height: 330px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 1.2rem;
    }

    .area-card {
        padding: 28px 20px;
    }

    .team-photo-wrapper {
        height: auto;
    }

    .team-photo {
        height: auto;
    }

    .visual-card {
        padding: 30px 20px;
    }

    .contact-intro {
        font-size: 0.88rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 80px;
        right: 18px;
        width: 42px;
        height: 42px;
    }
}