/* =============================================
   FOTOMATÓN 981 - CSS
   Paleta: Azul #1170C0 · Rojo #E63920 · Verde #6DC72D · Blanco #FFFFFF
   Fuentes: Baloo 2 (titulares) · Nunito (cuerpo)
   ============================================= */

/* --- VARIABLES --- */
:root {
  --blue:      #1170C0;
  --blue-dark: #0d5a9e;
  --blue-light:#e8f2fb;
  --red:       #E63920;
  --green:     #6DC72D;
  --white:     #FFFFFF;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --gray-900:  #111827;
  --wa-green:  #25D366;

  --font-display: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);

  --nav-h: 68px;
  --transition: 0.25s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

/* --- UTILITIES --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.8); }
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(17,112,192,.35);
}
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 6px 24px rgba(17,112,192,.45); }
.btn--secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--secondary:hover { background: var(--blue-light); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { background: #1da851; box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.btn--full { width: 100%; justify-content: center; }
.link--inline { color: var(--blue); text-decoration: underline; }
.link--text { color: inherit; font-size: .85rem; opacity: .7; }
.link--text:hover { opacity: 1; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  flex-shrink: 0;
}
.nav__logo img { width: 40px; height: 40px; object-fit: contain; }
.nav__logo strong { color: var(--blue); }
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__links a {
  padding: .45rem .9rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover { background: var(--blue-light); color: var(--blue); }
.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  margin-left: .5rem;
}
.nav__cta:hover { background: var(--blue-dark) !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1rem 20px 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  pointer-events: none;
}
.nav__mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.nav__mobile a {
  display: block;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 1.05rem;
}
.nav__mobile a:hover { background: var(--blue-light); color: var(--blue); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--blue) 0%, #0d4f8e 60%, #1a2a4a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Confetti dots */
.hero__confetti span {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  animation: float 8s ease-in-out infinite;
}
.hero__confetti span:nth-child(1)  { width:200px;height:200px;background:var(--red);top:-60px;left:10%;animation-delay:0s; }
.hero__confetti span:nth-child(2)  { width:120px;height:120px;background:var(--green);top:20%;right:5%;animation-delay:-2s; }
.hero__confetti span:nth-child(3)  { width:80px;height:80px;background:var(--white);bottom:20%;left:5%;animation-delay:-4s; }
.hero__confetti span:nth-child(4)  { width:160px;height:160px;background:var(--red);bottom:-40px;right:15%;animation-delay:-1s; }
.hero__confetti span:nth-child(5)  { width:60px;height:60px;background:var(--green);top:40%;left:30%;animation-delay:-3s; }
.hero__confetti span:nth-child(6)  { width:100px;height:100px;background:var(--white);top:10%;left:50%;animation-delay:-5s; }
.hero__confetti span:nth-child(7)  { width:140px;height:140px;background:var(--red);bottom:30%;right:30%;animation-delay:-1.5s; }
.hero__confetti span:nth-child(8)  { width:50px;height:50px;background:var(--green);top:60%;right:20%;animation-delay:-3.5s; }
.hero__confetti span:nth-child(9)  { width:90px;height:90px;background:var(--white);bottom:10%;left:40%;animation-delay:-6s; }
.hero__confetti span:nth-child(10) { width:70px;height:70px;background:var(--red);top:30%;right:45%;animation-delay:-2.5s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 20px 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: .35rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
}
.hero__text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero__text h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero__trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(109,199,45,.2);
  max-height: 520px;
  object-fit: cover;
  animation: heroImgFloat 4s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  animation: badgePop .5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
.hero__badge--1 { bottom: 24px; left: -20px; animation-delay: .3s; }
.hero__badge--2 { top: 24px; right: -20px; animation-delay: .5s; }
.badge__icon { font-size: 1.4rem; }
@keyframes badgePop {
  from { transform: scale(0) rotate(-8deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; }

/* =============================================
   STEPS (Cómo funciona)
   ============================================= */
.steps {
  padding: 6rem 0 4rem;
  background: var(--white);
}
.steps__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  counter-reset: steps;
}
.step {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(17,112,192,.4);
}
.step__icon { font-size: 3rem; margin-bottom: 1rem; }
.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--gray-900);
}
.step p { font-size: .95rem; color: var(--gray-500); }

/* Connector lines between steps */
.steps__list .step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blue);
  opacity: .4;
  z-index: 1;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 5rem 0;
  position: relative;
}
.services__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d4f8e 0%, var(--blue) 60%, #1a3a6a 100%);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}
.services > .container { position: relative; z-index: 1; }
.services__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }
.service-card--featured { grid-row: span 1; }
.service-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__img--placeholder { display: flex; align-items: center; justify-content: center; min-height: 280px; }
.placeholder-img { text-align: center; color: var(--gray-500); }
.placeholder-img span { font-size: 4rem; display: block; margin-bottom: .5rem; opacity: .4; }
.placeholder-img p { font-size: .9rem; opacity: .5; }
.service-card__body { padding: 1.5rem; }
.service-card__badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: var(--radius-xl);
  font-size: .78rem;
  font-weight: 700;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: .75rem;
}
.service-card__badge--new { background: #fef3c7; color: #b45309; }
.service-card__badge--info { background: #f0fdf4; color: #166534; }
.service-card__body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--gray-900);
}
.service-card__body p {
  font-size: .93rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card__features {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.service-card__features li {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Atrezzo box */
.atrezzo {
  margin-top: 3rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.atrezzo h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; }
.atrezzo p { opacity: .85; margin-bottom: 1.2rem; font-size: .95rem; }
.atrezzo__items {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.atrezzo__items span {
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: .4rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  transition: background var(--transition);
}
.atrezzo__items span:hover { background: rgba(255,255,255,.25); }

/* =============================================
   TAKEAWAY (Lo que te llevas)
   ============================================= */
.takeaway {
  margin-top: 2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.takeaway h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.takeaway__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.takeaway__item {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition);
}
.takeaway__item:hover { background: rgba(255,255,255,.18); }
.takeaway__icon { font-size: 2rem; margin-bottom: .6rem; }
.takeaway__item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.takeaway__item p { font-size: .88rem; opacity: .85; line-height: 1.55; }

/* =============================================
   DECO EXTRAS
   ============================================= */
.deco-extras {
  margin-top: 1.5rem;
  background: rgba(109,199,45,.12);
  border: 1px solid rgba(109,199,45,.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
}
.deco-extras__text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.deco-extras__text p {
  font-size: .93rem;
  opacity: .88;
  max-width: 540px;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition);
}
.btn--outline-dark:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.deco-extras__icons {
  display: flex;
  gap: .5rem;
  font-size: 2rem;
  flex-shrink: 0;
  opacity: .6;
}

/* =============================================
   PRICING BANNER
   ============================================= */
.pricing-banner {
  background: var(--gray-50);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pricing-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-banner__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .5rem;
}
.pricing-banner__text p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 500px;
  line-height: 1.6;
}
.pricing-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =============================================
   EVENTS
   ============================================= */
.events {
  padding: 5rem 0;
  background: var(--gray-50);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.event-card__icon { font-size: 2.4rem; margin-bottom: .8rem; }
.event-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .4rem;
}
.event-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 5rem 0 4rem;
  background: var(--white);
  overflow: hidden;
}
.gallery__strip {
  margin-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--gray-100);
}
.gallery__strip::-webkit-scrollbar { height: 6px; }
.gallery__strip::-webkit-scrollbar-track { background: var(--gray-100); }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
.gallery__track {
  display: flex;
  gap: 1rem;
  padding: 0 20px 1rem;
  width: max-content;
}
.gallery__item {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  margin: 0;
}
.gallery__item--wide { width: 440px; }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 5rem 0;
  background: var(--gray-50);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
  gap: 1rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__item[open] .faq__question { color: var(--blue); }
.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 1.5rem 1.2rem;
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq__answer p { padding-top: 1rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 5rem 0;
  position: relative;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #0a3d78 100%);
}
.contact > .container { position: relative; z-index: 1; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.contact__channel div { display: flex; flex-direction: column; gap: .1rem; }
.contact__channel strong { font-weight: 700; font-size: 1rem; }
.contact__channel span { font-size: .9rem; opacity: .8; }
.contact__channel:hover { transform: translateX(4px); }
.contact__channel--wa {
  background: var(--wa-green);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.contact__channel--tel {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
}
.contact__channel--email {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}

/* --- Form --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17,112,192,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,32,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .6rem;
  flex-wrap: wrap;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 600;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
.form-error {
  font-size: .82rem;
  color: var(--red);
  font-weight: 600;
  min-height: 1em;
}
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: .95rem;
  color: #166534;
  font-weight: 600;
  margin-top: .75rem;
  text-align: center;
}
.form-error-global {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: .95rem;
  color: #991b1b;
  font-weight: 600;
  margin-top: .75rem;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 1rem; }
.footer__brand p { font-size: .88rem; line-height: 1.6; max-width: 260px; }
.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.2rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__links a, .footer__contact a, .footer__contact li {
  font-size: .88rem;
  transition: color var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  opacity: .6;
}
.footer__legal { display: flex; gap: .75rem; align-items: center; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99;
  width: 58px; height: 58px;
  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);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
}
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--gray-900);
  color: var(--white);
  padding: .35rem .8rem;
  border-radius: var(--radius-xl);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* =============================================
   MODAL
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal__content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--gray-900);
}
.modal__content p {
  font-size: .92rem;
  color: var(--gray-500);
  margin-bottom: .8rem;
  line-height: 1.65;
}
.modal__content strong { color: var(--gray-900); }
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gray-500);
  padding: .25rem .5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: var(--gray-100); color: var(--gray-900); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .takeaway__grid { grid-template-columns: 1fr; }
  .deco-extras { flex-direction: column; }
  .deco-extras__icons { display: none; }
  .pricing-banner__inner { flex-direction: column; align-items: flex-start; }
  .pricing-banner__actions { width: 100%; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }
  .events__grid { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 20px 5rem;
    gap: 3rem;
  }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__badge--1 { left: 0; }
  .hero__badge--2 { right: 0; }

  .steps__list {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .steps__list .step::after { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-header--left { text-align: center; }
  .section-header--left p { margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .events__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 300px; }
  .hero__badge--1, .hero__badge--2 { display: none; }
  .contact-form { padding: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* --- Print --- */
@media print {
  .nav, .whatsapp-float, .hero__confetti { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
