/* ========================================
   LOS RIBEIROS — PREMIUM AUTOMOTIVE SITE
   Design System & Global Styles
   ======================================== */

/* --- CSS Variables --- */
:root {
    --color-bg: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-card-hover: #1a1a1a;
    --color-surface: #161616;
    --color-surface-2: #1e1e1e;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);

    --color-primary: #e81224;
    --color-primary-dark: #b80e1c;
    --color-primary-glow: rgba(232, 18, 36, 0.25);
    --color-primary-soft: rgba(232, 18, 36, 0.08);

    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;

    --gradient-primary: linear-gradient(135deg, #e81224 0%, #ff4d5a 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(232,18,36,0.15) 0%, rgba(0,0,0,0) 50%);

    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-primary-glow);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1200px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

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

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    width: 90%;
    max-width: 600px;
}

/* Logo container */
.preloader-logo {
    position: relative;
    margin-bottom: 32px;
    overflow: visible;
}

/* Image wrapper */
.preloader-logo-img {
    position: relative;
    overflow: hidden;
    animation: carDrive 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               carBounce 0.4s ease-in-out 1.2s infinite;
    transform: translateX(-120%);
}

.preloader-logo-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
    mix-blend-mode: lighten;
}

/* Car drives in from left */
@keyframes carDrive {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        transform: translateX(10px);
    }
    85% {
        transform: translateX(-3px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Subtle road bounce after arrival */
@keyframes carBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Shine sweep across the logo */
.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shineSweep 2s ease-in-out 1.4s infinite;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Speed lines */
.speed-lines {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    bottom: 40%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.speed-line {
    position: absolute;
    right: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 40%, rgba(232, 18, 36, 0.6) 100%);
    border-radius: 2px;
    opacity: 0;
    animation: speedLineStream 0.8s ease-out forwards;
}

.speed-line-1 {
    top: 20%;
    width: 80px;
    animation-delay: 0.3s;
}
.speed-line-2 {
    top: 35%;
    width: 120px;
    animation-delay: 0.5s;
}
.speed-line-3 {
    top: 50%;
    width: 60px;
    animation-delay: 0.4s;
}
.speed-line-4 {
    top: 65%;
    width: 100px;
    animation-delay: 0.6s;
}
.speed-line-5 {
    top: 80%;
    width: 70px;
    animation-delay: 0.35s;
}

@keyframes speedLineStream {
    0% {
        right: 100%;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        right: -20%;
        opacity: 0;
    }
}

/* Loading bar - centered and wider */
.preloader-bar {
    width: 280px;
    height: 3px;
    background: var(--color-surface-2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
    opacity: 0;
    animation: barFadeIn 0.5s ease 1s forwards;
}

@keyframes barFadeIn {
    to { opacity: 1; }
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: preloaderFill 1.8s ease-out 1.2s forwards;
    box-shadow: 0 0 8px var(--color-primary-glow);
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* --- Floating WhatsApp --- */
#whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition-base);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
    isolation: isolate;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 0;
    transition: var(--transition-base);
    mix-blend-mode: lighten;
    filter: brightness(1.05);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    position: relative;
    letter-spacing: 0.02em;
}

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

.nav-link.active {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-instagram {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.nav-instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
    background: rgba(228, 64, 95, 0.08);
}

.nav-instagram i {
    font-size: 16px;
}

.btn-cta-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition-base);
    box-shadow: 0 2px 12px var(--color-primary-glow);
}

.btn-cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-link {
    font-size: 28px;
    font-weight: 700;
    padding: 12px;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.mobile-link:hover {
    color: var(--color-primary);
    transform: translateX(8px);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile-instagram {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.btn-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.3) 30%,
            rgba(10, 10, 10, 0.6) 70%,
            rgba(10, 10, 10, 0.95) 100%
        ),
        var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(232, 18, 36, 0.1);
    border: 1px solid rgba(232, 18, 36, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px var(--color-primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--color-primary-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-secondary);
    transform: translateY(-2px);
}

.btn-secondary i {
    transition: var(--transition-base);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    display: inline;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(232, 18, 36, 0.15);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.service-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
}

.service-card-body {
    padding: 28px 24px;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 18px;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px var(--color-primary-glow);
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-video {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-card-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.service-cta:hover {
    gap: 12px;
}

.service-cta i {
    font-size: 12px;
    transition: var(--transition-base);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 120px 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, var(--color-primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 18, 36, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
}

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

.about-img-secondary {
    display: none;
}

.about-img-accent {
    position: absolute;
    bottom: 8%;
    right: 0;
    z-index: 3;
}

.about-experience-badge {
    background: var(--gradient-primary);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px var(--color-primary-glow);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.about-content .section-tag {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 16px;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(232, 18, 36, 0.12) 0%, transparent 60%),
        var(--gradient-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.cta-info-item i {
    color: var(--color-primary);
    font-size: 16px;
}

/* ========================================
   GOOGLE REVIEWS EMBED
   ======================================== */
.reviews-section {
    padding: 120px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.google-reviews-embed {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* Header */
.gre-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 24px 0;
}

.gre-business-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: #e8eaed;
    margin-bottom: 4px;
}

.gre-business-address {
    font-size: 12px;
    color: #9aa0a6;
    line-height: 1.4;
}

.gre-avaliar-btn {
    flex-shrink: 0;
    padding: 8px 20px;
    border: 1px solid #8ab4f8;
    border-radius: 20px;
    color: #8ab4f8;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.gre-avaliar-btn:hover {
    background: rgba(138, 180, 248, 0.1);
}

/* Rating Summary */
.gre-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px 16px;
}

.gre-score {
    font-size: 36px;
    font-weight: 400;
    color: #e8eaed;
}

.gre-stars-row {
    display: flex;
    gap: 2px;
}

.gre-stars-row i {
    color: #f4b400;
    font-size: 16px;
}

.gre-count {
    font-size: 14px;
    color: #9aa0a6;
    margin-left: 4px;
}

/* Divider */
.gre-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 24px;
}

/* Reviews List */
.gre-reviews-list {
    padding: 8px 0;
}

.gre-review {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gre-review:last-child {
    border-bottom: none;
}

/* Review Header */
.gre-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.gre-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: white;
    flex-shrink: 0;
}

.gre-avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.gre-author-info {
    flex: 1;
}

.gre-author-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #e8eaed;
}

.gre-author-reviews {
    display: block;
    font-size: 12px;
    color: #9aa0a6;
}

.gre-menu-dots {
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.gre-menu-dots:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Review Meta */
.gre-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.gre-review-stars {
    display: flex;
    gap: 1px;
}

.gre-review-stars i {
    color: #f4b400;
    font-size: 13px;
}

.gre-review-date {
    font-size: 12px;
    color: #9aa0a6;
}

/* Review Text */
.gre-review-text {
    font-size: 14px;
    color: #bdc1c6;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Review Actions */
.gre-review-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gre-action-btn {
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    padding: 6px;
    font-size: 16px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.gre-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.gre-like-count {
    font-size: 13px;
    color: #9aa0a6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gre-like-count i {
    font-size: 14px;
}

/* Owner Reply */
.gre-owner-reply {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border-left: 3px solid rgba(66, 133, 244, 0.4);
}

.gre-reply-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gre-reply-author {
    flex: 1;
}

.gre-reply-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #e8eaed;
}

.gre-owner-tag {
    color: #9aa0a6;
    font-weight: 400;
}

.gre-reply-date {
    display: block;
    font-size: 11px;
    color: #9aa0a6;
}

.gre-reply-text {
    font-size: 13px;
    color: #bdc1c6;
    line-height: 1.6;
}

/* Footer */
.gre-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gre-google-logo {
    height: 24px;
    width: auto;
}

.gre-see-all {
    font-size: 13px;
    color: #8ab4f8;
    transition: var(--transition-fast);
}

.gre-see-all:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0;
}

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

.footer-logo {
    width: auto;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 16px;
    mix-blend-mode: lighten;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

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

.footer-links-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col li i {
    color: var(--color-primary);
    font-size: 12px;
    width: 16px;
}

.footer-links-col a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ========================================
   LIQUID CANVAS (Hero)
   ======================================== */
.liquid-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: screen;
}

/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */
.videos-section {
    padding: 120px 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.videos-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    z-index: 0;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 18, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.videos-section .container {
    position: relative;
    z-index: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* --- Glassmorphism Video Card --- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
}

.video-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: rgba(232, 18, 36, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(232, 18, 36, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.video-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(232, 18, 36, 0.1),
        transparent,
        rgba(232, 18, 36, 0.05),
        transparent
    );
    animation: glowSpin 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.video-card:hover .video-card-glow {
    opacity: 1;
}

@keyframes glowSpin {
    to { transform: rotate(360deg); }
}

.video-wrapper {
    position: relative;
    z-index: 1;
    padding: 12px 12px 0;
}

.video-wrapper video {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    display: block;
}

.video-card-info {
    position: relative;
    z-index: 1;
    padding: 20px 24px 24px;
}

.video-card-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-card-info h4 i {
    color: var(--color-primary);
    font-size: 15px;
}

.video-card-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 400px;
    }

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

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

    .gallery-item-large {
        grid-column: 1 / 3;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 26px;
    }

    .services-section,
    .about-section,
    .gallery-section,
    .videos-section,
    .cta-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-img {
        height: 200px;
    }

    .about-images {
        height: 350px;
    }

    .about-img-main {
        width: 65%;
    }

    .about-img-secondary {
        width: 55%;
        height: 45%;
    }

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

    .gallery-item-large {
        grid-column: 1 / 3;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-info {
        flex-direction: column;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer {
        padding: 60px 0 0;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .gallery-item-large {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 16 / 9;
    }

    .about-images {
        height: 300px;
    }

    .hero-video-wrapper {
        max-width: 100%;
    }
}

/* ========================================
   HERO VIDEO
   ======================================== */
.hero-video-wrapper {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5), 0 0 60px var(--color-primary-glow);
    position: relative;
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary), transparent 60%);
    z-index: -1;
    opacity: 0.4;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

/* --- Hero Unmute Button --- */
.hero-unmute-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    animation: unmutePulse 2.5s ease-in-out infinite;
}

.hero-unmute-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px var(--color-primary-glow);
    animation: none;
}

.hero-unmute-btn i {
    font-size: 16px;
}

.hero-unmute-btn.is-unmuted {
    background: var(--color-primary);
    border-color: var(--color-primary);
    animation: none;
}

@keyframes unmutePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 18, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(232, 18, 36, 0);
    }
}

/* ========================================
   SERVICE CARDS — NO IMAGE VARIANT
   ======================================== */
.service-card--no-img .service-card-body {
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card--no-img .service-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
}

.service-card--no-img .service-card-title {
    font-size: 22px;
}

.service-card--no-img .service-card-text {
    font-size: 14px;
    max-width: 280px;
}

/* ========================================
   FOOTER POLICIES LINK
   ======================================== */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-policies-link {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: var(--transition-base);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-policies-link:hover {
    color: var(--color-primary);
}
