/*!
Version: 1.0.0
Theme Name: Astra hijo
Template: astra
Description: The Astra WordPress theme is lightning-fast and highly customizable.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: astra-hijo
*/

/* =========================================
   MCT DIGITAL - FASTBACK (Estilo Ford)
   ========================================= */

:root {
    --ford-blue: #003478;
    /* El azul icónico de Ford */
    --ford-light-blue: #1C69D4;
    /* Azul brillante para hovers/botones */
    --text-dark: #1a1a1a;
    /* Gris muy oscuro, no negro puro */
    --text-gray: #555555;
    --ford-blue-hover: #002555;
    /*Hover para el single*/
    --text-main: #222;
    --bg-light: #f7f7f7;
    /* Fondo gris suave para separar secciones */
    --border-radius: 8px;
    /* Bordes redondeados pero sólidos */
}

.site-header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    /* El desenfoque mágico */
    -webkit-backdrop-filter: blur(10px);
    /* Para Safari */
}

/* Animaciones Hero */
.mct-fade {
    opacity: 0;
    /* Empiezan invisibles */
    transform: translateY(40px);
    /* Empiezan 40px más abajo */
}

.mct-fade.is-visible {
    /* empieza rápido y frena muy suave.
       Duración 1.2s.
    */
    animation: softSlideUp 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

/* 2. Los retrasos para el efecto escalonado (Stagger) */
.is-visible.delay-1 {
    animation-delay: 0.1s;
}

/* Título entra casi inmediato */
.is-visible.delay-2 {
    animation-delay: 0.35s;
}

/* Texto espera un poco */
.is-visible.delay-3 {
    animation-delay: 0.6s;
}

.is-visible.delay-4 {
    animation-delay: 0.8s;
}

/* Botón entra al final */

/* 3. La definición del movimiento (Keyframes) */
@keyframes softSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- ESTILOS DEL ARCHIVE --- */

/* Liberar la página de Autos del contenedor de Astra */
.post-type-archive-autos .ast-container {
    display: block;
}

.ast-separate-container {
    background-color: #ffffff;

}

.ford-archive-container {
    background-color: #ffffff;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- Top Bar Filters --- */
.mct-top-filters {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
    border: 1px solid #eaeaea;
    width: 100%;
}

.mct-top-filters .filter-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    font-weight: 700;
}

.mct-filters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.mct-filters-grid .filter-group {
    margin-bottom: 0;
}

.mct-filters-grid label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
}

.mct-filters-grid select {
    width: 100%;
    height: 48px;
    /* Fixed height para arreglar el recorte de fuente */
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    font-size: 1rem;
    color: #334155;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    appearance: auto;
}

.mct-filters-grid select:focus {
    outline: none;
    border-color: #003478;
    box-shadow: 0 0 0 3px rgba(0, 52, 120, 0.1);
    background-color: #fff;
}

@media (max-width: 768px) {
    .mct-top-filters {
        padding: 20px 15px;
    }

    .mct-filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Grilla Principal --- */
.category-block {
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cat-title {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #003478;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1e293b;
    font-size: 24px;
}

.ford-autos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Card Individual */
.ford-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ford-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 52, 120, 0.15);
    border-color: #003478;
}

.ford-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-img-wrapper {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background: #f8fafc;
    width: 100%;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Efecto Zoom en la foto al hacer hover en toda la tarjeta */
.ford-card:hover .card-img-wrapper img {
    transform: scale(1.08);
    /* Zoom sutil hacia adentro */
}

/* Efectos para la cabecera / menú global */

/* 1. Animación de subrayado en los enlaces del menú principal */
.ast-builder-menu .main-header-menu .menu-item>.menu-link {
    position: relative;
    overflow: visible !important;
    /* Astra a veces oculta el overflow */
}

.ast-builder-menu .main-header-menu .menu-item>.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    background-color: var(--ford-blue) !important;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ast-builder-menu .main-header-menu .menu-item:hover>.menu-link::after,
.ast-builder-menu .main-header-menu .current-menu-item>.menu-link::after {
    width: 80%;
}

/* 2. Botón de la cabecera (Contáctanos) - Efecto Resplandor y elevación */
.ast-custom-button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.ast-custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
    /* Resplandor verde suave suponiendo que el botón es verde */
}


.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ford-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: auto;
}

.card-footer .lbl {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.card-footer .val {
    font-size: 1.3rem;
    color: #003478;
    font-weight: 800;
}

.btn-ver-mas {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: #003478;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.ford-card:hover .btn-ver-mas {
    background: var(--ford-blue-hover);
}

/*------ESTILOS SINGLE.PHP------*/

/* Layout Principal */
.ford-container-single {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px 60px 20px;
    gap: 40px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Ajuste tipográfico general */
}

@media (min-width: 992px) {
    .ford-container-single {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
        gap: 60px;
        /* Más espacio entre columnas */
    }
}

/* Columna Izquierda (Galería) */
.ford-col-sticky {
    position: relative;
}

@media (min-width: 992px) {
    .ford-col-sticky {
        position: sticky;
        top: 40px;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #0b76e0;
    /* Azul similar al enlace */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

.mct-gallery-wrapper {
    position: relative;
    background: #fff;
    border-radius: 12px;
    /* Eliminar padding y sombra pesada para hacerlo más limpio como la foto */
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.badge-oferta {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #10b981;
    /* Verde oferta */
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.main-image-container {
    width: 100%;
    height: 450px;
    background: #f8fafc;
    /* Fondo gris súper sutil */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Para las flechas y la imagen */
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 5;
    padding-bottom: 4px;
    /* Centrar visualmente la flecha */
}

.gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    color: #003478;
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

#main-car-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.mct-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #e2e8f0;
}

.thumb-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.thumb-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumb-btn.active {
    border: 2px solid #0f172a;
}

/* Columna Derecha (Datos) */
.ford-col-scroll {
    /* Sin fondo blanco ni borde general para la columna derecha, más limpio */
    padding-top: 15px;
    /* Alinear con la galería */
}

.mct-subtitle {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.model-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 5px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 35px;
}

.price-currency {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
}

/* Lista de Specs */
.mct-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.mct-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

/* Forzar que el tema (como Astra) no inyecte el pseudo-elemento ::before tipo viñeta en las listas */
.mct-specs-list .spec-label::before {
    display: none !important;
    content: none !important;
}

.mct-specs-list li:first-child {
    border-top: 1px solid #e2e8f0;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

/* Fallback icons si no cargan las imágenes SVG */
.spec-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #cbd5e1;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.spec-label img {
    display: none;
}

/* Ocultar img directo por ahora para usar un estilo más limpio o un fallback */

.spec-value {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    text-align: right;
    max-width: 60%;
}

/* Equipamiento Tags */
.mct-equipamiento {
    margin-bottom: 35px;
}

.mct-equipamiento h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 800;
}

.equip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.equip-tags .tag {
    background: #f1f5f9;
    color: #334155;
    padding: 8px 18px;
    border-radius: 40px;
    /* Más redondo, estilo pill */
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    cursor: default;
}

.equip-tags .tag:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Acciones (Botones) */
.mct-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .mct-actions {
        grid-template-columns: 1fr;
    }
}

.btn-primary-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: white !important;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
    text-align: center;
}

.btn-primary-dark:hover {
    background: #1e293b;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #0f172a !important;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid #10b981;
    /* Borde verde claro */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: #f0fdf4;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.related-autos {
    margin-top: 60px;
    padding-bottom: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.related-autos .ford-autos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-autos h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .related-autos .ford-autos-grid {
        display: flex;
        flex-direction: column;
    }
}

/*-----Seteos para el astra-----*/

.single-autos .ast-container {
    display: flex !important;
    flex-direction: column !important;
    /* Esto manda los relacionados abajo */
    max-width: 100% !important;
    /* Usar todo el ancho disponible */
}

.ast-single-post .entry-content a,
.ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}

.related-autos {
    margin: 0 auto;
}

/*-----Home-----*/

.autos-destacados-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.autos-destacados-container .ford-card {
    border-color: #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    width: 100%;
    /* Grid handles sizing */
}

.autos-destacados-container .card-img-wrapper {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

@media (max-width: 768px) {
    .autos-destacados-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* =========================================
   PAGINA DE SERVICIOS
   ========================================= */
.servicios-page {
    background-color: #020817;
    /* Lovable Dark Navy */
    color: #e2e8f0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding-bottom: 80px;
    margin-top: -100px;
    /* Para meterse debajo del header fijo transparente */
}

/* Forzar reset del contenedor de Astra solo en esta página */
.page-template-page-servicios #page,
.page-template-page-servicios .ast-container,
.page-template-page-servicios .site-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
}

.hero-servicios {
    background: radial-gradient(circle at top center, #1e293b 0%, #020817 70%);
    padding: 220px 20px 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-servicios h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-servicios p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-pills .pill {
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.hero-pills .pill:hover {
    background-color: var(--ford-light-blue);
    border-color: var(--ford-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.4);
}

.servicios-container {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.dark-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 60px;
}

.two-columns-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 850px) {
    .two-columns-section {
        grid-template-columns: 1fr;
    }
}

.col-form h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
}

.dark-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .dark-form .form-row {
        flex-direction: column;
    }
}

.dark-form .input-group {
    flex: 1;
    margin-bottom: 15px;
}

.dark-form .input-group label {
    display: block;
    color: #94a3b8;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dark-form input,
.dark-form select {
    width: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1rem;
    height: 52px;
    /* Forzar bloque para que el select no corte el texto */
    transition: border-color 0.2s;
    line-height: normal;
}

/* Fix para el icono del calendario en inputs type="date" sobre fondos oscuros */
.dark-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.dark-form select {
    appearance: none;
    /* Quitamos la flecha por defecto oscura */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.dark-form select option {
    background-color: #0f172a;
    color: #fff;
}

.dark-form input:focus,
.dark-form select:focus {
    outline: none;
    border-color: var(--ford-light-blue);
}

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 20px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.col-info h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.col-info p {
    color: #94a3b8;
    line-height: 1.6;
}

.flota-section .benefit {
    display: inline-block;
    background: #0f172a;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    border: 1px solid #334155;
    color: #cbd5e1;
    font-size: 0.95rem;
    text-align: center;
}

.icon-wrapper {
    text-align: center;
}

.flota-benefits {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flota-section h2 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.flota-section p {
    color: #94a3b8;
    margin-bottom: 25px;
    text-align: center;
}

.financiacion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
}

.fin-texto {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fin-texto h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fin-texto p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.fin-calculadora {
    background: #0f172a;
    border: none;
    border-radius: 0;
    /* Override generic dark-card curve */
}

@media (max-width: 850px) {
    .financiacion-wrapper {
        grid-template-columns: 1fr;
    }

    .fin-texto {
        padding: 40px 20px;
        text-align: center;
    }
}

.simulador-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fin-calculadora h3 {
    color: #fff;
    margin-bottom: 20px;
}

.fin-calculadora label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.fin-calculadora input,
.fin-calculadora select {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 14px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    height: 52px;
    transition: border-color 0.2s;
    line-height: normal;
}

.fin-calculadora select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.fin-calculadora select option {
    background-color: #1e293b;
    color: #fff;
}

/* =========================================
   ANIMACIONES DE SCROLL (INTERACTIVITY)
   ========================================= */
.mct-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mct-animate.mct-visible {
    opacity: 1;
    transform: translateY(0);
}

.mct-delay-1 {
    transition-delay: 0.1s;
}

.mct-delay-2 {
    transition-delay: 0.2s;
}

.mct-delay-3 {
    transition-delay: 0.3s;
}

.mct-delay-4 {
    transition-delay: 0.4s;
}

/* Para elementos que vienen de los lados */
.mct-slide-left {
    transform: translateX(-40px);
}

.mct-slide-right {
    transform: translateX(40px);
}

.mct-slide-left.mct-visible,
.mct-slide-right.mct-visible {
    transform: translateX(0);
}