/* =========================================================
   Francis de San Luis — Florería · Parques y Jardines
   Sistema visual: crema cálido + verde botánico + durazno
   ========================================================= */

:root {
  /* Color */
  --cream:      #FBF8F2;
  --cream-2:    #F4ECDF;
  --cream-3:    #EFE5D5;
  --ink:        #28301F;
  --ink-soft:   #4A5340;
  --green:      #2E4A33;
  --green-deep: #213524;
  --olive:      #6E7551;
  --olive-soft: #8A9068;
  --peach:      #D89A6E;
  --peach-deep: #C5814F;
  --blush:      #E7C7BC;
  --line:       rgba(40, 48, 31, 0.12);
  --line-soft:  rgba(40, 48, 31, 0.07);
  --white:      #ffffff;

  /* Type */
  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Mulish", system-ui, -apple-system, sans-serif;
  --script: "Sacramento", cursive;

  /* Rhythm */
  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 72px);
  --r:    18px;
  --shadow-sm: 0 2px 14px rgba(40, 48, 31, 0.07);
  --shadow-md: 0 18px 50px rgba(40, 48, 31, 0.13);
  --shadow-lg: 0 30px 80px rgba(33, 53, 36, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--peach); color: #fff; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--peach-deep);
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--peach-deep);
  opacity: 0.6;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--peach-deep);
  line-height: 0.9;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin: 0.35em 0 0.5em;
}
.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }
.section-pad { padding: clamp(72px, 10vw, 140px) 0; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(40,48,31,0.06);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 46px; height: 46px; border-radius: 9px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.nav__brand:hover img { transform: rotate(-4deg) scale(1.05); }
.nav__brand-txt { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; transition: color .45s var(--ease); }
.nav__brand-sub  { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 3px; transition: color .45s var(--ease); }
.nav.scrolled .nav__brand-name { color: var(--green-deep); }
.nav.scrolled .nav__brand-sub  { color: var(--olive); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92); position: relative; padding: 6px 0;
  transition: color .45s var(--ease);
}
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--peach-deep); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--peach); }
.nav.scrolled .nav__links a:hover { color: var(--peach-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--peach-deep); color: #fff;
  font-weight: 700; font-size: 0.84rem; letter-spacing: 0.02em;
  padding: 11px 20px; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(197, 129, 79, 0.32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); background: var(--green); box-shadow: 0 12px 30px rgba(46,74,51,0.32); }
.nav__cta svg { width: 17px; height: 17px; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; border-radius: 2px; transition: .35s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--green-deep); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,30,18,0.55) 0%, rgba(20,30,18,0.05) 28%, rgba(20,30,18,0.12) 55%, rgba(20,30,18,0.82) 100%);
}
.hero__inner { width: 100%; padding-bottom: clamp(60px, 9vw, 120px); padding-top: 140px; }
.hero__eyebrow { color: var(--blush); }
.hero__eyebrow::before { background: var(--blush); }
.hero h1 {
  color: #fff; font-weight: 500;
  font-size: clamp(2.9rem, 8vw, 6.4rem);
  letter-spacing: -0.02em; margin: 0.18em 0 0;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero h1 .script { color: var(--peach); display: inline-block; font-size: 1.18em; transform: rotate(-3deg); }
.hero__sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 46ch; margin-top: 26px; font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn--wa { background: var(--peach-deep); color: #fff; box-shadow: 0 12px 34px rgba(197,129,79,0.4); }
.btn--wa:hover { transform: translateY(-3px); background: #fff; color: var(--green-deep); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--green-deep); transform: translateY(-3px); border-color: #fff; }
.btn--solid { background: var(--green); color: #fff; box-shadow: 0 12px 30px rgba(46,74,51,0.28); }
.btn--solid:hover { transform: translateY(-3px); background: var(--peach-deep); box-shadow: 0 16px 38px rgba(197,129,79,0.36); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  z-index: 2;
}
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{opacity:1; transform: scaleY(1);} }

/* ---------- marquee strip ---------- */
.strip { background: var(--green-deep); color: var(--cream); overflow: hidden; padding: 16px 0; }
.strip__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }
.strip__track span { font-family: var(--serif); font-size: 1.25rem; font-style: italic; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; opacity: 0.92; }
.strip__track span::after { content: "✿"; color: var(--peach); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   REVEAL ANIMATION (progressive enhancement)
   El contenido es visible por defecto; sólo se oculta para
   animar cuando JS está activo (html.js). Si JS falla, todo
   permanece visible.
   ========================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; transform: none; }
}

/* =========================================================
   ABOUT / NOSOTROS
   ========================================================= */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__media .frame {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__media:hover .frame img { transform: scale(1.05); }
.about__media .badge {
  position: absolute; bottom: -26px; right: -10px;
  background: var(--green-deep); color: var(--cream);
  border-radius: 16px; padding: 22px 26px; box-shadow: var(--shadow-lg);
  text-align: center; max-width: 200px;
}
.about__media .badge b { font-family: var(--serif); font-size: 2.6rem; display: block; color: #fff; line-height: 1; }
.about__media .badge small { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); }
.about p + p { margin-top: 1.1em; }
.about .sign { font-family: var(--script); font-size: 2.4rem; color: var(--peach-deep); margin-top: 0.4em; }
.about__stats { display: flex; gap: 38px; margin-top: 34px; flex-wrap: wrap; }
.about__stats .st b { font-family: var(--serif); font-size: 2rem; color: var(--green); display: block; line-height: 1; }
.about__stats .st small { font-size: 0.8rem; color: var(--ink-soft); }

/* =========================================================
   ARREGLOS / CATÁLOGO
   ========================================================= */
.flores { background: var(--cream-2); }
.flores__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 3 / 4; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__img img { transform: scale(1.08); }
.card__body { padding: 20px 22px 24px; }
.card__body h3 { font-size: 1.5rem; }
.card__body p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(251,248,242,0.92); color: var(--green-deep);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px; backdrop-filter: blur(4px);
}
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 700; font-size: 0.82rem; color: var(--peach-deep); letter-spacing: 0.02em; }
.card__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.flores__note { text-align: center; margin-top: 48px; color: var(--ink-soft); font-size: 0.98rem; }
.flores__note a { color: var(--peach-deep); font-weight: 700; border-bottom: 1px solid var(--peach); }

/* =========================================================
   JARDINERÍA
   ========================================================= */
.jardin { background: var(--green-deep); color: var(--cream); overflow: hidden; }
.jardin__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.jardin .eyebrow { color: var(--peach); }
.jardin .eyebrow::before { background: var(--peach); }
.jardin h2 { color: #fff; }
.jardin .lede { color: rgba(251,248,242,0.82); }
.jardin__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.jardin__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.jardin__media:hover img { transform: scale(1.06); }
.jardin__list { list-style: none; margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.jardin__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: rgba(251,248,242,0.92); }
.jardin__list svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--peach); margin-top: 2px; }
.jardin__cta { margin-top: 36px; }

/* =========================================================
   EVENTOS
   ========================================================= */
.eventos { background: var(--cream); }
.eventos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.eventos__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; }
.eventos__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.eventos__media:hover img { transform: scale(1.05); }
.eventos__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); border-radius: var(--r); pointer-events: none; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tags span { background: var(--cream-3); color: var(--green); font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 100px; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.tags span:hover { background: var(--peach-deep); color: #fff; transform: translateY(-2px); }

/* =========================================================
   COBERTURA / DOMICILIO
   ========================================================= */
.cobertura { background: var(--olive); color: var(--cream); text-align: center; }
.cobertura .eyebrow { color: var(--cream); justify-content: center; }
.cobertura .eyebrow::before, .cobertura .eyebrow::after { background: var(--cream); }
.cobertura h2 { color: #fff; }
.cobertura .lede { color: rgba(251,248,242,0.88); margin: 0 auto; }
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.feat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r); padding: 36px 28px; transition: transform .4s var(--ease), background .4s var(--ease); }
.feat:hover { transform: translateY(-6px); background: rgba(255,255,255,0.14); }
.feat__ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: rgba(255,255,255,0.14); }
.feat__ic svg { width: 26px; height: 26px; color: var(--cream); }
.feat h3 { color: #fff; font-size: 1.45rem; }
.feat p { color: rgba(251,248,242,0.82); font-size: 0.9rem; margin-top: 6px; }

/* =========================================================
   TESTIMONIOS
   ========================================================= */
.test { background: var(--cream-2); }
.test__head { text-align: center; margin-bottom: 56px; }
.test__head .eyebrow { justify-content: center; }
.test__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; background: #fff; padding: 12px 22px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.test__rating .stars { color: var(--peach-deep); letter-spacing: 2px; font-size: 1.1rem; }
.test__rating b { font-family: var(--serif); font-size: 1.5rem; color: var(--green-deep); }
.test__rating small { color: var(--ink-soft); font-size: 0.84rem; }
.quotes { columns: 3; column-gap: 22px; }
.quote { break-inside: avoid; background: #fff; border-radius: var(--r); padding: 30px 28px; box-shadow: var(--shadow-sm); margin-bottom: 22px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote .stars { color: var(--peach-deep); letter-spacing: 2px; font-size: 0.92rem; }
.quote p { font-family: var(--serif); font-size: 1.32rem; line-height: 1.34; color: var(--green-deep); margin: 12px 0 18px; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-3); color: var(--green); display: grid; place-items: center; font-weight: 800; font-family: var(--serif); font-size: 1.1rem; }
.quote .who b { font-size: 0.92rem; font-weight: 700; color: var(--ink); display: block; }
.quote .who small { font-size: 0.76rem; color: var(--ink-soft); }

/* =========================================================
   CONTACTO
   ========================================================= */
.contacto { background: var(--cream); }
.contacto__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: stretch; }
.contacto__info .row { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contacto__info .row:first-of-type { padding-top: 8px; }
.contacto__info .ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--cream-3); color: var(--green); }
.contacto__info .ic svg { width: 22px; height: 22px; }
.contacto__info .row b { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); font-weight: 700; }
.contacto__info .row p, .contacto__info .row a { font-size: 1.06rem; color: var(--ink); margin-top: 3px; line-height: 1.4; }
.contacto__info .row a:hover { color: var(--peach-deep); }
.contacto__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contacto__socials { display: flex; gap: 12px; margin-top: 26px; }
.contacto__socials a { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--cream-3); color: var(--green-deep); transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.contacto__socials a:hover { transform: translateY(-3px); background: var(--peach-deep); color: #fff; }
.contacto__socials svg { width: 22px; height: 22px; }
.contacto__map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.contacto__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(0.9); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--green-deep); color: rgba(251,248,242,0.7); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand img { width: 54px; height: 54px; border-radius: 10px; }
.footer__brand .nm { font-family: var(--serif); font-size: 1.7rem; color: #fff; }
.footer__brand .sb { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blush); margin-top: 2px; }
.footer p { font-size: 0.92rem; line-height: 1.7; max-width: 38ch; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: 0.92rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer ul a:hover { color: var(--peach); padding-left: 5px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 0.8rem; }
.footer__bottom a:hover { color: var(--peach); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: waPop .5s var(--ease) .8s both;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 38px rgba(37,211,102,0.55); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waRing 2.4s ease-out infinite; }
@keyframes waRing { 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(1.7); opacity:0;} }
@keyframes waPop { from { transform: scale(0); } to { transform: scale(1); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { columns: 2; }
  .about__grid, .jardin__grid, .eventos__grid, .contacto__grid { grid-template-columns: 1fr; }
  .about__media, .jardin__media { max-width: 520px; }
  .jardin__media { order: -1; }
  .feats { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
/* Mobile menu hidden on desktop, shown only on small screens */
.nav__mobile { display: none; }

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile {
    display: flex;
    position: fixed; inset: 0; z-index: 99; background: var(--green-deep);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
    opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
  }
  .nav__mobile.open { opacity: 1; pointer-events: auto; }
  .nav__mobile a { color: var(--cream); font-family: var(--serif); font-size: 1.9rem; }
  .nav__mobile a:hover { color: var(--peach); }
  .nav__mobile .btn--wa { font-size: 1rem; margin-top: 10px; }
  .nav__mobile .close { position: absolute; top: 22px; right: 22px; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }
  .cards { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .about__stats { gap: 26px; }
  .about__media .badge { right: 10px; bottom: -20px; padding: 16px 20px; }
  .hero__inner { padding-top: 120px; }
}
