﻿:root {
    --azul: #294589;
    --rosado: #f3b2dc;
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0 !important;
    overflow-x: hidden !important;
    background: #fff !important;
    color: #1f3270 !important;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,"Apple Color Emoji","Segoe UI Emoji" !important;
}

/* ===== HEADER ===== */
.top {
    background: var(--azul);
    color: #fff;
}

    .top .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 28px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

.top__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
    margin-right: clamp(64px,12vw,280px);
    max-width: calc(100% - 190px);
    flex-wrap: wrap;
}

.top__title {
    margin: 0;
    font-family: "Bebas Neue",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem,1.2rem + 3.6vw,6rem);
    letter-spacing: .4px;
    line-height: 1;
    white-space: nowrap;
}

.top__pill {
    display: inline-block;
    padding: 20px 10px;
    border-radius: 8px;
    background: var(--rosado);
    color: var(--azul);
    font: 500 20px/1 Roboto, Arial, sans-serif;
    white-space: normal;
    word-break: keep-all;
}

@media (min-width:1200px) {
    .top__pill {
        white-space: nowrap;
    }
}

.top__logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ===== LAYOUT GENERAL ===== */
.aseo-main .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: start;
}

@media (max-width:980px) {
    .aseo-main .wrap {
        grid-template-columns: 1fr;
    }
}

/* ===== FORM ===== */
.aseo-title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    color: var(--azul);
}

.aseo-row {
    display: flex;
    gap: 18px;
    margin: 12px 0 16px;
    max-width: 520px;
}

.aseo-input {
    flex: 1;
    height: 52px;
    padding: 0 14px;
    font-size: 18px;
    border: 2px solid var(--azul);
    border-radius: 10px;
    outline: none;
    color: #294589;
    background: #fff;
}

    .aseo-input:focus {
        box-shadow: 0 0 0 4px rgba(41,69,137,.18);
    }

.btn-rosa {
    display: inline-block;
    margin-top: 6px;
    padding: 14px 28px;
    background: var(--rosado);
    color: var(--azul);
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.aseo-note {
    margin-top: 22px;
    max-width: 560px;
    color: #294589;
    line-height: 1.5;
}

    .aseo-note b {
        font-weight: 800;
    }

/* ===== CAJA (PNG) + CONTACTO ===== */
.right-side {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.benefits-img {
    margin: 0;
    flex: 0 1 60%;
    max-width: 760px;
}

    .benefits-img img {
        display: block;
        width: 100%;
        height: auto;
    }

.contact {
    margin: 0;
    flex: 1;
    color: #1f3270;
}

    .contact h3 {
        margin: 0 0 6px;
        color: var(--azul);
        font-weight: 800;
    }

    .contact b {
        font-weight: 800;
    }

/* ===== RESPONSIVE ===== */
@media (max-width:980px) {
    .right-side {
        flex-direction: column;
    }
}

@media (max-width:768px) {
    .top .wrap {
        align-items: flex-start;
        gap: 12px;
    }

    .top__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-right: 0;
        max-width: calc(100% - 170px);
    }

    .top__pill {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width:680px) {
    .aseo-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .btn-rosa {
        width: 100%;
        max-width: 360px;
    }
}


@media (min-width:981px) {
    .right-side {
        display: block;
    }

    .benefits-img {
        margin: 0;
        flex: none;
        max-width: 100%;
    }

    .contact {
        margin-top: 24px;
    }
}
