:root {
    --azul: #087be2;
    --azul-oscuro: #0054a6;
    --azul-profundo: #032c68;
    --amarillo: #ffe500;
    --naranja: #ff9518;
    --verde: #82cf12;
    --blanco: #ffffff;
    --gris: #667085;
    --fondo: #f5f9ff;
    --oscuro: #10233e;
    --sombra: 0 20px 50px rgba(0, 84, 166, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--oscuro);
    background: var(--blanco);
    overflow-x: hidden;
}

body.menu-abierto {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font: inherit;
}

.contenedor {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* CABECERA */

.cabecera {
    height: 88px;
    background: rgba(255, 255, 255, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s ease;
}

.cabecera.scrolled {
    height: 74px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.12);
}

.cabecera-contenido {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo img {
    width: 190px;
    max-height: 67px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.menu a {
    color: var(--oscuro);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.menu a:not(.boton-pedido)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
    background: var(--amarillo);
    transition: 0.3s;
}

.menu a:hover,
.menu a.activo {
    color: var(--azul);
}

.menu a:hover::after,
.menu a.activo::after {
    width: 100%;
}

.boton-pedido {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--azul);
    color: var(--blanco);
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(8, 123, 226, 0.25);
    transition: 0.3s;
}

.boton-pedido:hover {
    transform: translateY(-3px);
    background: var(--azul-oscuro);
}

.boton-pedido-movil {
    display: none;
}

.boton-menu {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--azul);
    border-radius: 12px;
    padding: 9px;
    cursor: pointer;
}

.boton-menu span {
    display: block;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 10px;
    transition: 0.3s;
}


/* HERO */

.hero {
    margin-top: 88px;
    height: 650px;
    position: relative;
    overflow: hidden;
    background: var(--azul);
}

.hero-slider,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition:
        opacity 0.8s ease,
        transform 1.2s ease,
        visibility 0.8s;
    background:
        radial-gradient(circle at 75% 45%, #2aa7ff 0, transparent 35%),
        linear-gradient(120deg, #004dac 0%, #087be2 55%, #005ec4 100%);
}

.hero-slide.activo {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide-naranja {
    background:
        radial-gradient(circle at 80% 50%, #ffd332 0, transparent 38%),
        linear-gradient(120deg, #ff7617 0%, #ff9c1c 58%, #ffc719 100%);
}

.hero-slide-verde {
    background:
        radial-gradient(circle at 77% 45%, #dfff4a 0, transparent 36%),
        linear-gradient(120deg, #056fbf 0%, #19a87b 57%, #7ccc16 100%);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        radial-gradient(circle, #fff 2px, transparent 2px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-contenido {
    height: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-texto {
    color: white;
    padding-right: 30px;
}

.hero-etiqueta {
    display: inline-flex;
    align-items: center;
    padding: 10px 17px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    margin-bottom: 22px;
}

.hero h1,
.hero h2 {
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(58px, 6.4vw, 96px);
    line-height: 0.95;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 650px;
}

.hero h1 strong,
.hero h2 strong {
    display: block;
    color: var(--amarillo);
    font-weight: 400;
    text-shadow: 5px 6px 0 rgba(0, 44, 104, 0.3);
}

.hero-slide-naranja h2 strong {
    color: var(--azul-profundo);
    text-shadow: 5px 6px 0 rgba(255, 255, 255, 0.25);
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    margin: 22px 0;
    max-width: 530px;
}

.precio-oferta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.precio-anterior {
    font-size: 13px;
}

.precio-actual small {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.precio-actual strong {
    font-family: "Anton", Impact, sans-serif;
    color: var(--amarillo);
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
}

.hero-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.boton {
    min-height: 52px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.boton:hover {
    transform: translateY(-4px);
}

.boton-amarillo {
    color: var(--azul-profundo);
    background: var(--amarillo);
    box-shadow: 0 12px 30px rgba(255, 229, 0, 0.3);
}

.boton-transparente {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.boton-azul {
    color: white;
    background: var(--azul-oscuro);
    box-shadow: 0 12px 30px rgba(0, 47, 108, 0.25);
}

.hero-imagen {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-imagen img {
    width: min(690px, 100%);
    max-height: 570px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 30px 30px rgba(0, 33, 89, 0.35));
    animation: flotar 4s ease-in-out infinite;
}

.circulo-producto {
    width: 530px;
    height: 530px;
    border-radius: 50%;
    position: absolute;
    background: var(--amarillo);
    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.16),
        0 30px 60px rgba(0, 43, 94, 0.25);
}

.circulo-producto::after {
    content: "";
    position: absolute;
    inset: 42px;
    border: 3px dashed rgba(0, 70, 150, 0.22);
    border-radius: 50%;
    animation: girar 20s linear infinite;
}

.sello-oferta {
    width: 116px;
    height: 116px;
    position: absolute;
    top: 95px;
    right: 0;
    border-radius: 50%;
    background: var(--naranja);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transform: rotate(10deg);
    box-shadow:
        0 16px 25px rgba(0, 0, 0, 0.18),
        inset 0 0 0 5px rgba(255, 255, 255, 0.25);
}

.sello-oferta span {
    font-size: 12px;
    font-weight: 800;
}

.sello-oferta strong {
    font-family: "Anton", Impact, sans-serif;
    font-size: 31px;
    font-weight: 400;
}

.sello-azul {
    background: var(--azul-profundo);
}

.burbuja {
    position: absolute;
    z-index: 4;
    background: white;
    color: var(--azul);
    font-size: 12px;
    font-weight: 900;
    padding: 12px 17px;
    border-radius: 40px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.burbuja-1 {
    left: 2%;
    top: 23%;
    transform: rotate(-10deg);
}

.burbuja-2 {
    bottom: 20%;
    right: 7%;
    color: var(--naranja);
    transform: rotate(8deg);
}

.hero-forma {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-forma-1 {
    width: 260px;
    height: 260px;
    top: -130px;
    left: 33%;
    background: rgba(255, 255, 255, 0.08);
}

.hero-forma-2 {
    width: 190px;
    height: 190px;
    right: -50px;
    bottom: -70px;
    border: 35px solid rgba(255, 255, 255, 0.08);
}

.flecha-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    z-index: 10;
    color: white;
    background: rgba(0, 34, 83, 0.45);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.flecha-slider:hover {
    background: var(--amarillo);
    color: var(--azul-profundo);
}

.flecha-anterior {
    left: 20px;
}

.flecha-siguiente {
    right: 20px;
}

.indicadores-slider {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.indicador {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: 0.3s;
}

.indicador.activo {
    width: 34px;
    border-radius: 12px;
    background: var(--amarillo);
}


/* CATEGORÍAS */

.categorias {
    position: relative;
    z-index: 20;
    margin-top: -18px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: white;
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--sombra);
}

.categoria {
    min-height: 75px;
    border: 0;
    border-radius: 17px;
    color: var(--oscuro);
    background: #f2f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.categoria span {
    font-size: 25px;
}

.categoria strong {
    font-size: 13px;
}

.categoria:hover,
.categoria.activa {
    color: white;
    background: var(--azul);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(8, 123, 226, 0.25);
}


/* CARTA */

.seccion-carta {
    padding: 100px 0;
    background:
        radial-gradient(circle at 5% 20%, rgba(255, 229, 0, 0.13), transparent 18%),
        radial-gradient(circle at 95% 60%, rgba(8, 123, 226, 0.10), transparent 20%),
        var(--fondo);
}

.encabezado-seccion {
    text-align: center;
    margin-bottom: 50px;
}

.subtitulo-seccion {
    color: var(--naranja);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.encabezado-seccion h2 {
    font-size: clamp(34px, 5vw, 54px);
    margin: 10px 0;
    letter-spacing: -2px;
}

.encabezado-seccion h2 strong {
    color: var(--azul);
}

.encabezado-seccion p {
    color: var(--gris);
}

.platos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.plato-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(22, 69, 111, 0.10);
    transition: 0.4s ease;
}

.plato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 91, 180, 0.18);
}

.plato-card.oculto {
    display: none;
}

.plato-imagen {
    height: 260px;
    background:
        radial-gradient(circle, #e8f5ff 0%, #f7fbff 70%);
    position: relative;
    overflow: hidden;
}

.plato-imagen::after {
    content: "";
    position: absolute;
    width: 210px;

    height: 210px;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 229, 0, 0.38);
}

.plato-imagen img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.plato-card:hover .plato-imagen img {
    transform: scale(1.08) rotate(-2deg);
}

.etiqueta-card {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    background: var(--azul);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.etiqueta-naranja {
    background: var(--naranja);
}

.etiqueta-verde {
    background: var(--verde);
    color: var(--azul-profundo);
}

.boton-favorito {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--naranja);
    font-size: 23px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.boton-favorito.activo {
    color: white;
    background: var(--naranja);
}

.plato-informacion {
    padding: 24px;
}

.plato-calificacion {
    color: #ffb800;
    font-size: 12px;
    letter-spacing: 1px;
}

.plato-calificacion span {
    color: var(--gris);
    margin-left: 5px;
}

.plato-informacion h3 {
    margin: 10px 0;
    font-size: 20px;
}

.plato-informacion p {
    min-height: 65px;
    color: var(--gris);
    font-size: 13px;
    line-height: 1.65;
}

.plato-final {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #edf1f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plato-precio {
    color: var(--azul);
    font-size: 22px;
}

.agregar-producto {
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 14px;
    background: var(--amarillo);
    color: var(--azul-profundo);
    font-size: 27px;
    cursor: pointer;
    transition: 0.3s;
}

.agregar-producto:hover {
    color: white;
    background: var(--azul);
    transform: rotate(90deg);
}

.centrar {
    text-align: center;
}

.boton-carta {
    margin-top: 45px;
}


/* BANNER SECUNDARIO */

.banner-secundario {
    margin: 80px auto;
    width: min(1180px, calc(100% - 40px));
    min-height: 430px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    color: white;
    background:
        radial-gradient(circle at 78% 50%, #2ba5ff 0, transparent 36%),
        linear-gradient(125deg, #002f74 0%, #0077dc 65%, #0895f0 100%);
    box-shadow: 0 30px 70px rgba(0, 77, 165, 0.25);
}

.banner-secundario::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    border: 70px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    right: -180px;
    top: -170px;
}

.banner-secundario-contenido {
    min-height: 430px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    position: relative;
}

.banner-secundario-texto {
    padding: 55px 25px;
    position: relative;
    z-index: 3;
}

.banner-mini-titulo {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 25px;
    color: var(--azul-profundo);
    background: var(--amarillo);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.banner-secundario h2 {
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(50px, 6vw, 78px);
    line-height: 0.98;
    font-weight: 400;
    margin: 17px 0;
}

.banner-secundario h2 strong {
    display: block;
    color: var(--amarillo);
    font-weight: 400;
}

.banner-secundario p {
    line-height: 1.7;
    max-width: 480px;
}

.banner-precio {
    margin: 18px 0;
}

.banner-precio span {
    display: block;
    font-size: 13px;
}

.banner-precio strong {
    color: var(--amarillo);
    font-family: "Anton", Impact, sans-serif;
    font-size: 44px;
    font-weight: 400;
}

.banner-secundario-imagen {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-secundario-imagen img {
    max-height: 410px;
    position: relative;
    z-index: 3;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 20, 50, 0.35));
}

.circulo-amarillo {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--amarillo);
    z-index: 1;
}

.sello-redondo {
    position: absolute;
    z-index: 4;
    right: 20px;
    top: 45px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--naranja);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.sello-redondo span {
    font-size: 10px;
    font-weight: 800;
}

.sello-redondo strong {
    font-size: 25px;
}

.banner-decoracion {
    position: absolute;
    z-index: 2;
    color: var(--amarillo);
}

.banner-limon {
    font-size: 75px;
    right: 47%;
    top: -25px;
}

.banner-hoja {
    font-size: 55px;
    right: 2%;
    bottom: 20px;
    color: var(--verde);
    transform: rotate(25deg);
}


/* BENEFICIOS */

.beneficios {
    padding: 25px 0 85px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #e6edf5;
    padding: 25px;
    border-radius: 20px;
}

.beneficio > span {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 18px;
    background: #e7f4ff;
    display: grid;
    place-items: center;
    font-size: 27px;
}

.beneficio h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.beneficio p {
    color: var(--gris);
    font-size: 12px;
    line-height: 1.6;
}


/* FOOTER */

.pie-pagina {
    color: white;
    background: var(--azul-profundo);
    padding-top: 70px;
}

.pie-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.pie-marca img {
    width: 200px;
    background: white;
    padding: 10px;
    border-radius: 13px;
    margin-bottom: 20px;
}

.pie-marca p,
.pie-columna p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
}

.pie-columna {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pie-columna h3 {
    color: var(--amarillo);
    font-size: 16px;
    margin-bottom: 9px;
}

.pie-columna a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: 0.3s;
}

.pie-columna a:hover {
    color: var(--amarillo);
}

.redes {
    display: flex;
    gap: 9px;
}

.redes a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    font-size: 18px;
}

.redes a:hover {
    color: var(--azul-profundo);
    background: var(--amarillo);
}

.pie-inferior {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 22px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}


/* WHATSAPP */

.whatsapp {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    min-height: 55px;
    padding: 0 19px;
    border-radius: 50px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
    animation: pulso 2s infinite;
}


/* ANIMACIONES */

.animar {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animar.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes flotar {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes girar {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulso {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}


















/* POPUP FRANQUICIA */

.popup-franquicia {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.popup-franquicia.mostrar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-franquicia-fondo {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.78);
    backdrop-filter: blur(7px);
}

.popup-franquicia-contenido {
    width: min(920px, 100%);
    min-height: 520px;
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;

    box-shadow:
        0 35px 90px rgba(0, 28, 70, 0.42);

    opacity: 0;

    /* Animación inicial + reducción del 30% */
    transform: translateY(45px) scale(0.644);

    transition:
        transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.45s ease;
}

.popup-franquicia.mostrar .popup-franquicia-contenido {
    opacity: 1;

    /* Tamaño final reducido un 30% */
    transform: translateY(0) scale(0.70);
}


/* IMAGEN */

.popup-franquicia-imagen {
    min-height: 520px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            #1ba7ff 0%,
            #087be2 48%,
            #004da7 100%
        );
}

.popup-franquicia-imagen::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background-image:
        radial-gradient(
            circle,
            #ffffff 2px,
            transparent 2px
        );

    background-size: 28px 28px;
}

.popup-circulo {
    width: 370px;
    height: 370px;
    position: absolute;

    border-radius: 50%;
    background: #ffe500;

    box-shadow:
        inset 0 0 0 15px rgba(255, 255, 255, 0.25),
        0 25px 55px rgba(0, 37, 90, 0.3);
}

.popup-circulo::after {
    content: "";
    position: absolute;
    inset: 34px;

    border: 3px dashed rgba(0, 66, 145, 0.25);
    border-radius: 50%;

    animation: rotarPopup 18s linear infinite;
}

.popup-franquicia-imagen img {
    width: 115%;
    max-width: 570px;
    position: relative;
    z-index: 3;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 25px rgba(0, 25, 70, 0.35));

    animation: flotarPopup 4s ease-in-out infinite;
}

.popup-sello {
    width: 110px;
    height: 110px;
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #ff9518;
    color: #ffffff;

    text-align: center;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 900;

    transform: rotate(-10deg);

    box-shadow:
        0 13px 28px rgba(0, 0, 0, 0.2),
        inset 0 0 0 5px rgba(255, 255, 255, 0.25);
}


/* INFORMACIÓN */

.popup-franquicia-informacion {
    padding: 55px 42px 38px;
    position: relative;
}

.popup-etiqueta {
    display: inline-block;

    padding: 9px 14px;
    margin-bottom: 16px;

    border-radius: 30px;
    background: rgba(255, 149, 24, 0.13);
    color: #ff8610;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.popup-franquicia-informacion h2 {
    color: #10233e;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.popup-franquicia-informacion h2 strong {
    display: block;
    color: #087be2;
}

.popup-franquicia-informacion > p {
    margin: 19px 0;
    color: #667085;

    font-size: 14px;
    line-height: 1.7;
}

.popup-beneficios {
    margin: 0 0 24px;
    padding: 0;

    list-style: none;
}

.popup-beneficios li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 29px;

    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.popup-beneficios li::before {
    content: "✓";

    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: -2px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #82cf12;
    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
}


/* WHATSAPP */

.popup-whatsapp {
    width: 100%;
    min-height: 61px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    padding: 10px 20px;
    border-radius: 50px;

    background: #25d366;
    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

    box-shadow:
        0 14px 30px rgba(37, 211, 102, 0.3);

    transition: 0.3s ease;
}

.popup-whatsapp:hover {
    transform: translateY(-4px);
    background: #19b954;

    box-shadow:
        0 19px 38px rgba(37, 211, 102, 0.4);
}

.popup-whatsapp small {
    display: block;
    margin-bottom: 2px;

    font-size: 10px;
    font-weight: 600;

    opacity: 0.85;
}

.whatsapp-icono {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);

    font-size: 20px;
}

.popup-despues {
    width: 100%;
    margin-top: 14px;

    border: 0;
    background: transparent;
    color: #98a2b3;

    font-size: 12px;
    cursor: pointer;
}

.popup-despues:hover {
    color: #087be2;
}


/* CERRAR */

.popup-cerrar {
    width: 44px;
    height: 44px;
    position: absolute;
    z-index: 20;
    top: 14px;
    right: 14px;

    border: 0;
    border-radius: 50%;

    background: #edf6ff;
    color: #087be2;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;

    transition: 0.3s ease;
}

.popup-cerrar:hover {
    color: #ffffff;
    background: #ff9518;
    transform: rotate(90deg);
}


/* ANIMACIONES */

@keyframes flotarPopup {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

}

@keyframes rotarPopup {

    to {
        transform: rotate(360deg);
    }

}


/* TABLET */

@media (max-width: 1000px) {

    .menu {
        gap: 20px;
    }

    .boton-pedido-escritorio {
        display: none;
    }

    .hero {
        height: 590px;
    }

    .hero-contenido {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1,
    .hero h2 {
        font-size: 58px;
    }

    .circulo-producto {
        width: 390px;
        height: 390px;
    }

    .platos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	
	

}


/* CELULAR */

@media (max-width: 768px) {

    .contenedor {
        width: min(100% - 28px, 1180px);
    }

    .cabecera,
    .cabecera.scrolled {
        height: 72px;
    }

    .logo img {
        width: 145px;
    }

    .boton-menu {
        display: block;
    }

    .menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        padding: 45px 30px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 27px;
        transition: 0.35s;
    }

    .menu.abierto {
        left: 0;
    }

    .menu a {
        font-size: 18px;
    }

    .boton-pedido-movil {
        display: inline-flex;
        color: white !important;
    }

    .hero {
        height: 790px;
        margin-top: 72px;
    }

    .hero-contenido {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .hero-texto {
        text-align: center;
        padding: 0 15px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(48px, 14vw, 67px);
    }

    .hero p {
        font-size: 14px;
        margin: 16px auto;
    }

    .precio-oferta,
    .hero-botones {
        justify-content: center;
    }

    .hero-imagen {
        height: 340px;
    }

    .hero-imagen img {
        max-height: 340px;
    }

    .circulo-producto {
        width: 300px;
        height: 300px;
    }

    .sello-oferta {
        width: 85px;
        height: 85px;
        top: 25px;
        right: 7%;
    }

    .sello-oferta strong {
        font-size: 23px;
    }

    .burbuja {
        display: none;
    }

    .flecha-slider {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .flecha-anterior {
        left: 8px;
    }

    .flecha-siguiente {
        right: 8px;
    }

    .categorias {
        margin-top: 0;
        padding-top: 15px;
    }

    .categorias-grid {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 18px;
    }

    .categoria {
        min-width: 125px;
        min-height: 65px;
    }

    .seccion-carta {
        padding: 75px 0;
    }

    .platos-grid {
        grid-template-columns: 1fr;
    }

    .banner-secundario {
        margin: 50px auto;
        border-radius: 25px;
    }

    .banner-secundario-contenido {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-secundario-texto {
        padding: 45px 20px 10px;
    }

    .banner-secundario p {
        margin: auto;
    }

    .banner-secundario-imagen {
        min-height: 330px;
    }

    .banner-secundario-imagen img {
        max-height: 300px;
    }

    .circulo-amarillo {
        width: 280px;
        height: 280px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .pie-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .whatsapp span {
        display: none;
    }

    .whatsapp {
        width: 55px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
	
	
	  .popup-franquicia {
        padding: 12px;
        align-items: center;
    }

    .popup-franquicia-contenido {
        max-height: calc(100vh - 24px);
        overflow-y: auto;

        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .popup-franquicia-imagen {
        min-height: 240px;
    }

    .popup-circulo {
        width: 220px;
        height: 220px;
    }

    .popup-franquicia-imagen img {
        width: 90%;
        max-height: 235px;
    }

    .popup-sello {
        width: 80px;
        height: 80px;
        top: 16px;
        left: 16px;

        font-size: 8px;
    }

    .popup-franquicia-informacion {
        padding: 32px 24px 25px;
        text-align: center;
    }

    .popup-franquicia-informacion h2 {
        font-size: 35px;
    }

    .popup-beneficios {
        display: inline-block;
        text-align: left;
    }

    .popup-cerrar {
        position: fixed;
        top: 20px;
        right: 20px;

        background: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
    }

}


/* CELULARES PEQUEÑOS */

@media (max-width: 430px) {

    .hero {
        height: 760px;
    }

    .hero-etiqueta {
        font-size: 10px;
    }

    .precio-actual strong {
        font-size: 38px;
    }

    .hero-imagen {
        height: 300px;
    }

    .hero-imagen img {
        max-height: 285px;
    }

    .circulo-producto {
        width: 250px;
        height: 250px;
    }

    .plato-imagen {
        height: 235px;
    }

}