/* Contención fuerte */
.ati-cssonly {
    all: initial;
    display: block;
}

.ati-cssonly * {
    all: revert;
    box-sizing: border-box;
}

.ati-cssonly {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Hero estilo Mercado Pago */
.ati-background {
    background: #FFE600;
    color: #111;
    padding: 15px;
    width: 100%;
}

.ati-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Contenedor título + logo */
.ati-hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0px;
}

.ati-hero-logo {
    width: 140px;
    height: auto;
}

.ati-hero-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.ati-hero-subtitle {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* CTAs */
.ati-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.ati-cssonly .ati-hero-cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    color: #fff !important; /* fija color base */
    text-align: center;
}

/* Forzar color del texto en todos los estados del link */
.ati-cssonly .ati-hero-cta:link,
.ati-cssonly .ati-hero-cta:visited,
.ati-cssonly .ati-hero-cta:hover,
.ati-cssonly .ati-hero-cta:active,
.ati-cssonly .ati-hero-cta:focus {
    color: #fff !important;
    text-decoration: none !important;
}

/* Azul - WhatsApp */
.ati-cssonly .ati-cta-whatsapp {
    background: #3483FA;
}

.ati-cssonly .ati-cta-whatsapp:hover {
    background: #2968C8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Negro - Ofertas */
.ati-cssonly .ati-cta-ofertas {
    background: #0D0D0D;
}

.ati-cssonly .ati-cta-ofertas:hover {
    background: #2A2A2A;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

@media (max-width: 600px) {
    .ati-hero {
        padding: 60px 16px;
    }

    .ati-hero-header {
        flex-direction: column;
        gap: 12px;
    }

    .ati-hero-logo {
        width: 120px;
    }

    .ati-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .ati-hero-cta {
        width: 100%;
        max-width: 320px;
    }
}

<
/
style >
