/* ===========================================================
   Castelo Kids — Design System
   Paleta:
     #FFC93C  Amarelo Sol     #FF8C42  Laranja Festa
     #3BC46B  Verde Vibrante  #1F7A4D  Verde Escuro
     #FFF6E9  Creme Claro     #FFFFFF  Branco
     #2B2B2B  Grafite Suave
   =========================================================== */

:root {
  --yellow: #FFC93C;
  --orange: #FF8C42;
  --green: #3BC46B;
  --green-deep: #1F7A4D;
  --cream: #FFF6E9;
  --white: #FFFFFF;
  --ink: #2B2B2B;
  --ink-soft: #5b5b5b;
  --ink-mute: #8a8a8a;
  --line: #f0e6d4;

  --grad-warm: linear-gradient(135deg, #FFC93C 0%, #FF8C42 100%);
  --grad-warm-soft: linear-gradient(135deg, #FFE6A8 0%, #FFC9A8 100%);
  --grad-cta: linear-gradient(135deg, #FF8C42 0%, #FFC93C 100%);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 4px 12px rgba(255, 140, 66, 0.10);
  --shadow: 0 12px 32px rgba(255, 140, 66, 0.14);
  --shadow-lg: 0 24px 60px rgba(255, 140, 66, 0.20);

  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; color: var(--ink-soft); }

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

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'opsz' 24, 'wght' 500, 'GRAD' 0, 'FILL' 0;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
}

/* ===== Background decorations ===== */
.bg-deco {
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob-1 { width: 420px; height: 420px; background: var(--yellow); top: -120px; left: -120px; animation: float 14s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: var(--orange); top: 40%; right: -150px; animation: float 18s ease-in-out infinite 2s; }
.blob-3 { width: 320px; height: 320px; background: var(--green); bottom: -120px; left: 30%; opacity: .18; animation: float 22s ease-in-out infinite 4s; }

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

/* ===== Confetti layer ===== */
.confetti-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.confetti {
  position: absolute; top: -20px;
  width: 10px; height: 14px;
  border-radius: 2px;
  opacity: .85;
  animation: confettiFall linear infinite;
}
@keyframes confettiFall {
  0%   { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ===== Floating balloons ===== */
.balloons-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.balloon-bg {
  position: absolute; bottom: -120px;
  width: 36px; height: 46px;
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  opacity: .55;
  animation: balloonRise linear infinite;
}
.balloon-bg::after {
  content: ''; position: absolute;
  left: 50%; bottom: -22px;
  width: 1px; height: 22px;
  background: rgba(43,43,43,.25);
}
@keyframes balloonRise {
  0%   { transform: translateY(0) translateX(0) rotate(-2deg); opacity: 0; }
  10%  { opacity: .6; }
  100% { transform: translateY(-115vh) translateX(40px) rotate(4deg); opacity: 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 140, 66, .35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(255, 140, 66, .5);
}
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-secondary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31, 122, 77, .25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(59, 196, 107, .35);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0,0,0,.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand-icon {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  background: var(--cream);
  border-radius: 12px;
  transition: transform .4s ease;
}
.brand:hover .brand-icon { transform: rotate(-8deg) scale(1.08); }
.brand-accent { color: var(--orange); }

.nav-links {
  display: flex; gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px;
  background: var(--grad-cta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; }
.nav-burger {
  display: none;
  background: var(--cream);
  border: none; padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-menu a { font-weight: 600; padding: 8px 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-grid; place-items: center; }
  .mobile-menu[data-open="true"] { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 56px 0 120px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--cream);
  border: 1px solid #f4d9a5;
  font-weight: 700; font-size: .85rem;
  color: var(--orange);
  margin-bottom: 18px;
}
.pill .material-symbols-rounded { color: var(--yellow); font-size: 18px; }

.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
.word-magic {
  position: relative; display: inline-block;
  color: var(--orange);
}
.underline-swoosh {
  position: absolute; left: 0; right: 0; bottom: -10px;
  width: 100%; height: 14px;
}
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
}
.lead-center { margin: 0 auto 18px; text-align: center; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.hero-stats span { color: var(--ink-mute); font-size: .85rem; }

/* hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .6s cubic-bezier(.2,.9,.3,1.2);
  background: var(--cream);
}
.hero-card:hover { transform: rotate(0) scale(1.01); }
.hero-card img { width: 100%; height: 520px; object-fit: cover; }
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,201,60,.1), transparent 50%);
  pointer-events: none;
}

.sparkle {
  position: absolute; width: 22px; height: 22px;
  background: radial-gradient(circle, #fff 30%, transparent 60%);
  animation: twinkle 2s ease-in-out infinite;
}
.sparkle::before, .sparkle::after {
  content: ''; position: absolute; inset: 0;
  background: var(--yellow);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}
.s1 { top: 20px; right: 30px; }
.s2 { bottom: 60px; left: 20px; animation-delay: .8s; }
.s3 { top: 50%; right: 10%; animation-delay: 1.4s; width: 16px; height: 16px; }
@keyframes twinkle {
  0%,100% { opacity: .4; transform: scale(.8) rotate(0); }
  50%     { opacity: 1; transform: scale(1.1) rotate(20deg); }
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  animation: bobble 4s ease-in-out infinite;
}
.floating-badge .material-symbols-rounded {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px; color: var(--white);
  font-size: 22px;
}
.floating-badge strong { display: block; font-size: .9rem; color: var(--ink); }
.floating-badge small { color: var(--ink-mute); font-size: .78rem; }
.badge-1 { bottom: -20px; left: -28px; }
.badge-1 .material-symbols-rounded { background: var(--green); }
.badge-2 { top: 24px; right: -36px; animation-delay: 1.5s; }
.badge-2 .material-symbols-rounded { background: var(--orange); }

@keyframes bobble {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* hero balloons */
.balloon {
  position: absolute;
  width: 56px; height: 70px;
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  box-shadow: inset -8px -8px 0 rgba(0,0,0,.07);
  animation: balloonFloat 7s ease-in-out infinite;
}
.balloon::after {
  content: ''; position: absolute;
  left: 50%; bottom: -32px;
  width: 1px; height: 32px;
  background: rgba(43,43,43,.3);
}
.balloon-a { background: var(--yellow); top: -10px; left: -40px; }
.balloon-b { background: var(--orange); bottom: 60px; right: -28px; animation-delay: 1.5s; }
.balloon-c { background: var(--green); top: 40%; left: -60px; width: 40px; height: 52px; animation-delay: 2.6s; }
@keyframes balloonFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-22px) rotate(3deg); }
}

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 700; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-cream .eyebrow { background: var(--white); }
.eyebrow-light { background: rgba(255,255,255,.18); color: var(--white); }
.hl { color: var(--orange); }
.hl-light { color: var(--yellow); }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--ink);
  transition: transform .25s;
}
.checklist li:hover { transform: translateX(6px); }
.checklist .material-symbols-rounded {
  color: var(--green);
  background: rgba(59,196,107,.12);
  border-radius: 50%;
  padding: 6px;
  font-size: 18px;
}

/* sobre collage */
.sobre-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  gap: 16px;
}
.col-img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); transition: transform .4s; }
.col-img:hover { transform: translateY(-6px) scale(1.02); }
.col-a { grid-row: 1 / 3; }
.col-b { grid-row: 1 / 2; }
.col-c { grid-row: 2 / 4; }
.col-stat {
  grid-column: 1 / 2; grid-row: 3 / 4;
  align-self: end;
  background: var(--grad-cta);
  color: var(--white);
  padding: 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  animation: bobble 5s ease-in-out infinite;
}
.col-stat strong { font-family: 'Fraunces', serif; font-size: 2rem; line-height: 1; }
.col-stat span { font-size: .85rem; opacity: .95; }

/* features grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent, var(--yellow)) 16%, transparent);
  color: var(--accent, var(--yellow));
  margin-bottom: 18px;
  transition: transform .4s;
}
.feature-icon .material-symbols-rounded { font-size: 28px; }
.feature:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; }

/* attractions */
.attractions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attraction {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s, box-shadow .4s;
}
.attraction:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.attr-img { aspect-ratio: 4/3; overflow: hidden; }
.attr-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.attraction:hover .attr-img img { transform: scale(1.08); }
.attraction h3 { padding: 20px 20px 4px; }
.attraction p { padding: 0 20px 22px; margin: 0; }

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s, box-shadow .4s;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255,140,66,.4));
  opacity: 0; transition: opacity .3s;
}
.g-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.g-item:hover img { transform: scale(1.1); }
.g-item:hover::after { opacity: 1; }
.g-1 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 2; }

/* plans */
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}
.plan {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--yellow); }
.plan-featured {
  background: linear-gradient(180deg, #FFFAEF, #FFFFFF);
  border-color: var(--orange);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan-featured:hover { transform: translateY(-18px); }
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta);
  color: var(--white);
  padding: 6px 16px; border-radius: 999px;
  font-weight: 700; font-size: .8rem;
  box-shadow: 0 8px 16px rgba(255,140,66,.4);
}
.plan-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 700; font-size: .75rem;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 12px;
}
.plan h3 { margin-bottom: 4px; }
.plan-desc { color: var(--ink-mute); font-size: .92rem; margin: 0 0 18px; }
.plan-price { margin-bottom: 20px; }
.plan-price small { display: block; color: var(--ink-mute); font-size: .8rem; }
.plan-price strong { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--ink); }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.plan ul li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.plan ul .material-symbols-rounded { color: var(--green); font-size: 18px; }

/* testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  transition: transform .35s, box-shadow .35s;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote {
  margin: 0 0 18px; font-style: italic;
  color: var(--ink); font-size: 1rem;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial figcaption img { width: 44px; height: 44px; border-radius: 50%; }
.testimonial figcaption strong { display: block; }
.testimonial figcaption span { color: var(--ink-mute); font-size: .85rem; }

/* CTA section */
.section-cta {
  background: linear-gradient(135deg, #1F7A4D 0%, #2a9c64 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,201,60,.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,140,66,.18), transparent 40%);
  pointer-events: none;
}
.grid-2-cta { position: relative; z-index: 1; }
.h-light { color: var(--white); }
.lead-light { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 500px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-weight: 600; }
.contact-list .material-symbols-rounded {
  background: rgba(255,255,255,.15);
  border-radius: 12px; padding: 8px;
  color: var(--yellow);
}

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: .85rem; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  font-family: inherit; font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,140,66,.12);
}
.form-success {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  color: var(--green-deep); font-weight: 700;
}

/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.75);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-light { color: var(--white); }
.brand-light .brand-icon { background: rgba(255,255,255,.08); }
.footer-about { max-width: 320px; color: rgba(255,255,255,.6); margin-top: 16px; }
.footer h4 { color: var(--white); font-family: 'Nunito', sans-serif; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: rgba(255,255,255,.6); transition: color .2s; }
.footer ul a:hover { color: var(--yellow); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  color: var(--white);
  transition: transform .25s, background .25s;
}
.socials a:hover { transform: translateY(-3px); background: var(--grad-cta); }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.heart { color: #ff5e7e; font-size: 16px; vertical-align: -3px; animation: heart 1.4s ease-in-out infinite; }
@keyframes heart { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .features-grid, .attractions, .plans, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .hero { padding-bottom: 90px; }
  .hero-inner, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .hero-card img { height: 360px; }
  .badge-1 { left: 8px; bottom: -16px; }
  .badge-2 { right: 8px; top: 16px; }
  .features-grid, .attractions, .plans, .testimonials { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-5 { grid-column: span 2; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .hero h1 { font-size: 2.4rem; }
  .sobre-collage { grid-template-rows: 160px 160px 160px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
