/* style.css - FOTOARCEE | Versão otimizada para performance */
/* Otimizações: GPU acceleration, contain, backdrop-filter controlado, will-change minimal */
/* ===== CORREÇÃO MOBILE: INTRO - FOTOARCEE NUNCA QUEBRA E TAMANHO AJUSTADO ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ========== VARIÁVEIS ========== */
:root {
    --primary-gold: #CDC2B1;
    --bg-dark: #0a0a0a;
    --es-bg: #0c0c0e;
    --es-bg-2: #111116;
    --es-bg-card: #16161c;
    --es-border: rgba(255,255,255,0.07);
    --es-gold: #b5a48a;
    --es-gold-lt: #d4c5ae;
    --es-blue: #3a6ea8;
    --es-blue-lt: #5b8ecf;
    --es-green: #2d7a5f;
    --es-green-lt: #3da37f;
    --es-text: #e8e4de;
    --es-muted: #7a7870;
    --es-italic: 'Cormorant Garamond', Georgia, serif;
    --es-sans: 'Montserrat', sans-serif;
    --es-display: 'Syne', sans-serif;
}

/* ========== RESET GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    cursor: auto !important;
}

.custom-cursor,
.custom-cursor-dot {
    display: none !important;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10000;
    contain: layout style;
}
.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--es-gold), var(--es-gold-lt));
    transition: width 0.08s linear;
    will-change: width;
}

/* ========== ANIMAÇÕES SCROLL (GPU) ========== */
.es-process__step {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    backface-visibility: hidden;
}
.animate-in {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* ========== NAVBAR ========== */
.tesla-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    transform: translateY(-100%) translateZ(0);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    will-change: transform;
}
.tesla-nav.scrolled {
    transform: translateY(0) translateZ(0);
}
.nav-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    background-clip: text;
    color: transparent;
    z-index: 1001;
    white-space: nowrap; /* CORREÇÃO: impede quebra do texto em qualquer tela */
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--es-gold), var(--es-gold-lt));
    transition: width 0.4s;
}
.nav-links a:hover::before { width: 100%; }
.nav-links a:hover { color: var(--es-gold); }

/* ===== MENU MOBILE (HAMBURGUER) ===== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    position: relative;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    .tesla-nav .mobile-menu-btn span {
        background-color: #000 !important;
    }
    .tesla-nav.scrolled .mobile-menu-btn span {
        background-color: #000 !important;
    }
}

/* ========== HERO (GPU) ========== */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 50px;
    overflow: hidden;
    transform: translateZ(0);
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: translateZ(0);
}
.hero-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 20;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #7e7c7c 100%);
    background-clip: text;
    color: transparent;
    pointer-events: none;
    white-space: nowrap;
}
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    z-index: -3;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: -1;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    padding: 3px 10px 3px 3px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
.tag-new {
    background: #fff;
    color: #000;
    padding: 2px 6px;
    font-weight: 700;
    font-size: 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    margin-right: 8px;
}
.tag-text { color: #fff; font-size: 0.7rem; }
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-gold);
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-sub {
    font-family: var(--es-italic);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.hero-desc {
    max-width: 520px;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 35px;
}
.cta-main {
    display: flex;
    align-items: center;
    width: fit-content;
    background: rgba(35,35,35,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 6px 6px 6px 30px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}
.cta-main:hover {
    background: rgba(50,50,50,0.9);
    border-color: rgba(255,255,255,0.3);
}
.cta-icon-circle {
    background: #d1c4b1;
    color: #000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
}
.cta-main:hover .cta-icon-circle { transform: translateX(3px); }
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    z-index: 2;
}
.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--es-gold), transparent);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.3); opacity: 0.5; }
}

/* ========== SEÇÃO NÚMEROS ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.section-padding { padding: 120px 0; background-color: #fff; color: #0a0a0a; }
.numbers-grid { display: flex; gap: 48px; align-items: center; }
.numbers-image { flex: 1; max-width: 440px; border-radius: 4px; overflow: hidden; }
.numbers-image img { width: 100%; display: block; }
.numbers-content { flex: 1; padding-top: 24px; }
.section-label { display: flex; gap: 4px; font-weight: 500; font-size: 16px; margin-bottom: 24px; color: #0a0a0a; }
.section-title { font-family: "Inter", sans-serif; font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; font-size: clamp(48px,5vw,70px); }
.numbers-desc { font-size: 1.25rem; line-height: 1.5; font-weight: 500; color: #1f1f1f; max-width: 90%; margin: 24px 0 40px; }
.stats-row { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item h3 { font-family: "Inter", sans-serif; font-size: 50px; font-weight: 800; letter-spacing: -5.2px; }
.stat-item p { font-size: 18px; font-weight: 500; margin-top: 4px; }

/* ========== PROCESS SECTION ========== */
.es-process {
    position: relative;
    padding: 140px 80px;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 10;
    transform: translateZ(0);
}
.es-process__video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.es-process__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}
.es-process__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}
.es-process__inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 3; }
.es-process__header { margin-bottom: 80px; text-align: center; }
.es-label-group { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; justify-content: center; }
.es-label-line { width: 32px; height: 1px; background: var(--es-gold); }
.es-label-text { font-family: var(--es-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--es-gold); }
.es-section-title { font-family: var(--es-sans); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.1; color: var(--es-text); text-align: center; }
.es-section-title em { font-family: var(--es-italic); font-style: italic; font-weight: 300; color: var(--es-gold-lt); }
.es-process-sub { text-align: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; max-width: 550px; margin: 20px auto 0; }
.es-process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.es-process__step {
    background: rgba(20,20,25,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.2,0.9,0.4,1.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}
.es-process__step:hover {
    transform: translateY(-12px) translateZ(0);
    border-color: rgba(181,164,138,0.5);
    background: rgba(25,25,32,0.95);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.es-process__step-number {
    font-family: var(--es-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--es-gold);
    margin-bottom: 15px;
    display: inline-block;
    padding-left: 30px;
    position: relative;
}
.es-process__step-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--es-gold);
    transform: translateY(-50%);
    transition: width 0.4s;
}
.es-process__step:hover .es-process__step-number::before { width: 28px; }
.es-process__step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(181,164,138,0.2), rgba(181,164,138,0.08));
    border: 1px solid rgba(181,164,138,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s;
}
.es-process__step-icon i {
    font-size: 1.8rem;
    color: var(--es-gold-lt);
    transition: transform 0.4s;
}
.es-process__step:hover .es-process__step-icon {
    background: linear-gradient(135deg, rgba(181,164,138,0.3), rgba(181,164,138,0.15));
    border-color: rgba(181,164,138,0.7);
    transform: scale(1.05);
}
.es-process__step:hover .es-process__step-icon i { transform: scale(1.1); }
.es-process__step h3 {
    font-family: var(--es-sans);
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.es-process__step:hover h3 { color: var(--es-gold-lt); }
.es-process__step p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.es-process__step-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--es-gold), transparent);
    transition: width 0.5s;
}
.es-process__step:hover .es-process__step-line { width: 60px; }

/* ========== PROYECTOS GRID ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 3rem 4rem;
}
.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateZ(0);
    contain: layout paint;
}
.project-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.02) translateZ(0);
}
.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0.8;
}
.project-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
    min-height: 180px;
}
.project-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.4;
}
.project-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.2rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    font-family: var(--es-display), 'Syne', sans-serif;
}
.project-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    margin: 0.25rem 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 90%;
    opacity: 0.9;
}
.project-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--es-sans), 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 0.5rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}
.project-button:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}
.project-card:nth-child(1), .project-card:nth-child(3) { height: 630px; grid-row: span 2; }
.project-card:nth-child(2), .project-card:nth-child(4), .project-card:nth-child(5), .project-card:nth-child(6) { height: 300px; }
@media (max-width: 1200px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); padding: 0 2rem 4rem; }
    .project-card:nth-child(1), .project-card:nth-child(3) { height: 500px; }
    .project-card:nth-child(2), .project-card:nth-child(4), .project-card:nth-child(5), .project-card:nth-child(6) { height: 280px; }
}
@media (max-width: 768px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 0 1rem 3rem; }
    .project-card { height: 300px !important; grid-row: span 1 !important; }
    .project-title { font-size: 1.3rem; }
    .project-content p { font-size: 0.75rem; }
    .project-label { display: none; }
}
@media (max-width: 480px) {
    .projects-grid { grid-template-columns: 1fr; gap: 0.75rem; padding: 0 0.75rem 2rem; }
    .project-title { font-size: 1.2rem; }
}

/* ========== BUCKLER 360 ========== */
.section_ecossistema {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: #f6f3ef;
    font-family: "Inter", sans-serif;
}
.section_ecossistema .container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}
.ecosystem-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.subhead-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: #1b1b1b;
    text-transform: uppercase;
}
.subhead-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbbca8;
}
.ecosystem-title {
    font-size: 4rem;
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
}
.ecosystem-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
}
.ecosystem-slider::-webkit-scrollbar { display: none; }
.ecosystem-card {
    position: relative;
    flex: 0 0 auto;
    min-width: calc(33.333% - 0.7rem);
    width: calc(33.333% - 0.7rem);
    aspect-ratio: 3 / 4;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s, box-shadow 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateZ(0);
}
.ecosystem-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.ecosystem-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.ecosystem-card:hover img { transform: scale(1.08); }
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.5) 60%, transparent);
}
.card-content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-transform: uppercase;
}
.hover-desc, .card-wa-btn {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
}
.ecosystem-card:hover .hover-desc {
    opacity: 1;
    max-height: 80px;
    margin-top: 12px;
}
.ecosystem-card:hover .card-wa-btn {
    opacity: 1;
    max-height: 60px;
    margin-top: 16px;
    pointer-events: auto;
}
.card-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: var(--es-sans);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 10px 16px;
    border-radius: 40px;
    width: fit-content;
    pointer-events: none;
    cursor: pointer;
}
.card-wa-btn:hover {
    background: #20b957;
    transform: scale(1.02);
}
.buckler-nav {
    text-align: right;
    margin-top: 1rem;
}
.buckler-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.75rem;
    color: #fff;
    transition: all 0.3s;
}
.buckler-arrow:hover {
    background: #cdc2b1;
    border-color: #cdc2b1;
    color: #000;
    transform: scale(1.05);
}
.buckler-arrow svg { width: 22px; height: 22px; stroke: currentColor; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e4dfd7;
}
.dot.active { background: #cbbca8; }
.circle-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.circle-1 {
    width: 580px;
    height: 580px;
    right: -220px;
    top: -120px;
    border: 1px solid rgba(205,194,177,0.35);
}
.circle-2 {
    width: 760px;
    height: 760px;
    left: -380px;
    bottom: -420px;
    border: 1px solid rgba(205,194,177,0.18);
}
@media (max-width: 991px) {
    .ecosystem-title { font-size: 3rem; }
    .ecosystem-card { min-width: calc(50% - 0.5rem); width: calc(50% - 0.5rem); }
}
@media (max-width: 767px) {
    .section_ecossistema { padding: 4rem 0; }
    .section_ecossistema .container { padding: 0 1rem; }
    .ecosystem-title { font-size: 2.2rem; }
    .ecosystem-card { min-width: 85vw; width: 85vw; }
    .card-content h3 { font-size: 1.4rem; }
    .buckler-arrow { width: 40px; height: 40px; }
    .buckler-arrow svg { width: 18px; height: 18px; }
}

/* ========== TESTIMONIALS ========== */
.es-testimonials {
    position: relative;
    padding: 120px 0;
    background: var(--es-bg);
    overflow: hidden;
    z-index: 5;
}
.es-testimonials__bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(181,164,138,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.es-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.es-testimonials__header { text-align: center; margin-bottom: 64px; }
.es-testimonials-sub {
    font-family: var(--es-italic);
    font-size: 1rem;
    color: var(--es-muted);
    max-width: 520px;
    margin: 18px auto 0;
}
.es-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 56px;
}
.es-testi-card {
    background: rgba(22,22,28,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--es-border);
    border-radius: 28px;
    padding: 32px 28px;
    transition: all 0.4s;
    transform: translateZ(0);
}
.es-testi-card:hover {
    transform: translateY(-8px) translateZ(0);
    border-color: rgba(181,164,138,0.4);
    background: rgba(28,28,36,0.85);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.4);
}
.es-testi-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    color: var(--es-gold-lt);
}
.es-testi-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}
.es-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}
.es-testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--es-gold);
}
.es-testi-author strong {
    display: block;
    font-family: var(--es-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--es-text);
}
.es-testi-author span {
    font-size: 0.7rem;
    color: var(--es-muted);
    font-family: var(--es-italic);
}
.es-testimonials__footer { text-align: center; }
.es-testi-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(181,164,138,0.4);
    border-radius: 60px;
    padding: 12px 32px;
    font-family: var(--es-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--es-gold-lt);
    transition: all 0.3s;
}
.es-testi-cta:hover {
    background: var(--es-gold);
    border-color: var(--es-gold);
    color: #0a0a0a;
}
.es-testi-cta:hover i { transform: translateX(5px); }
@media (max-width: 900px) {
    .es-testimonials__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .es-testimonials { padding: 80px 0; }
    .es-testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
}
.es-testi-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s forwards;
    animation-delay: calc(var(--order,0) * 0.1s);
}
.es-testimonials__grid .es-testi-card:nth-child(1) { --order: 1; }
.es-testimonials__grid .es-testi-card:nth-child(2) { --order: 2; }
.es-testimonials__grid .es-testi-card:nth-child(3) { --order: 3; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ========== SELO VERIFICADO ========== */
.es-testi-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.es-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -4px;
    background: #0c0c0e;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181,164,138,0.4);
}
.verified-badge i {
    font-size: 11px;
    color: var(--es-gold, #b5a48a);
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

/* ========== EL ESTUDIO ========== */
.es-studio {
    background: var(--es-bg) !important;
    padding: 120px 0;
    position: relative;
    z-index: 5;
}
.es-studio__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.es-studio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}
.es-studio__gallery {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.es-studio__gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.9);
    transition: all 0.5s;
    border: 1px solid rgba(181,164,138,0.2);
}
.es-studio__gallery img:hover {
    transform: scale(1.02);
    filter: brightness(1);
    border-color: var(--es-gold);
}
.es-studio__info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--es-text);
    margin-bottom: 24px;
}
.es-studio__info em {
    font-family: var(--es-italic);
    font-style: italic;
    color: var(--es-gold-lt);
}
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--es-gold);
    border-radius: 60px;
    padding: 12px 28px;
    color: var(--es-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    margin-top: 12px;
}
.cta-secondary:hover {
    background: var(--es-gold);
    color: #000;
}
@media (max-width: 900px) {
    .es-studio__grid { grid-template-columns: 1fr; gap: 40px; }
    .es-studio__gallery img { height: 200px; }
}
@media (max-width: 580px) {
    .es-studio__gallery { grid-template-columns: 1fr; }
}

/* ========== CONTACTO ========== */
.es-contact {
    background: var(--es-bg) !important;
    padding: 120px 80px;
    position: relative;
    z-index: 10;
}
.es-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}
.es-contact__desc {
    color: var(--es-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 44px;
    max-width: 420px;
}
.es-contact__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}
.es-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.es-contact__item-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--es-bg-card);
    border: 1px solid var(--es-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.es-contact__item-icon i {
    font-size: 1rem;
    color: var(--es-gold);
}
.es-contact__item-icon .fa-whatsapp { color: #25D366; }
.es-contact__item strong {
    display: block;
    font-family: var(--es-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--es-text);
    margin-bottom: 4px;
}
.es-contact__item span, .es-contact__item a {
    font-size: 0.88rem;
    color: var(--es-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.es-contact__item a:hover { color: var(--es-gold-lt); cursor: pointer; }
.es-contact__socials { display: flex; gap: 10px; }
.es-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--es-bg-card);
    border: 1px solid var(--es-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--es-muted);
    font-size: 1rem;
    transition: all 0.3s;
}
.es-social-btn:hover {
    background: rgba(181,164,138,0.1);
    border-color: rgba(181,164,138,0.3);
    color: var(--es-gold-lt);
    transform: translateY(-3px);
}
.es-social-btn--wa:hover {
    background: rgba(37,211,102,0.12);
    border-color: rgba(37,211,102,0.3);
    color: #25D366;
}
.es-contact__map-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.es-map-container {
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--es-border);
    filter: grayscale(60%) brightness(0.85);
    transition: filter 0.5s;
}
.es-map-container:hover {
    filter: grayscale(0%) brightness(0.9);
}
.es-map-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 4px;
    font-family: var(--es-sans);
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}
.es-map-wa-btn:hover {
    background: #20b957;
    transform: translateY(-2px);
}
@media (max-width: 900px) {
    .es-contact__inner { grid-template-columns: 1fr; }
    .es-contact { padding: 80px 40px; }
}
@media (max-width: 768px) {
    .es-contact { padding: 80px 20px; }
}

/* ========== FOOTER ========== */
.es-footer {
    background: var(--es-bg) !important;
    border-top: 1px solid var(--es-border);
    padding: 60px 80px;
    position: relative;
    z-index: 10;
}
.es-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.es-footer__logo {
    font-family: var(--es-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--es-text);
    display: block;
    margin-bottom: 8px;
}
.es-footer__brand p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--es-muted);
}
.es-footer__links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.es-footer__links a {
    text-decoration: none;
    font-family: var(--es-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--es-muted);
    transition: color 0.3s;
}
.es-footer__links a:hover { color: var(--es-gold-lt); }
.es-footer__copy {
    font-size: 0.73rem;
    color: rgba(122,120,112,0.5);
}
@media (max-width: 900px) {
    .es-footer__inner { flex-direction: column; text-align: center; }
    .es-footer__links { justify-content: center; }
}
@media (max-width: 768px) {
    .es-footer { padding: 60px 20px; }
}

/* ========== BOTÃO WHATSAPP FLUTUANTE ========== */
.es-float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37,211,102,0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: es-wa-pulse 2.5s infinite;
}
.es-float-wa i { color: #fff; font-size: 1.6rem; }
.es-float-wa__tooltip {
    position: absolute;
    right: 70px;
    background: rgba(12,12,14,0.92);
    border: 1px solid var(--es-border);
    backdrop-filter: blur(12px);
    color: #fff;
    font-family: var(--es-sans);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.es-float-wa:hover .es-float-wa__tooltip {
    opacity: 1;
    transform: translateX(0);
}
.es-float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37,211,102,0.45);
    animation: none;
}
@keyframes es-wa-pulse {
    0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0.08); }
}
@media (max-width: 768px) {
    .es-float-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .es-float-wa i { font-size: 1.4rem; }
    .es-float-wa__tooltip { display: none; }
}

/* ========== MODAL WHATSAPP ========== */
.es-modal-wa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.es-modal-wa__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    cursor: pointer;
}
.es-modal-wa__container {
    position: relative;
    max-width: 520px;
    width: 90%;
    background: linear-gradient(145deg, #14141a, #0c0c10);
    border: 1px solid rgba(181,164,138,0.3);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    animation: modalZoomIn 0.4s forwards;
}
@keyframes modalZoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
.es-modal-wa__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--es-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
}
.es-modal-wa__close:hover {
    color: var(--es-gold-lt);
    transform: scale(1.1);
}
.es-modal-wa__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.es-modal-wa__icon i { font-size: 2.8rem; color: #fff; }
.es-modal-wa__title {
    font-family: var(--es-sans);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--es-text);
    margin-bottom: 12px;
}
.es-modal-wa__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--es-gold), var(--es-gold-lt));
    margin: 16px auto 24px;
}
.es-modal-wa__text {
    font-family: var(--es-italic);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
}
.es-modal-wa__bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    padding: 18px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.es-modal-wa__bullets span {
    font-size: 0.85rem;
    font-family: var(--es-sans);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}
.es-modal-wa__bullets i { color: var(--es-gold); width: 22px; }
.es-modal-wa__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-family: var(--es-sans);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 28px;
    border-radius: 60px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}
.es-modal-wa__btn:hover {
    background: #20b957;
    transform: translateY(-2px);
}
.es-modal-wa__footnote {
    font-size: 0.7rem;
    color: var(--es-muted);
    margin-top: 20px;
}
@media (max-width: 580px) {
    .es-modal-wa__container { padding: 30px 20px; width: 92%; }
    .es-modal-wa__title { font-size: 1.4rem; }
}

/* ========== BOTTOM SHEET MOBILE ========== */
.es-bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(12,12,14,0.98);
    backdrop-filter: blur(20px);
    border-radius: 28px 28px 0 0;
    padding: 24px 24px 32px;
    z-index: 10001;
    transition: bottom 0.4s;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.es-bottom-sheet.active { bottom: 0; }
.es-bottom-sheet__handle {
    width: 40px;
    height: 4px;
    background: var(--es-muted);
    border-radius: 2px;
    margin: 0 auto 24px;
    cursor: pointer;
}
.es-bottom-sheet__content h3 {
    font-family: var(--es-sans);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--es-text);
}
.es-bottom-sheet__wa, .es-bottom-sheet__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--es-sans);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 12px;
}
.es-bottom-sheet__wa { background: #25D366; color: #fff; }
.es-bottom-sheet__call {
    background: rgba(255,255,255,0.1);
    color: var(--es-text);
    border: 1px solid var(--es-border);
}
@media (min-width: 769px) { .es-bottom-sheet { display: none; } }

/* ========== MODAL DE PROYECTOS ========== */
.project-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
.project-modal.active { display: flex; }
.project-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(14px);
    cursor: pointer;
}
.project-modal__container {
    position: relative;
    max-width: 1280px;
    width: 90%;
    background: #0c0c0e;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    animation: modalSlideUp 0.5s;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.project-modal__close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--es-text);
    font-size: 1.2rem;
}
.project-modal__close:hover {
    background: rgba(181,164,138,0.2);
    border-color: var(--es-gold);
    color: var(--es-gold);
}
.project-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.project-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.project-modal__content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #0f0f12, #08080a);
}
.project-modal__title {
    font-family: var(--es-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--es-text);
    margin-bottom: 24px;
}
.project-modal__title span {
    font-family: var(--es-italic);
    color: var(--es-gold);
}
.project-modal__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(232,228,222,0.85);
    margin-bottom: 32px;
}
.project-modal__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--es-gold), transparent);
    margin-bottom: 28px;
}
.project-modal__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    border-radius: 60px;
    padding: 14px 32px;
    font-family: var(--es-sans);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s;
}
.project-modal__cta:hover {
    background: #20b957;
    transform: translateY(-3px);
}
@media (max-width: 900px) {
    .project-modal__grid { grid-template-columns: 1fr; }
    .project-modal__image { max-height: 460px; }
    .project-modal__content { padding: 32px 28px; }
    .project-modal__title { font-size: 2rem; }
}
@media (max-width: 580px) {
    .project-modal__container { width: 95%; border-radius: 24px; }
    .project-modal__content { padding: 24px 20px; }
    .project-modal__title { font-size: 1.7rem; }
    .project-modal__close { top: 16px; right: 16px; width: 36px; height: 36px; }
}

/* ========== TÍTULO PREMIUM ========== */
.awards-title {
    position: relative;
    padding: 5rem 3rem 4rem;
    text-align: center;
    font-family: 'Syne', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #cdc2b1 80%);
    background-clip: text;
    color: transparent;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    line-height: 1.1;
}
.awards-title span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    background: linear-gradient(135deg, #e6dccf, #b5a48a);
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-left: 0.2em;
}
.awards-title::before, .awards-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--es-gold), transparent);
}
.awards-title::before { top: 2rem; }
.awards-title::after { bottom: 2rem; }
@media (max-width: 768px) {
    .awards-title { padding: 3rem 1.5rem 2rem; }
    .awards-title::before, .awards-title::after { width: 50px; }
    .awards-title::before { top: 1rem; }
    .awards-title::after { bottom: 1rem; }
}

/* ========== SCHEDULE LIST ========== */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.schedule-list span {
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--es-muted, #7a7870);
    font-family: 'Inter', sans-serif;
}
.schedule-list .closed {
    opacity: 0.8;
    color: rgba(232,228,222,0.7);
}
@media (max-width: 580px) {
    .schedule-list span { font-size: 0.8rem !important; line-height: 1.5 !important; }
    .schedule-list { gap: 4px; }
}

/* ========== INTRO PREMIUM ========== */
.intro-loader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1), visibility 1.2s;
}
.intro-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.intro-noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    mix-blend-mode: soft-light;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}
.intro-center {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.intro-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: scaleX(0);
}
.intro-logo-wrap { text-align: center; }
.intro-small {
    display: block;
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}
.intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: #fff;
    flex-wrap: nowrap;
}
.intro-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(120px) rotate(8deg) scale(0.8);
    filter: blur(12px);
    white-space: nowrap;
}
.intro-tag {
    margin-top: 22px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    opacity: 0;
    transform: translateY(20px);
}
.intro-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,164,138,0.16), rgba(181,164,138,0.06) 30%, transparent 70%);
    filter: blur(60px);
    animation: introPulse 4s infinite;
}
@keyframes introPulse {
    0%,100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 1; }
}

/* ===== CORREÇÃO MOBILE: INTRO - FOTOARCEE NUNCA QUEBRA E TAMANHO AJUSTADO ===== */
@media (max-width: 768px) {
    .intro-logo {
        flex-wrap: nowrap !important;      /* impede quebra de linha */
        white-space: nowrap !important;    /* reforça a não quebra */
        gap: 0.1rem;                       /* reduz espaço entre letras */
    }
    .intro-char {
        font-size: clamp(1.4rem, 6vw, 2.2rem) !important; /* tamanho menor e fluido */
        letter-spacing: -0.02em;           /* aproxima levemente as letras */
    }
    .intro-tag {
        font-size: 0.55rem;
        letter-spacing: 2px;
        padding: 0 5px;
    }
    .intro-small {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }
    .intro-center {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }
    .intro-line { display: none; }
    .intro-glow {
        width: 90%;
        height: 90%;
        max-width: 350px;
        max-height: 350px;
        filter: blur(35px);
    }
}

@media (max-width: 480px) {
    .intro-char {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        gap: 0.05rem;
    }
    .intro-tag {
        font-size: 0.45rem;
        letter-spacing: 1px;
    }
    .intro-small {
        font-size: 0.45rem;
        letter-spacing: 2px;
    }
}

/* ========== RESPONSIVE GERAIS ========== */
@media (max-width: 1100px) {
    .es-process, .es-contact, .es-footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    .es-process__steps { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}
@media (max-width: 809px) {
    .container { padding: 0 24px; }
    .numbers-grid { flex-direction: column; }
    .numbers-image { max-width: 100%; }
    .stats-row { gap: 30px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(17,17,22,0.7);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.6s;
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        color: var(--es-text) !important;
        font-family: 'Syne', sans-serif;
        font-size: 2rem;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s, transform 0.4s;
        padding: 16px !important;
        display: inline-block;
        width: auto;
    }
    .nav-links.active a { opacity: 1; transform: translateY(0); }
    .nav-links.active a:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.35s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.45s; }
    .nav-container { padding: 0 20px; }
    .nav-logo { font-size: 1rem; z-index: 1001; }
    .hero-wrapper {
        padding: calc(20px + env(safe-area-inset-top)) 20px 20px;
        text-align: center;
    }
    .hero-wrapper .main-content { align-items: center; }
    .promo-badge { margin: 0 auto 25px; }
    h1 { font-size: 2.5rem; line-height: 1; letter-spacing: -1px; }
    .hero-sub { font-size: 0.9rem; }
    .hero-desc { max-width: 100%; font-size: 0.9rem; padding: 0 10px; text-align: center; }
    .cta-main { font-size: 1rem; padding: 12px 20px; min-height: 48px; }
    .scroll-indicator { display: none; }
    .es-process, .es-contact, .es-footer { padding: 80px 20px; }
    .es-process__steps { grid-template-columns: 1fr; gap: 20px; }
    .tesla-nav { padding-top: env(safe-area-inset-top); height: calc(80px + env(safe-area-inset-top)); }
    h1 { font-size: 42px !important; line-height: 1.1; }
    .hero-desc { font-size: 1.1rem; line-height: 1.6; }
    .cta-main { font-size: 1.15rem; padding: 12px 12px 12px 35px; border-radius: 16px; }
    .cta-icon-circle { width: 50px; height: 50px; }
    .hero-wrapper { padding: 20px; }

    /* CORREÇÕES MOBILE - CARDS DE SERVIÇOS */
    .ecosystem-card .hover-desc,
    .ecosystem-card .card-wa-btn {
        opacity: 1 !important;
        max-height: 200px !important;
        margin-top: 12px !important;
        pointer-events: auto !important;
        transition: none !important;
    }

    .card-wa-btn {
        padding: 12px 18px !important;
        font-size: 0.85rem !important;
        width: 100% !important;
        justify-content: center !important;
        background: #25D366 !important;
        border-radius: 50px !important;
        margin-top: 8px !important;
    }

    .hover-desc {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 4px !important;
    }

    .buckler-arrow {
        width: 52px !important;
        height: 52px !important;
        margin-left: 12px !important;
    }

    .es-map-container {
        height: 280px !important;
    }

    .cta-secondary,
    .es-map-wa-btn,
    .project-button {
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: -0.5px;
    }
    .hero-logo {
        font-size: 0.9rem;
        letter-spacing: -0.5px;
    }
    h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.8rem; }
    .es-section-title { font-size: 1.8rem; }
    .card-wa-btn {
        font-size: 0.75rem !important;
        padding: 10px 12px !important;
    }
    .hover-desc {
        font-size: 0.7rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ========== UNIFICAÇÃO DE BACKGROUND ========== */
.es-testimonials,
.es-studio,
.es-contact,
.es-footer {
    background: var(--es-bg) !important;
    position: relative;
    z-index: 5;
}
.es-studio { background-image: none !important; }
.es-contact { background-image: none !important; }
.es-footer::after { display: none; }
.es-studio::before,
.es-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(181,164,138,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.es-studio__inner,
.es-contact__inner,
.es-footer__inner {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .es-studio, .es-contact, .es-footer { background: var(--es-bg) !important; }
}

/* Alinhar à esquerda o título e a descrição na seção de contato */
.es-contact .es-section-title,
.es-contact .es-contact__desc {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.es-contact .es-label-group {
    justify-content: flex-start;
    margin-bottom: 1rem;
}