/* =========================================================
    M&C DEMOLITION - Industrial Construction Theme
    Landing Page - Florida Demolition Services
    ========================================================= */



:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --bg-black: #050505;
    
    --yellow: #F5C400;
    --yellow-light: #FFD633;
    --yellow-dark: #C99A00;
    --black: #0a0a0a;
    --gray: #6B6B6B;
    --gray-light: #A0A0A0;
    --gray-dark: #333333;
    --white: #F5F5F5;
    
    --accent: var(--yellow);
    --border-subtle: rgba(255,255,255,0.06);
    --border-glow: rgba(245,196,0,0.3);
    
    --font-heading: 'New Black Typeface', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
    
    --space-md: 2rem;
    --space-lg: 6rem;
    --space-xl: 10rem;
}

/* ================== BASE ================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; background: var(--bg-dark); -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10000;
    transition: top 0.3s;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Focus Styles for Accessibility */
:focus { outline: 2px solid var(--yellow); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

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

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

.highlight-text {
    color: var(--yellow);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
}

/* ================== ANIMATIONS ================== */
.js-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.js-reveal.in-view { opacity: 1; transform: none; }

.js-stagger-1 { transition-delay: 0.1s; }
.js-stagger-2 { transition-delay: 0.25s; }
.js-stagger-3 { transition-delay: 0.4s; }
.js-stagger-4 { transition-delay: 0.55s; }

/* ================== HEADER ================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-smooth);
    padding: 1.2rem 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
}
#site-header.scrolled {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo { height: 50px; width: auto; transition: transform 0.4s var(--ease-smooth); }
.logo-link:hover .brand-logo { transform: scale(1.03); }

#desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
#desktop-nav a:not(.btn-nav-outline) {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
}
#desktop-nav a:not(.btn-nav-outline):hover { color: var(--yellow); }

.btn-nav-outline {
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 0.7rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
    border-radius: 8px;
}
.btn-nav-outline:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(245,196,0,0.3);
}

/* ================== HERO ================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-black);
}

.hero-bg {
    position: absolute;
    inset: -20px;
    background: 
        linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(13,13,13,0.75) 50%, rgba(5,5,5,0.98) 100%),
        url('./22-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) grayscale(20%);
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .hero-bg {
        background: 
            linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(13,13,13,0.75) 50%, rgba(5,5,5,0.98) 100%),
            url('./22-desktop.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(245,196,0,0.03) 80px, rgba(245,196,0,0.03) 81px),
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(245,196,0,0.03) 80px, rgba(245,196,0,0.03) 81px);
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    padding-top: 80px; /* Space for fixed header overlap */
    padding-bottom: 2rem;
}

.hero-inner-spacer { max-width: 850px; }

.hero-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    text-transform: none;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray-light);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    border-left: 2px solid var(--yellow);
    padding-left: 1.5rem;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-solid-accent {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(245,196,0,0.25);
    border-radius: 8px;
}
.btn-solid-accent:hover {
    transform: translateY(-3px);
    background: var(--yellow-light);
    box-shadow: 0 8px 30px rgba(245,196,0,0.4);
}

.btn-ghost-minimal {
    border: none;
    background: transparent;
    color: var(--white);
    padding: 1rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-smooth);
    border-radius: 8px 8px 0 0;
}
.btn-ghost-minimal:hover {
    border-bottom-color: var(--yellow);
    color: var(--yellow);
    padding-left: 2.2rem;
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(10,10,10,0.7);
}
.ticker-inner {
    display: inline-flex;
    gap: 4rem;
    animation: ticker-loop 40s linear infinite;
}
.ticker-inner span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
@keyframes ticker-loop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.scroll-cue {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.scroll-cue span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-dark);
    border-radius: 12px;
    position: relative;
}
.scroll-cue span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ================== STATS ================== */
#stats {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-darker);
}
#stats {
    padding: 3rem 0;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.stats-grid + .stats-grid {
    margin-top: 1rem;
}
.stat-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(245, 196, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.2);
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    margin-bottom: 0.8rem;
}
.stat-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
}
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.1;
    margin-bottom: 0.15rem;
    text-shadow: 0 0 20px rgba(245, 196, 0, 0.4);
}
.stat-card p {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.15rem;
}
.stat-sub {
    font-size: 0.6rem;
    color: var(--gray-light);
    opacity: 0.7;
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-card { padding: 1rem 0.5rem; min-height: 120px; }
    .stat-num { font-size: 1.3rem; }
    .stat-card p { font-size: 0.6rem; }
}

/* ================== SECTIONS GENERAL ================== */
#stats,
#services,
#process,
#why-us,
#leadership,
#areas,
#contact {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    position: relative;
}

#stats::before,
#services::before,
#process::before,
#why-us::before,
#leadership::before,
#areas::before,
#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('./pattern.png');
    background-repeat: repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 0;
}

#stats .container,
#services .container,
#process .container,
#why-us .container,
#leadership .container,
#areas .container,
#contact .container {
    position: relative;
    z-index: 1;
}

.section-padding { padding: var(--space-xl) 0; }
.section-header { margin-bottom: 4rem; max-width: 700px; }
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gray);
    margin-bottom: 1rem;
}
h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: none;
    margin-bottom: 1rem;
}
.sub-intro {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-top: 1rem;
    max-width: 550px;
}

/* ================== SERVICES ================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    max-width: 100%;
}
.service-card {
    background: var(--bg-dark);
    padding: 3.5rem 2.5rem;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--yellow);
    transition: height 0.5s var(--ease-smooth);
}
.service-card:hover { background: var(--bg-darker); }
.service-card:hover::before { height: 100%; }

.service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 56px;
    margin-bottom: 1.5rem;
}
.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.service-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================== PROCESS ================== */
.dark-bg { background: var(--bg-black); }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-smooth);
    position: relative; /* para posicionar a marca d'água */
    overflow: hidden;
    border-radius: 12px;
}
.process-step::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background-image: url('./step-pattern-2.png'); /* Pattern #2 Uniformizado */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; /* textura bem sutil */
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover::after {
    opacity: 0.1; /* realce sutil no hover */
}
.process-step:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    opacity: 0.6;
    line-height: 1;
}
.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.step-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================== FEATURES / WHY US ================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
}
.feature-card {
    background: var(--bg-darker);
    padding: 3rem 2rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative; /* para marca d'água */
    overflow: hidden;
    border-radius: 12px;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background-image: url('./step-pattern-2.png'); /* Pattern #2 Uniformizado */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 0.1;
}
.feature-card:hover { background: var(--bg-dark); }

.feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.feature-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================== AREAS ================== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.area-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-left: 5px solid var(--yellow); /* Viga de reforço em amarelo */
    padding: 1.2rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 220px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3); /* Sombra pesada */
    border-radius: 12px;
}
.area-tag:hover {
    background: rgba(245, 196, 0, 0.08); /* Brilho industrial no fundo */
    border-color: var(--yellow);
    transform: translateX(10px) scale(1.02); /* Movimento lateral de impacto */
    color: var(--yellow);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.5);
}
.area-tag::before {
    content: '📍'; /* Pequeno marcador de localização */
    margin-right: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

#areas {
    position: relative;
    background: var(--bg-black);
    overflow: hidden;
}

#areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./areas-pattern.png');
    background-size: 800px auto; /* Tamanho grande para ser visto como marca d'água */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.45; /* Opacidade alta para máxima nitidez */
    pointer-events: none;
    z-index: 0;
}

#areas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.8) 100%); /* Forte vinheta para destacar o centro */
    pointer-events: none;
    z-index: 1;
}

/* ================== LEADERSHIP / FOUNDER ================== */
#leadership {
    background: var(--bg-black);
    overflow: hidden;
}

.leadership-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 7rem;
    align-items: center;
}

/* --- Image Column --- */
.leadership-image-col {
    position: relative;
}

.ceo-photo-frame {
    position: relative;
    display: inline-block;
    margin-bottom: 20px; /* Space for the accent border */
    margin-right: 20px;  /* Space for the accent border */
}

.ceo-photo {
    display: block;
    width: 100%;
    max-width: 480px;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
    position: relative;
    z-index: 2;
}

.ceo-photo-frame:hover .ceo-photo {
    filter: grayscale(0%) contrast(1.0);
    transform: scale(1.015);
}

/* Yellow accent frame — offset below-right, industrial feel */
.ceo-photo-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--yellow);
    border-radius: 12px;
    z-index: 1;
    transition: transform 0.5s var(--ease-smooth);
}

.ceo-photo-frame:hover .ceo-photo-accent {
    transform: translate(4px, 4px);
}

/* --- Content Column --- */
.leadership-content-col {
    position: relative;
}

/* Large decorative watermark behind content */
.leadership-watermark {
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 196, 0, 0.08);
    text-stroke: 1px rgba(245, 196, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

.leadership-content-col .eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.leadership-name {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Title badge with horizontal rule */
.leadership-title-badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
}

.badge-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--yellow);
}

/* Quote block */
.leadership-quote {
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--yellow);
    padding: 1.5rem 2rem;
    margin: 0 0 3rem 0;
    background: rgba(245, 196, 0, 0.03);
    border-radius: 0 12px 12px 0;
}

.leadership-quote p {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    font-style: italic;
}

/* Handwriting-style signature */
.leadership-signature {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.leadership-signature span {
    font-family: 'Dancing Script', cursive;
    font-size: 2.6rem;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.05em;
    transform: rotate(-1deg);
    display: inline-block;
}

/* Responsive */
@media (max-width: 1100px) {
    .leadership-wrapper {
        grid-template-columns: 380px 1fr;
        gap: 4rem;
    }
    .ceo-photo { height: 460px; max-width: 380px; }
}

@media (max-width: 880px) {
    .leadership-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .leadership-image-col { text-align: center; }
    .ceo-photo {
        max-width: 340px;
        height: 400px;
        margin: 0 auto;
    }
    .leadership-watermark {
        font-size: 4.5rem;
        left: 0;
    }
}

@media (max-width: 480px) {
    .ceo-photo { max-width: 280px; height: 330px; }
    .leadership-watermark { display: none; }
    .leadership-quote { padding: 1rem 1.2rem; }
}

/* ================== CONTACT ================== */
.contact-zone {
    background: var(--bg-darker);
    background-image: radial-gradient(circle at 0% 0%, rgba(245,196,0,0.04) 0%, transparent 50%);
}
.conversion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.conversion-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.conversion-info > p {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cf-icon {
    font-size: 1.5rem;
}
.contact-feature strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 0.2rem;
}
.contact-feature p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.license-info {
    padding: 1.5rem;
    background: var(--bg-dark);
    border-left: 3px solid var(--yellow);
    border-radius: 12px;
}
.license-info p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.3rem;
}
.license-info strong { color: var(--white); }

/* Form Box */
.glassmorphism-box {
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
}
.glassmorphism-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
}

.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.input-group label {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 0.5rem;
}
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.7rem 0;
    transition: border-color 0.3s;
    border-radius: 0;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--yellow);
}
.input-group select option { background: var(--bg-dark); color: var(--white); }
.input-group textarea { resize: vertical; min-height: 80px; }

.btn-submit-accent {
    margin-top: 1rem;
    width: 100%;
    background: var(--yellow);
    border: none;
    color: var(--black);
    padding: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
}
.btn-submit-accent:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,196,0,0.35);
}

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: none;
}
.form-feedback.success {
    display: block;
    border: 1px solid #4CAF50;
    color: #4CAF50;
}
.form-feedback.error {
    display: block;
    border: 1px solid #F44336;
    color: #F44336;
}

/* ================== LIGHTBOX & MULTI-STEP FORM ================== */
.btn-premium-pulse {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--bg-darker);
    background: var(--yellow);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 5px 25px rgba(245, 196, 0, 0.4);
    overflow: hidden;
}
.btn-premium-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 196, 0, 0.6);
    background: var(--white);
    color: var(--bg-darker);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 1rem;
    padding: 3rem 2.5rem;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.5s var(--ease-out);
}
.lightbox-overlay.active .lightbox-container {
    transform: translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 300;
}
.lightbox-close:hover {
    color: var(--yellow);
}

.lightbox-header {
    margin-bottom: 2.5rem;
    text-align: center;
}
.lightbox-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto 0.5rem;
}
.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray);
    transition: all 0.4s ease;
}
.progress-step.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--bg-darker);
    box-shadow: 0 0 15px rgba(245, 196, 0, 0.4);
}
.progress-step.completed {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--bg-darker);
}
.progress-line {
    flex: 1;
    height: 3px;
    background: var(--gray-dark);
    margin: 0 10px;
    position: relative;
}
.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--yellow);
    transition: width 0.4s ease;
}
.progress-line.completed::after {
    width: 100%;
}
.progress-titles {
    display: flex;
    justify-content: space-between;
    max-width: 330px;
    margin: 0 auto;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

.form-step {
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--yellow);
    text-align: center;
}

.step-actions {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
}
.step-actions.split {
    justify-content: space-between;
}
.step-actions.step-end {
    justify-content: flex-end;
}
.step-actions button {
    flex: 1;
}

/* ================== FOOTER ================== */
#site-footer {
    padding: 0;
    background: var(--bg-black);
    border-top: 1px solid var(--border-subtle);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}
.footer-logo p {
    margin-top: 1rem;
    color: var(--gray-light);
    font-size: 0.95rem;
    max-width: 300px;
}
.footer-brand-logo { height: 45px; }

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}
.footer-links a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 1024px) {
    .conversion-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .stats-rack { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    #desktop-nav { display: none; }
    
    .hero-content { padding-top: 5rem; }
    .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 1.5rem; }
    .hero-sub { font-size: 1rem; border-left: none; padding-left: 0; margin-bottom: 2rem; }
    
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
    .btn-solid-accent, .btn-ghost-minimal { width: 100%; text-align: center; }
    .btn-ghost-minimal:hover { padding-left: 1.8rem; }
    
    .ticker-inner span { font-size: 0.7rem; letter-spacing: 0.15em; }
    .stats-rack { gap: 2rem; }
    .stat-num { font-size: 2.5rem; }
    
    .service-card { padding: 2.5rem 1.5rem; }
    h2 { font-size: clamp(2rem, 8vw, 2.5rem); }
    .conversion-info h2 { font-size: clamp(2rem, 7vw, 2.5rem); }
    
    .glassmorphism-box { padding: 2rem 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo p { max-width: 100%; margin: 1rem auto; }

    /* Layout consolidado para Mobile/Tablet */
    .features-grid,
    .process-timeline,
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
}

@media (max-width: 480px) {
    .stats-rack { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .service-card { padding: 2rem 1.5rem; }
    .process-step { padding: 1.5rem 1.2rem; }
}

/* ================== ACCESSIBILITY & PREFERENCES ================== */
@media (prefers-contrast: high) {
    :root {
        --border-subtle: rgba(255,255,255,0.2);
        --gray-light: #CCCCCC;
    }
    .service-card, .process-step, .feature-card { border: 2px solid var(--white); }
}

/* Print Styles */
@media print {
    body { background: white; color: black; }
    #site-header, .hero-ticker, .scroll-cue, .contact-zone, footer { display: none; }
    #hero { height: auto; padding: 2rem 0; background: white; }
    .hero-headline { color: black; font-size: 2rem; }
    a { text-decoration: underline; color: black; }
    .btn-solid-accent, .btn-submit-accent { border: 1px solid black; background: white; color: black; }
}

/* Input Help Text */
.input-help {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.3rem;
    font-style: italic;
}

/* Form Validation Styles */
.input-group.error input,
.input-group.error select,
.input-group.error textarea {
    border-bottom-color: #F44336;
}
.input-group.success input,
.input-group.success select,
.input-group.success textarea {
    border-bottom-color: #4CAF50;
}

/* Loading State */
body.loading { visibility: hidden; }
body.loaded { visibility: visible; }

/* High DPI / Retina Display */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo, .footer-brand-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-solid-accent, .btn-ghost-minimal, .btn-nav-outline {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .service-card, .process-step, .feature-card {
        min-height: 120px;
    }
}

/* Dark Mode (System Preference) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #1a1a1a;
        --bg-darker: #0d0d0d;
    }
}

/* ================== PERFORMANCE OPTIMIZATIONS ================== */

/* 
   Modern Containment:
   Only render sections as they enter the viewport.
   Vastly improves initial TBT (Total Blocking Time) on mobile.
*/
#stats, 
#services, 
#why-us, 
#process, 
#leadership, 
#areas, 
#contact, 
#footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

/* 
   Minimize Layout Shifts:
   Garante que o navegador reserve o espaçamento correto antes do carregamento.
*/
.js-reveal {
    content-visibility: auto;
    contain-intrinsic-size: auto 100px;
}

/* 
==========================================================================
   LANGUAGE SWITCHER
==========================================================================
*/

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.current-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chevron {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.lang-switcher.active .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-option img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent);
    font-weight: 600;
}

/* Mobile Adjustments for Lang Switcher */
@media (max-width: 991px) {
    #desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .lang-btn span#current-lang-name {
        display: none;
    }
    
    .lang-btn {
        padding: 0.6rem;
    }
    
    .lang-dropdown {
        right: -50px; /* Center relative to small btn */
    }
}

@media (max-width: 575px) {
    .btn-nav-outline {
        padding: 0.6rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    #desktop-nav {
        gap: 1rem;
    }
}

/* 
==========================================================================
   SOCIAL & CONTACT ENHANCEMENTS
==========================================================================
*/

.sms-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.sms-link:hover {
    color: var(--white);
    border-bottom-color: var(--accent);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.social-contact-wrapper {
    display: flex;
    gap: 1.2rem;
    margin: 1.5rem 0 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-btn:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.25);
    border-color: var(--accent);
}

.partner-logos a {
    display: flex;
    align-items: center;
}

