/* ==========================================================================
   ESTILOS GENERALES - LLANTAS CARREÓN
   ========================================================================== */

/* Bloquear estrictamente cualquier desborde horizontal en pantallas móviles y escritorio */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Evitar que las imágenes rompan el contenedor, manteniendo su proporción */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Animación suave para el cambio dinámico de pestañas (Tabs) */
.animate-fade-in {
    animation: fadeIn 0.25s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}