* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #ffffff;
    color: #ffffff;
    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 PRINCIPAL
========================= */

.buyer-section {
    background: #3a3a3a;
    min-height: 710px;
    padding: 95px 16% 65px;
}

.buyer-main {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 75px;
    align-items: center;
    justify-content: center;
}

.smile-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smile-area img {
    width: 360px;
    height: 360px;
    object-fit: contain;
}

.buyers-list {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.buyer-row {
    display: grid;
    grid-template-columns: 230px 28px 55px 1fr;
    align-items: center;
    gap: 18px;
}

.buyer-row h3 {
    color: #ffd51e;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: right;
}

.arrow {
    width: 0;
    height: 0;

    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 15px solid #ffd51e;
}

.buyer-icon {
    color: #d0d0d0;
    font-size: 34px;
    text-align: center;
    line-height: 1;
}

.buyer-row p {
    max-width: 520px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.bottom-message {
    margin-top: 75px;
    text-align: center;
}

.pin-icon {
    width: 42px;
    height: 42px;
    border: 5px solid #ffd34d;
    border-radius: 50%;

    color: #ffd34d;
    font-size: 17px;
    font-weight: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;
}

.bottom-message p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
    background: #ffffff;
    color: #000000;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-footer p {
    font-size: 14px;
    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;
    }

    .buyer-section {
        padding: 70px 35px 65px;
    }

    .buyer-main {
        grid-template-columns: 1fr;
        gap: 65px;
        text-align: center;
    }

    .smile-area img {
        width: 280px;
        height: 280px;
    }

    .buyer-row {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
        text-align: center;
    }

    .buyer-row h3 {
        text-align: center;
    }

    .buyer-row p {
        max-width: 560px;
        text-align: center;
        font-size: 14px;
    }

    .arrow {
        transform: rotate(90deg);
    }
}

/* =========================
   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;
    }

    .buyer-section {
        padding: 50px 20px 55px;
        min-height: auto;
    }

    .buyer-main {
        gap: 45px;
    }

    .smile-area img {
        width: 210px;
        height: 210px;
    }

    .buyers-list {
        gap: 34px;
    }

    .buyer-row {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        padding: 28px 20px;
    }

    .buyer-row h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .arrow {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 12px solid #ffd51e;
    }

    .buyer-icon {
        font-size: 31px;
    }

    .buyer-row p {
        font-size: 13px;
        line-height: 1.7;
        letter-spacing: 0;
    }

    .bottom-message {
        margin-top: 55px;
        padding: 0 10px;
    }

    .pin-icon {
        width: 38px;
        height: 38px;
        border-width: 4px;
        font-size: 15px;
    }

    .bottom-message p {
        font-size: 13px;
        line-height: 1.7;
    }

    .simple-footer {
        height: auto;
        padding: 18px 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;
    }
}