/* =====================================================
   CONTACTO - LUNÁTICA SHOP
   Diseño inspirado en nosotros.css
   ===================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(180deg, #0f1b40 0%, #123b74 40%, #08152d 75%, #000 100%);
    color: #24164f;
}


/* =====================================================
   CONTENEDOR PRINCIPAL
   ===================================================== */

.contacto-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 25px 80px;
}


/* =====================================================
   HERO CONTACTO
   ===================================================== */

.hero-contacto {
    text-align: center;
    -webkit-text-fill-color: white;
    padding: 55px 20px 45px;
}

.hero-contacto h1 {
    margin: 0 0 12px;
    font-size: 46px;
    font-weight: 800;
    color: #24164f;
    letter-spacing: 1px;
}

.hero-contacto p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}


/* =====================================================
   TARJETAS DE CONTACTO
   ===================================================== */

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.contacto-card {
    background: #123b74;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    -webkit-text-fill-color: #f5f5f8;

    box-shadow:
        0 10px 30px rgba(36, 22, 79, 0.10);

    border: 1px solid rgba(36, 22, 79, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contacto-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(36, 22, 79, 0.18);
}


/* =====================================================
   ICONOS
   ===================================================== */

.contacto-icono {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #5b43ff,
        #352080
    );

    color: white;

    font-size: 30px;

    box-shadow:
        0 8px 20px rgba(91, 67, 255, 0.30);
}

.contacto-card h2 {
    margin: 0 0 12px;

    font-size: 21px;
    font-weight: 700;

    color: white;
}

.contacto-card p {
    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.6;
}


/* =====================================================
   ENLACES
   ===================================================== */

.contacto-card a {
    display: inline-block;

    margin-top: 12px;

    color: #5b43ff;

    text-decoration: none;

    font-weight: 600;

    transition: 0.2s;
}

.contacto-card a:hover {
    color: #2ecc71;
}


/* =====================================================
   SECCIÓN PROYECTO
   ===================================================== */

.proyecto-contacto {
    margin-top: 55px;

    padding: 55px 30px;

    text-align: center;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #24164f,
            #392276
        );

    color: white;

    box-shadow:
        0 15px 40px rgba(36, 22, 79, 0.25);
}

.proyecto-contacto h2 {
    margin: 0 0 15px;
    font-size: 32px;
    font-weight: 800;

    /* Forzar blanco */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.proyecto-contacto p {
    max-width: 750px;
    margin: 0 auto 25px;
    font-size: 17px;
    line-height: 1.7;

    /* Forzar blanco */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


/* =====================================================
   BOTÓN CONTACTO
   ===================================================== */

.btn-contacto {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 12px;

    background: #ffc400;

    color: #24164f;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.20);
}

.btn-contacto:hover {
    transform: translateY(-3px);

    background: #ffd633;

    box-shadow:
        0 12px 25px rgba(0,0,0,0.30);
}


/* =====================================================
   WHATSAPP
   ===================================================== */

.whatsapp-contacto {
    color: #25d366 !important;
}

.whatsapp-contacto:hover {
    color: #128c7e !important;
}


/* =====================================================
   RESPONSIVE TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .contacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-contacto h1 {
        font-size: 40px;
    }

}


/* =====================================================
   RESPONSIVE CELULAR
   ===================================================== */

@media (max-width: 600px) {

    .contacto-container {
        padding:
            35px 15px
            60px;
    }

    .hero-contacto {
        padding:
            35px 10px;
    }

    .hero-contacto h1 {
        font-size: 32px;
    }

    .hero-contacto p {
        font-size: 16px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacto-card {
        padding: 30px 20px;
    }

    .proyecto-contacto {
        margin-top: 35px;

        padding:
            40px 20px;
    }

    .proyecto-contacto h2 {
        font-size: 26px;
       
    }

    .proyecto-contacto p {
        font-size: 15px;
    }

}
/* =====================================================
   CORRECCIÓN DEFINITIVA - SECCIÓN PROYECTO
   ===================================================== */

.proyecto-contacto {
    /* ... tus otras propiedades ... */
    color: #ffffff !important;
}

.proyecto-contacto h2 {
    /* ... tus otras propiedades ... */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.proyecto-contacto p {
    /* ... tus otras propiedades ... */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}