* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #ffffff;
    color: #202332;
    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
========================= */

.brands-page {
    background: #ffffff;
    min-height: calc(100vh - 120px);
    padding-top: 90px;
}

.brands-title {
    text-align: center;
    margin-bottom: 80px;
}

.brands-title h1 {
    color: #343748;
    font-size: 145px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 3px;
}

.brands-title h2 {
    color: #202020;
    font-size: 43px;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 35px;
}

.catalog-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}

.catalog-section img {
    width: 90%;
    max-width: 1050px;
    height: auto;
    display: block;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
    background: #ffffff;
    color: #000000;
    height: 58px;

    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
========================= */

@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;
    }

    .brands-page {
        padding-top: 55px;
    }

    .brands-title h1 {
        font-size: 72px;
    }

    .brands-title h2 {
        font-size: 26px;
        padding: 0 20px;
    }

    .catalog-section img {
        width: 95%;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        font-size: 13px;
        padding: 10px 18px 10px 14px;
    }
}