/* ============================================
   LISTO EN CASA VIANDAS — styles.css
   Paleta: verde oscuro, amarillo cálido, crema
   ============================================ */

:root {
  --green-deep:   #2d5016;
  --green-mid:    #4a7c28;
  --green-light:  #7ab648;
  --yellow:       #f0c040;
  --yellow-warm:  #e8a820;
  --cream:        #faf6ee;
  --cream-dark:   #f0e8d4;
  --brown-soft:   #8b6940;
  --text-dark:    #1a1a1a;
  --text-mid:     #444;
  --text-light:   #777;
  --white:        #ffffff;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);

  --nav-h:        72px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Safety net — always show after 6s */
.reveal { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .18s; }
.reveal:nth-child(4) { transition-delay: .26s; }
.reveal:nth-child(5) { transition-delay: .34s; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn--wa:hover { background: var(--wa-dark); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--green-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  transition: transform var(--transition);
}
.nav__logo:hover img { transform: scale(1.08); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links li a {
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}
.nav__links li a:hover { background: rgba(255,255,255,.15); }
.nav__cta {
  background: var(--wa-green) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
}
.nav__cta:hover { background: var(--wa-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(1.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,80,22,.85) 0%,
    rgba(45,80,22,.6) 50%,
    rgba(20,40,8,.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
  max-width: 700px;
}

.hero__logo-wrap { margin-bottom: 24px; }
.hero__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 40px rgba(240,192,64,.4);
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero__sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--green-deep);
  padding: 0;
  overflow: hidden;
}
.benefits-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.1);
}
.benefit:last-child { border-right: none; }
.benefit svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }

/* ===== SECCIONES GENÉRICAS ===== */
.section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green-mid);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PLANES ===== */
.planes { background: var(--cream); }
.planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.plan-card--featured {
  background: var(--green-deep);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.plan-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.plan-card--featured .plan-card__name,
.plan-card--featured .plan-card__list li { color: var(--white); }
.plan-card--featured .plan-card__desc { color: rgba(255,255,255,.75); }

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-card__badge--gold { background: var(--yellow-warm); color: var(--text-dark); }
.plan-card__badge--green { background: var(--green-light); color: var(--text-dark); }

.plan-card__icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.plan-card--featured .plan-card__icon { background: rgba(255,255,255,.15); }
.plan-card__icon svg { width: 28px; height: 28px; color: var(--green-mid); }
.plan-card--featured .plan-card__icon svg { color: var(--yellow); }

.plan-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.plan-card__desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.plan-card__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-card__list li {
  font-size: .875rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.plan-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}
.plan-card--featured .plan-card__list li::before { background: var(--yellow); }

.planes__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: .9rem;
  color: var(--text-mid);
}
.planes__note svg { width: 20px; height: 20px; color: var(--green-mid); flex-shrink: 0; }
.planes__note strong { color: var(--green-deep); }

/* ===== MENÚS ===== */
.menus { background: var(--green-deep); }
.menus .section-tag { background: rgba(255,255,255,.1); color: var(--yellow); }
.menus .section-title { color: var(--white); }
.menus .section-desc { color: rgba(255,255,255,.7); }

.menus__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  transition: background var(--transition), color var(--transition);
}
.menu-tab:hover { background: rgba(255,255,255,.15); color: var(--white); }
.menu-tab.active {
  background: var(--yellow);
  color: var(--green-deep);
}

.menus__panels { position: relative; }
.menu-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.menu-panel.active { display: grid; }

.menu-panel__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.menu-panel__img:hover img { transform: scale(1.04); }

.menu-panel__info { color: var(--white); }
.menu-panel__tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.menu-panel__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.menu-panel__info p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.menu-panel__info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.menu-panel__info ul li {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  padding-left: 24px;
  position: relative;
}
.menu-panel__info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== GALLERY STRIP ===== */
.gallery {
  overflow: hidden;
  background: var(--cream-dark);
  padding: 32px 0;
}
.gallery__track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 28s linear infinite;
  width: max-content;
}
.gallery__item {
  width: 240px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery:hover .gallery__track { animation-play-state: paused; }

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ESPECIALES ===== */
.especiales { background: var(--cream); }
.especiales__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.especial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.especial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.especial-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.especial-card__icon svg { width: 32px; height: 32px; color: var(--white); }

.especial-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.especial-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.especial-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.especial-card__list li {
  font-size: .875rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.especial-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ===== CTA CENTRAL ===== */
.cta-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,.9), rgba(74,124,40,.75));
}
.cta-section__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  color: var(--white);
  max-width: 600px;
}
.cta-section__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===== CONTACTO ===== */
.contacto { background: var(--cream-dark); }
.contacto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contacto__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 26px; height: 26px; }

.contact-item--wa .contact-item__icon { background: #e8fdf0; color: var(--wa-green); }
.contact-item--ig .contact-item__icon { background: #fce8f3; color: #c13584; }
.contact-item--email .contact-item__icon { background: #e8eeff; color: #4361ee; color: var(--green-mid); }

.contact-item__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item__value {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.zona-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.zona-box svg { width: 28px; height: 28px; color: var(--yellow); flex-shrink: 0; }
.zona-box strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.zona-box span { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  object-fit: cover;
  margin-bottom: 16px;
}
.footer__logo p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--yellow); }

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: var(--white);
}
.footer__social a:hover { background: var(--yellow); color: var(--green-deep); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 32px; height: 32px; color: var(--white); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .planes__grid { grid-template-columns: 1fr 1fr; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-6px); }
  .menu-panel.active { grid-template-columns: 1fr; }
  .menu-panel__img { max-height: 320px; }
  .especiales__grid { grid-template-columns: 1fr; }
  .contacto__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green-deep);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links li { width: 100%; }
  .nav__links li a { display: block; padding: 14px 16px; font-size: 1rem; }
  .nav__burger { display: flex; }

  .hero__bg { grid-template-columns: 1fr; }
  .hero__img--2, .hero__img--3 { display: none; }
  .hero__img--1 { opacity: .25; }

  .benefit { padding: 14px 16px; font-size: .8rem; }

  .section { padding: 72px 0; }
  .planes__grid { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 24px; }

  .menus__tabs { gap: 6px; }
  .menu-tab { padding: 8px 16px; font-size: .82rem; }

  .gallery__item { width: 180px; height: 135px; }

  .especial-card { padding: 36px 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3rem); }
  .benefits-bar__inner { flex-direction: column; }
  .benefit { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; justify-content: center; }
  .benefit:last-child { border-bottom: none; }
}
