/* =========================================================================
   LUZYANA SERVICIO TÉCNICO - INICIO (Versión Premium)
   Colores: Azul (#003366) y Amarillo (#FFD700)
   Compatibilidad: Astra Theme + Elementor
   ========================================================================= */

:root {
    --luzy-blue: #003366;
    --luzy-blue-dark: #001f3f;
    --luzy-yellow: #FFD700;
    --luzy-yellow-hover: #ffea00;
    --luzy-light: #F8FAFC;
    --luzy-text-main: #334155;
    --luzy-transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --luzy-shadow: 0 10px 25px -5px rgba(0, 51, 102, 0.1), 0 8px 10px -6px rgba(0, 51, 102, 0.1);
}

/* =========================================================================
   ANIMACIONES DE SCROLL MEJORADAS
   ========================================================================= */
.luzy-reveal-up,
.luzy-reveal-left,
.luzy-reveal-right {
    opacity: 0;
    will-change: transform, opacity;
}

.luzy-reveal-up {
    transform: translateY(60px);
}

.luzy-reveal-left {
    transform: translateX(-60px);
}

.luzy-reveal-right {
    transform: translateX(60px);
}

/* Clases dinámicas cuando el usuario scrollea */
.luzy-visible.luzy-reveal-up,
.luzy-visible.luzy-reveal-left,
.luzy-visible.luzy-reveal-right {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {

    /* Mostrar animaciones de una vez en móvil para no causar saltos raros */
    .luzy-reveal-up,
    .luzy-reveal-left,
    .luzy-reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================================
   ESTILOS DE LA SECCIÓN HERO (.luzy-hero) - MODO OSCURO
   ========================================================================= */

.luzy-hero {
    position: relative;
    /*padding: 100px 20px 80px;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0 0 40px 40px;
    box-shadow: var(--luzy-shadow);
    overflow: hidden;
}

.luzy-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.luzy-hero__content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 40px 50px;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    color: #ffffff;
    /*box-shadow: -10px 0 0 0 #FFD700, 0 20px 40px rgba(0, 0, 0, 0.5);*/
    z-index: 2;
}

.luzy-hero__title {
    font-size: 3.2rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.luzy-hero__subtitle {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 1rem;
    color: transparent;
}

.luzy-hero__subtitle strong {
    color: #001f3f;
    background-color: #FFD700;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.luzy-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.luzy-hero__list li {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.luzy-hero__list li::before {
    content: "✓";
    color: #000000;
    background: #FFD700;
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.luzy-hero__phone {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    font-weight: 700;
}

.luzy-hero__phone a {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-top: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.luzy-hero__phone a:hover {
    color: #ffffff;
}

.luzy-hero__cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.luzy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luzy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.luzy-btn--call {
    background-color: var(--luzy-yellow);
    color: var(--luzy-blue-dark);
    border: 2px solid var(--luzy-yellow);
}

.luzy-btn--call:hover {
    background-color: #ffffff;
    color: var(--luzy-blue-dark);
    border-color: #ffffff;
}

.luzy-btn--wa {
    background-color: #25D366;
    color: #ffffff;
}

.luzy-btn--wa:hover {
    background-color: #1ebc59;
}

.luzy-btn .luzy-ico {
    width: 22px;
    height: 22px;
    /*margin-right: 10px;*/
    fill: currentColor;
}

@media (max-width: 768px) {
    .luzy-hero__content {
        padding: 30px 20px;
        /*box-shadow: -6px 0 0 0 #FFD700, 0 10px 20px rgba(0, 0, 0, 0.3);*/
    }

    .luzy-hero__title {
        font-size: 2.2rem;
    }

    .luzy-hero__phone a {
        font-size: 2.2rem;
    }

    .luzy-btn {
        width: 45%;
        margin-bottom: 10px;
    }

    .luzy-hero__subtitle,
    .luzy-hero__list {
        display: none;;
    }
}

/* =========================================================================
   SECCION BLOQUES DE CONFIANZA
   ========================================================================= */
.bloques-confianza {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.confianza-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.05);
    border: 1px solid rgba(0, 51, 102, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.confianza-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--luzy-yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: -1;
}

.confianza-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.12);
}

.confianza-item:hover::before {
    transform: scaleX(1);
}

.confianza-icon {
    font-size: 3rem;
    color: var(--luzy-blue-dark);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.confianza-item:hover .confianza-icon {
    transform: scale(1.15) rotate(5deg);
}

.confianza-item h3 {
    font-size: 1.35rem;
    color: var(--luzy-blue-dark);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.confianza-item p {
    font-size: 1rem;
    color: var(--luzy-text-main);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .bloques-confianza {
        gap: 20px;
        padding: 40px 15px;
    }

    .confianza-item {
        padding: 25px 20px;
    }
}



/* =========================================================================
   SECCION QUIENES SOMOS EN INICIO (.luzy-about)
   ========================================================================= */

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

.luzy-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.luzy-about-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
    border-top: 6px solid var(--luzy-blue-dark);
    /*max-width: 600px;*/
    position: relative;
    z-index: 2;
}

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

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

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

.luzy-about-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--luzy-blue-dark);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.luzy-about-btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--luzy-yellow);
    bottom: -5px;
    left: 0;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luzy-about-btn:hover {
    color: var(--luzy-blue-dark);
    transform: translateX(5px);
}

.luzy-about-btn:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .luzy-about-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .luzy-about {
        padding: 50px 15px;
    }

    .luzy-about-content {
        padding: 30px 20px;
    }

    .luzy-about-content h2 {
        font-size: 2rem;
    }

    .luzy-about-content p {
        font-size: 1.05rem;
    }
}

/* =========================================================================
   SECCION RESUMEN DE SERVICIOS (.luzy-services)
   ========================================================================= */

.luzy-services {
    padding: 80px 20px;
    background-color: #ffffff; /* Alternamos fondo blanco para contrastar con el gris anterior */
}

.luzy-services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.luzy-services__title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--luzy-blue-dark);
    margin-bottom: 50px;
    font-weight: 800;
}

.luzy-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.luzy-service {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 51, 102, 0.06);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Efecto de borde inferior animado */
.luzy-service::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--luzy-blue-dark);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.luzy-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
    border-color: transparent;
}

.luzy-service:hover::after {
    transform: scaleX(1);
    background: var(--luzy-yellow); 
}

.luzy-service__icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(255, 215, 0, 0.15); /* Círculo amarillo suave detrás del emoji */
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.luzy-service:hover .luzy-service__icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 215, 0, 0.3);
}

.luzy-service__h {
    font-size: 1.4rem;
    color: var(--luzy-blue-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.luzy-service__p {
    font-size: 1.05rem;
    color: var(--luzy-text-main);
    line-height: 1.6;
    margin: 0;
}

/* Call To Action (Botón inferior) */
.luzy-services__cta {
    text-align: center;
}

.luzy-services__btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--luzy-yellow);
    color: var(--luzy-blue-dark);
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--luzy-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.luzy-services__btn:hover {
    background-color: transparent;
    color: var(--luzy-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsividad */
@media (max-width: 768px) {
    .luzy-services {
        padding: 50px 15px;
    }
    
    .luzy-services__title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .luzy-services__grid {
        gap: 20px;
    }
    
    .luzy-service {
        padding: 30px 20px;
    }
}




/* =========================================================================
   SECCION DE CONTACTO (.luzy-contact)
   ========================================================================= */

.luzy-contact {
    padding: 80px 20px;
    /* Se adaptará al fondo de body si no le especificamos un color fuerte */
    position: relative;
    overflow: hidden;
}

.luzy-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: stretch; /* Mantiene la misma altura en las dos cajas */
}

/* Columna de Información de Contacto (Caja Oscura Elegante) */
.luzy-contact-info {
    flex: 1;
    background-color: var(--luzy-blue-dark);
    padding: 50px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.15);
}

.luzy-contact-info h2 {
    font-size: 2.5rem;
    color: var(--luzy-yellow);
    margin-bottom: 20px;
    font-weight: 800;
}

.luzy-contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.luzy-contact-details p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.luzy-contact-details strong {
    color: var(--luzy-yellow);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luzy-contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.luzy-contact-details a:hover {
    color: var(--luzy-yellow);
}

/* Columna del Formulario de Contact Form 7 */
/* Usamos :not para no afectar a la primera columna, ya que noté que tiene la clase form repetida en tu HTML */
.luzy-contact-form:not(.luzy-contact-info) {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
}

/* CSS Premium para los campos de Formulario CF7 (Textos y Áreas) */
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    background-color: #f7f9fc;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--luzy-text-main);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-sizing: border-box; /* Previene desbordamiento en móviles */
}

/* Estado Focus (Al escribir dentro del input) */
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
    border-color: var(--luzy-yellow);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

/* Botón "Enviar" o "Submit" del Contact Form 7 */
.wpcf7-submit {
    background-color: var(--luzy-yellow) !important;
    color: var(--luzy-blue-dark) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2) !important;
    margin-top: 10px;
}

.wpcf7-submit:hover {
    background-color: var(--luzy-blue-dark) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.2) !important;
}

/* Mensajes de error/éxito super limpios */
.wpcf7-response-output {
    border-radius: 8px !important;
    padding: 15px !important;
    font-weight: bold;
    border: 2px solid transparent !important;
    margin-top: 20px !important;
}

/* Responsividad para móviles y tablets */
@media (max-width: 992px) {
    .luzy-contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .luzy-contact-info,
    .luzy-contact-form:not(.luzy-contact-info) {
        width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .luzy-contact {
        padding: 50px 15px;
    }
    
    .luzy-contact-info,
    .luzy-contact-form:not(.luzy-contact-info) {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .luzy-contact-info h2 {
        font-size: 2rem;
    }
    
    .luzy-contact-details a {
        font-size: 1.4rem; /* Teléfono ligeramente más pequeño en móvil */
    }
}

