body {
    font-family: 'Montserrat', sans-serif; /* Tipografía oficial DKL */
}

/* Logos y Textos Header */
.dkl-logo {
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1;
}

/* El símbolo < invertido en la K */
.dkl-k {
    display: inline-block;
    transform: scaleX(1.2); /* Lo estira un poco para dar el efecto del logo */
    margin-left: -5px;
    margin-right: -5px;
}

.dkl-subtitle {
    font-size: 1.1rem;
    letter-spacing: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.linea-separador {
    height: 1px;
    background-color: #000;
    width: 60px;
    display: inline-block;
}

.dkl-categorias {
    font-size: 0.8rem;
    letter-spacing: 3px;
}

/* Columnas de características */
.dkl-feature-box p {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 10px;
}

/* Corrección de la Imagen Hero para Móviles y Escritorio */
.hero-garage {
    position: relative;
    width: 100%;
    height: 250px; /* Altura más compacta por defecto para móviles */
    background-size: cover;
    background-position: center center; /* Asegura que el auto siempre esté centrado */
    background-repeat: no-repeat;
    box-shadow: inset 0px 20px 30px -10px rgba(255,255,255,1), 
                inset 0px -20px 30px -10px rgba(255,255,255,1);
}

/* En pantallas más grandes (tablets y monitores), la imagen se hace más alta */
@media (min-width: 768px) {
    .hero-garage {
        height: 450px; 
    }
}

/* Estilos interactivos para las 4 columnas */
.dkl-link {
    display: block;
    height: 100%; /* Asegura que el área cliqueable cubra toda la columna */
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Efecto hover: levanta ligeramente la columna y cambia de color al pasar el dedo/mouse */
.dkl-link:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa; /* Fondo gris súper claro para indicar que es un botón */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dkl-link i {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.dkl-link:hover i {
    color: #dc3545; /* El icono cambia al color rojo racing al interactuar */
}

/* Contenedor del Botón superpuesto en la parte inferior de la imagen */
.cta-container {
    position: absolute;
    bottom: -25px; /* Lo saca un poco de la imagen */
    width: 100%;
    text-align: center;
}

.btn-cta {
    background-color: #f8f9fa;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer y Textos Pequeños */
.letter-spacing-2 {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.dkl-logo-small {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.dkl-k-small {
    display: inline-block;
    transform: scaleX(1.2);
}

/* Fondo simulado tipo Fibra de Carbono para la base */
.carbon-fiber-bg {
    position: relative;
    z-index: 1;
}

.carbon-fiber-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #1a1a1a;
    background-image: repeating-linear-gradient(45deg, #2b2b2b 25%, transparent 25%, transparent 75%, #2b2b2b 75%, #2b2b2b), repeating-linear-gradient(45deg, #2b2b2b 25%, #1a1a1a 25%, #1a1a1a 75%, #2b2b2b 75%, #2b2b2b);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    z-index: -1;
    clip-path: polygon(0 50%, 100% 100%, 0% 100%); /* Crea el corte diagonal en las esquinas inferiores */
}


/* Estilos interactivos para las 3 columnas finales */
.dkl-footer-link {
    display: block;
    transition: transform 0.3s ease;
}

/* Efecto hover: hace un sutil zoom a la columna */
.dkl-footer-link:hover {
    transform: scale(1.1);
}

.dkl-footer-link i {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* El icono cambia a color rojo al pasar el mouse/dedo */
.dkl-footer-link:hover i {
    color: #dc3545;
}