/* ===================================
   MIABU – Catering Mediterráneo
   Brand: verde bosque + dorado + crema
   =================================== */

:root {
  --green-dark: #1a3d2e;
  --green: #2d5a3d;
  --green-light: #3d7350;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --gold-pale: #f5ecd4;
  --cream: #faf6f0;
  --cream-dark: #f0ebe3;
  --text: #1c1c1c;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-green-dark: #1aaa52;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 61, 46, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 61, 46, 0.15);
  --transition: all 0.25s ease;
  --max-width: 1180px;
  --padding-x: 1.25rem;
  --nav-h: 72px;
  --mobile-cta-h: 64px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--mobile-cta-h);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img, picture { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
section { padding: 4.5rem 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 10000;
}
.skip-link:focus { top: 1rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(1.85rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  background: var(--gold-pale);
  color: var(--green-dark);
}

.tag-muted { background: #fde8e8; color: #8b2e2e; }
.tag-gold { background: var(--gold-pale); color: #7a6218; }
.tag-light { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(26, 61, 46, 0.4);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-full { width: 100%; }
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

.icon-wa { flex-shrink: 0; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 61, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link { flex-shrink: 0; }
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-ig {
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-ig:hover { opacity: 1; color: var(--gold-light); }

.nav-wa { font-size: 0.88rem; padding: 0.6rem 1.1rem; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.menu-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.menu-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(26, 61, 46, 0.98);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.4rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 61, 46, 0.88) 0%,
    rgba(26, 61, 46, 0.72) 50%,
    rgba(26, 61, 46, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 3rem 0 5rem;
}

.badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero-microcopy span::before {
  content: '✓ ';
  color: var(--gold-light);
}

/* TRUST BAR */
.trust-bar {
  background: var(--green-dark);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--gold);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.trust-icon { font-size: 1.1rem; }
.trust-sep { display: none; }

@media (min-width: 640px) {
  .trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .trust-item { padding: 0 1.5rem; font-size: 0.88rem; }
  .trust-sep {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
  }
}

/* EVENT TYPES */
.event-types { background: var(--white); }

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.event-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: block;
}

.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.event-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.event-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.event-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.event-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}

/* PROBLEM / SOLUTION */
.problem-solution { background: var(--cream-dark); }

.ps-grid {
  display: grid;
  gap: 1.5rem;
}

.problem-block, .solution-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

.problem-block { border-top: 4px solid #c0392b; }
.solution-block { border-top: 4px solid var(--gold); }

.problem-block h2, .solution-block h2 { margin-bottom: 0.85rem; }
.problem-block p, .solution-block p { color: var(--text-muted); margin-bottom: 1.25rem; }

.problem-list li, .solution-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.problem-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.solution-block .btn { margin-top: 0.5rem; }

/* SERVICES */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-top: 0.35rem; }

/* MENUS */
.menus {
  background: var(--green-dark);
  color: var(--white);
}

.menus .section-header h2 { color: var(--white); }

.menus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.menu-card-featured { border-color: rgba(201, 162, 39, 0.5); }

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-body { padding: 1.5rem; }
.menu-body h3 { color: var(--white); margin-bottom: 0.5rem; }
.menu-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.menu-body ul li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1rem;
  position: relative;
}
.menu-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.menu-body .btn { margin-top: 1.25rem; }

.menus-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.menus-footer p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* REAL EVENTS */
.real-events { background: var(--cream); }

.events-grid {
  display: grid;
  gap: 1.5rem;
}

.event-menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
}

.event-menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.event-menu-meta {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.event-menu-days {
  display: grid;
  gap: 1.25rem;
}

.event-menu-days h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.event-menu-days li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.event-menu-days li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.step-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.step-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.how-cta { text-align: center; }
.microcopy-dark { margin-top: 0.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* PHOTO BREAK */
.photo-break {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--green-dark);
}

.photo-break picture,
.photo-break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-break img,
.photo-break-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.photo-quote {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(26,61,46,0.9), rgba(26,61,46,0.5));
  display: flex;
  align-items: center;
  padding: 2rem var(--padding-x);
}

.photo-quote blockquote { max-width: 560px; }
.quote-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--gold-light);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.photo-quote cite {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* DIFERENCIACIÓN */
.diferenciacion { background: var(--white); }

.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dif-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.dif-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.dif-icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.dif-card p { font-size: 0.92rem; color: var(--text-muted); margin-top: 0.3rem; }

/* GALLERY */
.gallery { background: var(--cream-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
  background: var(--cream-dark);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.section-header a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

/* FAQ */
.faqs { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--green-dark);
  text-align: left;
}

.faq-item.open .faq-question { color: var(--green); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
}
.faq-answer p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* CONTACT */
.contact {
  background: linear-gradient(160deg, var(--green-dark) 0%, #0f2419 100%);
  padding-bottom: 6rem;
}

.contact-text h2 { color: var(--white); margin-bottom: 0.85rem; }
.contact-text > p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-trust span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.contact-trust span::before { content: '✓ '; color: var(--gold-light); }

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-phone, .contact-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
}
.contact-phone:hover, .contact-ig:hover { color: var(--white); }

.contact-inner {
  display: grid;
  gap: 2.5rem;
}

.contact-form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 { margin-bottom: 0.35rem; }
.form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-check input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.form-check label { font-size: 0.82rem; font-weight: 400; color: var(--text-muted); margin: 0; }
.form-check a { color: var(--green); text-decoration: underline; }

.optional { color: var(--text-muted); font-weight: 400; }
.form-legal { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }

.form-error-msg {
  color: #8b2e2e;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  background: #fde8e8;
  border-radius: 8px;
  border-left: 3px solid #c0392b;
}

.form-success { text-align: center; padding: 2rem 0; }
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.form-success p { color: var(--text-muted); margin: 0.75rem 0 1.25rem; }

/* LEGAL */
.legal {
  background: var(--cream-dark);
  padding: 3rem 0;
}
.legal h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.legal p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }

/* FOOTER */
.footer {
  background: #0f1f17;
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.footer-zone { font-size: 0.85rem; }

.footer-contact h4,
.footer-nav h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-wa { color: var(--wa-green); }

.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* MOBILE CTA STICKY */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  height: var(--mobile-cta-h);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.mobile-cta-btn:last-child { border-right: none; }
.mobile-cta-btn:hover { background: rgba(255,255,255,0.08); }

.mobile-cta-form { background: var(--gold); color: var(--green-dark); }
.mobile-cta-form:hover { background: var(--gold-light); }
.mobile-cta-wa { background: var(--wa-green); }
.mobile-cta-wa:hover { background: var(--wa-green-dark); }

@media (min-width: 768px) {
  .mobile-cta { display: none; }
  .contact { padding-bottom: 4.5rem; }
}

/* WA FLOAT (desktop) */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--wa-green-dark);
}

@media (min-width: 768px) {
  .wa-float { display: flex; }
}

/* REVEAL ANIMATION — desactivado: causaba contenido invisible en Safari iOS */

/* RESPONSIVE */
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 640px) {
  :root { --padding-x: 2rem; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .ps-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .event-menu-days { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .contact-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 1024px) {
  :root { --padding-x: 2.5rem; }
  section { padding: 5.5rem 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .event-grid { grid-template-columns: repeat(3, 1fr); }
  .menus-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .dif-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wa-float { animation: none; }
}
