body { font-family: 'Poppins', sans-serif; }
.bg-pink { background-color: #FF69B4; } /* Rosa principal de capturas */
.text-pink { color: #FF69B4; }
.bg-pastel { background-color: #FFE4E1; } /* Pasteles suaves */
.text-green { color: #32CD32; } /* Verde para títulos */
.hero { position: relative; } /* Para fondos ondulados, agrega CSS para waves si necesitas SVG */
.card { transition: transform 0.3s; }
.card:hover { transform: scale(1.05); }
/* Media queries para responsividad extra si Bootstrap no cubre */
@media (max-width: 768px) { .navbar-nav { text-align: center; } }

body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, .display-1, .display-2, .display-3 {
    font-family: 'Cheddar Gothic Sans', sans-serif;  /* o New Sun Playful según el caso */
}

.playful-text {
    font-family: 'New Sun Playful', cursive;
}
/* css/styles.css - Estilos base Mas Gelato */

:root {
    --primary-pink: #FF69B4;     /* Rosa principal */
    --pastel-pink: #FFB6C1;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Cheddar Gothic Sans', sans-serif;
}

.navbar {
    background-color: #fff !important;
}

.navbar-brand img {
    max-height: 55px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

/* WhatsApp flotante (lo agregaremos después) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --primary-pink: #FF68A2;
    --pastel-pink: #FFB6C1;
    --mint-green: #9BDB1B;
    --soft-yellow: #FFFFB7;
    --support-aqua: #A8DFDE;
    --support-lilac: #C798D0;
    --support-green: #AFD39A;
    --support-lightpink: #FCB2E3;
    --support-blush: #EFD0D8;
    --support-yellow: #FEF49B;
    --support-blue: #89CBEF;
    --text-dark: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, .display-1, .display-2, .display-3 {
    font-family: 'Cheddar Gothic Sans', sans-serif;
}

.playful-text {
    font-family: 'New Sun Playful', cursive;
}

.bg-pink {
    background-color: var(--primary-pink);
}

.text-pink {
    color: var(--primary-pink);
}

.bg-pastel {
    background-color: var(--pastel-pink);
}

.text-green {
    color: var(--mint-green);
}

.hero {
    position: relative;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.navbar {
    background-color: #fff !important;
}

.navbar-brand img {
    max-height: 55px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-pink) !important;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Mas Gelato */
.footer-mg {
    background: linear-gradient(180deg, #FF68A2 0%, #f85f9a 100%);
    position: relative;
    overflow: hidden;
}

.footer-mg::before {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--mint-green), var(--soft-yellow), var(--support-aqua), var(--white));
    position: absolute;
    top: 0;
    left: 0;
}

.logo-footer-mx {
    width: 12rem;
    max-width: 100%;
    height: auto;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-text,
.footer-copy {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.footer-link {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--soft-yellow);
    text-decoration: none;
    padding-left: 4px;
}

.footer-list li {
    margin-bottom: 0.7rem;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-contact-item:hover,
.footer-contact-item:focus {
    color: #fff;
    opacity: 0.95;
    transform: translateX(4px);
}

.footer-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.footer-icon-circle.whatsapp {
    background: rgba(155, 219, 27, 0.22);
}

.footer-icon-circle.phone {
    background: rgba(137, 203, 239, 0.22);
}

.footer-icon-circle.mail {
    background: rgba(255, 255, 183, 0.22);
}

.footer-icon-circle.instagram {
    background: rgba(252, 178, 227, 0.25);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.20);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.14);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .footer-title {
        margin-bottom: 1rem;
    }

    .logo-footer-mx {
        width: 10rem;
    }
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9BDB1B 0%, #7fc814 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    z-index: 1100;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(155, 219, 27, 0.20);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
    }
}

/* =========================
   HERO MAS GELATO
========================= */
.hero-mg {
    position: relative;
    padding: 4rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(168, 223, 222, 0.28), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 182, 193, 0.30), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-mg__content {
    max-width: 580px;
}

.hero-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: #FFFFB7;
    color: #5f6f2f;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.hero-mg__title {
    margin-bottom: 1.25rem;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 0.95;
    color: #FF68A2;
    letter-spacing: 0.3px;
}

.hero-mg__title span {
    display: inline-block;
    color: #9BDB1B;
}

.hero-mg__text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.hero-mg__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.8rem;
}

.hero-mg__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.12);
    color: #444;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.hero-mg__badge i {
    color: #9BDB1B;
}

.hero-mg__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-mg__btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 12px 24px rgba(255, 104, 162, 0.25);
}

.hero-mg__btn--primary:hover,
.hero-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.hero-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.hero-mg__btn--secondary:hover,
.hero-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

.hero-mg__media {
    position: relative;
    text-align: center;
}

.hero-mg__media::before {
    content: "";
    position: absolute;
    inset: 8% 10% auto 10%;
    height: 76%;
    background: radial-gradient(circle, rgba(255,104,162,0.16) 0%, rgba(255,104,162,0.03) 60%, transparent 75%);
    filter: blur(10px);
    z-index: 0;
}

.hero-mg__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    border-radius: 2rem;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .hero-mg {
        padding: 3rem 0 4rem;
    }

    .hero-mg__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-mg__badges,
    .hero-mg__actions {
        justify-content: center;
    }

    .hero-mg__media {
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-mg {
        padding: 2.5rem 0 3.25rem;
    }

    .hero-mg__title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-mg__text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-mg__badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-mg__actions {
        flex-direction: column;
    }

    .hero-mg__btn {
        width: 100%;
    }
}

/* =========================
   NOSOTROS MAS GELATO
========================= */
.nosotros-mg {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top left, rgba(239, 208, 216, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(168, 223, 222, 0.18), transparent 24%),
        #ffffff;
}

.nosotros-mg__content {
    max-width: 620px;
}

.nosotros-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: #FCB2E3;
    color: #8a3f68;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.nosotros-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1;
    color: #FF68A2;
}

.nosotros-mg__title span {
    color: #9BDB1B;
}

.nosotros-mg__subtitle {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b6b6b;
}

.nosotros-mg__text {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
}

.nosotros-mg__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.nosotros-mg__btn {
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nosotros-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 10px 24px rgba(255, 104, 162, 0.18);
}

.nosotros-mg__btn--primary:hover,
.nosotros-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.nosotros-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.nosotros-mg__btn--secondary:hover,
.nosotros-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

.nosotros-mg__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.nosotros-mg__card {
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nosotros-mg__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.08);
}

.nosotros-mg__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #FCB2E3 100%);
    color: #FF68A2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.nosotros-mg__card-title {
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #333;
}

.nosotros-mg__card-text {
    margin-bottom: 0;
    font-size: 0.97rem;
    line-height: 1.7;
    color: #666;
}

.nosotros-mg__quote {
    grid-column: 1 / -1;
    padding: 1.35rem 1.4rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(155, 219, 27, 0.14), rgba(255, 255, 183, 0.45));
    border: 1px solid rgba(155, 219, 27, 0.22);
    color: #5b6d24;
    font-weight: 600;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .nosotros-mg {
        padding: 4rem 0;
    }

    .nosotros-mg__content {
        max-width: 100%;
        text-align: center;
    }

    .nosotros-mg__actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .nosotros-mg {
        padding: 3.2rem 0;
    }

    .nosotros-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .nosotros-mg__subtitle {
        font-size: 1rem;
    }

    .nosotros-mg__cards {
        grid-template-columns: 1fr;
    }

    .nosotros-mg__actions {
        flex-direction: column;
    }

    .nosotros-mg__btn {
        width: 100%;
    }
}
/* =========================
   MAQUINAS MAS GELATO
========================= */
.maquinas-mg {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top right, rgba(199, 152, 208, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(168, 223, 222, 0.18), transparent 26%),
        #fffafc;
}

.maquinas-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: #FEF49B;
    color: #7b6d1b;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.maquinas-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 1;
    color: #FF68A2;
}

.maquinas-mg__subtitle {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #666;
}

.maquinas-mg__card {
    background: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.maquinas-mg__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0,0,0,0.08);
}

.maquinas-mg__image-wrap {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
}

.maquinas-mg__image {
    max-height: 360px;
    width: auto;
    object-fit: contain;
}

.maquinas-mg__content {
    padding: 1.5rem 2rem 2rem;
}

.maquinas-mg__card-title {
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #333;
}

.maquinas-mg__card-text {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #666;
}

.maquinas-mg__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.maquinas-mg__list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: #4a4a4a;
}

.maquinas-mg__list i {
    color: #9BDB1B;
    font-size: 0.95rem;
}

.maquinas-mg__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.maquinas-mg__btn {
    min-height: 50px;
    padding: 0.82rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.maquinas-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
}

.maquinas-mg__btn--primary:hover,
.maquinas-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.maquinas-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.maquinas-mg__btn--secondary:hover,
.maquinas-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .maquinas-mg {
        padding: 4rem 0;
    }

    .maquinas-mg__image {
        max-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .maquinas-mg {
        padding: 3.2rem 0;
    }

    .maquinas-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .maquinas-mg__image-wrap {
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .maquinas-mg__content {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .maquinas-mg__actions {
        flex-direction: column;
    }

    .maquinas-mg__btn {
        width: 100%;
    }
}
/* =========================
   BASES MAS GELATO
========================= */
.bases-mg {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top left, rgba(137, 203, 239, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(252, 178, 227, 0.18), transparent 26%),
        #ffffff;
}

.bases-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: #A8DFDE;
    color: #2d6f74;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.bases-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 1;
    color: #FF68A2;
}

.bases-mg__subtitle {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #666;
}

.bases-mg__banner {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0,0,0,0.06);
}

.bases-mg__banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.bases-mg__card {
    background: #fff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bases-mg__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bases-mg__image-wrap {
    padding: 1.5rem 1.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
}

.bases-mg__image {
    max-height: 240px;
    width: auto;
    object-fit: contain;
}

.bases-mg__content {
    padding: 1.25rem 1.4rem 1.6rem;
}

.bases-mg__card-title {
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
}

.bases-mg__card-text {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.7;
    color: #666;
}

.bases-mg__btn {
    min-height: 50px;
    padding: 0.82rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bases-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
}

.bases-mg__btn--primary:hover,
.bases-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.bases-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.bases-mg__btn--secondary:hover,
.bases-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .bases-mg {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .bases-mg {
        padding: 3.2rem 0;
    }

    .bases-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .bases-mg__image {
        max-height: 210px;
    }
}

/* =========================
   NEGOCIO / BENEFICIOS MAS GELATO
========================= */
.negocio-mg {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at top center, rgba(155, 219, 27, 0.08), transparent 26%),
        radial-gradient(circle at bottom center, rgba(255, 104, 162, 0.08), transparent 24%),
        #ffffff;
    overflow: hidden;
}

.negocio-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2.1rem, 4.8vw, 4.4rem);
    line-height: 1;
    color: #9BDB1B;
}

.negocio-mg__subtitle {
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2vw, 2rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8eb44c;
}

.negocio-mg__intro {
    margin: 0 auto;
    max-width: 850px;
    font-size: 1.02rem;
    line-height: 1.9;
    color: #666;
}

.negocio-mg__benefits {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.negocio-mg__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.negocio-mg__item--bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.negocio-mg__icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    border: 3px solid #9BDB1B;
    color: #9BDB1B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    background-color: #fff;
}

.negocio-mg__item-content {
    flex: 1;
}

.negocio-mg__item-title {
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    color: #666;
}

.negocio-mg__item-text {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: #7a7a7a;
}

.negocio-mg__center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.negocio-mg__circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #FF68A2;
    opacity: 0.9;
    z-index: 0;
}

.negocio-mg__image {
    position: relative;
    z-index: 2;
    max-height: 480px;
    width: auto;
    object-fit: contain;
}

.negocio-mg__btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.negocio-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 10px 24px rgba(255, 104, 162, 0.18);
}

.negocio-mg__btn--primary:hover,
.negocio-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.negocio-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.negocio-mg__btn--secondary:hover,
.negocio-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .negocio-mg__benefits--right .negocio-mg__item {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .negocio-mg {
        padding: 4rem 0;
    }

    .negocio-mg__center {
        min-height: auto;
        margin: 1rem 0;
    }

    .negocio-mg__circle {
        width: 210px;
        height: 210px;
    }

    .negocio-mg__image {
        max-height: 380px;
    }

    .negocio-mg__item {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .negocio-mg {
        padding: 3.2rem 0;
    }

    .negocio-mg__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .negocio-mg__subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .negocio-mg__intro {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    .negocio-mg__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .negocio-mg__icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 1.35rem;
    }

    .negocio-mg__item-title {
        font-size: 1.2rem;
    }

    .negocio-mg__image {
        max-height: 300px;
    }

    .negocio-mg__circle {
        width: 180px;
        height: 180px;
    }

    .negocio-mg__btn {
        width: 100%;
    }
}

/* =========================
   FEATURES / GARANTIAS MAS GELATO
========================= */
.features-mg {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top center, rgba(168, 223, 222, 0.12), transparent 22%),
        radial-gradient(circle at bottom center, rgba(252, 178, 227, 0.14), transparent 22%),
        #ffffff;
}

.features-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: #EFD0D8;
    color: #8d5f69;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.features-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 1;
    color: #FF68A2;
}

.features-mg__subtitle {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #666;
}

.features-mg__card {
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    background: #faeaf3;
    border-radius: 2rem;
    border: 1px solid rgba(255, 104, 162, 0.08);
    box-shadow: 0 14px 30px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features-mg__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.07);
}

.features-mg__seal {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2rem;
    border: 12px solid rgba(255,255,255,0.2);
}

.features-mg__seal::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.55);
}

.features-mg__seal i {
    position: relative;
    z-index: 2;
}

.features-mg__seal--blue {
    background-color: #bfd8f7;
    color: #6aa7db;
}

.features-mg__seal--lilac {
    background-color: #d8caf7;
    color: #9b8ce8;
}

.features-mg__seal--pink {
    background-color: #f8b4d4;
    color: #f06ca9;
}

.features-mg__seal--green {
    background-color: #d8e7c8;
    color: #9bbc74;
}

.features-mg__seal--rose {
    background-color: #f7bfd8;
    color: #df77a8;
}

.features-mg__card-title {
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #e06ca2;
}

.features-mg__card-text {
    margin-bottom: 0;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #6d6d6d;
}

/* Cuando reemplaces por imágenes reales de sellos */
.features-mg__seal-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.4rem;
}

@media (max-width: 991.98px) {
    .features-mg {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .features-mg {
        padding: 3.2rem 0;
    }

    .features-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .features-mg__seal {
        width: 100px;
        height: 100px;
        font-size: 1.7rem;
    }

    .features-mg__seal::after {
        inset: 12px;
    }

    .features-mg__card {
        padding: 1.6rem 1.2rem 1.5rem;
    }
}
/* =========================
   CTA EMPRENDE MAS GELATO
========================= */
.cta-emprende-mg {
    padding: 5rem 0 5.5rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 183, 0.20), transparent 24%),
        radial-gradient(circle at bottom right, rgba(168, 223, 222, 0.18), transparent 24%),
        #ffffff;
}

.cta-emprende-mg__box {
    position: relative;
    padding: 3rem 3rem;
    border-radius: 2.25rem;
    background: linear-gradient(135deg, #FF68A2 0%, #ff80b1 100%);
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(255, 104, 162, 0.22);
}

.cta-emprende-mg__box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.cta-emprende-mg__box::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(155, 219, 27, 0.16);
}

.cta-emprende-mg__content,
.cta-emprende-mg__badge-wrap {
    position: relative;
    z-index: 2;
}

.cta-emprende-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-emprende-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.6vw, 3.9rem);
    line-height: 0.98;
    color: #ffffff;
}

.cta-emprende-mg__title span {
    color: #FFFFB7;
}

.cta-emprende-mg__text {
    max-width: 680px;
    margin-bottom: 1.5rem;
    font-size: 1.03rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.cta-emprende-mg__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-emprende-mg__btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-emprende-mg__btn--primary {
    background-color: #9BDB1B;
    color: #2c3b08;
    border: 2px solid #9BDB1B;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.cta-emprende-mg__btn--primary:hover,
.cta-emprende-mg__btn--primary:focus {
    background-color: #8dc918;
    border-color: #8dc918;
    color: #223004;
    transform: translateY(-2px);
}

.cta-emprende-mg__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.55);
}

.cta-emprende-mg__btn--secondary:hover,
.cta-emprende-mg__btn--secondary:focus {
    background-color: #ffffff;
    color: #FF68A2;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-emprende-mg__badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cta-emprende-mg__badge {
    width: 100%;
    max-width: 320px;
    padding: 1.5rem 1.25rem;
    border-radius: 1.75rem;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.22);
    text-align: center;
}

.cta-emprende-mg__badge-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cta-emprende-mg__badge-text strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.cta-emprende-mg__badge-text span {
    display: block;
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

@media (max-width: 991.98px) {
    .cta-emprende-mg {
        padding: 4rem 0 4.5rem;
    }

    .cta-emprende-mg__box {
        padding: 2.4rem 2rem;
    }

    .cta-emprende-mg__content {
        text-align: center;
    }

    .cta-emprende-mg__text {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-emprende-mg__actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .cta-emprende-mg {
        padding: 3.2rem 0 3.5rem;
    }

    .cta-emprende-mg__box {
        padding: 2rem 1.25rem;
        border-radius: 1.7rem;
    }

    .cta-emprende-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.9rem);
    }

    .cta-emprende-mg__text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .cta-emprende-mg__actions {
        flex-direction: column;
    }

    .cta-emprende-mg__btn {
        width: 100%;
    }

    .cta-emprende-mg__badge {
        max-width: 100%;
    }
}

.navbar-spacer {
    height: 100px;
}

@media (max-width: 991.98px) {
    .navbar-spacer {
        height: 90px;
    }
}

/* =========================
   NOSOTROS MAS GELATO
========================= */
.nosotros-mg {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top left, rgba(239, 208, 216, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(168, 223, 222, 0.16), transparent 24%),
        #ffffff;
}

.nosotros-mg__content {
    max-width: 620px;
}

.nosotros-mg__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background-color: #FCB2E3;
    color: #8a3f68;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.nosotros-mg__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    line-height: 1;
    color: #FF68A2;
}

.nosotros-mg__title span {
    color: #9BDB1B;
}

.nosotros-mg__text {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
}

.nosotros-mg__text--lead {
    font-size: 1.08rem;
    font-weight: 600;
    color: #666;
}

.nosotros-mg__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1.75rem;
}

.nosotros-mg__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    font-size: 0.95rem;
    font-weight: 700;
    color: #444;
}

.nosotros-mg__pill i {
    color: #9BDB1B;
}

.nosotros-mg__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nosotros-mg__btn {
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nosotros-mg__btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 10px 24px rgba(255, 104, 162, 0.18);
}

.nosotros-mg__btn--primary:hover,
.nosotros-mg__btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.nosotros-mg__btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.nosotros-mg__btn--secondary:hover,
.nosotros-mg__btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

.nosotros-mg__visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.nosotros-mg__map-card {
    padding: 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
    text-align: center;
}

.nosotros-mg__map {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.nosotros-mg__stats {
    display: grid;
    gap: 1rem;
}

.nosotros-mg__stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1rem;
    border-radius: 1.4rem;
    background: #fff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.nosotros-mg__stat-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #FCB2E3 100%);
    color: #FF68A2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nosotros-mg__stat-title {
    margin-bottom: 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #333;
}

.nosotros-mg__stat-text {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 991.98px) {
    .nosotros-mg {
        padding: 4rem 0;
    }

    .nosotros-mg__content {
        max-width: 100%;
        text-align: center;
    }

    .nosotros-mg__highlights,
    .nosotros-mg__actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .nosotros-mg {
        padding: 3.2rem 0;
    }

    .nosotros-mg__title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .nosotros-mg__text--lead {
        font-size: 1rem;
    }

    .nosotros-mg__actions {
        flex-direction: column;
    }

    .nosotros-mg__btn {
        width: 100%;
    }

    .nosotros-mg__stat {
        text-align: left;
    }

    .nosotros-mg__map-card {
        padding: 1rem;
    }
}
/* =========================
   PAGINA NOSOTROS MAS GELATO
========================= */

.hero-interna {
    padding: 4.5rem 0 3.4rem;
    background:
        radial-gradient(circle at top right, rgba(168, 223, 222, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 182, 193, 0.20), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    text-align: center;
}

.hero-nosotros {
    position: relative;
}

.hero-nosotros::after {
    content: "";
    display: block;
    width: 150px;
    height: 6px;
    margin: 1.5rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF68A2, #9BDB1B);
}

.nosotros-page__eyebrow,
.section-kicker,
.cta-nosotros__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.nosotros-page__eyebrow,
.section-kicker {
    background-color: #FCB2E3;
    color: #8a3f68;
}

.section-kicker--green {
    background-color: #FEF49B;
    color: #6d7b1b;
}

.hero-interna__title {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.95;
    color: #FF68A2;
}

.hero-interna__title span {
    display: block;
    color: #333333;
}

.hero-interna__text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #5f5f5f;
}

.nosotros-page__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.nosotros-page__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    font-size: 0.94rem;
    font-weight: 700;
    color: #444;
}

.nosotros-page__badges i {
    color: #9BDB1B;
}

.section-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
    color: #333333;
}

.section-title--pink {
    color: #FF68A2;
}

.section-title--green {
    color: #9BDB1B;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #666666;
}

.nosotros-historia,
.nosotros-origen,
.nosotros-modelo,
.nosotros-cobertura,
.cta-nosotros {
    padding: 5rem 0;
}

.nosotros-historia {
    background: #ffffff;
}

.nosotros-historia p,
.nosotros-origen p,
.nosotros-cobertura p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 1rem;
}

.nosotros-media-card {
    padding: 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}

.nosotros-media-card--map {
    background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.nosotros-historia__img {
    max-width: 460px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.08));
}

.nosotros-origen {
    background:
        radial-gradient(circle at top center, rgba(255, 104, 162, 0.08), transparent 22%),
        #fffafc;
    text-align: center;
}

.nosotros-modelo {
    background: #ffffff;
}

.modelo-card {
    height: 100%;
    padding: 2rem 1.4rem;
    border-radius: 1.75rem;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 14px 28px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.modelo-icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #FCB2E3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modelo-icon {
    color: #FF68A2;
    font-size: 1.8rem;
}

.modelo-card h3 {
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #333333;
}

.modelo-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #666666;
}

.nosotros-cobertura {
    background:
        radial-gradient(circle at bottom right, rgba(155, 219, 27, 0.10), transparent 25%),
        #ffffff;
}

.mapa-cobertura {
    max-width: 580px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
}

.cta-nosotros {
    background: linear-gradient(135deg, #FF68A2 0%, #ff80b1 100%);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.cta-nosotros::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}

.cta-nosotros::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(155, 219, 27, 0.16);
}

.cta-nosotros .container {
    position: relative;
    z-index: 2;
}

.cta-nosotros__eyebrow {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.cta-nosotros h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    color: #ffffff;
}

.cta-nosotros h2 span {
    color: #FFFFB7;
}

.cta-nosotros p {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.cta-nosotros__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-nosotros .btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.cta-nosotros .btn-primary {
    background-color: #9BDB1B;
    border-color: #9BDB1B;
    color: #263405;
}

.cta-nosotros .btn-primary:hover,
.cta-nosotros .btn-primary:focus {
    background-color: #8bc517;
    border-color: #8bc517;
    color: #1f2b04;
    transform: translateY(-2px);
}

.cta-nosotros .btn-outline-primary {
    border: 2px solid rgba(255,255,255,0.7);
    color: #ffffff;
    background: transparent;
}

.cta-nosotros .btn-outline-primary:hover,
.cta-nosotros .btn-outline-primary:focus {
    background: #ffffff;
    color: #FF68A2;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-nosotros .btn i {
    margin-right: 0.45rem;
}

@media (max-width: 991.98px) {
    .hero-interna {
        padding: 3.4rem 0 2.8rem;
    }

    .nosotros-historia,
    .nosotros-origen,
    .nosotros-modelo,
    .nosotros-cobertura,
    .cta-nosotros {
        padding: 4rem 0;
    }

    .nosotros-historia {
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.9rem, 6vw, 2.8rem);
    }
}

@media (max-width: 767.98px) {
    .hero-interna {
        padding: 2.8rem 0 2.2rem;
    }

    .hero-interna__title {
        font-size: clamp(1.95rem, 9vw, 3rem);
    }

    .hero-interna__text,
    .nosotros-historia p,
    .nosotros-origen p,
    .nosotros-cobertura p,
    .cta-nosotros p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .nosotros-page__badges {
        flex-direction: column;
        align-items: center;
    }

    .nosotros-historia,
    .nosotros-origen,
    .nosotros-modelo,
    .nosotros-cobertura,
    .cta-nosotros {
        padding: 3.2rem 0;
    }

    .modelo-card {
        padding: 1.5rem 1.15rem;
    }

    .cta-nosotros__actions {
        flex-direction: column;
    }

    .cta-nosotros .btn {
        width: 100%;
    }

    .nosotros-media-card {
        padding: 1rem;
    }
}
/* Dropdown navbar Mas Gelato */
.navbar .dropdown-menu {
    min-width: 220px;
    margin-top: 0.75rem;
    background: #ffffff;
}

.navbar .dropdown-item {
    font-weight: 500;
    color: #333333;
    transition: all 0.25s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #fff4f8;
    color: #FF68A2;
}

/* =========================
   PAGINA BASES MAS GELATO
========================= */

#yogurt-griego,
#polvo-crema,
#saborizantes {
    scroll-margin-top: 120px;
}

.bases-page-hero {
    padding: 4.5rem 0 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(168, 223, 222, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 182, 193, 0.20), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.bases-page__eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: #FCB2E3;
    color: #8a3f68;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-kicker--green {
    background-color: #FEF49B;
    color: #6d7b1b;
}

.bases-page-hero__title,
.bases-section__title,
.bases-page-cta__title {
    margin-bottom: 1rem;
    line-height: 1;
}

.bases-page-hero__title {
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    color: #FF68A2;
}

.bases-page-hero__title span,
.bases-page-cta__title span {
    color: #9BDB1B;
}

.bases-page-hero__text,
.bases-section__text,
.bases-page-cta__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5f5f5f;
}

.bases-page-hero__media {
    padding: 1rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}

.bases-page-hero__img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

.bases-page-hero__actions,
.bases-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bases-page-btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bases-page-btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 10px 24px rgba(255, 104, 162, 0.18);
}

.bases-page-btn--primary:hover,
.bases-page-btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.bases-page-btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.bases-page-btn--secondary:hover,
.bases-page-btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

.bases-page-nav {
    padding: 1rem 0 2rem;
    background: #ffffff;
}

.bases-page-nav__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.bases-page-nav__wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    color: #444;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.bases-page-nav__wrap a:hover,
.bases-page-nav__wrap a:focus {
    background: #FF68A2;
    color: #fff;
}

.bases-section {
    padding: 5rem 0;
}

.bases-section--pink {
    background: #ffffff;
}

.bases-section--cream {
    background:
        radial-gradient(circle at top center, rgba(254, 244, 155, 0.18), transparent 24%),
        #fffdf7;
}

.bases-section--blue {
    background:
        radial-gradient(circle at top left, rgba(137, 203, 239, 0.18), transparent 24%),
        #fafdff;
}

.bases-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #FF68A2;
}

.bases-section__title--green {
    color: #9BDB1B;
}

.bases-section__intro-card {
    padding: 1.1rem 1.2rem;
    border-radius: 1.4rem;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 12px 28px rgba(0,0,0,0.04);
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.bases-section__intro-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB6C1 0%, #FCB2E3 100%);
    color: #FF68A2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.base-card {
    background: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.base-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.base-card__image-wrap {
    padding: 1.5rem 1.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
}

.base-card__image {
    max-height: 260px;
    width: auto;
    object-fit: contain;
}

.base-card__content {
    padding: 1.25rem 1.35rem 1.55rem;
}

.base-card__title {
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    color: #333333;
}

.base-card__text {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #666666;
}

.bases-page-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FF68A2 0%, #ff80b1 100%);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.bases-page-cta::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}

.bases-page-cta::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(155, 219, 27, 0.16);
}

.bases-page-cta .container {
    position: relative;
    z-index: 2;
}

.bases-page-cta__title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    color: #ffffff;
}

.bases-page-cta__text {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    color: rgba(255,255,255,0.92);
}

@media (max-width: 991.98px) {
    .bases-page-hero,
    .bases-section,
    .bases-page-cta {
        padding: 4rem 0;
    }

    .bases-page-hero__actions,
    .bases-page-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .bases-page-hero,
    .bases-section,
    .bases-page-cta {
        padding: 3.2rem 0;
    }

    .bases-page-hero__title,
    .bases-section__title,
    .bases-page-cta__title {
        font-size: clamp(1.95rem, 9vw, 3rem);
    }

    .bases-page-hero__text,
    .bases-section__text,
    .bases-page-cta__text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .bases-page-hero__actions,
    .bases-page-cta__actions {
        flex-direction: column;
    }

    .bases-page-btn {
        width: 100%;
    }

    .base-card__image {
        max-height: 220px;
    }
}
/* =========================
   PAGINA MAQUINAS MAS GELATO
========================= */

#maquina-piso,
#maquina-mesa,
#combos {
    scroll-margin-top: 120px;
}

.maquinas-page-hero {
    padding: 4.5rem 0 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(168, 223, 222, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 182, 193, 0.20), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.maquinas-page__eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: #FCB2E3;
    color: #8a3f68;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-kicker--green {
    background-color: #FEF49B;
    color: #6d7b1b;
}

.maquinas-page-hero__title,
.maquinas-section__title,
.maquinas-combos__title,
.maquinas-page-cta__title {
    margin-bottom: 1rem;
    line-height: 1;
}

.maquinas-page-hero__title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: #FF68A2;
}

.maquinas-page-hero__title span,
.maquinas-page-cta__title span {
    color: #9BDB1B;
}

.maquinas-page-hero__text,
.maquinas-section__text,
.maquinas-combos__text,
.maquinas-page-cta__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5f5f5f;
}

.maquinas-page-hero__media {
    padding: 1.2rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
    text-align: center;
}

.maquinas-page-hero__img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
}

.maquinas-page-hero__actions,
.maquinas-section__actions,
.maquinas-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.maquinas-page-btn {
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.maquinas-page-btn--primary {
    background-color: #FF68A2;
    color: #fff;
    border: 2px solid #FF68A2;
    box-shadow: 0 10px 24px rgba(255, 104, 162, 0.18);
}

.maquinas-page-btn--primary:hover,
.maquinas-page-btn--primary:focus {
    background-color: #f54d92;
    border-color: #f54d92;
    color: #fff;
    transform: translateY(-2px);
}

.maquinas-page-btn--secondary {
    background-color: #fff;
    color: #FF68A2;
    border: 2px solid #FF68A2;
}

.maquinas-page-btn--secondary:hover,
.maquinas-page-btn--secondary:focus {
    background-color: #FF68A2;
    color: #fff;
    transform: translateY(-2px);
}

.maquinas-page-nav {
    padding: 1rem 0 2rem;
    background: #ffffff;
}

.maquinas-page-nav__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.maquinas-page-nav__wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: #fff8fb;
    border: 1px solid rgba(255, 104, 162, 0.10);
    color: #444;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.maquinas-page-nav__wrap a:hover,
.maquinas-page-nav__wrap a:focus {
    background: #FF68A2;
    color: #fff;
}

.maquinas-section {
    padding: 5rem 0;
}

.maquinas-section--pink {
    background: #ffffff;
}

.maquinas-section--green {
    background:
        radial-gradient(circle at top center, rgba(155, 219, 27, 0.10), transparent 24%),
        #fbfff7;
}

.maquinas-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #FF68A2;
}

.maquinas-section__title--green {
    color: #9BDB1B;
}

.maquinas-section__media-card {
    padding: 1rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border: 1px solid rgba(255, 104, 162, 0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}

.maquinas-section__banner {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
}

.maquinas-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
}

.maquinas-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    font-weight: 500;
    color: #4a4a4a;
}

.maquinas-feature-list i {
    color: #9BDB1B;
    font-size: 0.95rem;
}

.maquinas-combos {
    padding: 5rem 0;
    background:
        radial-gradient(circle at top left, rgba(137, 203, 239, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(252, 178, 227, 0.18), transparent 26%),
        #ffffff;
}

.combo-card {
    background: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.10);
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.combo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.combo-card__image-wrap {
    padding: 1.5rem 1.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
}

.combo-card__image {
    max-height: 260px;
    width: auto;
    object-fit: contain;
}

.combo-card__content {
    padding: 1.25rem 1.35rem 1.55rem;
}

.combo-card__title {
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    color: #333333;
}

.combo-card__text {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #666666;
}

.maquinas-page-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FF68A2 0%, #ff80b1 100%);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.maquinas-page-cta::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}

.maquinas-page-cta::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(155, 219, 27, 0.16);
}

.maquinas-page-cta .container {
    position: relative;
    z-index: 2;
}

.maquinas-page-cta__title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    color: #ffffff;
}

.maquinas-page-cta__text {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    color: rgba(255,255,255,0.92);
}

@media (max-width: 991.98px) {
    .maquinas-page-hero,
    .maquinas-section,
    .maquinas-combos,
    .maquinas-page-cta {
        padding: 4rem 0;
    }

    .maquinas-page-hero__actions,
    .maquinas-section__actions,
    .maquinas-page-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .maquinas-page-hero,
    .maquinas-section,
    .maquinas-combos,
    .maquinas-page-cta {
        padding: 3.2rem 0;
    }

    .maquinas-page-hero__title,
    .maquinas-section__title,
    .maquinas-combos__title,
    .maquinas-page-cta__title {
        font-size: clamp(1.95rem, 9vw, 3rem);
    }

    .maquinas-page-hero__text,
    .maquinas-section__text,
    .maquinas-combos__text,
    .maquinas-page-cta__text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .maquinas-page-hero__actions,
    .maquinas-section__actions,
    .maquinas-page-cta__actions {
        flex-direction: column;
    }

    .maquinas-page-btn {
        width: 100%;
    }

    .combo-card__image,
    .maquinas-page-hero__img {
        max-height: 220px;
    }
}
/* ===== Legal Pages ===== */

.legal-hero{
background: linear-gradient(135deg,#FF68A2,#FCB2E3);
padding:80px 0;
color:white;
}

.legal-hero h1{
font-weight:800;
margin-bottom:15px;
}

.legal-hero p{
max-width:700px;
margin:auto;
font-size:1.05rem;
}

.legal-badge{
display:inline-block;
background:white;
color:#FF68A2;
padding:6px 14px;
border-radius:20px;
font-weight:700;
margin-bottom:15px;
font-size:14px;
}

.legal-section{
padding:60px 0;
background:#fffdf8;
}

.legal-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
max-width:900px;
margin:auto;
}

.legal-card h2{
color:#FF68A2;
font-size:1.4rem;
font-weight:800;
margin-top:30px;
}

.legal-card h3{
font-size:1.1rem;
font-weight:700;
margin-top:20px;
}

.legal-card p,
.legal-card li{
color:#444;
line-height:1.7;
}

.legal-card ul{
padding-left:20px;
}

.legal-buttons{
margin-top:30px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-mg-primary{
background:#FF68A2;
color:white;
padding:12px 24px;
border-radius:30px;
font-weight:700;
text-decoration:none;
}

.btn-mg-primary:hover{
background:#f14f92;
color:white;
}

.btn-mg-secondary{
background:#9BDB1B;
color:#303030;
padding:12px 24px;
border-radius:30px;
font-weight:700;
text-decoration:none;
}

.btn-mg-secondary:hover{
background:#8ccb17;
color:#303030;
}

/* ===== Cookies Banner ===== */

.cookie-banner{
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show{
    display: block;
}

.cookie-banner__content{
    background: #ffffff;
    border: 1px solid rgba(255, 104, 162, 0.18);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner__text p{
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    color: #444;
}

.cookie-banner__text a{
    color: #FF68A2;
    font-weight: 700;
    text-decoration: none;
}

.cookie-banner__text a:hover{
    text-decoration: underline;
}

.cookie-banner__actions{
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn{
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.cookie-btn--primary{
    background: #FF68A2;
    color: #fff;
}

.cookie-btn--primary:hover{
    background: #f14f92;
}

.cookie-btn--secondary{
    background: #9BDB1B;
    color: #303030;
}

.cookie-btn--secondary:hover{
    background: #8ccb17;
}

@media (max-width: 767.98px){
    .cookie-banner{
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__content{
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border-radius: 16px;
    }

    .cookie-banner__actions{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .cookie-btn{
        flex: 1 1 calc(50% - 5px);
        text-align: center;
    }
}

.cookie-banner{
opacity:0;
transform:translateY(20px);
transition:all .35s ease;
}

.cookie-banner.show{
opacity:1;
transform:translateY(0);
}

.cookie-banner{
bottom: 90px;
}

}

/* ===== COMODATO ===== */

.comodato-hero{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff4fa 0%, #ffffff 45%, #fffdea 100%);
    padding: 90px 0 70px;
}

.comodato-hero::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-70px;
    width:260px;
    height:260px;
    border-radius:50%;
    background: rgba(255,104,162,.12);
}

.comodato-hero::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-50px;
    width:180px;
    height:180px;
    border-radius:50%;
    background: rgba(155,219,27,.14);
}

.comodato-badge{
    display:inline-block;
    background:#FEF49B;
    color:#303030;
    padding:8px 16px;
    border-radius:999px;
    font-size:.92rem;
    font-weight:700;
    margin-bottom:16px;
    position:relative;
    z-index:2;
}

.comodato-title{
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight:800;
    line-height:1.05;
    color:#303030;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.comodato-lead{
    font-size:1.15rem;
    line-height:1.8;
    color:#575757;
    max-width:780px;
    position:relative;
    z-index:2;
}

.comodato-section{
    padding: 80px 0;
    background: #fff;
}

.comodato-content p{
    color:#555;
    line-height:1.85;
    margin-bottom:0;
}

.comodato-points{
    display:grid;
    gap:14px;
    margin-top:28px;
    margin-bottom:28px;
}

.comodato-point{
    display:flex;
    align-items:flex-start;
    gap:14px;
    background:#fff;
    border:1px solid rgba(255,104,162,.14);
    border-radius:18px;
    padding:16px 18px;
    box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.comodato-point i{
    color:#9BDB1B;
    font-size:1.15rem;
    margin-top:4px;
}

.comodato-point span{
    color:#303030;
    font-weight:600;
    line-height:1.6;
}

.comodato-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn-comodato-primary,
.btn-comodato-secondary{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:all .25s ease;
}

.btn-comodato-primary{
    background:#FF68A2;
    color:#fff;
}

.btn-comodato-primary:hover{
    background:#f55393;
    color:#fff;
    transform:translateY(-1px);
}

.btn-comodato-secondary{
    background:#9BDB1B;
    color:#303030;
}

.btn-comodato-secondary:hover{
    background:#8fcd18;
    color:#303030;
    transform:translateY(-1px);
}

.comodato-card{
    background:#fff;
    border:1px solid rgba(255,104,162,.14);
    border-radius:30px;
    padding:34px;
    box-shadow:0 18px 44px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.comodato-card::before{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:150px;
    height:150px;
    background:rgba(252,178,227,.4);
    border-radius:50%;
}

.comodato-card h3{
    font-size:1.55rem;
    font-weight:800;
    color:#303030;
    margin-bottom:26px;
    position:relative;
    z-index:1;
}

.comodato-feature{
    display:flex;
    gap:16px;
    margin-bottom:24px;
    position:relative;
    z-index:1;
}

.comodato-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:18px;
    background:#FCB2E3;
    color:#303030;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
}

.comodato-feature h4{
    font-size:1.08rem;
    font-weight:800;
    color:#303030;
    margin-bottom:6px;
}

.comodato-feature p{
    margin:0;
    color:#555;
    line-height:1.7;
}

.comodato-data{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:28px;
    position:relative;
    z-index:1;
}

.comodato-data-item{
    background:#fffaf2;
    border:1px solid rgba(254,244,155,.95);
    border-radius:18px;
    text-align:center;
    padding:18px 12px;
}

.comodato-data-item strong{
    display:block;
    font-size:1.5rem;
    line-height:1;
    font-weight:800;
    color:#FF68A2;
    margin-bottom:7px;
}

.comodato-data-item span{
    display:block;
    font-size:.9rem;
    color:#666;
    line-height:1.4;
}

.comodato-steps{
    padding: 80px 0;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.comodato-section-title{
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight:800;
    color:#303030;
    margin-bottom:14px;
}

.comodato-section-text{
    color:#666;
    max-width:760px;
    line-height:1.8;
    margin:0 auto 40px;
}

.comodato-step-card{
    background:#fff;
    border-radius:24px;
    padding:28px 24px;
    box-shadow:0 14px 34px rgba(0,0,0,.06);
    border:1px solid rgba(255,104,162,.12);
    height:100%;
}

.comodato-step-number{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#FF68A2;
    color:#fff;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    margin-bottom:18px;
}

.comodato-step-card h4{
    font-size:1.08rem;
    font-weight:800;
    color:#303030;
    margin-bottom:10px;
}

.comodato-step-card p{
    color:#555;
    line-height:1.75;
    margin:0;
}

.comodato-cta{
    padding: 85px 0;
    background: linear-gradient(135deg, #FF68A2 0%, #FCB2E3 100%);
    color:#fff;
    text-align:center;
}

.comodato-cta h3{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight:800;
    margin-bottom:16px;
}

.comodato-cta p{
    max-width:760px;
    margin:0 auto 28px;
    line-height:1.8;
    font-size:1.06rem;
}

.btn-comodato-white{
    display:inline-block;
    background:#fff;
    color:#FF68A2;
    padding:14px 26px;
    border-radius:999px;
    font-weight:800;
    text-decoration:none;
    transition:all .25s ease;
}

.btn-comodato-white:hover{
    color:#FF68A2;
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

@media (max-width: 991.98px){
    .comodato-content{
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px){
    .comodato-hero{
        padding: 74px 0 56px;
    }

    .comodato-section,
    .comodato-steps,
    .comodato-cta{
        padding: 60px 0;
    }

    .comodato-card{
        padding:24px;
        border-radius:24px;
    }

    .comodato-data{
        grid-template-columns:1fr;
    }

    .comodato-actions{
        flex-direction:column;
    }

    .btn-comodato-primary,
    .btn-comodato-secondary,
    .btn-comodato-white{
        width:100%;
        text-align:center;
    }
}


/* ===== COMODATO ===== */

.clientes-hero{
    background: linear-gradient(135deg, #fff4fa 0%, #ffffff 48%, #fffdea 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.clientes-hero::before{
    content:"";
    position:absolute;
    top:-70px;
    right:-50px;
    width:220px;
    height:220px;
    border-radius:50%;
    background: rgba(255,104,162,.10);
}

.clientes-hero::after{
    content:"";
    position:absolute;
    bottom:-60px;
    left:-40px;
    width:170px;
    height:170px;
    border-radius:50%;
    background: rgba(155,219,27,.14);
}

.clientes-badge{
    display:inline-block;
    background:#FEF49B;
    color:#303030;
    padding:8px 16px;
    border-radius:999px;
    font-size:.92rem;
    font-weight:700;
    margin-bottom:16px;
    position:relative;
    z-index:2;
}

.clientes-title{
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight:800;
    line-height:1.05;
    color:#303030;
    margin-bottom:16px;
    position:relative;
    z-index:2;
}

.clientes-lead{
    font-size:1.1rem;
    line-height:1.85;
    color:#5d5d5d;
    max-width:800px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.clientes-placeholder{
    padding: 80px 0;
    background:#fff;
}

.clientes-box{
    background:#fff;
    border:1px solid rgba(255,104,162,.14);
    border-radius:30px;
    padding:40px 34px;
    box-shadow:0 18px 44px rgba(0,0,0,.08);
}

.clientes-icon{
    width:88px;
    height:88px;
    margin:0 auto 24px;
    border-radius:24px;
    background: linear-gradient(135deg, #FF68A2 0%, #FCB2E3 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    box-shadow:0 14px 30px rgba(255,104,162,.22);
}

.clientes-box h2{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight:800;
    color:#303030;
    margin-bottom:14px;
    text-align:center;
}

.clientes-box p{
    color:#5a5a5a;
    line-height:1.85;
    text-align:center;
    max-width:820px;
    margin:0 auto 16px;
}

.clientes-features{
    margin-top:34px;
}

.clientes-mini-card{
    height:100%;
    background:#fffafc;
    border:1px solid rgba(255,104,162,.12);
    border-radius:22px;
    padding:24px 20px;
    text-align:center;
}

.clientes-mini-card i{
    font-size:1.6rem;
    color:#FF68A2;
    margin-bottom:14px;
}

.clientes-mini-card h3{
    font-size:1.05rem;
    font-weight:800;
    color:#303030;
    margin-bottom:8px;
}

.clientes-mini-card p{
    margin:0;
    color:#666;
    font-size:.96rem;
    line-height:1.7;
}

.clientes-note{
    margin-top:34px;
    background:linear-gradient(135deg, rgba(155,219,27,.14), rgba(254,244,155,.38));
    border:1px solid rgba(155,219,27,.25);
    border-radius:20px;
    padding:20px 22px;
    color:#4f4f4f;
    text-align:center;
    font-weight:500;
}

.clientes-actions{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:center;
}

.btn-clientes-primary,
.btn-clientes-secondary{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:all .25s ease;
}

.btn-clientes-primary{
    background:#FF68A2;
    color:#fff;
}

.btn-clientes-primary:hover{
    background:#f55393;
    color:#fff;
    transform:translateY(-1px);
}

.btn-clientes-secondary{
    background:#9BDB1B;
    color:#303030;
}

.btn-clientes-secondary:hover{
    background:#8fcd18;
    color:#303030;
    transform:translateY(-1px);
}

@media (max-width: 767.98px){
    .clientes-hero{
        padding:74px 0 56px;
    }

    .clientes-placeholder{
        padding:60px 0;
    }

    .clientes-box{
        padding:28px 20px;
        border-radius:24px;
    }

    .clientes-actions{
        flex-direction:column;
    }

    .btn-clientes-primary,
    .btn-clientes-secondary{
        width:100%;
        text-align:center;
    }
}