/* CSS Reset and Tech Premium Blue V5 Variables */
:root {
    /* Tech Premium Color Palette */
    --bg-main: #172442;        /* Deep Space Navy/Black (Lightened 15%) */
    --bg-dark: #1b2a4a;        /* Slate 900 (Lightened 15%) */
    --bg-deep-dark: #101a30;   /* Slate 950 (Lightened 15%) */
    
    --royal-blue: #2563EB;     /* Royal / Tech Blue */
    --royal-blue-light: #3b82f6;
    --royal-blue-hover: #1d4ed8;
    --ice-blue: #e0f2fe;
    
    --accent: #25D366;         /* WhatsApp Green */
    --accent-hover: #1EBE5D;
    
    --text-main: #cbd5e1;      /* Slate 300 */
    --text-light: #94a3b8;     /* Slate 400 */
    --text-white: #ffffff;
    
    --border: rgba(59, 130, 246, 0.2); /* Tech blue border very subtle */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-blue: 0 0 25px rgba(59, 130, 246, 0.3);
    --shadow-wa: 0 8px 24px rgba(37, 211, 102, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 800;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-xl { margin-top: 3rem; }
.bg-dark { background-color: var(--bg-dark); }
.bg-deep-dark { background-color: var(--bg-deep-dark); }
.w-100 { width: 100%; }
.text-blue { color: var(--royal-blue-light); }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Tech */
.glassmorphism-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ================== Topbar & Navbar ================== */
.topbar {
    background: var(--bg-deep-dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-light);
    display: none;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-content { display: flex; justify-content: flex-end; gap: 30px; padding: 12px 24px; }
.topbar-item { display: flex; align-items: center; gap: 8px; }

.navbar {
    position: sticky;
    top: 0;
    background: rgba(224, 242, 254, 0.98); /* Light Tech Ice Blue */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 100;
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.08);
    transition: var(--transition);
}

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

.logo-wrapper { height: 65px; display: flex; align-items: center; } /* Increased logo size */
.brand-logo { 
    height: 100%; object-fit: contain; 
    mix-blend-mode: multiply;
}

/* Buttons */
.btn-primary, .btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition);
    letter-spacing: 0.5px;
    border: none;
}
.btn-primary { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary-small { padding: 12px 28px; font-size: 0.95rem; }
.btn-primary i, .btn-primary-small i { font-size: 1.5rem; }

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, #60a5fa 100%);
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
.animate-pulse-blue { animation: pulseBlue 2s infinite; }

/* ================== Hero Section ================== */
.hero {
    position: relative;
    padding: 160px 24px 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero_bg_v6.png'); /* Keep the same high quality background */
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* filter removed to preserve exact car colors */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(11, 17, 32, 0.45) 0%, rgba(2, 6, 23, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-trusted {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--royal-blue-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
    box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--text-white);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--text-main);
    margin-bottom: 50px;
    max-width: 750px;
    font-weight: 400;
    line-height: 1.7;
}

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

.trust-microcopy {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 500;
}
.trust-microcopy i { color: var(--accent); font-size: 1.2rem; }

/* ================== Sections Base ================== */
section { padding: 120px 0; }
.section-header { margin-bottom: 60px; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 20px; color: var(--text-white); letter-spacing: -1px; }
.section-subtitle { font-size: 1.15rem; color: var(--text-light); max-width: 650px; margin: 0 auto; line-height: 1.7; font-weight: 400;}

/* ================== Photo Gallery ================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
}
.premium-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.25) saturate(0.8) hue-rotate(-15deg); /* Tono frío azulado, contraste medio-alto */
    transition: transform 0.8s ease, filter 0.8s ease;
}
.gallery-item:hover .premium-photo {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.25) saturate(0.9) hue-rotate(-15deg);
}

/* ================== Benefits Section ================== */
.benefits-grid { display: grid; gap: 30px; }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) and (max-width: 1023px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

.benefit-card {
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-blue); border-color: rgba(59, 130, 246, 0.4); }

.icon-box {
    width: 80px; height: 80px;
    margin: 0 auto 30px;
    color: var(--royal-blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    transition: var(--transition);
}
.benefit-card:hover .icon-box { transform: scale(1.1); color: var(--text-white); }
.benefit-card h3 { margin-bottom: 16px; font-size: 1.4rem; letter-spacing: -0.5px;}
.benefit-card p { color: var(--text-light); font-size: 1.05rem; }

/* ================== Pricing Section ================== */
.badge-pricing {
    display: inline-block;
    border: 1px solid var(--royal-blue);
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue-light);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.pricing { background: var(--bg-dark); }
.pricing-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-5px);
}

.highlight-card {
    border: 1px solid var(--royal-blue);
    transform: scale(1.05);
    background: rgba(37, 99, 235, 0.05);
}
.highlight-card:hover { transform: scale(1.05) translateY(-5px); }

.best-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--royal-blue);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 0;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.pricing-icon {
    font-size: 2.8rem; color: var(--royal-blue-light);
    margin-bottom: 20px;
    margin-top: 10px;
}

.pricing-card h3 { font-size: 1.15rem; color: var(--text-main); margin-bottom: 16px; font-weight: 500;}
.price { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: var(--text-white); margin-bottom: 10px; }


/* ================== Testimonials ================== */
.testimonials-grid-large {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    padding: 40px;
}

.stars { color: #F59E0B; font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 2px;}
.quote { font-size: 1.1rem; color: var(--text-main); margin-bottom: 30px; font-weight: 400; line-height: 1.7;}
.author { display: flex; align-items: center; gap: 20px; }

.avatar-letter {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--royal-blue);
    color: var(--royal-blue-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.4rem; font-family: var(--font-heading);
}

.author-info strong { display: block; color: var(--text-white); font-size: 1.1rem; font-weight: 600;}
.author-info span { font-size: 0.9rem; font-weight: 500; }

/* ================== Location Section ================== */
.location-section { padding-bottom: 120px; }
.location-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media (min-width: 900px) {
    .location-container { flex-direction: row; }
}

.location-content {
    flex: 1; padding: 60px 50px;
}
.location-map {
    flex: 1; min-height: 400px;
    filter: invert(90%) hue-rotate(180deg) contrast(110%); /* Deep Blue map styling approximation */
}

.location-text { font-size: 1.15rem; color: var(--text-light); margin-bottom: 40px; }

.contact-card {
    display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px;
}
.contact-card i { font-size: 2.2rem; }
.contact-card strong { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 0.5px;}
.contact-card div { color: var(--text-main); line-height: 1.6; }

.location-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px;}
.btn-location {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; border: 1px solid var(--border);
    transition: var(--transition); color: var(--text-white); font-family: var(--font-heading);
}
.btn-google:hover { border-color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.btn-waze:hover { border-color: #0ea5e9; background: rgba(14, 165, 233, 0.1); }

/* ================== Footer ================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid; gap: 50px; margin-bottom: 80px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }

.brand-logo-footer { 
    height: 65px; 
    margin-bottom: 30px; 
    mix-blend-mode: multiply; 
    background: rgba(224, 242, 254, 0.9); 
    padding: 12px; 
    border-radius: var(--radius-md);
}
    
.footer-brand p { max-width: 450px; font-size: 1.05rem; line-height: 1.8; color: var(--text-light); }

.footer-contact-links h4, .footer-pqr h4 { color: var(--text-white); margin-bottom: 30px; font-size: 1.3rem; font-family: var(--font-heading); }
.footer-contact-links p { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 1.05rem; }
.blue-link { color: var(--royal-blue-light); transition: var(--transition); }
.blue-link:hover { color: var(--text-white); text-shadow: 0 0 10px var(--royal-blue); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px; text-align: center; font-size: 0.9rem; color: var(--text-light);
}

/* ================== Footer Light (V7) ================== */
.footer-light {
    background: rgba(224, 242, 254, 0.98);
    color: #0f172a;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}
.footer-light .footer-brand p, .footer-light .footer-bottom, .footer-light .footer-contact-links p, .footer-light .footer-pqr p {
    color: #334155;
}
.footer-light h4, .footer-light .footer-contact-links h4, .footer-light .footer-pqr h4 {
    color: #0f172a;
}
.footer-light .blue-link {
    color: var(--royal-blue);
}
.footer-light .blue-link:hover {
    color: var(--royal-blue-hover);
    text-shadow: none;
}
.footer-light .footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* ================== Floating Actions ================== */
.fab-whatsapp {
    position: fixed; bottom: 40px; right: 40px;
    width: 65px; height: 65px;
    background: var(--accent); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; box-shadow: var(--shadow-wa);
    z-index: 1000; transition: var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.1); background: var(--accent-hover); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

.mobile-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 999;
    display: flex;
}
@media (min-width: 768px) {
    .mobile-sticky-cta { display: none; }
}
@media (max-width: 767px) {
    .fab-whatsapp { bottom: 100px; right: 24px; }
}
