/* ==========================================================================
   ======================== SECCIÓN EXPLORA (3 COLUMNAS) ====================
   ========================================================================== */

/* Contenedor principal de cada bloque */
.explora-link {
    display: block;
    position: relative;
    height: 450px; /* Misma altura elegante que usamos en piercing */
    overflow: hidden;
    border-radius: 2px; /* Un suavizado imperceptible en las esquinas */
}

/* Imagen de fondo */
.explora-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Aquí centramos, pero puedes usar 'top center' si hay rostros */
    transition: transform 0.6s ease;
}

/* EL TRUCO PROFESIONAL: Gradiente oscuro en la parte inferior para legibilidad */
.explora-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Ocupa solo la mitad inferior de la foto */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    pointer-events: none; /* Evita que este gradiente interfiera con los clics */
    z-index: 1;
}

/* Contenedor del Texto y Botón */
.explora-content {
    position: absolute;
    bottom: 2.5rem; /* Separación desde el fondo */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2; /* Por encima del gradiente */
}

/* Título superior ("Encuentra tu tienda", etc.) */
.explora-title {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Sombra extra de seguridad */
}

/* Botón "VER MÁS" */
.explora-btn {
    background-color: #8c5d44; /* El tono marrón/terracota de la foto */
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.6rem 2rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

/* ==================== EFECTOS HOVER ==================== */

/* Zoom suave a la foto */
.explora-link:hover .explora-img {
    transform: scale(1.04);
}

/* Oscurecer el botón */
.explora-link:hover .explora-btn {
    background-color: #6b4531;
    color: #ffffff;
}