* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #ffffff;
    color: #2f313d;
    overflow-x: hidden;
}

/* =========================
   HEADER / CINTILLO
========================= */

.info-header {
    width: 100%;
    height: 68px;
    background: #ffffff;

    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;

    padding: 0 7%;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.header-logo img {
    width: 118px;
    height: auto;
    display: block;
}

.info-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
}

.info-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.info-nav a.active {
    color: #ffd51e;
}

.btn-tienda {
    justify-self: end;

    border: 2px solid #ffd51e;
    color: #000000;
    padding: 7px 16px;
    border-radius: 30px;

    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    transition: 0.25s ease;
}

.btn-tienda:hover {
    background: #ffd51e;
    color: #111111;
}

/* =========================
   CONTENIDO
========================= */

.contact-page {
    background: #ffffff;
}

.contact-title {
    text-align: center;
    padding: 55px 20px 35px;
}

.contact-title img {
    width: 105px;
    max-width: 80%;
    height: auto;
    margin-bottom: 45px;
}

.contact-title h1 {
    font-size: 32px;
    font-weight: 900;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.contact-title p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
}

.contact-content {
    width: 78%;
    max-width: 1100px;
    margin: 0 auto 32px;

    display: grid;
    grid-template-columns: 1.15fr .9fr;
    gap: 95px;
    align-items: start;
}

/* =========================
   FORMULARIO
========================= */

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 9px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #cfcfcf;

    padding: 12px;
    font-size: 14px;
    font-family: 'Poppins', Arial, sans-serif;

    margin-bottom: 20px;
}

.contact-form input {
    height: 35px;
}

.contact-form textarea {
    height: 105px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr .46fr;
    gap: 32px;
}

.contact-form button {
    display: block;
    margin: 15px 0 0 auto;

    width: 90px;
    height: 32px;

    background: #ffd51e;
    color: #000000;
    border: none;

    font-size: 11px;
    font-weight: 800;
    cursor: pointer;

    transition: 0.25s ease;
}

.contact-form button:hover {
    background: #e9bd00;
}

/* =========================
   DATOS DE CONTACTO
========================= */

.contact-info h2 {
    font-size: 22px;
    font-weight: 900;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.contact-info p {
    display: grid;
    grid-template-columns: 28px 1fr;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;

    margin-bottom: 16px;
}

.contact-info p span {
    font-size: 18px;
    color: #333333;
}

.follow-box {
    text-align: center;
    margin-top: 60px;
}

.follow-box h2 {
    margin-bottom: 18px;
}

/* =========================
   ÍCONOS DE REDES SOCIALES
========================= */

.follow-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.follow-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.follow-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.follow-icons img {
    width: 19px;
    height: 19px;
    object-fit: contain;
    display: block;
}

/* =========================
   MAPA
========================= */

.map-section {
    width: 94%;
    height: 270px;
    margin: 0 auto;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
    background: #ffffff;
    color: #000000;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-footer p {
    font-size: 12px;
    font-weight: 400;
}

/* =========================
   BOTÓN WHATSAPP FLOTANTE
========================= */

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 9px;

    background: #1fc83a;
    color: #ffffff;
    text-decoration: none;

    padding: 12px 24px 12px 18px;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 0 0 20px rgba(31, 200, 58, 0.13),
        0 8px 18px rgba(0, 0, 0, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 23px rgba(31, 200, 58, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

.whatsapp-dot {
    position: absolute;
    top: -2px;
    right: 8px;

    width: 10px;
    height: 10px;

    background: #ff1f1f;
    border-radius: 50%;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 1000px) {
    .info-header {
        height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 15px;
        text-align: center;
    }

    .header-logo {
        justify-content: center;
    }

    .info-nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .info-nav a {
        font-size: 13px;
    }

    .btn-tienda {
        justify-self: center;
    }

    .contact-title {
        padding: 50px 25px 35px;
    }

    .contact-content {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form button {
        margin: 15px auto 0;
    }

    .map-section {
        width: 92%;
        height: 330px;
    }
}

/* =========================
   RESPONSIVE CELULAR
========================= */

@media (max-width: 600px) {
    .info-header {
        padding: 18px 12px;
        gap: 16px;
    }

    .header-logo img {
        width: 105px;
    }

    .info-nav {
        width: 100%;
        gap: 10px 16px;
    }

    .info-nav a {
        font-size: 12px;
    }

    .btn-tienda {
        font-size: 12px;
        padding: 7px 15px;
    }

    .contact-title {
        padding: 42px 22px 28px;
    }

    .contact-title img {
        width: 95px;
        margin-bottom: 34px;
    }

    .contact-title h1 {
        font-size: 25px;
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .contact-title p {
        font-size: 13px;
    }

    .contact-content {
        width: 90%;
        gap: 45px;
    }

    .contact-form label {
        font-size: 13px;
    }

    .contact-form input {
        height: 38px;
    }

    .contact-form textarea {
        height: 130px;
    }

    .contact-info h2,
    .follow-box h2 {
        font-size: 20px;
    }

    .contact-info p {
        grid-template-columns: 24px 1fr;
        font-size: 12px;
        line-height: 1.7;
    }

    .follow-box {
        margin-top: 45px;
    }

    .follow-icons {
        gap: 12px;
    }

    .follow-icons a {
        width: 34px;
        height: 34px;
    }

    .follow-icons img {
        width: 18px;
        height: 18px;
    }

    .map-section {
        width: 94%;
        height: 300px;
        margin-top: 20px;
    }

    .simple-footer {
        height: auto;
        padding: 16px 20px;
        text-align: center;
    }

    .simple-footer p {
        font-size: 12px;
        line-height: 1.5;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 16px;
        font-size: 12px;
        padding: 10px 16px 10px 13px;

        box-shadow:
            0 0 0 13px rgba(31, 200, 58, 0.13),
            0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .whatsapp-icon {
        width: 19px;
        height: 19px;
        font-size: 10px;
    }
}