:root {
    --bg-black: #0b0f19;
    --card-dark: #141b2d;
    --orange: #ff6600;
    --sky-blue: #00d2ff;
    --metal-gray: #94a3b8;
    --white: #ffffff;
    --accent-glow: rgba(0, 210, 255, 0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }
body { background-color: var(--bg-black); color: var(--white); line-height: 1.6; transition: background 0.3s; }

/* Header */
header {
    background: linear-gradient(to bottom, #00d2ff, #0033cc);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.top-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 4px 5%; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.logo-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    cursor: pointer; 
}

.logo-container img#main-logo {
    height: 120px;
    width: auto; 
    object-fit: contain; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,210,255,0.3);
}

.moto-icon {
    height: 100px;
    width: auto;
    display: inline-block;
    animation: moveAndFlip 8s ease-in-out infinite;
}
@keyframes moveAndFlip {
    0% { transform: translateX(0); }
    50% { transform: translateX(60px); }
    100% { transform: translateX(0); }
}

.bottom-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: transparent;
    position: relative;
    flex-wrap: wrap;
}
nav { display: flex; align-items: center; flex: 1; justify-content: flex-start; }
nav ul { display: flex; list-style: none; gap: 20px; align-items: center; flex-wrap: wrap; transition: all 0.3s ease; }
nav a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: 0.3s; cursor: pointer; }
nav a:hover { color: var(--orange); }

.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background: var(--sky-blue); min-width: 180px; box-shadow: 0px 10px 30px rgba(0,0,0,0.8); z-index: 10; border-radius: 8px; top: 100%; left: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.dropdown-content a { color: var(--bg-black); padding: 12px 18px; display: block; font-size: 0.85rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 600; transition: 0.3s; }
.dropdown-content a:hover { background: var(--orange); color: var(--white); }
.dropdown:hover .dropdown-content { display: block; }

.nav-toggle { display: none; background: transparent; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; transition: color 0.3s; margin-right: 15px; }
.nav-toggle:hover { color: var(--orange); }

nav ul .dropdown > a { color: #ffffff; font-weight: 800; display: flex; align-items: center; gap: 6px; }

.actions-nav { display: flex; gap: 15px; align-items: center; }
.nav-btn { background: transparent; border: none; color: var(--white); cursor: pointer; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 6px; transition: 0.3s; }
.nav-btn.cart { background: var(--orange); color: var(--white); }
.nav-btn.login { background: rgba(255,255,255,0.1); }
.nav-btn:hover { opacity: 0.85; transform: translateY(-1px); }

@media (max-width: 768px) {
    .logo-container img#main-logo {
        height: auto;
        width: auto;
        max-width: 45vw;
        max-height: 70px;
    }
    .moto-icon {
        height: auto;
        width: auto;
        max-width: 30vw;
        max-height: 50px;
        animation: moveAndFlipMobile 8s ease-in-out infinite;
    }
    .logo-container { gap: 6px; }
    @keyframes moveAndFlipMobile {
        0% { transform: translateX(0); }
        50% { transform: translateX(15px); }
        100% { transform: translateX(0); }
    }
    .nav-toggle { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; left: 0;
        background: rgba(0, 51, 204, 0.98);
        padding: 15px 0;
        z-index: 20;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        gap: 0;
        margin: 0;
    }
    nav ul.nav-open { display: flex; }
    nav ul li { width: 100%; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    nav ul li:last-child { border-bottom: none; }
    .dropdown-content {
        position: static !important;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.2);
        display: none;
        margin-top: 10px;
        border-radius: 5px;
    }
    .dropdown.open .dropdown-content { display: block !important; }
    .dropdown-content a { padding: 8px 20px; color: var(--white); }
    .dropdown-content a:hover { background: var(--orange); color: var(--white); }
}

/* Hero Slider Section */
.hero-slider { height: 75vh; width: 100%; background-size: cover; background-position: center center; transition: background-image 1.2s ease-in-out; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(11, 15, 25, 0.6); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
.hero-content h2 { font-size: 3.2rem; color: var(--white); margin-bottom: 15px; font-weight: 900; text-transform: uppercase; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.hero-content h2 span { color: var(--sky-blue); }
.hero-content p { font-size: 1.25rem; color: var(--metal-gray); margin-bottom: 35px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn-main { background: var(--sky-blue); color: var(--bg-black); font-weight: 800; padding: 14px 35px; border-radius: 30px; text-decoration: none; display: inline-block; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,210,255,0.3); cursor: pointer; }
.btn-main:hover { background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(255,102,0,0.4); }

/* Main Sections */
.section-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; border-radius: 0; }
.bg-black { background-color: var(--bg-black); color: var(--white); }
.bg-white { background-color: #ffffff; color: #222; }
.bg-white .section-title { color: #222; }
.bg-white .section-title span { color: var(--orange); }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--white); font-weight: 800; }
.section-title span { color: var(--orange); }

/* Catalog Grid */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.product-card { background: var(--card-dark); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.3); transition: all 0.4s ease; cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 18px 45px var(--accent-glow); border: 1px solid var(--sky-blue); }

/* Contenedor de la imagen para el overlay del logo */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #54b4eb;
}

.product-img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #54b4eb;
    padding: 10px;
    border-radius: 14px 14px 0 0;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

/* Overlay del logo animado - Ahora encima de la imagen */
.product-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card:hover .product-logo-overlay {
    opacity: 1;
}
.product-logo-overlay img {
    width: auto;
    height: 80%;
    max-height: 80%;
    object-fit: contain;
    opacity: 0.35;
    transform: translateX(100%);
    animation: slideLogo 3s linear infinite;
    animation-play-state: paused;
}
.product-card:hover .product-logo-overlay img {
    animation-play-state: running;
}
@keyframes slideLogo {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.product-info { padding: 25px; }
.product-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); font-weight: 700; }
.product-info .price { font-size: 1.4rem; color: var(--orange); font-weight: 800; margin-bottom: 20px; }
.btn-detail { width: 100%; background: rgba(0, 210, 255, 0.12); color: var(--sky-blue); border: none; padding: 12px; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.btn-detail:hover { background: var(--sky-blue); color: var(--bg-black); }

/* Company Sections */
#company-sections { display: none; padding: 40px 5%; }
.company-featured-section { background: var(--card-dark); border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.4); display: block; }
.company-featured-top { text-align: center; margin-bottom: 20px; }
.company-featured-top img { max-width: 200px; height: auto; }
.company-featured-body { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.company-featured-img { flex: 1; min-width: 300px; }
.company-featured-img img { width: 100%; border-radius: 12px; object-fit: cover; height: 300px; }
.company-featured-text { flex: 1; min-width: 300px; }
.company-featured-text h3 { color: var(--sky-blue); font-size: 2rem; margin-bottom: 15px; }
.company-featured-text p { color: var(--metal-gray); line-height: 1.8; font-size: 1.1rem; text-align: justify; }
.company-card { background: var(--card-dark); padding: 25px; border-radius: 16px; border-left: 5px solid var(--orange); box-shadow: 0 8px 20px rgba(0,0,0,0.4); transition: 0.3s; margin-bottom: 20px; display: block; }
.company-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,210,255,0.2); }
.company-card h3 { color: var(--sky-blue); font-size: 1.5rem; margin-bottom: 15px; font-weight: 700; }
.company-card p { color: var(--metal-gray); line-height: 1.8; }
.company-card img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 8px; margin-top: 15px; }

/* MODAL DE PRODUCTO */
#product-modal .modal-content { background: #ffffff !important; color: #222 !important; max-width: 900px; padding: 20px; }
#product-modal .modal-text h2 { color: var(--orange) !important; }
#product-modal .modal-text p { color: #444 !important; }
#product-modal .modal-text strong { color: #000; }
#product-modal #modal-img { object-fit: contain !important; width: 100%; max-height: 480px !important; border-radius: 8px; background: #fff; transition: transform 0.4s ease; cursor: zoom-in; }
#product-modal #modal-img:hover { transform: scale(1.05); }
#product-modal .modal-body-grid { align-items: flex-start; }

.modal-specs-container { max-height: 200px; overflow-y: auto; margin: 10px 0; border: 1px solid #ddd; border-radius: 8px; background: #f9f9f9; padding: 5px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.specs-table td { padding: 6px 10px; border-bottom: 1px solid #eee; text-align: left; }
.specs-table td:first-child { font-weight: 600; color: var(--orange); width: 40%; }
.specs-table td:last-child { color: #333; }

/* Modal Genérico */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 20px; }
.modal-content { background: var(--card-dark); width: 100%; border-radius: 16px; padding: 40px; position: relative; animation: fadeIn 0.3s ease; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 1.8rem; color: var(--metal-gray); cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--orange); }
.modal-body-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: center; margin-top: 20px; }

/* Seguros Section */
.seguro-content { display: block; padding: 40px; border-radius: 16px; animation: fadeIn 0.4s ease; }
#todo-riesgo { background: #fcfcfc; color: #222; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
#todo-riesgo h3 { color: var(--orange) !important; }
#todo-riesgo .form-group label { color: #555; font-weight: 700; }
#todo-riesgo input, #todo-riesgo textarea, #todo-riesgo select { width: 100%; padding: 12px; background: #ffffff; border: 1px solid #ddd; color: #333; border-radius: 8px; font-size: 0.95rem; }
#todo-riesgo input:focus, #todo-riesgo textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 2px rgba(255,102,0,0.2); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; }

/* Contact Form */
.contact-form-card { max-width: 700px; margin: 0 auto; background: var(--card-dark); padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
#contacto .form-group label { color: var(--white); font-weight: 700; }
#contacto .form-group input, #contacto .form-group textarea { background: var(--bg-black); border: 1px solid rgba(255,255,255,0.1); color: var(--white); border-radius: 8px; padding: 12px; width: 100%; font-size: 0.95rem; }
#contacto .form-group input::placeholder, #contacto .form-group textarea::placeholder { color: var(--metal-gray); }

/* Footer */
footer { background: #070a12; padding: 50px 5% 25px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 80px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.social-icons { display: flex; gap: 20px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; background: rgba(255,255,255,0.05); color: var(--white);
    border-radius: 50%; font-size: 1.8rem; transition: all 0.3s ease; text-decoration: none;
    animation: floatIcon 2.5s ease-in-out infinite;
}
@keyframes floatIcon {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2); }
    100% { transform: translateY(0px) scale(1); }
}
.social-icons a:hover {
    animation-play-state: paused;
    background: var(--sky-blue); color: var(--bg-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.5);
}
@media (max-width: 600px) { .social-icons a { width: 50px; height: 50px; font-size: 1.4rem; } }

.footer-bottom { text-align: center; margin-top: 40px; color: var(--metal-gray); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.03); padding-top: 20px; }

/* Admin Panel */
#admin-panel { display: none; padding: 40px 5%; background: #060910; min-height: 85vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.admin-tabs { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { background: var(--card-dark); color: var(--metal-gray); border: none; padding: 12px 22px; border-radius: 8px; cursor: pointer; font-weight: 700; transition: 0.3s; }
.tab-btn.active { background: var(--sky-blue); color: var(--bg-black); box-shadow: 0 4px 15px rgba(0,210,255,0.3); }
.admin-section { display: none; background: var(--card-dark); padding: 30px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.admin-section.active { display: block; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { padding: 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
th { color: var(--sky-blue); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.5px; }

/* Efecto de llamada */
.call-btn-wrapper a { color: #ffffff; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.3s ease; }
.call-btn-wrapper a i { transition: transform 0.3s ease; }
.call-btn-wrapper a:hover { color: var(--orange); }
.call-btn-wrapper a:hover i { animation: ringPhone 0.6s ease-in-out infinite; }
@keyframes ringPhone {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

/* Chat Flotante - Siempre visible en móviles */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}
.chat-btn-float {
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: 0.3s;
}
.chat-btn-float:hover { transform: scale(1.1); }
.chat-box {
    display: none;
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--card-dark);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.chat-header { background: #25D366; color: var(--white); padding: 14px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.chat-body { padding: 15px; height: 220px; overflow-y: auto; font-size: 0.85rem; color: var(--metal-gray); display: flex; flex-direction: column; gap: 10px; }
.chat-footer { padding: 12px; display: flex; gap: 8px; background: var(--bg-black); border-top: 1px solid rgba(255,255,255,0.05); }
.chat-footer input { flex: 1; padding: 8px 12px; border-radius: 6px; border: none; font-size: 0.85rem; background: var(--card-dark); color: var(--white); }
.chat-footer button { background: #25D366; color: var(--white); border: none; padding: 8px 15px; border-radius: 6px; cursor: pointer; }

/* Sección Contacto en 2 columnas */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 20px; }
.contact-map-container { width: 100%; height: 300px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.contact-map-container iframe { width: 100%; height: 100%; border: 0; }
.contact-info-data { background: var(--card-dark); padding: 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); color: var(--white); }
.contact-info-data h4 { color: var(--sky-blue); font-size: 1.2rem; margin-bottom: 10px; }
.contact-info-data p { color: var(--metal-gray); margin-bottom: 8px; font-size: 0.95rem; }
.contact-info-data p strong { color: var(--white); }
.contact-right { display: flex; justify-content: center; }
#contacto .contact-form-card { max-width: 100% !important; margin: 0 !important; width: 100%; }

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map-container { height: 250px; }
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }


/* ===== SECCIÓN FINANCIACIÓN (Diseño Mockup) ===== */
.financiacion-hero {
    background: #54b4eb;
    border-radius: 16px;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.financiacion-hero-text h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}
.financiacion-hero-text p {
    color: #1a3e60;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}
.financiacion-hero-img {
    max-width: 350px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

.financiacion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.financiacion-card-new {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.financiacion-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.financiacion-card-new i {
    font-size: 4rem;
    color: #1a3e60;
    margin-bottom: 15px;
}
.financiacion-card-new h4 {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.btn-financiacion {
    background: #ff6600;
    color: white;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 30px auto 20px;
    font-size: 1.2rem;
    transition: 0.3s;
    text-transform: uppercase;
}
.btn-financiacion:hover { background: #e65c00; transform: scale(1.02); }

/* Slider de Logos */
.financiacion-slider-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 30px;
}
.financiacion-slider-container { overflow: hidden; width: 100%; }
.financiacion-slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: slideLogos 25s linear infinite;
}
.financiacion-slider-track img {
    height: 60px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: 0.3s;
}
.financiacion-slider-track img:hover { transform: scale(1.1); }
.financiacion-slider-container:hover .financiacion-slider-track { animation-play-state: paused; }
@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FORMULARIO DE FINANCIACIÓN EN FONDO BLANCO */
.financiacion-form-container {
    background: #ffffff !important;
    color: #222 !important;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 900px;
    margin: 40px auto 0;
}
.financiacion-form-container .form-group label { color: #444 !important; }
.financiacion-form-container input,
.financiacion-form-container select,
.financiacion-form-container textarea {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
}
.financiacion-form-container input:focus,
.financiacion-form-container select:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 2px rgba(255,102,0,0.2) !important;
}
.financiacion-form-container .form-politicas { color: #555 !important; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-politicas { margin: 20px 0; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.form-politicas input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--sky-blue); cursor: pointer; }


/* ===== CORRECCIONES DE RESPONSIVIDAD MÓVIL ===== */
@media (max-width: 768px) {
    /* Banner de financiación */
    .financiacion-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .financiacion-hero-text h2 {
        font-size: 1.8rem !important;
    }
    .financiacion-hero-text p {
        font-size: 1.1rem !important;
    }
    .financiacion-hero-img {
        max-width: 200px !important;
    }
    
    /* Grid de tarjetas */
    .financiacion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Formulario de cotización */
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    #fin-preview-container {
        grid-column: auto !important;
    }

    /* Botón del chat flotante */
    .chat-widget {
        right: 10px !important;
        bottom: 15px !important;
    }
    .chat-btn-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .financiacion-grid {
        grid-template-columns: 1fr;
    }
}