/* ===== WESAR — CLEAN MINIMAL DESIGN ===== */
/* Inspired by archar.framer.website + Wesar brand identity */

/* ===== VARIABLES ===== */
:root {
    --primary: #FF1C20;
    --primary-dark: #cc1619;
    --primary-light: #ff4d50;
    --text: #333333;
    --text-light: #555555;
    --text-muted: #888888;
    --bg: #FFFFFF;
    --bg-alt: #F0F0F0;
    --bg-dark: #1a1a1a;
    --border: #e0e0e0;
    --border-light: #eeeeee;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 30px rgba(255, 28, 32, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-dot.visible,
.cursor-outline.visible {
    opacity: 1;
}

.cursor-dot.hovering {
    width: 50px;
    height: 50px;
    background: rgba(255, 28, 32, 0.12);
    mix-blend-mode: normal;
}

.cursor-outline.hovering {
    width: 56px;
    height: 56px;
    border-color: rgba(255, 28, 32, 0.5);
}

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary);
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.02em;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 28, 32, 0.3);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(255, 28, 32, 0);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 10px;
    z-index: 1002;
    flex-shrink: 0;
}

.logo-img {
    height: auto;
    width: 140px;
    transition: var(--transition);
    object-fit: contain;
    margin: -24px 0;
    mix-blend-mode: multiply;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
    margin: 0 auto;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
    transition: opacity 0.25s ease;
    background: var(--primary);
    z-index: 2000;
}

/* ===== SITE BACKGROUND ===== */
.site-bg {
    display: none;
}

.bg-blob {
    display: none;
}

/* ===== HERO SECTION (UNIFIED GRADIENT + CENTERED) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    --parallax-y: 0px;
    background: transparent;
}

.hero-bg {
    position: absolute;
    top: -15vh;
    left: 0;
    right: 0;
    height: 130vh;
    z-index: 0;
    background: linear-gradient(160deg, #ffeae8 0%, #ffcbc8 30%, #ffb0ac 60%, #ff8a85 100%);
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y) * 0.45), 0);
}

.hero::after {
    display: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    will-change: transform;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: rgba(255, 28, 32, 0.25);
    top: -300px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: rgba(255, 180, 170, 0.4);
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 25px); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: var(--size, 3px);
    height: var(--size, 3px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.3;
    animation: rise var(--duration, 16s) infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0);
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(var(--drift, 0px));
    }
}

/* Animated mesh background (full-width floating orbs) */
.hero-mesh-bg {
    position: absolute;
    top: -15vh;
    left: 0;
    right: 0;
    height: 130vh;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y, 0px) * 0.45), 0);
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.mesh-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 200, 180, 0.5);
    top: -15%;
    right: 10%;
    animation: meshFloat1 14s ease-in-out infinite;
}

.mesh-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.12);
    bottom: -5%;
    left: 5%;
    animation: meshFloat2 18s ease-in-out infinite;
}

.mesh-orb-3 {
    width: 450px;
    height: 450px;
    background: rgba(255, 100, 80, 0.25);
    top: 30%;
    left: 40%;
    animation: meshFloat3 22s ease-in-out infinite;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 100px) scale(1.1); }
    66% { transform: translate(60px, -50px) scale(0.95); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -80px) scale(1.15); }
    66% { transform: translate(-40px, 60px) scale(0.9); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -90px) scale(1.2); }
}

/* Hero centered layout */
.hero-inner.hero-centered {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 120px 40px 80px;
    will-change: transform;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y) * -0.1), 0);
}

.hero-brand-name {
    font-size: clamp(6rem, 16vw, 16rem);
    font-weight: 900;
    color: #000000;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: none;
    margin: 0 0 40px;
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y) * -0.06), 0);
}

/* Meta info — horizontal row below brand name */
.hero-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y) * -0.04), 0);
}

/* Featured CTA button */
.hero-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    will-change: transform;
    transform: translate3d(0, calc(var(--parallax-y) * -0.02), 0);
}

.hero-featured-btn:hover {
    background: var(--primary);
    transform: translate3d(0, calc(var(--parallax-y) * -0.02), 0) scale(1.05);
}

.hero-featured-btn i {
    transition: transform 0.3s ease;
}

.hero-featured-btn:hover i {
    transform: translateX(4px);
}




/* ===== MARQUEE TICKER ===== */
.hero-marquee-ticker {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track-ticker {
    display: inline-flex;
    gap: 32px;
    animation: ticker-scroll 20s linear infinite;
}

.marquee-track-ticker span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== STATS SECTION (ARCHER-STYLE 4 COLS) ===== */
#stats.hero-stats-section {
    padding: 100px 0 120px;
    background-color: #000000 !important;
    position: relative;
    overflow: hidden;
}

#stats.hero-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.25) 0%, rgba(255, 0, 0, 0.55) 55%, rgba(255, 0, 0, 0.85) 100%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

#stats.hero-stats-section::after {
    content: '';
    position: absolute;
    inset: auto 0 -120px 0;
    height: 320px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
}

#stats.hero-stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 124px;
    row-gap: 32px;
    align-items: start;
}

.stat-col {
    text-align: left;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

#stats.hero-stats-section .stat-col {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.stat-number-big {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0;
}

.stat-number-big .stat-number {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.stat-label-big {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0;
    min-height: 2.2em;
}

.stat-label-roi {
    white-space: nowrap;
}

.stat-sub-header {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 0;
}

.stat-description {
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 2px;
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-inner.hero-centered {
        padding: 120px 24px 60px;
    }

    .hero-brand-name {
        font-size: clamp(4rem, 16vw, 8rem);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-label-big {
        min-height: 0;
    }
}

@media (max-width: 576px) {
    .hero-inner.hero-centered {
        padding: 100px 20px 40px;
    }

    .hero-brand-name {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    .hero-meta {
        flex-direction: column;
        gap: 4px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-featured-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 28, 32, 0.06);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== ARCHER ABOUT SECTION ===== */
.about-section {
    background: #F5F5F0;
    padding: 140px 60px;
    font-family: 'Roboto', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Image on the left */
.about-img-wrap {
    position: sticky;
    top: 140px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right content */
.about-content {
    display: flex;
    flex-direction: column;
}

/* Marquee */
.about-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 24px;
}

.marquee-track-mini {
    display: inline-flex;
    gap: 24px;
    animation: ticker-scroll 10s linear infinite;
}

.marquee-track-mini span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Text Reveal */
.about-reveal-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 200;
    line-height: 1.15;
    color: var(--text); /* Unrevealed color fix */
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.reveal-word {
    transition: color 0.1s linear;
}

/* Button */
/* Benefits integrated into About section */
.about-quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0 50px 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e8e8e8;
    color: #000;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
    transition: var(--transition);
}

.about-btn:hover {
    background: #d4d4d4;
    transform: scale(1.05);
}

.about-btn i {
    transition: transform 0.3s;
    color: var(--primary);
}

.about-btn:hover i {
    transform: translateX(4px);
}

/* Responsive About */
@media (max-width: 992px) {
    .about-section {
        padding: 100px 24px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-wrap {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-reveal-text {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 40px;
    }
}

/* ===== INFO SECTIONS ===== */
.info-section {
    background: var(--bg);
}

.info-section-alt {
    background: var(--bg-alt);
}

.info-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.info-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.info-grid.reverse .info-content {
    order: 2;
}

.info-grid.reverse .info-cards {
    order: 1;
}

.info-content .section-tag {
    margin-bottom: 18px;
}

.info-content .section-title {
    text-align: left;
}

.info-content .section-subtitle {
    margin: 0 0 24px;
    text-align: left;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.info-list i {
    color: var(--primary);
}

.info-cards {
    display: grid;
    gap: 16px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--bg-alt);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    min-height: 200px;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 28, 32, 0.08);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text);
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.process-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos {
    background: var(--bg);
    padding: 160px 0;
}

.servicos-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
    border-top: 1px solid var(--border-dark);
}

.servico-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-dark);
    /* Removemos o all para evitar conflito/delay de transform do scroll progress */
    transition: padding 0.4s ease, background 0.4s ease;
    will-change: transform, opacity;
    cursor: pointer;
}

.servico-row:hover {
    padding-left: 24px;
    padding-right: 24px;
    background: rgba(255, 28, 32, 0.02);
}

.servico-row-header {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.servico-num {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-muted);
    font-family: monospace;
    opacity: 0.5;
}

.servico-row-header h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    white-space: nowrap;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: var(--transition);
}

.servico-row:hover .servico-row-header h3 {
    color: var(--primary);
}

.servico-row-content {
    flex: 0 0 38%;
    max-width: 38%;
    text-align: right;
}

.servico-row-content p {
    color: var(--text-muted);
    font-size: 1.35rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.servicos-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    gap: 24px;
}

@media (max-width: 991px) {
    .servico-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }
    .servico-row:hover {
        padding-left: 0;
        padding-right: 0;
        background: transparent;
    }
    .servico-row-header h3 {
        font-size: 1.8rem;
    }
    .servico-row-content {
        text-align: left;
        padding-left: 50px;
        flex: 1;
    }
}

/* ===== CLIENTES LOGOS (MARQUEE) ===== */
.clientes-logos {
    background: #FFFFFF !important;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.clientes-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: logos-marquee 40s linear infinite;
    will-change: transform;
}

.clientes-track:hover {
    animation-play-state: paused;
}

@keyframes logos-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Animates half of the duplicated content */
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0 30px;
    width: 250px;
    height: 120px;
    opacity: 0.9;
    position: relative;
    flex-shrink: 0; /* Impede a tela de esmagar as logos ("cortar") */
}

.cliente-logo::after {
    content: '•';
    position: absolute;
    right: -35px; /* Compensa a margem centralizando o ponto */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #121214;
    opacity: 0.5;
}

.cliente-logo img {
    max-width: 230px; /* Maior, preenchendo 90% da caixa */
    max-height: 110px; /* Expansão vertical drástica, mantendo proporção */
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajusta graciosamente e NUNCA corta */
    
    /* Configuração padrão para logos geradas com fundo branco: */
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.5);
    pointer-events: none;
}

/* Regra Inteligente: Para suas logos transparentes (chlo e cidade), o preto precisa ser nativo sem estourar serrilhados! */
.cliente-logo img[src*="chlo"],
.cliente-logo img[src*="cidade"] {
    mix-blend-mode: normal !important;
    filter: brightness(0) !important; /* Totalmente preto, mantendo a borda perfeita e suave! */
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    background: var(--bg-alt);
    overflow: hidden;
}

.depoimentos-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 10px;
}

.depoimentos-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    --marquee-distance: 0px;
    animation: testimonials-marquee 80s linear infinite;
    will-change: transform;
}

.depoimentos-slider:hover .depoimentos-track,
.depoimentos-track.is-paused {
    animation-play-state: paused;
}

@keyframes testimonials-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--marquee-distance))); }
}

.depoimento-card {
    flex: 0 0 420px;
    width: 420px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.depoimento-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 5rem;
    font-family: 'Georgia', serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.depoimento-stars {
    margin-bottom: 20px;
}

.depoimento-stars i {
    color: var(--primary);
    font-size: 1rem;
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-weight: 500;
    color: var(--text);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
}

.depoimentos-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.depoimentos-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.depoimentos-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.faq-cta {
    text-align: center;
    margin-top: 56px;
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ===== CONTATO SECTION ===== */
.contato {
    background: var(--bg-alt);
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contato-info {
    padding-right: 24px;
}

.contato-info .section-title {
    text-align: left;
}

.contato-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.contato-details {
    margin-bottom: 32px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.contato-item:hover {
    transform: translateX(6px);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contato-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contato-text h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contato-text a {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 500;
}

.contato-text a:hover {
    color: var(--primary);
}

.contato-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contato-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.contato-form-wrapper:hover {
    box-shadow: var(--shadow-md);
}

.contato-form h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 500;
    color: var(--text);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 28, 32, 0.08);
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--white);
    color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-brand .logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
    font-weight: 300;
}

.footer-contact i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-aos="fade-left"] { transform: translateX(36px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-down"] { transform: translateY(-28px); }
[data-aos="zoom-in"] { transform: scale(0.95); }
[data-aos="zoom-out"] { transform: scale(1.04); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid,
    .info-grid.reverse {
        grid-template-columns: 1fr;
    }

    .info-grid.reverse .info-content {
        order: 1;
    }

    .info-grid.reverse .info-cards {
        order: 2;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        padding: 100px 0 64px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }

    .hero-stats .stat-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .stat-value { height: 44px; }
    .stat-number { font-size: 2.2rem; }
    .stat-suffix { font-size: 1.5rem; }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections */
    section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Sobre */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-ceo {
        order: -1;
    }

    .sobre-highlights {
        grid-template-columns: 1fr;
    }

    /* Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Depoimentos */
    .depoimento-card {
        padding: 28px 20px;
        flex: 0 0 85vw;
        width: 85vw;
    }

    /* FAQ */
    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    /* Contato */
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-info {
        padding-right: 0;
        text-align: center;
    }

    .contato-info .section-title {
        text-align: center;
    }

    .contato-item {
        justify-content: center;
    }

    .contato-social {
        justify-content: center;
    }

    .contato-form-wrapper {
        padding: 28px 20px;
    }

    /* Footer */
    .footer {
        padding: 56px 0 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Floating CTA */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 88px 0 48px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0.06em;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 16px;
    }

    section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .depoimento-card {
        padding: 24px 16px;
        flex: 0 0 90vw;
        width: 90vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .animate-fade-up {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== HERO STICKY EFFECT (TRANSITION HERO -> QUEM SOMOS) ===== */
@media (min-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    section#home {
        position: sticky;
        top: 0;
        z-index: 1;
        /* Hero acts as a sticky background while other sections scroll over it */
    }

    /* As demais seções assumem fluxo natural sobrepondo o Hero */
    section[id]:not(#home), 
    section.clientes-logos {
        position: relative;
        z-index: 2;
        background-color: var(--bg);
        box-shadow: 0 -20px 40px rgba(0,0,0,0.03); /* Leve sombra para demarcar sobreposição caso precise */
        transition: transform 0.3s ease-out; /* Suavizar eventuais saltos */
    }

    section#o-que-e {
        background-color: #F5F5F0;
    }

    section#stats {
        background-color: #000000 !important;
    }

    section#como-sera-feito,
    section#depoimentos,
    section#contato,
    section.clientes-logos {
        background-color: var(--bg-alt);
    }
    
    footer.footer { 
        position: relative; 
        z-index: 10; 
        background: var(--bg-dark); 
    }
}

/* ===== NEW HERO DESIGN (REFERENCE STYLE) ===== */
#home.hero {
    background-color: #121214 !important; /* Extremely dark night color */
    position: relative;
    overflow: hidden;
    /* remove interference from old backgrounds */
    background-image: none;
    min-height: 100vh;
}

#home.hero * {
    color: #fff;
}

/* The vertical orange beam */
.hero-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 120vh;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.6) 40%, rgba(255, 0, 0, 0.9) 100%);
    filter: blur(50px);
    z-index: 1;
}

/* Simulate the rugged red-tinted clouds at the bottom */
#home.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at 30% 100%, #121214 40%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, #121214 40%, transparent 60%),
                radial-gradient(ellipse at 50% 100%, rgba(255, 0, 0, 0.25) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    pointer-events: none;
}

.new-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2; /* ABOVE the beam */
    padding-top: 15vh;
}

.hero-main-title {
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    text-transform: none;
    text-align: center;
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-main-subtitle {
    max-width: 760px;
    margin: 0 0 44px;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-family: 'Sora', sans-serif;
    font-weight: 100;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-stats-floating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #ffffff;
    flex: 1;
}

.beam-spacer {
    width: 160px; /* Space exactly where the glowing beam sits */
}

.hero-stat .s-big {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 0 25px rgba(255, 50, 0, 0.6);
}

.hero-stat .s-small {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-stats-floating {
        flex-direction: column;
        gap: 40px;
    }
    .beam-spacer {
        height: 40px;
        width: 100%;
    }
    .hero-main-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .hero-main-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 0 30px;
        padding: 0 12px;
    }
}

/* ===== SERVICES DARK BEAM REDESIGN ===== */
#servicos.servicos {
    background-color: #121214 !important;
    position: relative;
    overflow: hidden;
}

/* Continuar o raio de luz pelo centro de serviços */
#servicos.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.4) 0%, rgba(255, 0, 0, 0.6) 50%, rgba(255, 0, 0, 0.95) 100%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

#servicos .container {
    position: relative;
    z-index: 2;
}

#servicos .section-title,
#servicos .section-subtitle,
#servicos .servico-row-header h3 {
    color: #ffffff !important;
}

#servicos .servico-num {
    color: rgba(255, 255, 255, 0.6) !important;
}

#servicos .servico-row-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

#servicos .servico-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#servicos .servico-row:hover {
    background: rgba(255, 60, 0, 0.05) !important;
}

/* ===== FINAL POLISH TWEAKS ===== */

/* 1. Beam at the very end of the page (Footer area) */
.footer {
    position: relative;
    overflow: hidden;
    background-color: #121214 !important;
    border-top: none !important;
}
.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 150vh;
    background: linear-gradient(0deg, rgba(255, 0, 0, 1) 0%, rgba(255, 0, 0, 0.5) 40%, rgba(255, 0, 0, 0) 100%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
.footer .footer-content, .footer .footer-bottom {
    position: relative;
    z-index: 2;
}
.footer * {
    color: #ffffff !important;
}

/* 2. All CTAs Red */
.btn-primary, .hero-featured-btn, .about-btn, .process-btn, .btn, button {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
    color: #ffffff !important;
}

/* 3. Hero Headline Sora Medium */
.hero-main-title {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
}

/* 5. Header texts white (when not scrolled) */
.navbar:not(.scrolled) .nav-link {
    color: #ffffff !important;
}
.navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}
.navbar:not(.scrolled) .hamburger span {
    background: #ffffff !important;
}

/* 6. Global Mobile Optimization */
@media (max-width: 768px) {
    /* Navbar override explicitly for mobile */
    .navbar:not(.scrolled) .nav-menu { background: #121214 !important; }
    
    /* Hero */
    .hero-main-title {
        font-size: 2.2rem !important;
        margin-top: 50px !important;
        line-height: 1.2 !important;
    }
    .hero-stat .s-big {
        font-size: 2.5rem !important;
    }
    .hero-beam, #servicos.servicos::before, .footer::before {
        width: 80px !important; /* Thinner beam on mobile */
    }
    
    /* Services Drawer fix for mobile */
    .servicos { padding: 80px 20px !important; }
    .servico-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 40px 0 !important;
    }
    .servico-row-header {
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    .servico-row-header h3 {
        font-size: 1.8rem !important;
        white-space: normal !important; /* Múltiplas linhas no celular! */
        word-break: break-word !important;
    }
    .servico-row-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    .servico-row-content p {
        font-size: 1.1rem !important;
    }
    
    /* Floating CTA */
    .floating-cta {
        bottom: 20px !important;
        right: 20px !important;
        transform: scale(0.8) !important;
        transform-origin: bottom right !important;
    }
}

/* ===== MOBILE VISUAL POLISH (DESKTOP SAFE) ===== */
@media (max-width: 768px) {
    :root {
        --mobile-gutter: 18px;
    }

    .container {
        padding-left: var(--mobile-gutter);
        padding-right: var(--mobile-gutter);
    }

    /* Nav drawer */
    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        width: 120px;
        margin: -18px 0;
    }

    .nav-menu {
        width: min(86vw, 340px);
        padding: 96px 24px 32px;
        justify-content: flex-start;
        gap: 20px;
        background: rgba(18, 18, 20, 0.96) !important;
        backdrop-filter: blur(18px);
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
    }

    .nav-menu .nav-link.active,
    .nav-menu .nav-link:hover {
        color: #fff !important;
    }

    /* Hero */
    .hero {
        min-height: 95vh;
        padding: 0;
    }

    .hero-inner.hero-centered {
        min-height: 95vh;
        padding: 108px var(--mobile-gutter) 56px;
    }

    .hero-main-title {
        max-width: 18ch;
        font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
        margin-top: 16px !important;
        line-height: 1.12 !important;
        text-wrap: balance;
        text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    }

    .hero-stats-floating {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin-top: 16px;
    }

    .beam-spacer {
        width: 56px !important;
        height: 1px !important;
    }

    .hero-stat .s-big {
        font-size: clamp(2rem, 9vw, 2.6rem) !important;
    }

    .hero-stat .s-small {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        margin-top: 8px;
        opacity: 0.9;
    }

    .hero-featured-btn {
        margin-top: 42px !important;
        padding: 14px 24px;
        width: min(100%, 300px);
        border-radius: 999px;
        box-shadow: 0 14px 30px rgba(255, 0, 0, 0.28);
    }

    /* Sections */
    section {
        padding: 76px 0;
        scroll-margin-top: 84px;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-title {
        font-size: clamp(1.6rem, 7.2vw, 2.2rem);
        line-height: 1.15;
    }

    .section-subtitle {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    /* About */
    .about-section {
        padding: 82px 0;
    }

    .about-grid {
        gap: 34px;
    }

    .about-img-wrap {
        max-width: 100%;
        border-radius: 18px;
    }

    .about-reveal-text {
        font-size: clamp(1.65rem, 8.2vw, 2.35rem);
        line-height: 1.16;
        margin-bottom: 28px;
    }

    .about-quick-benefits {
        margin: 26px 0 32px;
        padding-top: 24px;
        gap: 12px;
    }

    .benefit-item {
        align-items: flex-start;
        font-size: 0.96rem;
        line-height: 1.5;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        padding: 10px 12px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats */
    #stats.hero-stats-section {
        padding: 74px 0 84px;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-col {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
        padding: 18px 16px;
    }

    /* Process */
    .process-grid {
        gap: 14px;
        margin-top: 30px;
    }

    .process-card {
        padding: 22px 20px;
        min-height: auto;
        border-radius: 16px;
    }

    /* Services */
    .servicos {
        padding: 88px 0 !important;
    }

    .servicos-list {
        margin-bottom: 40px;
    }

    .servico-row {
        padding: 24px 0 !important;
        gap: 14px !important;
    }

    .servico-row-header {
        gap: 14px !important;
        margin-bottom: 0 !important;
    }

    .servico-num {
        font-size: 1.25rem;
        opacity: 0.75;
    }

    .servico-row-header h3 {
        font-size: clamp(1.18rem, 6.2vw, 1.55rem) !important;
        line-height: 1.12;
    }

    .servico-row-content {
        padding-left: 0 !important;
    }

    .servico-row-content p {
        font-size: 0.98rem !important;
        line-height: 1.65;
    }

    /* Testimonials */
    .depoimentos-slider {
        padding: 0;
    }

    .depoimentos-track {
        gap: 16px;
    }

    .depoimento-card {
        width: 86vw;
        flex-basis: 86vw;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .depoimento-text {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .depoimentos-nav {
        display: flex;
        margin-top: 26px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .depoimentos-cta {
        margin-top: 34px;
        padding-top: 28px;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 16px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 10px;
        line-height: 1.45;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.94rem;
        line-height: 1.7;
    }

    /* Contact */
    .contato-wrapper {
        gap: 26px;
    }

    .contato-info {
        text-align: left !important;
    }

    .contato-info .section-title {
        text-align: left !important;
    }

    .contato-item {
        justify-content: flex-start !important;
        margin-bottom: 18px;
    }

    .contato-form-wrapper {
        padding: 22px 16px !important;
        border-radius: 18px;
    }

    /* Footer */
    .footer {
        padding: 64px 0 28px;
    }

    .footer-content {
        gap: 24px;
        text-align: left;
    }

    .footer-contact p,
    .footer-social {
        justify-content: flex-start;
    }

    .footer-brand .logo-img {
        height: auto;
        width: 128px;
        margin: 0;
    }

    /* Floating CTA */
    .floating-cta {
        right: 14px !important;
        bottom: max(14px, env(safe-area-inset-bottom)) !important;
        transform-origin: bottom right;
    }

    .whatsapp-btn {
        padding: 13px !important;
        box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 480px) {
    :root {
        --mobile-gutter: 14px;
    }

    .hero-main-title {
        font-size: clamp(1.68rem, 9.2vw, 2.15rem) !important;
    }

    .hero-featured-btn {
        width: 100%;
    }

    .beam-spacer {
        width: 42px !important;
    }

    .hero-stat .s-big {
        font-size: clamp(1.8rem, 9.5vw, 2.2rem) !important;
    }

    .section-title {
        font-size: clamp(1.45rem, 8.8vw, 1.9rem);
    }

    .depoimento-card {
        width: 90vw;
        flex-basis: 90vw;
    }

    .about-reveal-text {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
}

/* ===== ABOUT MOBILE DIMENSION FIX (PHONE-SPECIFIC) ===== */
@media (max-width: 768px) {
    .about-section {
        padding: 72px var(--mobile-gutter) 64px;
        overflow: hidden;
    }

    .about-grid {
        width: min(100%, 620px);
        max-width: 100%;
        margin: 0 auto;
        gap: 24px;
    }

    .about-img-wrap {
        aspect-ratio: 1 / 1.08;
        max-height: min(56vh, 430px);
        width: 100%;
        overflow: hidden;
    }

    .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 24%;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .about-content > * {
        max-width: 100%;
    }

    .about-marquee {
        margin-bottom: 14px;
    }

    .marquee-track-mini {
        gap: 14px;
    }

    .marquee-track-mini span {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .about-reveal-text {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.32rem, 6.1vw, 1.75rem) !important;
        line-height: 1.28;
        letter-spacing: -0.01em;
        margin-bottom: 22px;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }

    .reveal-word {
        display: inline;
        white-space: normal;
    }

    .about-btn {
        align-self: stretch;
        width: 100%;
        min-height: 54px;
        padding: 14px 16px;
        gap: 8px;
    }

    .about-btn span {
        flex: 1;
        text-align: center;
        min-width: 0;
        font-size: 0.96rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    .about-btn i {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 64px var(--mobile-gutter) 56px;
    }

    .about-img-wrap {
        aspect-ratio: 1 / 1.05;
        max-height: 50vh;
        border-radius: 14px;
    }

    .about-reveal-text {
        font-size: clamp(1.2rem, 5.9vw, 1.52rem) !important;
        line-height: 1.3;
    }

    .about-btn {
        min-height: 52px;
        border-radius: 16px;
    }

    .about-btn span {
        font-size: 0.9rem;
    }
}

/* ===== SERVICES MOBILE VISUAL MATCH ===== */
@media (max-width: 768px) {
    #servicos.servicos {
        padding: 86px var(--mobile-gutter) 80px !important;
        background:
            radial-gradient(120% 60% at 50% 0%, rgba(255, 0, 0, 0.18) 0%, rgba(255, 0, 0, 0) 62%),
            #121214 !important;
    }

    #servicos.servicos::before {
        width: 96px !important;
        filter: blur(38px);
        opacity: 0.95;
    }

    #servicos .section-header {
        margin-bottom: 30px;
    }

    #servicos .section-subtitle {
        color: rgba(255, 255, 255, 0.78) !important;
        max-width: 32ch;
    }

    #servicos .servicos-list {
        margin-bottom: 32px;
        border-top: none;
        gap: 10px;
    }

    #servicos .servico-row {
        position: relative;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin: 0;
        padding: 18px 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
        backdrop-filter: blur(6px);
    }

    #servicos .servico-row:hover {
        padding: 18px 16px !important;
        background: linear-gradient(145deg, rgba(255, 60, 0, 0.14), rgba(255, 60, 0, 0.04)) !important;
    }

    #servicos.services-anim-ready .servico-row {
        opacity: 0;
        transform: translate3d(0, 26px, 0) scale(0.985);
        transition:
            opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
            background 300ms ease,
            border-color 300ms ease;
        transition-delay: var(--service-stagger, 0ms);
    }

    #servicos.services-anim-ready .servico-row.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    #servicos .servico-row-header {
        width: 100%;
        gap: 12px !important;
        margin-bottom: 0 !important;
        align-items: flex-start;
    }

    #servicos .servico-num {
        min-width: 2.2ch;
        font-size: 1rem;
        opacity: 0.82;
    }

    #servicos .servico-row-header h3 {
        font-size: clamp(1.08rem, 5.7vw, 1.35rem) !important;
        line-height: 1.2;
        letter-spacing: -0.01em;
        white-space: normal !important;
        word-break: normal !important;
    }

    #servicos .servico-row-content {
        width: 100%;
        max-width: 100% !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    #servicos .servico-row-content p {
        font-size: 0.95rem !important;
        line-height: 1.62;
        color: rgba(255, 255, 255, 0.88) !important;
    }

    #servicos .servicos-cta {
        margin-top: 26px;
        gap: 14px;
    }

    #servicos .servicos-cta p {
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.96rem;
    }

    #servicos .servicos-cta .btn {
        width: min(100%, 340px);
    }
}

@media (max-width: 480px) {
    #servicos.servicos {
        padding: 74px var(--mobile-gutter) 72px !important;
    }

    #servicos.servicos::before {
        width: 72px !important;
        filter: blur(32px);
    }

    #servicos .servico-row {
        padding: 16px 14px !important;
        border-radius: 14px;
    }

    #servicos.services-anim-ready .servico-row {
        transform: translate3d(0, 20px, 0) scale(0.99);
    }

    #servicos .servico-row:hover {
        padding: 16px 14px !important;
    }

    #servicos .servico-row-header {
        gap: 10px !important;
    }

    #servicos .servico-row-header h3 {
        font-size: clamp(1rem, 6vw, 1.2rem) !important;
    }

    #servicos .servico-row-content p {
        font-size: 0.9rem !important;
        line-height: 1.58;
    }
}
