﻿/* =============================================
   GoEasy Web Pública — Estilos Premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
/* ── Variables ── */
:root {
    --orange: #0055ff;
    --orange-dark: #0044cc;
    --orange-light: rgba(0, 85, 255, 0.1);
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #059669;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    background: #0a0a0a;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Animaciones ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.15);
    padding: 0.6rem 2rem;
}
.navbar-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 100;
}
.navbar-logo-premium {
    height: 48px; /* Tamaño minimalista */
    max-width: 180px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    object-fit: contain;
}
.navbar.scrolled .navbar-logo-premium {
    height: 38px;
    padding: 4px 10px;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar-links a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-links a { color: var(--white); }
.navbar-links a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .navbar-links a:hover { background: rgba(0, 85, 255, 0.2); }

.btn-nav-login {
    padding: 0.5rem 1.25rem !important;
    background: transparent !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}
.btn-nav-login:hover {
    color: var(--orange) !important;
}
.navbar.scrolled .btn-nav-login {
    color: var(--white) !important;
}
.navbar.scrolled .btn-nav-login:hover {
    color: var(--orange) !important;
}

.btn-nav-wa {
    padding: 0.5rem 1.25rem !important;
    background: var(--orange) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    transition: var(--transition) !important;
}
.btn-nav-wa:hover { 
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.4); 
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--white); }

/* ── Hero Premium ── */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    position: relative;
    background: #000000;
    /* Subtle texture or dark geometric pattern could be applied here */
    background-image: radial-gradient(circle at 10% 20%, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);
    overflow: hidden;
}

.hero-premium-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-premium-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--gray-800);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.hero-premium-content h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-premium-content h1 .highlight {
    color: var(--orange);
}

.hero-premium-content p {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    width: 100%;
}

.btn-primary-premium {
    padding: 1rem 2.5rem;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,85,255,0.3);
}

.btn-primary-premium:hover {
    background: var(--orange-dark);
    box-shadow: 0 8px 30px rgba(0,85,255,0.5);
    transform: translateY(-2px);
}

.btn-secondary-premium {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-premium:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.features-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.feature-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.feature-card-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon-premium {
    width: 40px;
    height: 40px;
    background: rgba(0, 85, 255, 0.1);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-card-premium h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-card-premium p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.hero-premium-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeIn 1.2s ease forwards;
}

.hero-premium-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-premium-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-premium-image {
        order: -1;
    }
    .hero-premium-content {
        align-items: center;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* ── Sections base ── */
.section {
    padding: 5rem 2rem;
}
.section-dark {
    background: linear-gradient(rgba(15,23,42,0.93), rgba(15,23,42,0.96)),
                url('../img/casos/tractor.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}
.section-dark h2 { color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-premium {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.95)),
                url('../img/leasing-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}
.section-premium h2 { color: var(--white); }
.section-premium .section-header p { color: rgba(255,255,255,0.6); }

.section-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 10%, rgba(0,85,255,0.05), transparent 40%);
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 4px;
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Qué es un Leasing ── */
.leasing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.leasing-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.leasing-text p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.section-premium .leasing-text h3 { color: var(--white); }
.section-premium .leasing-text p { color: rgba(255,255,255,0.7); }
.section-premium .benefit-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-premium .benefit-item h4 { color: var(--white); }
.section-premium .benefit-item p { color: rgba(255,255,255,0.5); }


.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.benefit-item:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    flex-shrink: 0;
}
.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}
.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}
.leasing-visual {
    position: relative;
}
.leasing-visual .visual-card {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 32px;
    padding: 3.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,85,255,0.4);
    position: relative;
    overflow: hidden;
}
.leasing-visual .visual-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.visual-card .big-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}
.visual-card .big-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.5rem;
}
.visual-card .stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item .stat-num { font-size: 1.8rem; font-weight: 800; }
.stat-item .stat-label { font-size: 0.8rem; opacity: 0.8; }

/* ── Casos de Éxito ── */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.caso-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.caso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.caso-card:hover::before { transform: scaleX(1); }
.caso-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.caso-card .caso-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.caso-card .caso-image {
    width: calc(100% + 3.5rem);
    margin: -1.75rem -1.75rem 1.25rem -1.75rem;
    height: 180px;
    overflow: hidden;
}
.caso-card .caso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.caso-card:hover .caso-image img {
    transform: scale(1.1);
}
.caso-card .caso-cat {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.caso-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.caso-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Cotizador Público ── */
.cotizador-section {
    background: linear-gradient(rgba(22,33,62,0.85), rgba(26,26,46,0.9)),
                url('../img/fleet-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
.cotizador-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0,85,255,0.1), transparent 70%),
                radial-gradient(circle at 80% 50%, rgba(0,85,255,0.08), transparent 70%);
}
.cotizador-wrapper {
    position: relative;
    z-index: 2;
}
.cotizador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.cotizador-form {
    background: rgba(17, 24, 39, 0.85); /* Fondo oscuro mucho más sólido */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cotizador-form label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.cotizador-form input,
.cotizador-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.cotizador-form input::placeholder { color: rgba(255,255,255,0.3); }
.cotizador-form input:focus,
.cotizador-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(0,85,255,0.2);
}
.cotizador-form select option { background: var(--dark); color: var(--white); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.btn-calcular {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,85,255,0.4);
}
.btn-calcular:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,85,255,0.5); }

.results-panel {
    background: rgba(17, 24, 39, 0.85); /* Fondo oscuro mucho más sólido */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }
.result-row .value { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.result-highlight {
    background: linear-gradient(135deg, rgba(0,85,255,0.15), rgba(0,85,255,0.08));
    border: 1px solid rgba(0,85,255,0.3);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.result-highlight .label { color: rgba(255,255,255,0.7); font-size: 0.85rem; display: block; margin-bottom: 0.25rem; }
.result-highlight .value { color: var(--orange); font-size: 2rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.tax-box {
    background: rgba(5,150,105,0.1);
    border: 1px solid rgba(5,150,105,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
.tax-box .tax-title {
    color: #34d399;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.tax-row { display: flex; justify-content: space-between; align-items: center; padding: 0.3rem 0; }
.tax-row .label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.tax-row .value { color: #34d399; font-weight: 700; font-size: 0.95rem; }
.legal-notes-pub {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}
.legal-notes-pub li {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    margin-bottom: 0.3rem;
    padding-left: 0.8rem;
    position: relative;
}
.legal-notes-pub li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
}
.save-msg-pub {
    display: none;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* ── Contacto ── */
.contacto-section {
    background: linear-gradient(135deg, rgba(0,85,255,0.92), rgba(0,68,204,0.95)),
                url('../img/contact-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.contacto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.contacto-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.contacto-wrapper h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.contacto-wrapper h2::after { display: none; }
.contacto-wrapper p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.contacto-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.contacto-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--gray-800);
    outline: none;
    transition: var(--transition);
}
.contacto-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.btn-contacto {
    grid-column: 1 / -1;
    padding: 0.9rem;
    .section-dark {
    background: linear-gradient(rgba(15,23,42,0.92), rgba(15,23,42,0.95)),
                url('../img/casos/tractor.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}    background: var(--dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.btn-contacto:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.contacto-msg {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ── Footer ── */
.footer {
    background: var(--gray-900);
    padding: 3rem 2rem 1.5rem;
    color: rgba(255,255,255,0.5);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 1; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.8rem; width: 100%; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }


/* ── WhatsApp flotante ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }


/* ── Responsive ── */
@media (max-width: 992px) {
    .pain-points { grid-template-columns: 1fr; max-width: 400px; }
    .leasing-grid { grid-template-columns: 1fr; gap: 2rem; }
    .casos-grid { grid-template-columns: repeat(2, 1fr); }
    .cotizador-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-links { 
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        gap: 0.5rem;
    }
    .navbar-links.open { display: flex; }
    .navbar-links a { color: var(--gray-700) !important; padding: 0.75rem 1rem; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: 2rem; }
    .casos-grid { grid-template-columns: 1fr; }
    .contacto-form { grid-template-columns: 1fr; }
    .section { padding: 3rem 1.25rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .pain-points { grid-template-columns: 1fr 1fr 1fr; max-width: 100%; }
    .pain-card p { font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .pain-points { grid-template-columns: 1fr; max-width: 300px; }
    .form-row { grid-template-columns: 1fr; }
}

/* -- Opciones de Veh�culos -- */
.vehiculos-section {
    background: #000;
    padding: 6rem 2rem;
    position: relative;
}
.vehiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.vehiculo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vehiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,85,255,0.4);
}
.vehiculo-bg { position: relative; width: 100%; height: auto; display: block; object-fit: contain; z-index: 1; }
.vehiculo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}
.vehiculo-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    text-align: center;
}
.vehiculo-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.vehiculo-badge {
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vehiculo-price {
    background: linear-gradient(180deg, #ffe066, #d4af37);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    border: 2px solid #fff;
}
.vehiculo-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.vehiculo-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.2rem;
}
.vehiculo-anticipo {
    background: rgba(0,0,0,0.85);
    border: 1px solid #444;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}
.vehiculo-desde {
    position: absolute;
    top: 30px;
    right: -40px;
    background: var(--white);
    color: #000;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* -- Hero Redise�ado (Full Width) -- */
.hero-full {
    background: radial-gradient(circle at 70% 50%, #0a1128 0%, #000000 70%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.hero-full-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 3%;
    flex-grow: 1;
    z-index: 2;
}
.hero-full-text {
    flex: 1;
    max-width: 600px;
}
.hero-full-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0;
}
.hero-full-text .highlight {
    color: #0055ff;
}
.hero-full-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}
.hero-full-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.hero-full-image img {
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero-features-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 4rem;
    z-index: 2;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-feature-item i {
    color: #0055ff;
    font-size: 2rem;
}
.hero-feature-item div h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.hero-feature-item div p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* -- Zocalo Marcas -- */
.trusted-brands {
    background: #ffffff;
    padding: 2rem 0;
    text-align: center;
}
.trusted-brands h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.brands-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.brand-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s ease;
}
.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: #0055ff;
}

/* -- Mejoras Hero y Navbar -- */
.navbar {
    max-width: 100%;
    padding: 1rem 3%;
    justify-content: space-between;
}
.navbar-links {
    flex-grow: 1;
    justify-content: center;
    gap: 3rem;
}
.hero-full-main {
    padding: 2rem 2%;
    gap: 2rem;
}
.hero-full-text {
    flex: 0 0 45%;
}
.hero-full-text h1 {
    font-size: 4.5rem;
}
.hero-full-image {
    flex: 0 0 55%;
    justify-content: flex-start;
}
.hero-full-image img {
    max-height: 800px;
    transform: scale(1.15) translateX(-5%);
    transform-origin: left center;
    mask-image: radial-gradient(ellipse at 40% 50%, black 50%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 40% 50%, black 50%, transparent 80%);
    box-shadow: none;
}
.hero-features-bar {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    margin: 0 3% 2rem 3%;
    background: rgba(10, 17, 40, 0.5);
}
.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #0055ff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 255, 0.1);
}
.icon-circle i {
    font-size: 1.5rem;
    color: #0055ff;
}

/* -- Correcci�n Fusi�n Imagen Hero (Efecto Curvo) -- */
.hero-full {
    background: #020611;
    position: relative;
}
.hero-full-main {
    position: relative;
    z-index: 3;
    justify-content: flex-start;
}
.hero-full-text {
    flex: 0 0 50%;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.hero-full-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    display: block;
    margin: 0;
    padding: 0;
    flex: none;
}
.hero-full-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: right center;
    transform: none;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.hero-arc {
    position: absolute;
    top: -10%;
    left: 40%;
    width: 70%;
    height: 120%;
    border-radius: 50%;
    border-left: 3px solid rgba(0, 85, 255, 0.4);
    box-shadow: inset 80px 0 100px rgba(0, 85, 255, 0.15);
    z-index: 2;
    pointer-events: none;
}
.hero-features-bar {
    position: relative;
    z-index: 3;
    background: rgba(2, 6, 17, 0.8);
    border: 1px solid rgba(0, 85, 255, 0.2);
}

/* -- Estilos de los Logos Reales -- */
.brand-img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}
.brand-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* -- Centrado Vertical del Navbar -- */
.navbar {
    align-items: center !important;
}
.navbar-links {
    align-items: center !important;
    margin-top: 0 !important;
}

/* -- Logo Horizontal por CSS -- */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    mix-blend-mode: screen; /* Elimina el fondo negro fundi�ndolo con el azul oscuro */
    gap: 15px;
    padding-left: 1rem;
}
.logo-part-icon {
    width: 75px;
    height: 75px;
    object-fit: cover;
    object-position: center 15%; /* Recorta la parte superior (OC) */
    transform: scale(1.4); /* Agranda el �cono dentro de su caja */
}
.logo-part-text {
    width: 180px;
    height: 75px;
    object-fit: cover;
    object-position: center 85%; /* Recorta la parte inferior (Texto) */
    transform: scale(1.6); /* Agranda el texto dentro de su caja */
    margin-left: 15px;
}

/* -- Mejoras Barra de Caracter�sticas (Features Bar) -- */
.hero-features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem !important;
}
.hero-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 1.5rem;
}
.feature-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}
.icon-circle {
    width: 65px !important;
    height: 65px !important;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 85, 255, 0.4) !important;
    background: #000b24 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
}
.icon-circle i {
    font-size: 1.8rem !important;
    color: #3388ff !important;
}
.hero-feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}
.hero-feature-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* -- Estilo Neon para los �conos -- */
.icon-circle i {
    color: #ffffff !important;
    text-shadow: 0 0 8px #0055ff, 0 0 15px #00aaff, 0 0 20px #0055ff !important;
}

/* -- Logos Reales Marcas -- */
.brand-img {
    height: 60px !important;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.brand-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.brands-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* -- Logos parejos - tama�o normalizado -- */
.brand-img {
    height: 80px !important;
    width: 160px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.brand-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.brands-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 2.5rem;
}

/* -- Grilla Veh�culos 4 columnas -- */
.vehiculos-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 0 !important; margin-top: 3rem !important; width: 100% !important; padding: 0 !important; align-items: start !important; }
@media (max-width: 1200px) {
    .vehiculos-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
    .vehiculos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .vehiculos-grid { grid-template-columns: 1fr !important; }
}

/* -- Full-width Vehiculos Section -- */
.vehiculos-section {
    padding: 6rem 0 !important;
}
.vehiculos-section .section-container,
.vehiculos-section > div {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.vehiculos-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 0 !important; margin-top: 3rem !important; width: 100% !important; padding: 0 !important; align-items: start !important; }
.vehiculo-card {
    border-radius: 0 !important;
}



/* -- Responsiveness Hero Section -- */
@media (max-width: 992px) {
    .hero-full-main {
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 3rem !important;
        padding-bottom: 2rem !important;
    }
    .hero-full-text {
        flex: 0 0 auto !important;
        max-width: 90% !important;
        text-align: center !important;
    }
    .hero-full-text h1 {
        font-size: 3rem !important;
    }
    .hero-full-text p {
        font-size: 1.1rem !important;
    }
    .hero-full-image {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        flex: 0 0 auto !important;
        margin-top: 2rem !important;
        justify-content: center !important;
    }
    .hero-full-image img {
        max-height: 400px !important;
        object-position: center !important;
        transform: none !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
        width: 100% !important;
    }
    .hero-arc {
        display: none !important;
    }
    .hero-features-bar {
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 2rem !important;
    }
    .hero-feature-item {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .hero-full {
        padding-top: 80px !important;
    }
    .hero-full-text h1 {
        font-size: 2.5rem !important;
    }
}

/* -- Fix Responsiveness Vehiculos Grid -- */
@media (max-width: 992px) {
    .vehiculos-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
}

@media (max-width: 576px) {
    .vehiculos-grid { 
        grid-template-columns: 1fr !important; 
    }
}

/* -- Ajustes de tamano de fuente solicitados (Nav y Hero) -- */
.navbar-links a {
    font-size: 1.15rem !important; /* MÃ¡s grande para que se lean mejor */
}

@media (min-width: 993px) {
    .hero-full-text h1 {
        font-size: 3.5rem !important; /* MÃ¡s chico en desktop */
    }
}
