/* =========================================================================
   PÁGINA: QUIÉNES SOMOS (.luzy-about-hero)
   ========================================================================= */

.luzy-about-hero {
    padding: 100px 20px;
    background-color: var(--luzy-light); /* Fondo suave */
    overflow: hidden;
}

.luzy-about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Columna de Contenido (Izquierda) */
.luzy-about-hero-content {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08); /* Sombra elegante */
    border-top: 6px solid var(--luzy-blue-dark);
}

.luzy-about-hero-content h1 {
    font-size: 3rem;
    color: var(--luzy-blue-dark);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.luzy-about-hero-content p {
    font-size: 1.15rem;
    color: var(--luzy-text-main);
    line-height: 1.8;
    margin-bottom: 25px;
}

.luzy-about-hero-content strong {
    color: var(--luzy-blue-dark);
    font-weight: 700;
    /* Efecto subrayador amarillo */
    background: linear-gradient(180deg, transparent 65%, rgba(255, 215, 0, 0.4) 35%); 
}

/* Columna de Imagen (Derecha) */
.luzy-about-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
}

/* Elemento decorativo detrás de la imagen */
.luzy-about-hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 80%;
    background-color: var(--luzy-yellow);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(5deg);
    transition: transform 0.4s ease;
}

.luzy-about-hero:hover .luzy-about-hero-image::before {
    transform: rotate(0deg) scale(1.05); /* Se alinea sutilmente al pasar el ratón */
}

.luzy-about-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.luzy-about-hero:hover .luzy-about-hero-image img {
    transform: translateY(-10px); /* La foto "salta" hacia arriba ligeramente */
}

.swiper-button-prev, .swiper-button-next {
    display: none !important;
}

/* Responsividad (Tablets y Móviles) */
@media (max-width: 992px) {
    .luzy-about-hero-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .luzy-about-hero-content h1 {
        justify-content: center;
    }
    
    .luzy-about-hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .luzy-about-hero-image::before {
        top: -15px;
        right: 15px; 
    }
}

@media (max-width: 768px) {
    .luzy-about-hero {
        padding: 50px 15px;
    }
    
    .luzy-about-hero-content {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .luzy-about-hero-content h1 {
        font-size: 2.2rem;
        gap: 10px;
    }
    
    .luzy-about-hero-content p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .luzy-about-hero-image img {
        border-radius: 12px;
    }
    
    .luzy-about-hero-image::before {
        border-radius: 12px;
    }
}


/* =========================================================================
   PÁGINA: QUIÉNES SOMOS - EXPERIENCIA (.luzy-about-experience)
   ========================================================================= */

.luzy-about-experience {
    padding: 100px 20px;
    background-color: #ffffff; /* Este bloque es blanco puro para alternar con el gris/azul suave anterior */
    overflow: hidden;
}

.luzy-about-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* Columna de Imagen (A la izquierda) */
.luzy-about-experience-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
}

/* Patrón de Puntos traseros de la imagen */
.luzy-about-experience-image::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(var(--luzy-yellow) 20%, transparent 20%);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.6;
    transition: transform 0.6s ease;
}

.luzy-about-experience:hover .luzy-about-experience-image::before {
    transform: translate(20px, -20px);
}

.luzy-about-experience-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    position: relative;
    z-index: 2;
    display: block;
    transition: transform 0.4s ease;
}

.luzy-about-experience:hover .luzy-about-experience-image img {
    transform: scale(1.02);
}

/* Columna de Contenido (Derecha: Caja Azul Oscura Premium) */
.luzy-about-experience-card {
    flex: 1;
    background: var(--luzy-blue-dark);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.2);
    color: #ffffff;
    position: relative;
}

/* Detalle amarillo lateral-inferior */
.luzy-about-experience-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 80px; height: 8px;
    background-color: var(--luzy-yellow);
    border-radius: 0 0 0 20px;
}

.luzy-about-experience-card h2 {
    font-size: 2.5rem;
    color: var(--luzy-yellow);
    margin-bottom: 25px;
    font-weight: 800;
}

.luzy-about-experience-card p {
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Para la etiqueta STRONG, en fondo oscuro hacemos bloque inverso */
.luzy-about-experience-card strong {
    color: var(--luzy-blue-dark);
    font-weight: 700;
    background: var(--luzy-yellow);
    padding: 2px 8px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .luzy-about-experience-container {
        /* Invertimos en smartphone/tableta para que el texto esté arriba y la foto abajo */
        flex-direction: column-reverse; 
        gap: 50px;
        text-align: center;
    }
    
    .luzy-about-experience-image::before {
        display: none;
    }
    
    .luzy-about-experience-image {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .luzy-about-experience {
        padding: 60px 15px;
    }
    
    .luzy-about-experience-card {
        padding: 40px 25px;
    }
    
    .luzy-about-experience-card h2 {
        font-size: 2.2rem;
    }
    
    .luzy-about-experience-card p {
        font-size: 1.05rem;
    }
}



/* =========================================================================
   PÁGINA: QUIÉNES SOMOS - INDEPENDIENTE (.luzy-about-independent)
   ========================================================================= */

.luzy-about-independent {
    padding: 100px 20px;
    background-color: var(--luzy-light); /* Fondo suave */
    position: relative;
    overflow: hidden;
}

.luzy-about-independent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* Tarjeta Blanca (A la Izquierda) */
.luzy-about-independent-card {
    flex: 1;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
    border-top: 6px solid var(--luzy-yellow);
}

.luzy-about-independent-card h2 {
    font-size: 2.5rem;
    color: var(--luzy-blue-dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.luzy-about-independent-card p {
    font-size: 1.15rem;
    color: var(--luzy-text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.luzy-about-independent-card strong {
    color: var(--luzy-blue-dark);
    font-weight: 700;
}

/* Callout Text ("Nuestras reparaciones...") */
.luzy-about-independent-card .luzy-highlight {
    background-color: rgba(255, 215, 0, 0.15); 
    border-left: 5px solid var(--luzy-yellow); 
    padding: 20px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--luzy-blue-dark);
    margin: 30px 0 0 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.05);
}

.luzy-about-independent-card .luzy-highlight strong {
    background: none; 
    padding: 0;
}

/* Imagen a la Derecha */
.luzy-about-independent-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Marco flotante estilo offset-border */
.luzy-about-independent-image::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: calc(10% - 15px); /* Se ajusta de forma flexible */
    width: 80%;
    height: 90%;
    border: 4px solid var(--luzy-blue-dark);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.luzy-about-independent:hover .luzy-about-independent-image::after {
    bottom: -5px;
    right: calc(10% - 5px);
}

.luzy-about-independent-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
    display: block;
    transition: transform 0.4s ease;
}

.luzy-about-independent:hover .luzy-about-independent-image img {
    transform: translate(-10px, -10px);
}

@media (max-width: 992px) {
    .luzy-about-independent-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .luzy-about-independent-image::after {
        display: none; 
    }
    
    .luzy-about-independent-card .luzy-highlight {
        text-align: left; /* Mantener la cita a la izq aunque la card esté centrada */
    }
}

@media (max-width: 768px) {
    .luzy-about-independent {
        padding: 50px 15px;
    }
    
    .luzy-about-independent-card {
        padding: 40px 25px;
    }
    
    .luzy-about-independent-card h2 {
        font-size: 2.2rem;
    }
}



/* =========================================================================
   PÁGINA: QUIÉNES SOMOS - VALORES (.luzy-about-values)
   ========================================================================= */

.luzy-about-values {
    padding: 100px 20px;
    background-color: var(--luzy-blue-dark); /* Fondo oscuro general que da descanso visual */
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Luces abstractas sutiles en el fondo oscuro */
.luzy-about-values::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%); /* Resplandor amarillo mate */
    z-index: 1;
}

.luzy-about-values::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%); 
    z-index: 1;
}

.luzy-about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Para quedar sobre los resplandores mágicos */
}

/* Título blanco sobre fondo azul profundo */
.luzy-about-values h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 800;
}

/* Rejilla de Cartas de Valores */
.luzy-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.luzy-value-card {
    background: #ffffff; /* Contraste perfecto para el azul ultra-oscuro */
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    /* CSS Hack: Hacemos gigantesco el tamaño de fuente base de la tarjeta
       para que atrape al emoji que está tirado ("suelto") en tu HTML,
       convirtiéndolo en un icono prominente instantáneamente. */
    font-size: 3.5rem; 
    line-height: 1;
    color: transparent; /* Transparente para que emojis sean su color natural */
    text-shadow: 0 0 0 rgba(0,0,0,1); /* Evita bug de emojis en navegadores webkit si color es transparent */
}

/* Borde Animado Mágico Inferior en Hover */
.luzy-value-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--luzy-yellow);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

/* Efecto Ascensor al Hover */
.luzy-value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.luzy-value-card:hover::before {
    transform: scaleX(1);
}

/* Redimensiones normales para etiquetas internas */
.luzy-value-card h3 {
    margin-top: 25px; /* Aleja el título del emoji gigante pseudo-icono */
    font-size: 1.6rem;
    color: var(--luzy-blue-dark);
    font-weight: 800;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    text-shadow: none; /* Quitamos anti-bug text-shadow del h3 */
}

.luzy-value-card p {
    font-size: 1.1rem;
    color: var(--luzy-text-main);
    line-height: 1.6;
    margin: 0;
    text-shadow: none; /* Quitamos anti-bug text-shadow del parrafo */
}

/* Modificación de color inteligente en el Hover hacia el Título */
.luzy-value-card:hover h3 {
    color: #e3a126; /* Color cálido cercano al amarillo principal */
}

/* Responsividad */
@media (max-width: 992px) {
    .luzy-values-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .luzy-about-values {
        padding: 70px 15px;
    }
    
    .luzy-about-values h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .luzy-value-card {
        padding: 40px 25px;
    }
}



/* =========================================================================
   PÁGINA: QUIÉNES SOMOS - CARRUSEL POR QUÉ ELEGIRNOS (.luzy-why-slider)
   ========================================================================= */

.luzy-why-slider {
    padding: 100px 20px;
    background-color: var(--luzy-light); /* Fondo claro para descansar de la caja oscura anterior */
    position: relative;
    overflow: hidden;
}

/* Base del Carrusel */
.luzy-why-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 70px; /* Deja espacio crítico en el botto para los puntos de paginación */
}

/* Tarjeta/Card Interna del Carrusel */
.luzy-why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.05);
    border: 1px solid rgba(0, 51, 102, 0.05);
    height: 100%; /* Estira todas las tarjetas a la altura de la más alta en Swiper */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    /* Un pequeño margen para que el box-shadow no rebane la tarjeta si Swiper no deja margen exterior */
    margin: 10px 5px; 
}

.luzy-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
    border-color: rgba(255, 215, 0, 0.5); /* Se enciende en amarillo tenuemente el borde */
}

/* Formateo de Iconos (Clave para UX) */
.luzy-why-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 51, 102, 0.05); /* Círculo azul super pálido */
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease;
}

.luzy-why-card:hover .luzy-why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 215, 0, 0.15); /* Al activarse cambia a calor amarillo */
}

/* Texto contundente en las tarjetas */
.luzy-why-card p {
    font-size: 1.15rem;
    color: var(--luzy-blue-dark);
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* =========================================================================
   SOBRESCRIBIR ESTILOS DEL NÚCLEO SWIPER (Flechas y Puntos)
   ========================================================================= */

/* Puntos de Paginación (Bullet points) */
.luzy-why-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--luzy-blue-dark);
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Efecto super Premium: el punto activo no es redondo, es una píldora extendida vibrante */
.luzy-why-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--luzy-yellow);
    width: 30px; 
    border-radius: 6px;
}

/* Flechas de Navegación */
.luzy-why-slider .swiper-button-prev,
.luzy-why-slider .swiper-button-next {
    color: var(--luzy-blue-dark);
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
    transition: all 0.3s ease;
}

/* Achicar la letra base inmensa que tira Swiper por defecto */
.luzy-why-slider .swiper-button-prev::after,
.luzy-why-slider .swiper-button-next::after {
    font-size: 1.5rem; 
    font-weight: bold;
}

.luzy-why-slider .swiper-button-prev:hover,
.luzy-why-slider .swiper-button-next:hover {
    background: var(--luzy-yellow);
    color: var(--luzy-blue-dark);
    transform: scale(1.1); /* Zoom de invitación */
}

/* Responsividad Ocultar flechas en móviles (estilo Touch directo) */
@media (max-width: 768px) {
    .luzy-why-slider .swiper-button-prev,
    .luzy-why-slider .swiper-button-next {
        display: none !important;
    }
    
    .luzy-why-slider {
        padding: 50px 15px;
    }
}



/* =========================================================================
   PÁGINA: QUIÉNES SOMOS - CTA FINAL (.luzy-about-cta)
   ========================================================================= */

.luzy-about-cta {
    padding: 120px 20px;
    /* Degradado majestuoso en azul para cerrar la página con fuerza */
    background: linear-gradient(135deg, var(--luzy-blue-dark) 0%, var(--luzy-blue) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Efecto de cañón de luz dirigido justo al centro del bloque CTA */
.luzy-about-cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
}

/* Caja Glassmorphism ultra-elegante encapsulando el mensaje */
.luzy-about-cta-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03); /* Efecto cristal levísimo */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 70px 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px); /* Desenfoca el fondo tras la caja de cristal */
}

/* Tipografía de Alto Impacto */
.luzy-about-cta h2 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.luzy-about-cta p {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* EL BOTÓN (Redefinición local del .luzy-btn-primary para que sea "Píldora") */
.luzy-about-cta .luzy-btn-primary {
    display: inline-block;
    padding: 18px 50px !important; /* !important por si .luzy-btn-primary global lo pisa */
    background-color: var(--luzy-yellow) !important;
    color: var(--luzy-blue-dark) !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    border-radius: 50px !important; /* Forma de píldora redondeada para CTAs gigantes */
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
    border: 2px solid var(--luzy-yellow) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Hover de Conversión Extrema */
.luzy-about-cta .luzy-btn-primary:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5) !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--luzy-blue-dark) !important;
}

/* Responsividad para móviles y Tablets */
@media (max-width: 992px) {
    .luzy-about-cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .luzy-about-cta {
        padding: 80px 15px;
    }
    
    .luzy-about-cta-container {
        padding: 40px 25px;
        background: transparent; /* En móviles quitamos la caja glass para liberar espacio */
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }
    
    .luzy-about-cta h2 {
        font-size: 2.2rem;
    }
    
    .luzy-about-cta p {
        font-size: 1.1rem;
    }
    
    .luzy-about-cta .luzy-btn-primary {
        width: 100%; /* Botón de ancho completo ideal para el pulgar */
        padding: 16px 20px !important;
        font-size: 1.1rem !important;
    }
}

