/* ========================================
   CONTACTO - GCH IMPORT STORE
   ======================================== */

.contacto-main {
    min-height: calc(100vh - 155px);

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

    padding: 80px 24px;

    background:
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #f8f0eb 55%,
            #f4dce3 100%
        );
}


.contacto-contenedor {
    width: 100%;
    max-width: 650px;

    text-align: center;
}


/* ========================================
   ENCABEZADO
   ======================================== */

.contacto-etiqueta {
    margin: 0 0 14px;

    color: var(--rosa-gch);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;
}


.contacto-contenedor h1 {
    margin: 0;

    color: var(--negro);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 58px;
    font-weight: 500;

    line-height: 1.05;
}


.contacto-descripcion {
    max-width: 520px;

    margin: 22px auto 42px;

    color: var(--gris-texto);

    font-size: 18px;
    line-height: 1.6;
}


/* ========================================
   BOTONES
   ======================================== */

.contacto-opciones {
    display: flex;
    flex-direction: column;

    gap: 15px;
}


.contacto-boton {
    width: 100%;

    display: grid;

    grid-template-columns:
        58px
        1fr
        30px;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background-color: white;

    border: 1px solid var(--borde);
    border-radius: 14px;

    color: var(--negro);

    text-decoration: none;

    text-align: left;

    box-shadow:
        0 8px 25px rgba(70, 45, 38, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


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

    border-color: var(--rosa-gch);

    box-shadow:
        0 14px 35px rgba(70, 45, 38, 0.11);
}


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

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

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

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}


.whatsapp .contacto-icono {
    background-color: #e8f9ee;

    color: #128c4c;
}


.instagram .contacto-icono {
    background-color: #fcebf1;

    color: var(--rosa-gch);
}


.tiktok .contacto-icono {
    background-color: #f1eeee;

    color: var(--negro);
}


/* ========================================
   TEXTO
   ======================================== */

.contacto-texto {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.contacto-texto strong {
    font-size: 17px;
}


.contacto-texto small {
    color: var(--gris-texto);

    font-size: 13px;
}


.contacto-flecha {
    color: var(--rosa-gch);

    font-size: 23px;
}


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

@media (max-width: 640px) {

    .contacto-main {
        min-height: auto;

        padding:
            65px 18px 90px;
    }


    .contacto-contenedor h1 {
        font-size: 44px;
    }


    .contacto-descripcion {
        margin-bottom: 32px;

        font-size: 16px;
    }


    .contacto-boton {
        grid-template-columns:
            50px
            1fr
            22px;

        gap: 13px;

        padding: 16px;
    }


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

        font-size: 13px;
    }

}