/* =====================================================================
   PETRAS BOX - HOJA DE ESTILOS PRINCIPAL
   =====================================================================
   Esta hoja contiene:
   1) Variables de marca
   2) Layout base del sitio
   3) Hero principal
   4) KPIs, slider de clientes, carta, galeria, FAQ y contacto
   5) Modal neumorfico del formulario
   6) Pagina de gracias y 404 reutilizan parte del lenguaje visual
   ===================================================================== */

:root {
  --ink: #080808;
  --beige: #EDDAA3;
  --green: #46AE47;
  --coral: #F17B53;
  --paper: #F2F7F3;
  --white: #FFFFFF;
  --muted: #6B7280;
  --line: rgba(0,0,0,.08);
  --shadow-soft: 0 20px 50px rgba(0,0,0,.12);
  --shadow-card: 0 18px 42px rgba(0,0,0,.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

/* ------------------------------
   RESET Y BASE
   ------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
.hidden { display: none !important; }

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

/* ------------------------------
   HEADER
   ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);

  overflow: visible; /* 馃敟 clave */
}

/* CONTENEDOR */
.header-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* ------------------------------
   LOGO (DESKTOP PRO)
------------------------------ */
@media (min-width: 769px) {
  .brand {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-27%);
    z-index: 10;
  }

  .brand img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
  }

  .nav {
    margin-left: 120px; /* espacio para logo */
  }
}

/* ------------------------------
   NAV
   ------------------------------ */
.nav {
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a:hover {
  color: var(--white);
}

/* underline pro */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--coral);
  transition: width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ------------------------------
   ACTIONS
   ------------------------------ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ------------------------------
   MOBILE NAV
   ------------------------------ */
.mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.mobile-nav.active {
  display: block;
  padding: 0 0 16px;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  padding: 10px 0;
}

/* ------------------------------
   BOTONES
   ------------------------------ */
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary { background: var(--beige); color: var(--ink); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }

.btn-whatsapp {
  border: 1px solid rgba(70,174,71,.55);
  background: rgba(70,174,71,.18);
  color: var(--white);
}

.btn-outline-coral {
  border: 1px solid rgba(241,123,83,.45);
  background: rgba(241,123,83,.18);
  color: var(--white);
}

.btn[disabled],
.btn.disabled,
.btn-secondary-link.disabled {
  opacity: .55;
  pointer-events: none;
}

/* ------------------------------
   MOBILE FIX REAL (CLAVE)
------------------------------ */
@media (max-width: 768px) {

  .header-wrap {
    min-height: 70px;
  }

  /* 馃敟 RESET TOTAL DEL LOGO */
  .brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 5;
  }

  .brand img {
    height: 70px;
  }

  /* 馃敟 NAV OCULTO */
  .nav {
    display: none;
    margin-left: 0;
  }

  /* 馃敟 BOT脫N MENU SIEMPRE ARRIBA */
  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 20;
  }

}

/* ------------------------------
   HERO
   ------------------------------ */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  opacity: .58;
}
.hero-overlay {
  background: linear-gradient(92deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.8) 38%, rgba(8,8,8,.44) 100%);
}
.hero-glow {
  background:
    radial-gradient(circle at 18% 16%, rgba(70,174,71,.22), transparent 23%),
    radial-gradient(circle at 74% 18%, rgba(241,123,83,.16), transparent 22%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
}
.hero-inner { max-width: 840px; }
.eyebrow {
  position: relative;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--beige);

  background: rgba(237,218,163,.08);
  border: 1px solid rgba(237,218,163,.25);

  overflow: hidden;
}

/* 馃敟 LINEA ANIMADA REAL */
.eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(237,218,163,.9) 50%,
    transparent 100%
  );

  transform: translateX(-100%);
  animation: eyebrowMove 2.8s linear infinite;
}

/* 馃敟 evita tapar el texto */
.eyebrow span,
.eyebrow {
  z-index: 1;
}

.eyebrow > * {
  position: relative;
  z-index: 2;
}

/* animaci贸n */
@keyframes eyebrowMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}


h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: .94;
  letter-spacing: -.04em;
  color: var(--white);
}
h1 span { color: var(--beige); display: block; }
.hero-copy {
  max-width: 720px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
/* ------------------------------
   EVENT CARDS (VERSI脫N PRO)
   ------------------------------ */

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 34px;
  max-width: 900px;
}

/* CARD BASE */
.event-card {
  position: relative;
  padding: 24px;
  border-radius: 30px 50px 40px 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  overflow: hidden;

  transition: 
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

/* HOVER BASE */
.event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

/* EFECTO REFLEJO (SHINE) */
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: all .7s ease;
}

.event-card:hover::before {
  left: 120%;
}

/* COLORES BASE */
.event-card.beige { 
  background: rgba(237,218,163,.16); 
  border-color: rgba(237,218,163,.28); 
}
.event-card.coral { 
  background: rgba(241,123,83,.16); 
  border-color: rgba(241,123,83,.28); 
}
.event-card.green { 
  background: rgba(70,174,71,.16); 
  border-color: rgba(70,174,71,.28); 
}

/* GLOW POR COLOR */
.event-card.beige:hover {
  box-shadow: 0 25px 60px rgba(237,218,163,.25);
}
.event-card.coral:hover {
  box-shadow: 0 25px 60px rgba(241,123,83,.25);
}
.event-card.green:hover {
  box-shadow: 0 25px 60px rgba(70,174,71,.25);
}

/* ICONO */
.event-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;

  transition: transform .3s ease;
}

.event-card:hover .event-icon {
  transform: scale(1.12) rotate(-3deg);
}

.event-card.beige .event-icon { background: var(--beige); color: var(--ink); }
.event-card.coral .event-icon { background: var(--coral); color: var(--white); }
.event-card.green .event-icon { background: var(--green); color: var(--white); }

/* TITULO */
.event-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  transition: transform .3s ease;
}

.event-card:hover .event-title {
  transform: translateX(4px);
}

/* TEXTO */
.event-copy {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  transition: opacity .3s ease;
}

.event-card:hover .event-copy {
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero-bg img {
    object-position: 50% 10%;
  }
}

/* ------------------------------
   KPIS
   ------------------------------ */
.kpi-section {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.kpi-grid {
  background: var(--white);
  border-radius: 34px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.kpi-card {
  background: var(--paper);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* Colores (reemplazo inline styles) */
.kpi-beige .kpi-value { color: var(--beige); }
.kpi-green .kpi-value { color: var(--green); }
.kpi-coral .kpi-value { color: var(--coral); }
.kpi-ink .kpi-value { color: var(--ink); }

.kpi-value {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.kpi-label {
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ------------------------------
   SECCIONES GENERICAS
   ------------------------------ */
.section { padding: 76px 0 0; }
.section-card {
  background: var(--white);
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  padding: 26px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .28em;
}
.section-title {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.section-note {
  color: var(--muted);
  font-size: 14px;
}

/* ------------------------------
   SLIDER DE CLIENTES
   ------------------------------ */

.client-track-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.05);
  position: relative; /* necesario para el fade */
}

.client-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 20px;
  animation: marquee 25s linear infinite;
}

.client-logo {
  min-width: 220px;
  height: 96px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

/* LOGOS */
.client-logo img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;

  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

/* HOVER */
.client-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ANIMACI脫N */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ------------------------------
 CARTA TABS
------------------------------ */

.section-card,
.contact-block {
  border-color: rgba(17,17,17,.08) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.06) !important;
}

.menu-showcase {
  background: #fffaf3;
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 32px;
  padding: 30px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
}

.menu-sidebar {
  background: #ffffff;
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
  position: sticky;
  top: 96px;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
}

.menu-sidebar-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4d8f65;
  margin-bottom: 4px;
}

.menu-category-btn {
  width: 100%;
  border: 1px solid rgba(17,17,17,.09);
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.menu-category-btn:hover,
.menu-category-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateX(4px);
  box-shadow: 0 16px 28px rgba(0,0,0,.16);
}

.menu-category-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-category-name {
  font-size: 16px;
  font-weight: 700;
}

.menu-category-meta {
  font-size: 12px;
  opacity: .76;
}

.menu-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.menu-category-btn.active .menu-category-icon,
.menu-category-btn:hover .menu-category-icon {
  background: rgba(255,255,255,.14);
}

.menu-stage {
  min-width: 0;
}

.menu-stage-head {
  margin-bottom: 20px;
}

.menu-stage-tag {
  color: #ef7b61;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.menu-stage-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin: 0 0 12px;
  color: #111;
}

.menu-stage-note {
  color: #4b5563;
  max-width: 720px;
  margin: 0;
}

.menu-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  perspective: 1200px;
  min-height: 320px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform .7s ease;
}

/* HOVER SOLO EN DESKTOP */
@media (hover: hover){
  .product-card:hover .product-card-inner {
    transform: rotateY(180deg);
  }
}

/* 🔥 CLAVE PARA MOBILE */
.product-card.is-flipped .product-card-inner {
  transform: rotateY(180deg);
}

.product-face {
  position: absolute;
  inset: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product-face.back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #111, #202020);
  color: #fff;
  border-color: #111;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
}

.product-badge {
  background: #d9f07a;
  color: #1d1d1d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-heart {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef476f;
  font-size: 16px;
  background: #fff;
  text-decoration: none;
  transition: all .2s ease;
}

.product-heart:hover {
  transform: scale(1.08);
  border-color: #ef476f;
  box-shadow: 0 10px 18px rgba(239,71,111,.18);
}

.product-visual {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-visual span {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(239,123,97,.16), rgba(95,159,118,.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #111;
}

.product-name {
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 800;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-flip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  letter-spacing: .02em;
}

.product-back-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
  text-align: center;
}

.product-back-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .72;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}

.product-back-text {
  font-size: 14px;
  line-height: 1.68;
  color: rgba(255,255,255,.90);
  overflow: auto;
  padding-right: 4px;
}

.product-back-text::-webkit-scrollbar {
  width: 6px;
}

.product-back-text::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.25);
  border-radius: 999px;
}

.product-back-note {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  text-align: center;
}

@media (max-width: 900px){

  /* ❌ desactivar flip */
  .product-card-inner {
    transform: none !important;
  }

  /* ocultar parte trasera por defecto */
  .product-face.back {
    position: relative;
    transform: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
    margin-top: 0;
  }

  /* cuando está activa */
  .product-card.is-flipped .product-face.back {
    opacity: 1;
    max-height: 300px;
    margin-top: 12px;
  }

  /* ajustar frente */
  .product-face.front {
    position: relative;
  }
}

/* ------------------------------
   CARD BASE antigua
------------------------------ */
.menu-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(145deg, #fff 0%, #f7faf7 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  cursor: pointer;
  transition: all .3s ease;
  overflow: hidden;
}


/* ------------------------------
   🎨 LINEA SUPERIOR (VOLVIÓ)
------------------------------ */
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 2;
}

.menu-card[data-accent="coral"]::before { background: var(--coral); }
.menu-card[data-accent="beige"]::before { background: var(--beige); }
.menu-card[data-accent="green"]::before { background: var(--green); }


/* ------------------------------
   FRONT / BACK BASE
------------------------------ */
.menu-front,
.menu-back {
  padding: 24px;
}


/* ------------------------------
   DESKTOP (EFECTO HOVER)
------------------------------ */
@media (min-width: 769px) {

  .menu-card {
    min-height: 420px; /* 🔥 equilibrado */
  }

  .menu-front,
  .menu-back {
    position: absolute;
    inset: 0;
    transition: all .3s ease;
  }

  .menu-back {
    opacity: 0;
    transform: translateY(20px);
    background: var(--ink);
    color: var(--white);
  }

  .menu-card:hover .menu-back {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-card:hover .menu-front {
    opacity: 0;
  }
}


/* ------------------------------
   🔥 MOBILE (FIX REAL)
------------------------------ */
@media (max-width: 768px) {
  .menu-card {
    height: auto;
  }

  .menu-front,
  .menu-back {
    position: relative;
  }

  /* 👇 FRONT visible por defecto */
  .menu-front {
    opacity: 1;
  }

  /* 👇 BACK oculto por defecto */
  .menu-back {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all .3s ease;
    border-radius: 20px;
    background: var(--ink);
    color: var(--white);
  }

  /* 👇 SOLO cuando haces click */
  .menu-card.open .menu-back {
    opacity: 1;
    max-height: 1000px; /* suficiente para expandir */
    margin-top: 16px;
  }

  .menu-card.open .menu-front {
    opacity: 1; /* lo dejamos visible */
  }
}

/* ------------------------------
   FRONT
------------------------------ */
.menu-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* 🔥 PILL RESTAURADO */
.menu-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}

.menu-card[data-accent="coral"] .menu-pill {
  background: rgba(241,123,83,.14);
  color: var(--coral);
}

.menu-card[data-accent="beige"] .menu-pill {
  background: rgba(237,218,163,.22);
  color: #9e7d1b;
}

.menu-card[data-accent="green"] .menu-pill {
  background: rgba(70,174,71,.14);
  color: var(--green);
}


.menu-title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 900;
}

.menu-desc {
  margin-top: 10px;
  font-size: 13px;
  color: #4b5563;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-min {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
}


/* ------------------------------
   ICONOS
------------------------------ */
.menu-arrow {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.menu-card[data-accent="coral"] .menu-arrow {
  background: rgba(241,123,83,.12);
  color: var(--coral);
}

.menu-card[data-accent="beige"] .menu-arrow {
  background: rgba(237,218,163,.18);
  color: #9e7d1b;
}

.menu-card[data-accent="green"] .menu-arrow {
  background: rgba(70,174,71,.14);
  color: var(--green);
}


/* ------------------------------
   BACK
------------------------------ */
.menu-back {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-back-head {
  display: flex;
  justify-content: space-between;
}

.menu-back-title {
  font-size: 18px;
  font-weight: 900;
}

.menu-count {
  font-size: 11px;
  font-weight: 900;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* 🔥 CAJAS RESTAURADAS */
.menu-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px;
  border-radius: 10px;
  font-size: 12px;
}

.menu-back-min {
  text-align: right;
  font-size: 11px;
}


/* ------------------------------
   RESPONSIVE GRID
------------------------------ */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALERÍA PETRAS ===== */

.galeria-petras {
  padding: 90px 20px;
  background: #f9fafb;
}

.galeria-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.galeria-header span {
  color: #5b67f1;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
}

.galeria-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 12px 0;
  color: #111827;
}

.galeria-header p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ===== GRID ===== */

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

/* DESTACADA (ESTILO PREMIUM) */
.galeria-item:nth-child(1) {
  grid-column: span 2;
}

/* ===== ITEM ===== */

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.galeria-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* ===== IMAGEN ===== */

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transform: scale(1.01);
  transition: transform .7s ease, filter .4s ease;
}

/* ZOOM SUAVE */
.galeria-item:hover img {
  transform: scale(1.08);
  filter: brightness(.92) contrast(1.05);
}

/* ===== OVERLAY PREMIUM ===== */

.galeria-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.35),
    rgba(0,0,0,.15),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.galeria-item:hover::after {
  opacity: 1;
}

/* ===== MICRO DETALLE (BRILLO SUTIL) ===== */

.galeria-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .5s ease;
}

.galeria-item:hover::before {
  opacity: 1;
}

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

@media (max-width: 900px){
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-item:nth-child(1) {
    grid-column: span 2;
  }
}

@media (max-width: 520px){
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-item:nth-child(1) {
    grid-column: span 1;
  }
}
/* ------------------------------
   FAQ
   ------------------------------ */
 .faq-showcase,
    .faq-showcase * {
      font-family: 'Poppins', sans-serif;
    }

    .faq-showcase {
      background: #fff;
      border-radius: 32px;
      padding: 28px;
      border: 1px solid rgba(17,17,17,.08);
      box-shadow: 0 24px 56px rgba(0,0,0,.07);
      margin-top: 54px;
    }

    .faq-layout {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-content: center;
      gap: 28px;
    }

    .faq-slider {
      position: relative;
      flex: 0 0 390px;
      max-width: 390px;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      min-height: 520px;
      background: #f4f4f5;
    }

    .faq-slides {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .faq-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .45s ease;
      pointer-events: none;
    }

    .faq-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .faq-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.02);
  filter: brightness(.92) contrast(1.05);
  transition: transform 1.2s ease;
}

.faq-slide.active img {
  transform: scale(1.08);
}

    .faq-slider-controls {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      z-index: 2;
    }

    .faq-slider-buttons {
      display: flex;
      gap: 10px;
    }

    .faq-slider-btn {
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: #111;
      cursor: pointer;
      font-size: 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,.14);
    }

    .faq-slider-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .faq-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.5);
      border: 1px solid rgba(255,255,255,.65);
      cursor: pointer;
      transition: transform .2s ease, background .2s ease;
    }

    .faq-dot.active {
      background: #fff;
      transform: scale(1.15);
    }

    .faq-copy {
      flex: 1 1 auto;
      min-width: 0;
      padding: 10px 6px;
    }

    .faq-mini {
      color: #5b67f1;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .faq-main-title {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.05;
      margin: 0 0 14px;
      color: #111827;
    }

    .faq-main-text {
      font-size: 14px;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 12px;
      max-width: 620px;
    }

    .faq-item-modern {
      border-bottom: 1px solid #e2e8f0;
      padding: 18px 0;
      cursor: pointer;
    }

    .faq-item-modern-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-item-modern-head h3 {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      color: #0f172a;
    }

    .faq-item-modern-icon {
      transition: transform .45s ease;
      color: #1d293d;
      flex: 0 0 auto;
    }

    .faq-item-modern.open .faq-item-modern-icon {
      transform: rotate(180deg);
    }

    .faq-item-modern-answer {
      font-size: 14px;
      color: #64748b;
      line-height: 1.85;
      max-width: 640px;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(-8px);
      padding-top: 0;
      transition: all .45s ease;
    }

    .faq-item-modern.open .faq-item-modern-answer {
      opacity: 1;
      max-height: 320px;
      transform: translateY(0);
      padding-top: 14px;
    }

    @media (max-width: 1080px) {
      .menu-showcase {
        grid-template-columns: 1fr;
      }

      .menu-sidebar {
        position: static;
      }

      .menu-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-layout {
        flex-direction: column;
      }

      .faq-slider {
        max-width: none;
        min-height: 420px;
      }
    }

    @media (max-width: 720px) {
      .menu-showcase,
      .faq-showcase {
        padding: 18px;
        border-radius: 24px;
      }

      .menu-products-grid {
        grid-template-columns: 1fr;
      }

      .product-card:hover .product-card-inner {
        transform: none;
      }

      .faq-slider {
        min-height: 340px;
      }

      .faq-showcase {
        margin-top: 34px;
      }
    }

/* ------------------------------
   CONTACTO + RRSS
   ------------------------------ */
.contact-block {
  background: var(--ink);
  color: var(--white);
  border-radius: 34px;
  padding: 32px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
}
.contact-logo img {
  height: 190px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}
.contact-copy {
  margin-top: 18px;
  max-width: 420px;
  color: rgba(255,255,255,.74);
  line-height: 1.8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}
.contact-title,
.social-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--beige);
  margin-bottom: 18px;
}
.contact-list {
  display: grid;
  gap: 14px;
  color: rgba(255,255,255,.84);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.7;
}
.contact-bullet {
  color: var(--green);
  font-weight: 900;
  font-size: 16px;
}
.social-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: opacity .2s ease, color .2s ease;
}

.contact-link:hover {
  opacity: .7;
  color: var(--coral); /* o tu color marca */
}

/* ------------------------------
   SOCIAL 3D REAL FUNCIONAL + HUNDIDO PRO
------------------------------ */

.social-row {
  display: flex;
  gap: 22px;
  align-items: center;
}

/* CONTENEDOR */
.social-tile {
  position: relative;
  width: 82px;
  height: 82px;
  display: block;
  perspective: 700px;
}

/* WRAPPER VISUAL */
.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotateX(12deg) rotateY(-12deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

/* SOMBRA */
.social-shadow {
  position: absolute;
  left: 18px;
  top: 28px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(0,0,0,.28);
  filter: blur(6px);
  z-index: 1;
  transition: all .2s ease;
}

/* CAPAS */
.social-top,
.social-side,
.social-face,
.social-hover,
.social-icon {
  position: absolute;
  left: 10px;
  top: 18px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  transition: all .25s ease;
}

/* LUZ SUPERIOR (FIX FINAL) */
.social-top {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.55),
    rgba(255,255,255,0) 40%
  );
  z-index: 4;
  pointer-events: none;
}

/* LADO */
.social-side {
  left: 58px;
  top: 25px;
  width: 14px;
  height: 58px;
  border-radius: 0 14px 14px 0;
  background: rgba(0,0,0,.22);
  z-index: 2;
}

/* CARA */
.social-face {
  background: #fff;
  z-index: 3;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .2s ease;
  box-shadow:
    0 20px 35px rgba(0,0,0,.2),
    inset 0 3px 6px rgba(255,255,255,.9),
    inset 0 -8px 14px rgba(0,0,0,.15);
}

/* 🔥 BORDE DINÁMICO */
.social-face::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  background: linear-gradient(
    120deg,
    rgba(0,0,0,.7),
    rgba(0,0,0,.25) 35%,
    rgba(0,0,0,0) 70%
  );

  opacity: 0;
  transform: scale(1.1);
  transition: all .25s ease;
}

/* COLOR */
.social-hover {
  opacity: 0;
  z-index: 4;
}

/* ICONO */
.social-icon {
  display: grid;
  place-items: center;
  font-size: 26px;
  z-index: 5;
}

/* ------------------------------
   TRANSFORM BASE
------------------------------ */

.social-tile .social-top,
.social-tile .social-side,
.social-tile .social-face,
.social-tile .social-hover,
.social-tile .social-icon {
  transform: rotate(-30deg) skew(25deg);
}

/* ------------------------------
   HOVER PRO (HUNDIDO + STROKE)
------------------------------ */

.social-tile:hover .social-hover {
  opacity: 1;
}

.social-tile:hover .social-icon {
  color: #fff !important;
}

/* 🔥 borde aparece */
.social-tile:hover .social-face::after {
  opacity: 1;
  transform: scale(1);
}

/* 🔥 efecto hundido suave */
.social-tile:hover .social-face {
  box-shadow:
    inset 0 6px 14px rgba(0,0,0,.28),
    inset 0 -2px 4px rgba(255,255,255,.4);
}

/* ------------------------------
   CLICK (HUNDIDO REAL)
------------------------------ */

.social-tile:hover .social-face {
  box-shadow:
    inset 0 8px 18px rgba(0,0,0,.35),
    inset 0 -3px 6px rgba(255,255,255,.35),
    0 8px 18px rgba(0,0,0,.15);
}

.social-tile:active .social-shadow {
  transform: translate(4px, 6px);
  filter: blur(4px);
}

.social-tile:active .social-face {
  box-shadow:
    inset 0 10px 20px rgba(0,0,0,.4),
    inset 0 -2px 4px rgba(255,255,255,.3);
}

/* ------------------------------
   COLORES REALES
------------------------------ */

/* INSTAGRAM */
.social-tile.instagram .social-hover {
  background: linear-gradient(
    135deg,
    #fdf497,
    #fd5949,
    #d6249f,
    #285AEB
  );
}
.social-tile.instagram .social-icon {
  color: #E1306C;
}

/* FACEBOOK */
.social-tile.facebook .social-hover {
  background: #1877F2;
}
.social-tile.facebook .social-icon {
  color: #1877F2;
}

/* WHATSAPP */
.social-tile.whatsapp .social-hover {
  background: #25D366;
}
.social-tile.whatsapp .social-icon {
  color: #25D366;
}

/* ------------------------------
   BOTON FLOTANTE LATERAL PRO
------------------------------ */

.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;

  background: linear-gradient(180deg, #ff8a5c, #f17b53);
  color: var(--white);

  border: 1px solid rgba(241,123,83,.8);
  border-right: 0;
  border-radius: 28px 0 0 28px;

  padding: 20px 14px;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  cursor: pointer;

  /* 🔥 profundidad */
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 2px 6px rgba(255,255,255,.25),
    inset 0 -4px 10px rgba(0,0,0,.2);

  transition: all .25s ease;

  /* 🔥 animación suave constante */
  animation: floatPulse 2.8s ease-in-out infinite;
}

/* ------------------------------
   ✨ GLOW BORDE
------------------------------ */
.floating-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  opacity: .4;
  pointer-events: none;
}

/* ------------------------------
   HOVER (LLAMATIVO)
------------------------------ */
.floating-cta:hover {
  transform: translateY(-50%) translateX(-8px) scale(1.04);

  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 18px rgba(241,123,83,.6),
    inset 0 2px 6px rgba(255,255,255,.3),
    inset 0 -6px 12px rgba(0,0,0,.25);

  animation: none; /* se detiene para dar control */
}

/* ------------------------------
   CLICK (PRESION REAL)
------------------------------ */
.floating-cta:active {
  transform: translateY(-50%) translateX(-2px) scale(.96);

  box-shadow:
    inset 0 6px 14px rgba(0,0,0,.35),
    inset 0 -2px 4px rgba(255,255,255,.2);
}

/* ------------------------------
   ANIMACION SUAVE (LLAMADO VISUAL)
------------------------------ */
@keyframes floatPulse {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-4px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* ------------------------------
   MODAL BASE
------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  overflow-y: auto; /* 馃敟 permite scroll general */
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* BACKDROP */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* PANEL */
.modal-panel {
  position: relative;
  z-index: 2;

  width: min(720px, 100%);
  max-height: 85dvh; /* 馃敟 FIX REAL MOBILE */

  background: linear-gradient(145deg, #ffffff, #f5f7f5);
  border-radius: 24px;

  padding: 20px;
  overflow-y: auto;

  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

/* HEADER */
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 28px;
  font-weight: 900;
}

.modal-title-tag {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* BOTON X */
.modal-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #f1f1f1;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px; /* 馃敟 m谩s compacto */
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
}

/* TEXTAREA M脕S CHICO */
.field textarea {
  min-height: 80px;
}

/* FECHA */
.date-selects {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

/* CTA */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.form-actions .btn-primary {
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-secondary-link {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  border: 1px solid var(--green);
  color: var(--green);
}

/* ------------------------------
   DESKTOP
------------------------------ */
@media (min-width: 768px) {

  .form-actions {
    flex-direction: row;
  }

  .form-actions .btn-primary {
    flex: 2;
  }

  .form-actions .btn-secondary-link {
    flex: 1;
  }
}

/* ------------------------------
   MOBILE FIX PRO (EL CLAVE)
------------------------------ */
@media (max-width: 640px) {

  .modal {
    align-items: flex-start;
    padding: 8px;
  }

  .modal-panel {
    max-height: 85dvh; /* 馃敟 viewport real */
    margin-top: 6px;   /* 馃敟 evita corte arriba */
    border-radius: 18px;
    padding: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-title {
    font-size: 22px;
  }

  .field textarea {
    min-height: 70px; /* 馃敟 m谩s compacto a煤n */
  }

}
/* ------------------------------
   PANTALLA DE GRACIAS
   ------------------------------ */
.thanks-overlay {
  place-items: center;
  padding: 20px;
}
.thanks-card {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  background: linear-gradient(145deg, #0b0b0b, #141414);
  color: var(--white);
  border-radius: 38px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}
.thanks-card img {
  height: 92px;
  width: auto;
  margin: 0 auto;
}
.thanks-tag {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--beige);
}
.thanks-title {
  margin-top: 12px;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}
.thanks-copy {
  max-width: 390px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,.74);
}

/* ------------------------------
   PAGINAS AUXILIARES (ENVIADO / 404)
   ------------------------------ */
.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #0f1110 0%, #171917 100%);
}
.neo-card {
  width: min(560px, 100%);
  background: linear-gradient(145deg, #ffffff, #f2f5f2);
  border-radius: 34px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 18px 18px 34px rgba(0,0,0,.16), -8px -8px 18px rgba(255,255,255,.7);
}
.neo-card img {
  height: 92px;
  width: auto;
  margin: 0 auto 18px;
}
.neo-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
  color: #9e7d1b;
  margin: 0 0 14px;
}
.neo-copy {
  color: #28303a;
  line-height: 1.8;
  font-size: 16px;
}
.neo-mini {
  margin-top: 16px;
  font-size: 14px;
  color: #7b8390;
}

/* ------------------------------
   RESPONSIVE
   ------------------------------ */
@media (max-width: 1100px) {
  .menu-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-card.wide { grid-column: span 2; }
  .contact-block,
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: transparent;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .event-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-card {
    padding: 20px;
    border-radius: 24px;
  }

 .event-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;

  transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover */
.event-card:hover .event-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

  .event-title {
    font-size: 20px;
  }

  .event-copy {
    font-size: 13px;
    line-height: 1.6;
  }



  .menu-grid,
  .gallery-grid,
  .form-grid,
  .date-selects { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: auto; }
  .hero-actions,
  .form-actions { flex-direction: column; }
  
  .header-actions .btn-coral { display: none; }
  .client-logo { min-width: 180px; }
  .menu-items { grid-template-columns: 1fr; }
  .floating-cta { font-size: 12px; padding: 14px 10px; }
  .section-card,
  .faq-box,
  .contact-block,
  
  .neo-card { padding: 20px; }
  .social-row { gap: 10px; }
}
