/* ── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:         #1b5357;
  --teal-light:   #2a6e73;
  --teal-pale:    rgba(27,83,87,.06);
  --beige:        #F3F0EB;
  --beige-dark:   #e8e3db;
  --cream:        #faf8f4;
  --text:         #2c2c2c;
  --muted:        #6b6b6b;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --nav-h:        100px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--beige);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.footer-address a {
  color: #ffffff;          /* Lo pone en blanco puro */
  text-decoration: none;   /* Quita la raya de abajo */
  transition: opacity 0.3s ease;
  display: inline-block;
}

/* Un efecto sutil cuando pasas el mouse para que se note que es clickeable */
.footer-address a:hover {
  opacity: 0.7;            /* Se vuelve un poquito transparente */
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-h);
  padding: 0 20px;
  background: var(--teal);
  transition: box-shadow .3s;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

@media (min-width: 768px) {
  :root { --nav-h: 100px; }
  .nav-logo-img { height: 150px; }
}

/* ── TOP BANNER ───────────────────────────────────────── */
.top-banner {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
  overflow: hidden;
}
.top-banner.hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.top-banner-text {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.top-banner-btn {
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
  color: var(--teal);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.top-banner-btn:hover { background: var(--beige); }
 
/* Only show on mobile */
@media (min-width: 768px) {
  .top-banner { display: none; }
}
 
/* Push hero content down to account for banner on mobile */
@media (max-width: 767px) {
  .hero { padding-top: calc(var(--nav-h) + 34px); }
}
 
/* ── WHATSAPP FLOTANTE ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
  /* Pulse animation to draw attention */
  animation: waPulse 3s ease-in-out 1.5s 3;
}
.wa-float:hover, .wa-float:active {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.15);
}
.wa-float-label {
  line-height: 1;
}
 
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}
 
/* On desktop: smaller, no label */
@media (min-width: 768px) {
  .wa-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 32px;
    right: 28px;
  }
  .wa-float-label { display: none; }
}
 
/* ── HERO ─────────────────────────────────────────────── */
/* MOBILE FIRST: stacked layout */
.hero {
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: var(--beige);
  min-height: 100svh;
}
 
.hero-content {
  padding: 44px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
 
.hero-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(27,83,87,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  white-space: nowrap;
}
 
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.4rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-light);
}
 
.hero p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 380px;
}
 
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s, transform .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,83,87,.25);
}
 
.hero-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(27,83,87,.45);
  font-weight: 400;
  flex-wrap: wrap;
}
 
/* Hero visual — image stack */
.hero-visual {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 48px;
  flex: 1;
}
 
.hero-img-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1.05;
}
 
.hero-img-bg-shape {
  position: absolute;
  inset: 0;
  background: var(--beige-dark);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  opacity: .55;
  transform: scale(1.08) translate(6%, 4%);
}
 
.hero-img {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(27,83,87,.14);
}
.hero-img-1 {
  width: 70%;
  aspect-ratio: 1;
  top: 0; left: 0;
  z-index: 2;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-img-2 {
  width: 58%;
  aspect-ratio: 1;
  bottom: 0; right: 0;
  z-index: 3;
  animation: heroFloat 6s ease-in-out 2s infinite;
  box-shadow: 0 20px 56px rgba(27,83,87,.18);
}
 
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
 
.hero-pill {
  position: absolute;
  top: 12%;
  right: -12px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--beige-dark);
  border-radius: 100px;
  padding: 7px 12px;
  font-size: .65rem;
  letter-spacing: .07em;
  color: var(--teal);
  font-weight: 400;
  box-shadow: 0 4px 16px rgba(27,83,87,.1);
  animation: heroFloat 6s ease-in-out 1s infinite;
  white-space: nowrap;
}
.hero-pill svg {
  width: 12px; height: 12px;
  stroke: var(--teal);
  flex-shrink: 0;
}
 
/* Tablet hero: side by side */
@media (min-width: 700px) {
  .hero {
    flex-direction: row;
    min-height: 100svh;
  }
  .hero-content {
    flex: 1;
    padding: 60px 48px 60px 56px;
    justify-content: center;
  }
  .hero-visual {
    flex: 1;
    padding: 60px 40px;
  }
  .hero-img-stack {
    max-width: 380px;
  }
}
 
@media (min-width: 1024px) {
  .hero-content {
    padding: 80px 64px 80px 80px;
  }
  .hero-img-stack { max-width: 420px; }
}
 
/* ── SHARED SECTION STYLES ───────────────────────────── */
section { padding: 72px 20px; }
 
@media (min-width: 768px) { section { padding: 96px 32px; } }
@media (min-width: 1024px) { section { padding: 100px 24px; } }
 
.container { max-width: 1000px; margin: 0 auto; }
 
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: .9rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-ornament {
  margin-top: 20px;
  letter-spacing: .5em;
  color: var(--teal);
  opacity: .3;
  font-size: .6rem;
}
 
/* ── BANQUETE ─────────────────────────────────────────── */
#banquete { background: var(--cream); }
 
/* Mobile: 2 columns */
.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
 
/* Tablet: 4 columns */
@media (min-width: 600px) {
  .items-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .items-grid { gap: 20px; }
}
 
.item-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  background: var(--beige);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.25,.8,.25,1), box-shadow .3s;
  -webkit-tap-highlight-color: transparent;
}
 
.item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.item-card:hover::before,
.item-card:active::before {
  transform: scaleX(1);
}
.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,83,87,.11);
}
 
.item-icon-wrap {
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 16px;
  border-bottom: 1px solid var(--beige-dark);
}
.item-icon-wrap svg {
  width: 28px; height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}
.item-card:hover .item-icon-wrap svg {
  transform: scale(1.12);
}
 
.item-body {
  padding: 22px 16px 10px;
  flex: 1;
}
.item-name {
  font-size: .72rem;
  letter-spacing: .06em;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.3;
}
.item-desc {
  font-size: .73rem;
  color: var(--muted);
  line-height: 1.45;
}
.item-tag {
  display: block;
  padding: 6px 14px 12px;
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(27,83,87,.38);
  font-weight: 400;
}
 
@media (min-width: 768px) {
  .item-icon-wrap { padding: 26px 16px 20px; }
  .item-icon-wrap svg { width: 34px; height: 34px; }
  .item-body { padding: 18px 16px 12px; }
  .item-name { font-size: .78rem; }
  .item-desc { font-size: .77rem; }
}
 
/* ── TORTA ─────────────────────────────────────────────── */
#torta { background: var(--beige); }
 
/* Mobile: stacked */
.torta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
 
@media (min-width: 768px) {
  .torta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .torta-grid { gap: 72px; }
}
 
.torta-img-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.torta-img-wrap img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .torta-img-wrap img { aspect-ratio: 4/5; }
}
 
.torta-img-accent {
  position: absolute;
  top: -12px; left: -12px;
  width: 64px; height: 64px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: .22;
}
 
.torta-tag {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}
.torta-name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 28px;
  line-height: 1.1;
}
 
.choice-group { margin-bottom: 22px; }
.choice-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.choice-label::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--teal);
  opacity: .4;
  flex-shrink: 0;
}
 
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  padding: 5px 12px;
  border: 1px solid rgba(27,83,87,.25);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--teal);
  font-weight: 400;
  letter-spacing: .03em;
  transition: background .2s, color .2s, border-color .2s;
  cursor: default;
}
.chip:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
 
.sponge-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.sponge-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--text);
}
.dot-choc { width: 10px; height: 10px; background: #3d2b1f; border-radius: 50%; flex-shrink: 0; }
.dot-van  { width: 10px; height: 10px; background: #d4b483; border-radius: 50%; flex-shrink: 0; }
.torta-note {
  font-size: .73rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
 
/* ── PRECIOS ──────────────────────────────────────────── */
#precios { background: var(--cream); }
.section-header.center { text-align: center; margin-bottom: 48px; }
 
/* Mobile: stacked */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
}
 
@media (min-width: 480px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    gap: 16px;
  }
}
 
.price-card {
  border: 1px solid var(--beige-dark);
  border-radius: 6px;
  padding: 28px 20px 24px;
  text-align: center;
  background: var(--beige);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
/* Mobile horizontal layout for price cards */
@media (max-width: 479px) {
  .price-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px 20px;
    gap: 16px;
  }
  .price-range {
    flex: 1;
    margin-bottom: 0 !important;
  }
  .price-amount-wrap {
    text-align: right;
  }
  .price-total {
    margin-top: 2px !important;
  }
}
 
.price-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(27,83,87,.1); }
.price-card.featured {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 8px 36px rgba(27,83,87,.13);
}
.price-card.featured:hover { box-shadow: 0 14px 44px rgba(27,83,87,.18); }
 
.recommended-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .54rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  font-weight: 500;
  white-space: nowrap;
}
 
.price-range {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 400;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.price-per {
  font-size: .68rem;
  color: var(--muted);
}
.price-total {
  font-size: .68rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}
 
/* ── CTA ──────────────────────────────────────────────── */
#cta {
  background: var(--teal);
  padding: 80px 24px;
  text-align: center;
}
#cta .section-title { color: #fff; margin-bottom: 14px; }
#cta p {
  color: rgba(255,255,255,.72);
  max-width: 440px;
  margin: 0 auto 36px;
  font-size: .93rem;
  line-height: 1.65;
}
 
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: #fff;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s, transform .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  max-width: 320px;
}
.btn-whatsapp:hover, .btn-whatsapp:active {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
 
.cta-number {
  margin-top: 18px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
 
/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: #162e31;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
@media (min-width: 640px) {
  footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
  }
}
 
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.footer-address {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  line-height: 1.6;
}
 
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom { align-items: flex-end; }
}
 
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-ig:hover { color: rgba(255,255,255,.9); }
 
.footer-copy {
  font-size: .64rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .06em;
}
 
/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
 
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}