/* Variables globales: concentran colores, sombras y tonos metalicos usados en toda la pagina. */
:root {
    --green-900: #063d1c;
    --green-700: #087d22;
    --green-500: #19a539;
    --leaf: #42bf42;
    --gold: #ffd51f;
    --amber: #f3a81c;
    --silver: #dce2e8;
    --silver-dark: #8f9aa3;
    --bronze: #cd7f32;
    --bronze-dark: #8a4f24;
    --clay: #bb5a20;
    --cream: #fff8e8;
    --paper: #fffdf7;
    --ink: #1c2419;
    --muted: #65705e;
    --line: rgba(6, 61, 28, 0.16);
    --shadow: 0 24px 70px rgba(31, 42, 18, 0.16);
    --whatsapp: #19a857;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(6, 61, 28, 0.025) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 61, 28, 0.025) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 213, 31, 0.08), transparent 34%, rgba(25, 165, 57, 0.06)),
        var(--paper);
    background-size: 72px 72px, 72px 72px, auto, auto;
    overflow-x: hidden;
}

/* Elementos base: normalizan imagenes y enlaces para que no rompan el layout. */
img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header y navegacion: barra fija con estado reducido al hacer scroll. */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    padding: 18px clamp(18px, 4vw, 58px);
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.82);
    box-shadow: 0 14px 42px rgba(24, 52, 25, 0.11);
    backdrop-filter: blur(18px);
    overflow: visible;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 8%, rgba(255, 213, 31, 0.14) 42%, transparent 72%);
    transform: translateX(-120%);
    animation: navSheen 7.5s ease-in-out infinite;
    pointer-events: none;
}

.navbar > * {
    position: relative;
    z-index: 1;
}

.site-header.scrolled .navbar {
    background: rgba(255, 253, 247, 0.96);
    box-shadow: 0 18px 55px rgba(24, 52, 25, 0.16);
    transform: translateY(-3px);
}

/* Marca principal: alinea el logo pequeno con el nombre en la barra. */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--green-900);
    text-transform: uppercase;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(255, 213, 31, 0.22), 0 10px 20px rgba(8, 125, 34, 0.16);
    animation: logoMiniGlow 4s ease-in-out infinite;
}

.brand span {
    white-space: nowrap;
}

/* Enlaces de navegacion: ordenan los botones segun las secciones del landing. */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--green-900);
    font-size: 0.92rem;
    font-weight: 800;
    transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}

.nav-links a:hover {
    color: white;
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 125, 34, 0.2);
}

.nav-links .nav-order {
    color: var(--green-900);
    background: var(--gold);
    box-shadow: inset 0 -2px 0 rgba(6, 61, 28, 0.14);
    animation: softGoldGlow 3.4s ease-in-out infinite;
}

/* Menu hamburguesa: aparece en pantallas pequenas y se anima al abrir/cerrar. */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-900);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    border-radius: 99px;
    background: white;
    transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero: primera vista con fondo animado, texto principal y logo grande. */
.hero {
    position: relative;
    display: grid;
    min-height: 92vh;
    padding: 126px clamp(20px, 6vw, 76px) 74px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(110deg, rgba(255, 253, 247, 0.95) 0%, rgba(255, 248, 232, 0.86) 41%, rgba(255, 213, 31, 0.28) 100%),
        radial-gradient(circle at 70% 30%, rgba(25, 165, 57, 0.18), transparent 32%),
        var(--cream);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.42) 48%, transparent 56%),
        repeating-linear-gradient(135deg, rgba(255, 213, 31, 0.12) 0 1px, transparent 1px 18px);
    opacity: 0.6;
    transform: translateX(-12%);
    animation: heroGlowSweep 9s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -6vw;
    bottom: -8vh;
    width: 58vw;
    height: 30vh;
    min-width: 520px;
    border-radius: 70% 0 0 0;
    background: linear-gradient(135deg, rgba(8, 125, 34, 0.95), rgba(66, 191, 66, 0.72));
    z-index: -2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.warm-ray {
    position: absolute;
    width: 42vw;
    height: 120vh;
    background: rgba(255, 213, 31, 0.18);
    transform: rotate(24deg);
    animation: raySlide 11s ease-in-out infinite alternate;
}

.ray-one {
    top: -28vh;
    left: 16vw;
}

.ray-two {
    top: -20vh;
    right: 8vw;
    width: 20vw;
    background: rgba(8, 125, 34, 0.1);
    animation-delay: -4s;
}

.steam {
    position: absolute;
    bottom: 20vh;
    width: 3px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.95), transparent);
    filter: blur(0.2px);
    opacity: 0.72;
    animation: steamRise 4s ease-in-out infinite;
}

.steam-one {
    left: 12vw;
}

.steam-two {
    left: 18vw;
    animation-delay: 1.2s;
}

.steam-three {
    left: 24vw;
    animation-delay: 2.1s;
}

.hero-logo {
    position: absolute;
    right: clamp(12px, 6vw, 86px);
    top: clamp(102px, 14vh, 154px);
    width: min(43vw, 540px);
    max-height: 62vh;
    object-fit: contain;
    filter: drop-shadow(0 28px 36px rgba(8, 125, 34, 0.24)) drop-shadow(0 0 22px rgba(255, 213, 31, 0.24));
    animation: floatLogo 5.5s ease-in-out infinite;
}

.hero-content {
    position: relative;
    align-self: center;
    width: min(620px, 100%);
    padding-top: 2vh;
    z-index: 1;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: -18px -22px;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 253, 247, 0.72), rgba(255, 248, 232, 0.26));
    box-shadow: 0 20px 60px rgba(6, 61, 28, 0.08);
    opacity: 0.78;
    animation: contentGlow 5.8s ease-in-out infinite;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: var(--green-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4.4rem, 13vw, 10.5rem);
    line-height: 0.82;
    letter-spacing: 0;
    text-shadow: 0 8px 0 rgba(255, 213, 31, 0.58);
    animation: titleWarmGlow 4.8s ease-in-out infinite;
}

.hero-copy {
    width: min(520px, 100%);
    margin: 28px 0 0;
    color: #33402f;
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.72;
    font-weight: 600;
}

.hero-actions,
.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
    align-items: center;
}

/* Botones principales: PedidosYa y WhatsApp comparten alto/ancho para verse parejos. */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 600ms ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(6, 61, 28, 0.3);
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary {
    color: var(--green-900);
    background: var(--gold);
    box-shadow: 0 18px 34px rgba(243, 168, 28, 0.28);
}

.btn-secondary {
    gap: 10px;
    color: white;
    background: var(--green-900);
    box-shadow: 0 18px 34px rgba(6, 61, 28, 0.25);
    animation: softGreenGlow 3.2s ease-in-out infinite;
}

.btn-whatsapp {
    gap: 10px;
    color: white;
    background: var(--whatsapp);
    box-shadow: 0 18px 34px rgba(25, 168, 87, 0.23);
    animation: softGreenGlow 3.2s ease-in-out infinite;
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.image-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    overflow: hidden;
    transition: transform 200ms ease, filter 200ms ease;
}

.image-button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.48) 44%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 650ms ease;
    pointer-events: none;
}

.image-button:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
}

.image-button:hover::after {
    transform: translateX(120%);
}

.pedidos-button {
    width: min(230px, 100%);
    height: 56px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #fb0050;
    box-shadow: 0 18px 34px rgba(251, 0, 80, 0.22);
    animation: softPinkGlow 3.1s ease-in-out infinite;
}

.pedidos-button img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.hero-actions .btn,
.hero-actions .image-button,
.panel-actions .btn,
.panel-actions .image-button {
    flex: 0 0 244px;
    width: 244px;
    height: 58px;
    min-height: 58px;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: grid;
    width: 34px;
    height: 52px;
    place-items: start center;
    border: 2px solid rgba(6, 61, 28, 0.34);
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(255, 253, 247, 0.36);
    box-shadow: 0 10px 24px rgba(6, 61, 28, 0.12);
    animation: scrollCueGlow 2.4s ease-in-out infinite;
}

.scroll-cue span {
    width: 7px;
    height: 7px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--green-700);
    animation: scrollDot 1.7s ease-in-out infinite;
}

/* Franja introductoria: tres beneficios rapidos bajo el hero. */
.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(1120px, calc(100% - 36px));
    margin: -36px auto 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow);
}

.strip-item {
    position: relative;
    padding: 28px;
    background: rgba(255, 253, 247, 0.96);
    overflow: hidden;
    transition: transform 220ms ease, background 220ms ease;
}

.strip-item::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--leaf));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
}

.strip-item:hover {
    background: white;
    transform: translateY(-5px);
}

.strip-item:hover::after {
    transform: scaleX(1);
}

.strip-item strong,
.strip-item span {
    display: block;
}

.strip-item strong {
    color: var(--green-900);
    font-size: 1.05rem;
}

.strip-item span {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
}

/* Secciones generales: controlan ancho, espaciado y titulares reutilizables. */
.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 92px 0;
}

.section-heading {
    width: min(720px, 100%);
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.order-panel h2,
.visit-content h2 {
    margin: 0;
    color: var(--green-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.section-heading p:last-child,
.order-panel p,
.visit-content p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* Top panes: tarjetas con jerarquia de tamano y brillo por puesto. */
.specials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: end;
}

.special-card {
    --rank-accent: var(--gold);
    --rank-edge: var(--amber);
    --rank-glow: rgba(255, 213, 31, 0.38);
    position: relative;
    min-height: 390px;
    padding: 28px;
    border: 1px solid rgba(6, 61, 28, 0.13);
    border-radius: 8px;
    background:
        radial-gradient(circle at 30% 8%, var(--rank-glow), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.94));
    box-shadow: 0 14px 46px rgba(27, 49, 18, 0.09);
    overflow: hidden;
    transform-origin: center bottom;
    animation: cardIdleGlow 6s ease-in-out infinite;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.special-card::before {
    content: "";
    position: absolute;
    inset: -38%;
    background:
        radial-gradient(circle at 26% 26%, var(--rank-glow), transparent 24%),
        radial-gradient(circle at 72% 62%, rgba(255, 255, 255, 0.46), transparent 20%);
    opacity: 0.52;
    transform: rotate(-8deg);
    animation: cardAura 6s ease-in-out infinite;
    pointer-events: none;
}

.special-card::after {
    content: "";
    position: absolute;
    top: -62%;
    left: -54%;
    width: 42%;
    height: 224%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.64), transparent);
    transform: translateX(-130%) rotate(18deg);
    transition: transform 700ms ease;
    pointer-events: none;
}

.special-card > * {
    position: relative;
    z-index: 1;
}

.special-card h3 {
    margin: 192px 0 10px;
    color: var(--green-900);
    font-size: 1.45rem;
}

.special-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.product-card {
    display: flex;
    min-height: 440px;
    flex-direction: column;
}

.product-card h3 {
    margin: 18px 0 10px;
}

.product-photo {
    display: grid;
    width: 100%;
    height: 200px;
    margin: 22px 0 0;
    place-items: center;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 45%, var(--rank-glow), transparent 50%),
        linear-gradient(140deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.84));
    overflow: hidden;
}

.product-photo img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(91, 43, 14, 0.18));
    animation: breadFloatSimple 4.8s ease-in-out infinite, breadShine 5.2s ease-in-out infinite;
}

.rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--green-900);
    background: linear-gradient(135deg, var(--rank-accent), var(--rank-edge));
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 24px var(--rank-glow);
}

.rank-one {
    min-height: 506px;
    padding: 32px;
    border-color: rgba(255, 176, 0, 0.44);
    animation-delay: -0.4s;
}

.rank-one .product-photo {
    height: 242px;
}

.rank-one h3 {
    font-size: 1.72rem;
}

.rank-two {
    --rank-accent: var(--silver);
    --rank-edge: var(--silver-dark);
    --rank-glow: rgba(199, 211, 222, 0.52);
    min-height: 462px;
    border-color: rgba(143, 154, 163, 0.38);
    animation-delay: -1.6s;
}

.rank-two .product-photo {
    height: 214px;
}

.rank-two h3 {
    font-size: 1.5rem;
}

.rank-three {
    --rank-accent: var(--bronze);
    --rank-edge: var(--bronze-dark);
    --rank-glow: rgba(205, 127, 50, 0.46);
    min-height: 430px;
    border-color: rgba(205, 127, 50, 0.34);
    animation-delay: -2.7s;
}

.rank-three .rank-badge {
    color: white;
}

.rank-three .product-photo {
    height: 190px;
}

.rank-three h3 {
    font-size: 1.38rem;
}

.price-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.price-pair span {
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(6, 61, 28, 0.12);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 248, 232, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-pair strong {
    color: var(--green-900);
    font-size: 1.25rem;
}

/* Menu de productos: filas de precios para tienda y PedidosYa. */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--green-900);
    background: rgba(255, 213, 31, 0.7);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bread-art {
    position: absolute;
    top: 74px;
    left: 50%;
    width: 182px;
    height: 112px;
    transform: translateX(-50%) rotate(-5deg);
    filter: drop-shadow(0 22px 20px rgba(187, 90, 32, 0.24));
    animation: breadFloat 4.8s ease-in-out infinite;
}

.bread-one {
    border-radius: 48% 52% 42% 45%;
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.42), transparent 14%),
        radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.28), transparent 10%),
        linear-gradient(135deg, #ffd466, #c86823);
}

.bread-two {
    width: 170px;
    height: 126px;
    border-radius: 999px 999px 20px 20px;
    background:
        radial-gradient(circle at 24% 42%, rgba(255, 255, 255, 0.4), transparent 11%),
        radial-gradient(circle at 46% 35%, rgba(255, 255, 255, 0.34), transparent 10%),
        radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.34), transparent 10%),
        linear-gradient(135deg, #ffe080, #b95620);
    animation-delay: -1.4s;
}

.bread-three {
    width: 190px;
    height: 116px;
    border-radius: 30px 80px 30px 80px;
    background:
        linear-gradient(90deg, transparent 18%, rgba(105, 49, 18, 0.2) 18% 22%, transparent 22% 39%, rgba(105, 49, 18, 0.2) 39% 43%, transparent 43% 61%, rgba(105, 49, 18, 0.2) 61% 65%, transparent 65%),
        linear-gradient(135deg, #ffd15f, #b75520);
    animation-delay: -2.2s;
}

/* Layout de menu y panel de reserva: mezcla lista larga con llamada a la accion. */
.menu-section {
    padding-top: 32px;
}

.menu-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: start;
}

.menu-list {
    display: grid;
    gap: 14px;
}

.menu-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.menu-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 213, 31, 0.16), transparent 42%, rgba(8, 125, 34, 0.08));
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.menu-row:hover {
    border-color: rgba(8, 125, 34, 0.42);
    transform: translateX(8px);
    box-shadow: 0 16px 34px rgba(27, 49, 18, 0.09);
}

.menu-row:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.menu-row > * {
    position: relative;
    z-index: 1;
}

.menu-row h3 {
    margin: 0;
    color: var(--green-900);
    font-size: 1.12rem;
}

.menu-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(105px, 1fr));
    gap: 10px;
    min-width: 260px;
}

.menu-prices span {
    display: grid;
    gap: 4px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 248, 232, 0.82);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-prices span:last-child {
    color: var(--green-900);
    background: rgba(255, 213, 31, 0.58);
}

.menu-prices strong {
    color: var(--clay);
    font-size: 1.05rem;
}

.menu-row p {
    margin: 6px 0 0;
    color: var(--muted);
}

.menu-row strong {
    flex: 0 0 auto;
    color: var(--clay);
    font-size: 1.1rem;
}

.order-panel {
    position: sticky;
    top: 110px;
    padding: 34px;
    border: 1px solid rgba(6, 61, 28, 0.18);
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(145deg, rgba(6, 61, 28, 0.98), rgba(8, 125, 34, 0.92)),
        var(--green-900);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.order-panel::before {
    content: "";
    position: absolute;
    inset: -40% -30%;
    background:
        repeating-linear-gradient(120deg, rgba(255, 213, 31, 0.14) 0 2px, transparent 2px 22px),
        linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    opacity: 0.42;
    transform: rotate(2deg);
    animation: panelTextureMove 8s ease-in-out infinite;
}

.order-panel .eyebrow,
.order-panel h2,
.order-panel p {
    position: relative;
    z-index: 1;
}

.order-panel .eyebrow {
    color: var(--gold);
}

.order-panel h2 {
    color: white;
}

.order-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.panel-actions {
    align-items: center;
    position: relative;
    z-index: 1;
}

.order-panel .pedidos-button {
    width: 244px;
}

/* Promocion de PedidosYa: bloque llamativo para descuentos semanales. */
.promo-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto 76px;
    padding: 34px;
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(135deg, rgba(251, 0, 80, 0.98), rgba(243, 168, 28, 0.9)),
        #fb0050;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.promo-section::before {
    content: "";
    position: absolute;
    inset: -70% auto -70% -16%;
    width: 34%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(16deg);
    animation: promoSweep 5.8s ease-in-out infinite;
    pointer-events: none;
}

.promo-section > * {
    position: relative;
    z-index: 1;
}

.promo-section .eyebrow,
.promo-section h2,
.promo-section p {
    margin-inline: 0;
}

.promo-section .eyebrow {
    color: white;
}

.promo-section h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.95;
}

.promo-section p {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 700;
}

.promo-button {
    background: white;
    border-color: rgba(255, 255, 255, 0.72);
}

/* Ticker: texto horizontal en movimiento continuo. */
.ticker {
    width: 100%;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--green-900);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 46px;
    padding: 18px 0;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(255, 213, 31, 0.35);
    animation: tickerMove 22s linear infinite, tickerGlow 3.8s ease-in-out infinite;
}

.ticker-track span {
    white-space: nowrap;
}

/* Ubicacion: informacion de contacto y mapa responsive. */
.visit-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
}

.visit-content {
    max-width: 680px;
}

.map-wrap {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: min(54vw, 450px);
    min-height: 320px;
}

.visit-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 0 14px 46px rgba(27, 49, 18, 0.09);
    overflow: hidden;
}

.visit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green-700), var(--gold), var(--leaf));
    animation: contactLine 4.6s ease-in-out infinite;
}

.visit-card > * {
    position: relative;
    z-index: 1;
}

.visit-wa-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    object-fit: contain;
}

.visit-card span,
.visit-card strong,
.visit-card small {
    display: block;
}

.visit-card span {
    color: var(--green-700);
    font-weight: 900;
    text-transform: uppercase;
}

.visit-card strong {
    margin-top: 12px;
    color: var(--green-900);
    font-size: 1.55rem;
    line-height: 1.2;
}

.visit-card small {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Botones flotantes: WhatsApp y volver arriba quedan siempre disponibles. */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 19;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.32), transparent 34%),
        var(--whatsapp);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(25, 168, 87, 0.35), 0 0 0 0 rgba(25, 168, 87, 0.38);
    animation: whatsappPulse 2.2s ease-in-out infinite, whatsappGlow 3.2s ease-in-out infinite;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(25, 168, 87, 0.3);
    border-radius: 50%;
    animation: whatsappRing 2.4s ease-out infinite;
    pointer-events: none;
}

.floating-whatsapp::after {
    inset: -15px;
    animation-delay: 1.1s;
    opacity: 0.65;
}

.floating-whatsapp img {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 92px;
    z-index: 19;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--green-900);
    background: var(--gold);
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(243, 168, 28, 0.3);
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    pointer-events: none;
    cursor: pointer;
    transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: backToTopFloat 2.4s ease-in-out infinite;
}

.back-to-top:hover {
    box-shadow: 0 16px 36px rgba(255, 213, 31, 0.5);
}

/* Footer: incluye el copyright solicitado y el enlace para subir al inicio. */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px clamp(20px, 6vw, 76px);
    color: white;
    background: #102114;
}

.footer-copy {
    display: grid;
    gap: 5px;
}

.footer p {
    margin: 0;
    font-weight: 800;
}

.footer small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

.footer a {
    color: var(--gold);
    font-weight: 800;
}

/* Reveal: los elementos marcados con data-reveal aparecen suavemente al entrar en pantalla. */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.special-card[data-reveal].is-visible:hover {
    transform: translateY(-12px) scale(1.045);
    border-color: var(--rank-accent);
    box-shadow: 0 28px 80px var(--rank-glow);
}

.special-card[data-reveal].is-visible:hover::after {
    transform: translateX(420%) rotate(18deg);
}

/* Animaciones: dan movimiento al logo, brillos, ticker, tarjetas y botones. */
@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(1.2deg);
    }
}

@keyframes floatLogoMobile {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }

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

@keyframes raySlide {
    from {
        transform: translateX(-6vw) rotate(24deg);
    }

    to {
        transform: translateX(5vw) rotate(24deg);
    }
}

@keyframes steamRise {
    0% {
        transform: translateY(30px) scaleY(0.7);
        opacity: 0;
    }

    30% {
        opacity: 0.82;
    }

    100% {
        transform: translateY(-90px) scaleY(1.35);
        opacity: 0;
    }
}

@keyframes scrollDot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(18px);
        opacity: 1;
    }
}

@keyframes navSheen {
    0%,
    46%,
    100% {
        transform: translateX(-120%);
    }

    64% {
        transform: translateX(120%);
    }
}

@keyframes logoMiniGlow {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(255, 213, 31, 0.22), 0 10px 20px rgba(8, 125, 34, 0.16);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(255, 213, 31, 0.34), 0 12px 26px rgba(8, 125, 34, 0.22);
    }
}

@keyframes heroGlowSweep {
    0%,
    100% {
        opacity: 0.38;
        transform: translateX(-16%);
    }

    50% {
        opacity: 0.72;
        transform: translateX(9%);
    }
}

@keyframes contentGlow {
    0%,
    100% {
        opacity: 0.58;
        box-shadow: 0 20px 60px rgba(6, 61, 28, 0.08);
    }

    50% {
        opacity: 0.84;
        box-shadow: 0 24px 70px rgba(255, 213, 31, 0.16);
    }
}

@keyframes titleWarmGlow {
    0%,
    100% {
        text-shadow: 0 8px 0 rgba(255, 213, 31, 0.58), 0 0 0 rgba(255, 213, 31, 0);
    }

    50% {
        text-shadow: 0 8px 0 rgba(255, 213, 31, 0.7), 0 0 28px rgba(255, 213, 31, 0.24);
    }
}

@keyframes scrollCueGlow {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(6, 61, 28, 0.12);
    }

    50% {
        box-shadow: 0 14px 30px rgba(255, 213, 31, 0.25);
    }
}

@keyframes breadFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateX(-50%) translateY(-10px) rotate(2deg);
    }
}

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

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

@keyframes cardIdleGlow {
    0%,
    100% {
        box-shadow: 0 14px 46px rgba(27, 49, 18, 0.09);
    }

    50% {
        box-shadow: 0 18px 54px var(--rank-glow);
    }
}

@keyframes cardAura {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
        opacity: 0.42;
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.72;
    }
}

@keyframes breadShine {
    0%,
    100% {
        filter: drop-shadow(0 18px 22px rgba(91, 43, 14, 0.18));
    }

    50% {
        filter: drop-shadow(0 22px 30px var(--rank-glow));
    }
}

@keyframes panelTextureMove {
    0%,
    100% {
        transform: translateX(-6%) rotate(2deg);
    }

    50% {
        transform: translateX(6%) rotate(2deg);
    }
}

@keyframes promoSweep {
    0%,
    32%,
    100% {
        transform: translateX(0) rotate(16deg);
    }

    62% {
        transform: translateX(360%) rotate(16deg);
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes tickerGlow {
    0%,
    100% {
        text-shadow: 0 0 12px rgba(255, 213, 31, 0.24);
    }

    50% {
        text-shadow: 0 0 24px rgba(255, 213, 31, 0.48);
    }
}

@keyframes contactLine {
    0%,
    100% {
        filter: saturate(1);
    }

    50% {
        filter: saturate(1.45) brightness(1.08);
    }
}

@keyframes softPinkGlow {
    0%,
    100% {
        box-shadow: 0 18px 34px rgba(251, 0, 80, 0.22);
    }

    50% {
        box-shadow: 0 20px 42px rgba(251, 0, 80, 0.36);
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 16px 34px rgba(25, 168, 87, 0.35), 0 0 0 0 rgba(25, 168, 87, 0.34);
    }

    50% {
        box-shadow: 0 18px 42px rgba(25, 168, 87, 0.48), 0 0 28px 8px rgba(25, 168, 87, 0.2);
    }
}

@keyframes whatsappRing {
    0% {
        opacity: 0.7;
        transform: scale(0.82);
    }

    100% {
        opacity: 0;
        transform: scale(1.34);
    }
}

@keyframes softGreenGlow {
    0%,
    100% {
        box-shadow: 0 18px 34px rgba(6, 61, 28, 0.25);
    }

    50% {
        box-shadow: 0 20px 42px rgba(25, 168, 87, 0.34);
    }
}

@keyframes softGoldGlow {
    0%,
    100% {
        box-shadow: inset 0 -2px 0 rgba(6, 61, 28, 0.14), 0 0 0 rgba(255, 213, 31, 0);
    }

    50% {
        box-shadow: inset 0 -2px 0 rgba(6, 61, 28, 0.14), 0 0 22px rgba(255, 213, 31, 0.44);
    }
}

@keyframes backToTopFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.03);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: 90vh;
        padding-top: 116px;
    }

    .hero-logo {
        right: -8vw;
        top: 126px;
        width: min(58vw, 450px);
        opacity: 0.88;
    }

    .intro-strip,
    .specials-grid,
    .menu-layout,
    .visit-section {
        grid-template-columns: 1fr;
    }

    .order-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 82px;
    }

    body {
        background-size: 56px 56px, 56px 56px, auto, auto;
    }

    .site-header {
        padding: 10px;
    }

    .navbar {
        gap: 12px;
        padding: 9px 10px;
        border-radius: 18px;
        background: rgba(255, 253, 247, 0.94);
    }

    .brand {
        gap: 8px;
        font-size: 0.88rem;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        display: grid;
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 30;
        display: grid;
        gap: 6px;
        max-height: calc(100vh - 92px);
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(255, 253, 247, 0.98);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        overflow-y: auto;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        visibility: hidden;
    }

    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .nav-links a {
        padding: 13px 14px;
        border-radius: 10px;
        background: rgba(255, 248, 232, 0.64);
        font-size: 0.95rem;
    }

    .hero {
        min-height: auto;
        padding: 112px 18px 72px;
    }

    .hero::after {
        min-width: 330px;
        width: 92vw;
        height: 20vh;
        opacity: 0.85;
    }

    .hero-logo {
        right: auto;
        left: 50%;
        top: 132px;
        bottom: auto;
        width: min(78vw, 360px);
        opacity: 0.18;
        animation-name: floatLogoMobile;
    }

    .hero-content::before {
        inset: -12px;
        border-radius: 14px;
        opacity: 0.7;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero h1 {
        font-size: clamp(3.35rem, 18vw, 5.3rem);
        line-height: 0.88;
    }

    .hero-copy {
        margin-top: 20px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .hero-actions,
    .panel-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
        margin-top: 24px;
    }

    .btn {
        min-height: 54px;
        padding: 13px 16px;
        width: 100%;
        font-size: 0.94rem;
    }

    .hero-actions .btn,
    .hero-actions .image-button,
    .panel-actions .btn,
    .panel-actions .image-button,
    .order-panel .pedidos-button {
        flex: 1 1 auto;
        width: 100%;
        height: 54px;
        min-height: 54px;
    }

    .scroll-cue {
        bottom: 16px;
        width: 30px;
        height: 46px;
    }

    .intro-strip {
        margin-top: 0;
        width: 100%;
        border-inline: 0;
        border-radius: 0;
    }

    .strip-item {
        padding: 22px 18px;
    }

    .section {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .order-panel h2,
    .visit-content h2 {
        font-size: clamp(2rem, 12vw, 3.25rem);
        line-height: 1;
    }

    .section-heading p:last-child,
    .order-panel p,
    .visit-content p {
        font-size: 0.97rem;
        line-height: 1.62;
    }

    .special-card {
        min-height: auto;
        padding: 22px;
    }

    .rank-one {
        min-height: auto;
    }

    .rank-two {
        min-height: auto;
    }

    .rank-three {
        min-height: auto;
    }

    .rank-one .product-photo {
        height: 190px;
    }

    .rank-two .product-photo {
        height: 176px;
    }

    .rank-three .product-photo {
        height: 164px;
    }

    .rank-one h3,
    .rank-two h3,
    .rank-three h3 {
        font-size: 1.34rem;
    }

    .product-photo {
        margin-top: 18px;
    }

    .price-pair {
        padding-top: 16px;
    }

    .menu-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        padding: 18px;
        transform: none;
    }

    .menu-row:hover {
        transform: translateY(-3px);
    }

    .menu-prices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
    }

    .menu-prices span {
        padding: 10px;
    }

    .price-pair {
        grid-template-columns: 1fr;
    }

    .order-panel {
        padding: 26px 20px;
    }

    .promo-section {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 1120px);
        margin-bottom: 52px;
        padding: 26px 20px;
    }

    .ticker-track {
        gap: 30px;
        padding: 14px 0;
        font-size: 0.84rem;
    }

    .product-card {
        min-height: auto;
    }

    .rank-one.product-card {
        min-height: auto;
    }

    .rank-two.product-card {
        min-height: auto;
    }

    .rank-three.product-card {
        min-height: auto;
    }

    .visit-section {
        gap: 20px;
    }

    .visit-card {
        padding: 24px 20px;
    }

    .visit-card strong {
        font-size: 1.25rem;
    }

    .map-wrap iframe {
        min-height: 280px;
        height: 68vw;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp::before {
        inset: -6px;
    }

    .floating-whatsapp::after {
        inset: -12px;
    }

    .back-to-top {
        right: 18px;
        bottom: 82px;
        width: 42px;
        height: 42px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 26px 18px 96px;
    }
}
