* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #242322;
    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;
}

/* =========================
   PROPÓSITO
========================= */

.purpose-section {
    background: #242322;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 620px;
}

.purpose-image {
    height: 620px;
    overflow: hidden;
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.purpose-text {
    padding: 185px 90px 80px;
    overflow: hidden;
}

.purpose-text h1 {
    color: #ffd51e;
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.purpose-text p {
    max-width: 650px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =========================
   VALORES
========================= */

.values-section {
    background: #242322;
    text-align: center;
    padding: 80px 10% 90px;
}

.smile-icon {
    width: 135px;
    max-width: 80%;
    height: auto;
    margin-bottom: 42px;
}

.values-section h2 {
    color: #ffd51e;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    margin-bottom: 120px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #ffd51e;
    margin-bottom: 48px;
}

.icon-alianza {
    border-radius: 50%;
    clip-path: polygon(
        0 0,
        40% 0,
        40% 100%,
        0 100%,
        0 0,
        60% 0,
        100% 0,
        100% 100%,
        60% 100%,
        60% 0
    );
}

.icon-entregas {
    border-radius: 50%;
    clip-path: polygon(
        50% 0,
        100% 0,
        100% 50%,
        50% 50%,
        50% 100%,
        0 100%,
        0 0
    );
}

.icon-flexibilidad {
    border-radius: 50%;
    clip-path: polygon(
        0 0,
        55% 0,
        55% 100%,
        0 100%
    );
}

.value-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 32px;
}

.value-card p {
    max-width: 285px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

/* =========================
   DIFERENTES
========================= */

.different-box {
    max-width: 720px;
    margin: 0 auto;
}

.different-box h2 {
    color: #ffd51e;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.different-box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* =========================
   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;
    }

    .purpose-section {
        grid-template-columns: 1fr;
    }

    .purpose-image {
        height: 420px;
    }

    .purpose-text {
        padding: 70px 28px;
        text-align: center;
    }

    .purpose-text h1 {
        font-size: 36px;
    }

    .purpose-text p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 75px;
        margin-bottom: 95px;
    }

    .values-section {
        padding: 70px 25px;
    }
}

/* =========================
   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;
    }

    .purpose-image {
        height: 310px;
    }

    .purpose-text {
        padding: 48px 22px 58px;
    }

    .purpose-text h1 {
        font-size: 31px;
        letter-spacing: 2px;
        margin-bottom: 28px;
    }

    .purpose-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .values-section {
        padding: 55px 22px 70px;
    }

    .smile-icon {
        width: 118px;
        margin-bottom: 34px;
    }

    .values-section h2,
    .different-box h2 {
        font-size: 26px;
        letter-spacing: 2px;
        line-height: 1.25;
        margin-bottom: 55px;
    }

    .values-grid {
        gap: 62px;
        margin-bottom: 75px;
    }

    .value-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 28px;
    }

    .value-card h3 {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .value-card p,
    .different-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    .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;
    }
}