@page {
    size: A4;
    margin: 0;
}

:root {
    --bg: #f7efe6;
    --paper: #fffaf4;
    --paper-2: #fff4e8;
    --paper-3: #ffedd8;

    --ink: #3d281c;
    --ink-soft: #6b4b39;

    --line: #b47b47;
    --line-soft: #e6c8a7;

    --brand-red: #d23630;
    --brand-red-dark: #972521;

    --brand-orange: #ea8a2d;
    --brand-orange-dark: #c96a1f;

    --brand-gold: #d6a242;
    --brand-gold-soft: #f0d18c;

    --white: #ffffff;

    --shadow-soft: 0 8px 24px rgba(85, 45, 15, 0.08);
    --shadow-card: 0 6px 16px rgba(80, 40, 10, 0.06);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #ece3d8 0%, #e6ddd3 100%);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

.site {
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(255, 250, 244, 0.92);
    border-bottom: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: 0 2px 10px rgba(60, 20, 0, 0.04);
}

.header::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--brand-red-dark) 0%,
        var(--brand-red) 25%,
        var(--brand-orange) 65%,
        var(--brand-gold) 100%
    );
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(180deg, #fffdf9 0%, #fff0de 100%);
    padding: 6px;
    border: 1px solid rgba(180, 123, 71, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.brand__text {
    display: flex;
    flex-direction: column;
}

.brand__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.4px;
    color: var(--brand-red-dark);
}

.brand__tag {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav__link {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.nav__link:hover {
    background: rgba(210, 54, 48, 0.08);
    color: var(--brand-red-dark);
    transform: translateY(-1px);
}

.nav__link--accent {
    background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(151, 37, 33, 0.18);
}

.nav__link--accent:hover {
    background: linear-gradient(180deg, #de433d 0%, #a62823 100%);
    color: var(--white);
}

.nav__link--phone {
    background: linear-gradient(180deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(201, 106, 31, 0.18);
}

.nav__link--phone:hover {
    background: linear-gradient(180deg, #f0963f 0%, #cf7124 100%);
    color: var(--white);
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(240, 209, 140, 0.32) 0%, transparent 35%),
        radial-gradient(circle at bottom left, rgba(234, 138, 45, 0.12) 0%, transparent 32%),
        linear-gradient(180deg, #fff9f3 0%, #fff1e1 100%);
    border-bottom: 1px solid rgba(180, 123, 71, 0.12);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.15), transparent 35%),
        linear-gradient(-135deg, rgba(255,255,255,.12), transparent 32%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
    padding: 70px 0 64px;
}

.hero__eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff5e6 0%, #ffe8c4 100%);
    border: 1px solid rgba(201, 106, 31, 0.18);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    letter-spacing: .25px;
}

.hero__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: 0.3px;
    color: var(--brand-red-dark);
}

.hero__text {
    max-width: 620px;
    margin: 20px 0 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 18px rgba(151, 37, 33, 0.20);
}

.button--primary:hover {
    background: linear-gradient(180deg, #df413c 0%, #a62823 100%);
}

.button--secondary {
    background: linear-gradient(180deg, #fff6eb 0%, #ffe7c4 100%);
    color: var(--ink);
    border: 1px solid rgba(201, 106, 31, 0.18);
    box-shadow: 0 8px 16px rgba(160, 90, 20, 0.08);
}

.button--secondary:hover {
    background: linear-gradient(180deg, #fff2e2 0%, #ffddb1 100%);
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.hero__features li {
    position: relative;
    padding: 10px 14px 10px 34px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(180, 123, 71, 0.12);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}

.hero__features li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, var(--brand-orange) 0%, var(--brand-red) 100%);
    box-shadow: 0 0 0 3px rgba(234, 138, 45, 0.14);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrap {
    position: relative;
    width: min(100%, 420px);
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff3e3 100%);
    border: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: 0 16px 30px rgba(90, 45, 10, 0.10);
}

.hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 106, 31, 0.18);
    border-radius: 20px;
    pointer-events: none;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================
   SECTION HEADING
   ========================= */

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

.section-heading__eyebrow {
    margin: 0 0 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    letter-spacing: .25px;
    text-transform: uppercase;
}

.section-heading__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.05;
    color: var(--ink);
}

/* =========================
   HIGHLIGHTS
   ========================= */

.highlights {
    padding: 72px 0;
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-card {
    position: relative;
    padding: 24px 22px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, #fffefb 0%, #fff7ec 100%);
    border: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--brand-red-dark) 0%,
        var(--brand-red) 40%,
        var(--brand-orange) 75%,
        var(--brand-gold) 100%
    );
}

.highlight-card--pollos::before {
    background: linear-gradient(90deg, var(--brand-orange-dark) 0%, var(--brand-orange) 55%, var(--brand-gold) 100%);
}

.highlight-card--especiales::before {
    background: linear-gradient(90deg, var(--brand-red-dark) 0%, var(--brand-red) 60%, var(--brand-orange) 100%);
}

.highlight-card--fritos::before {
    background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-orange) 50%, var(--brand-red) 100%);
}

.highlight-card--menu::before {
    background: linear-gradient(90deg, var(--brand-red-dark) 0%, var(--brand-orange) 50%, var(--brand-gold) 100%);
}

.highlight-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.highlight-card__text {
    margin: 12px 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
    min-height: 90px;
}

.highlight-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-orange-dark);
}

.highlight-card__link::after {
    content: "→";
    font-size: 0.95rem;
}

/* =========================
   CTA CARTA
   ========================= */

.cta-carta {
    padding: 48px 0 76px;
    background:
        linear-gradient(180deg, #fff8ef 0%, #fff5ea 100%);
}

.cta-carta__box {
    position: relative;
    padding: 36px 32px;
    border-radius: 20px;
    text-align: center;
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff0de 100%);
    border: 1px solid rgba(180, 123, 71, 0.2);
    box-shadow: 0 16px 28px rgba(100, 55, 18, 0.08);
    overflow: hidden;
}

.cta-carta__box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--brand-red-dark) 0%,
        var(--brand-red) 30%,
        var(--brand-orange) 65%,
        var(--brand-gold) 100%
    );
}

.cta-carta__eyebrow {
    margin: 0 0 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--brand-red-dark);
}

.cta-carta__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    color: var(--ink);
}

.cta-carta__text {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.cta-carta__button {
    margin-top: 24px;
}

/* =========================
   INFO
   ========================= */

.info {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #fff5ea 0%, #fffaf4 100%);
}

.info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    position: relative;
    padding: 26px 22px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
    border: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: var(--shadow-card);
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--brand-orange-dark) 0%,
        var(--brand-orange) 60%,
        var(--brand-gold) 100%
    );
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.info-card__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.info-card__text {
    margin: 12px 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.info-card__link {
    display: inline-flex;
    margin-top: 18px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-orange-dark);
}

/* =========================
   FOOTER
   ========================= */

.footer {
    position: relative;
    padding: 28px 0;
    background:
        linear-gradient(180deg, #6b2a22 0%, #4d1d18 100%);
    color: rgba(255,255,255,0.92);
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--brand-gold) 0%,
        var(--brand-orange) 35%,
        var(--brand-red) 70%,
        var(--brand-red-dark) 100%
    );
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__brand strong {
    font-size: 1rem;
    font-weight: 700;
}

.footer__brand span,
.footer__contact span {
    font-size: 0.88rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.84);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__features {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-wrap {
        width: min(100%, 360px);
    }

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

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

@media (max-width: 860px) {
    .header__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .brand {
        justify-content: center;
    }

    .nav {
        justify-content: center;
    }

    .cta-carta__box {
        padding: 30px 22px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand__logo {
        width: 54px;
        height: 54px;
    }

    .brand__name {
        font-size: 1.08rem;
    }

    .brand__tag {
        font-size: 0.76rem;
    }

    .nav {
        gap: 8px;
    }

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

    .hero__inner {
        padding: 54px 0 52px;
    }

    .hero__title {
        font-size: 2.1rem;
    }

    .hero__text {
        font-size: 0.98rem;
    }

    .hero__features {
        gap: 10px;
    }

    .hero__features li {
        width: 100%;
        text-align: left;
    }

    .highlights {
        padding: 58px 0;
    }

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

    .highlight-card__text {
        min-height: auto;
    }

    .cta-carta {
        padding: 40px 0 60px;
    }

    .cta-carta__title {
        font-size: 1.9rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__contact {
        align-items: flex-start;
    }
}
/* =========================
   INFO BLOQUE MEJORADO
   ========================= */

.info {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #fff5ea 0%, #fffaf4 100%);
}

.info-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.info-card {
    position: relative;
    padding: 24px 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
    border: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: 0 6px 16px rgba(80, 40, 10, 0.06);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(
        90deg,
        var(--brand-orange-dark) 0%,
        var(--brand-orange) 55%,
        var(--brand-gold) 100%
    );
}

.info-card__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.info-card__text {
    margin: 12px 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-orange-dark);
}

/* =========================
   HORARIO ANCHO
   ========================= */

.info-hours {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdf9 0%, #fff3e5 100%);
    border: 1px solid rgba(180, 123, 71, 0.18);
    box-shadow: 0 10px 20px rgba(80, 40, 10, 0.06);
    overflow: hidden;
}

.info-hours::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--brand-red-dark) 0%,
        var(--brand-red) 30%,
        var(--brand-orange) 70%,
        var(--brand-gold) 100%
    );
}

.info-hours__inner {
    padding: 28px 26px 24px;
}

.info-hours__header {
    margin-bottom: 18px;
}

.info-hours__eyebrow {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .25px;
    text-transform: uppercase;
    color: var(--brand-red-dark);
}

.info-hours__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    line-height: 1.05;
    color: var(--ink);
}

.info-hours__grid {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
}

.info-hours__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(180, 123, 71, 0.22);
}

.info-hours__day {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    min-width: 110px;
}

.info-hours__time {
    flex: 1;
    text-align: right;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--ink-soft);
}

.info-hours__time.is-closed {
    color: var(--ink);
    font-weight: 700;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
    .info-top {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: auto;
    }
    
    .info-hours__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }
}

@media (max-width: 640px) {
    .info-hours__inner {
        padding: 22px 18px 18px;
    }

    .info-hours__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .info-hours__time {
        text-align: left;
    }

    .info-hours__day {
        min-width: 0;
    }
}
