:root {
  --primary: #125668;
  --accent:  #F4C724;
  --secondary: #3BA9AC;
  --surface: #2A7A88;
  --white:   #FFFFFF;
  --dark:    #0a2e38;
  --wa:      #25D366;
  --r:       14px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--primary); color: var(--white); overflow-x: hidden; }

/* ── TOP BAR ── */
.topbar {
  background: rgba(10,46,56,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  border-bottom: 1px solid rgba(244,199,36,0.18);
}
.topbar-langs { display: flex; gap: 2px; align-items: center; }
.topbar-langs a {
  color: rgba(255,255,255,0.48); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: .67rem; font-weight: 700; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 4px; transition: .2s;
  display: flex; align-items: center; gap: 4px;
}
.topbar-langs a:hover, .topbar-langs a.active { color: var(--accent); background: rgba(244,199,36,0.1); }
.topbar-socials { display: flex; gap: 12px; align-items: center; }
.topbar-socials a { color: rgba(255,255,255,0.45); text-decoration: none; transition: .2s; display: flex; width: 18px; height: 18px; }
.topbar-socials a svg { width: 18px; height: 18px; fill: currentColor; }
.topbar-socials a:hover { color: var(--accent); }

/* ── NAV ── */
nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 1000;
  background: transparent;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  transition: background .4s, box-shadow .4s, height .3s;
}
nav.scrolled {
  background: rgba(10,46,56,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  height: 66px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 96px; width: 96px; object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.55));
  transition: height .3s, width .3s;
}
nav.scrolled .nav-logo img { height: 58px; width: 58px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.92); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 11px; border-radius: 7px; transition: .2s; white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.nav-links a:hover { color: var(--accent); background: rgba(255,255,255,.07); }
.nav-cta {
  display: inline-flex !important; align-items: center !important; gap: 7px !important;
  background: var(--wa) !important; color: #fff !important;
  padding: 9px 18px !important; border-radius: 22px !important;
  font-weight: 800 !important; font-size: .74rem !important;
  box-shadow: 0 3px 14px rgba(37,211,102,.38) !important;
  text-shadow: none !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 6px 22px rgba(37,211,102,.55) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-mobile {
  display: none; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10,46,56,0.98);
  padding: 80px 22px 24px; gap: 4px; z-index: 990;
  border-bottom: 2px solid rgba(244,199,36,.3);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--white); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: .92rem; font-weight: 700; padding: 10px 14px; border-radius: 8px; transition: .2s; }
.nav-mobile a:hover { background: rgba(255,255,255,.07); }

/* ── HERO ── */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05);
}
.hero-slide.active { opacity: 1; animation: zoomOut 9s ease forwards; }
@keyframes zoomOut { from { transform: scale(1.05); } to { transform: scale(1); } }

/* Gradient reduzido para mais contraste com o texto */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(158deg,
    rgba(10,46,56,.60) 0%,
    rgba(18,86,104,.28) 50%,
    rgba(10,46,56,.68) 100%);
}
.hero-green-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(42,122,136,0.30) 0%,
    rgba(42,122,136,0.14) 40%,
    rgba(42,122,136,0.04) 68%,
    transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 120px 6vw 0; max-width: 1240px; margin: 0 auto; width: 100%;
}
.hero-badge {
  background: var(--accent); color: var(--dark);
  font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  padding: 5px 15px; border-radius: 20px; margin-bottom: 18px;
  animation: fadeUp .8s .2s both;
}
/* H1 menor + glow/sombra suave para separar do fundo */
.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.08; letter-spacing: -.02em;
  color: var(--white);
  animation: fadeUp .8s .4s both;
  text-shadow:
    0 2px 8px rgba(0,0,0,.55),
    0 0 32px rgba(10,46,56,.8),
    0 0 2px rgba(255,255,255,.15);
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(.9rem, 1.8vw, 1.08rem); color: rgba(255,255,255,.9);
  max-width: 480px; margin-top: 16px; line-height: 1.7;
  animation: fadeUp .8s .6s both;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; animation: fadeUp .8s .8s both; }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--dark);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: 32px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(244,199,36,.35); transition: .2s;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,199,36,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: 32px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); transition: .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-accent svg, .btn-ghost svg { width: 16px; height: 16px; fill: currentColor; }

.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: .3s; }
.hero-dots button.active { background: var(--accent); transform: scale(1.4); }
.hero-scroll { position: absolute; bottom: 28px; right: 32px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 5px; color: rgba(255,255,255,.38); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,.36), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity:.35; transform:scaleY(.6); } 50% { opacity:1; transform:scaleY(1); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* ── TAGLINE BAND – fundo amarelo ── */
.tagline-band {
  background: var(--accent);
  padding: 22px 5vw;
  text-align: center;
  border-bottom: 2px solid rgba(10,46,56,0.15);
}
.tagline-band p {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(.95rem, 2.3vw, 1.25rem);
  color: var(--dark);
  letter-spacing: .01em; line-height: 1.45;
  max-width: 760px; margin: 0 auto;
}
.tagline-band span { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }

/* ── SECTIONS ── */
section { padding: 80px 5vw; }
.section-label { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(1.8rem,3.6vw,2.7rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 14px; }
.section-sub { font-size: .93rem; color: rgba(255,255,255,.68); max-width: 560px; line-height: 1.72; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; margin-top: 52px; }
@media (min-width:1100px) { .services-grid { grid-template-columns: repeat(5,1fr); } }

.service-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/6.5; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 18px 48px rgba(0,0,0,.4); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover img { transform: scale(1.07); }
.service-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,46,56,.96) 0%, rgba(18,86,104,.15) 52%, transparent 100%); }
.service-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 22px; }

/* Tag com fundo para legibilidade sobre imagem */
.service-card-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--dark);
  background: var(--accent);
  padding: 3px 9px; border-radius: 4px;
  margin-bottom: 8px;
}

.service-card-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 7px; }
.service-card-price { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }

/* Botão padrão amarelo */
.service-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--dark);
  font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700;
  padding: 8px 17px; border-radius: 20px; text-decoration: none; transition: .2s;
}
.service-card-btn svg { width: 13px; height: 13px; fill: currentColor; }
.service-card-btn:hover { box-shadow: 0 4px 18px rgba(244,199,36,.42); transform: translateY(-1px); }

/* Exceção: card Yoga mantém botão verde */
.service-card.yoga-card .service-card-btn {
  background: var(--wa); color: #fff;
}
.service-card.yoga-card .service-card-btn:hover { box-shadow: 0 4px 18px rgba(37,211,102,.42); }

/* ── DIFFERENTIALS ── */
.differentials { background: var(--primary); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(185px,1fr)); gap: 14px; margin-top: 48px; }
.diff-item { background: var(--surface); border-radius: var(--r); padding: 28px 20px; text-align: center; border: 1px solid rgba(59,169,172,.2); transition: .3s; }
.diff-item:hover { transform: translateY(-4px); border-color: var(--accent); }
.diff-icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--accent); }
.diff-icon svg { width: 44px; height: 44px; fill: currentColor; }
.diff-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .83rem; margin-bottom: 5px; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.diff-text { font-size: .79rem; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ── SPOTS – VIDEO ── */
.spots { position: relative; overflow: hidden; padding: 0; background: var(--dark); }
.spots-video-wrap { position: relative; width: 100%; }
.spots-video-wrap video { width: 100%; max-height: 72vh; min-height: 380px; object-fit: cover; display: block; }
.spots-video-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,46,56,.06) 0%, rgba(10,46,56,.15) 40%, rgba(10,46,56,.88) 82%, rgba(10,46,56,1) 100%); pointer-events: none; }
.spots-content { position: relative; padding: 0 5vw 72px; margin-top: -130px; z-index: 2; }
.spots-header { text-align: center; margin-bottom: 36px; }
.spots-info-card { background: rgba(18,86,104,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(59,169,172,.28); border-radius: 20px; padding: 44px 48px; max-width: 900px; margin: 0 auto; text-align: center; }
.spots-info-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(1.2rem,2.6vw,1.8rem); color: var(--white); margin-bottom: 18px; letter-spacing: -.01em; }
.spots-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 24px; margin: 28px 0; }
.spots-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--accent); display: block; }
.spots-stat-label { font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); }
.spots-stat-desc { font-size: .75rem; color: rgba(255,255,255,.48); margin-top: 2px; }
.spots-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 22px 0 28px; }
.spot-pill { background: rgba(244,199,36,.1); border: 1px solid rgba(244,199,36,.28); color: var(--accent); font-family: 'Montserrat', sans-serif; font-size: .71rem; font-weight: 700; letter-spacing: .06em; padding: 6px 16px; border-radius: 20px; }
.btn-icarai { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; padding: 13px 28px; border-radius: 32px; text-decoration: none; box-shadow: 0 4px 20px rgba(244,199,36,.35); transition: .2s; }
.btn-icarai:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,199,36,.5); }
.btn-icarai svg { width: 16px; height: 16px; fill: currentColor; }

/* ── TESTIMONIALS ── */
.testimonials { position: relative; overflow: hidden; background: var(--primary); }
.testi-bg-images { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3,1fr); pointer-events: none; }
.testi-bg-img { background-size: cover; background-position: center; }
.testi-bg-overlay { position: absolute; inset: 0; background: rgba(18,86,104,0.87); }
.testi-content { position: relative; z-index: 2; padding: 80px 5vw; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; margin-top: 48px; }
.testi-card { background: rgba(10,46,56,0.68); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(59,169,172,.22); border-radius: var(--r); padding: 28px 24px; position: relative; overflow: hidden; }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.testi-stars { color: var(--accent); font-size: .9rem; margin-bottom: 12px; letter-spacing: 3px; }
.testi-text { font-size: .88rem; line-height: 1.72; color: rgba(255,255,255,.88); font-style: italic; margin-bottom: 18px; }
.testi-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .82rem; color: var(--accent); }
.testi-big-q { position: absolute; bottom: -12px; right: 18px; font-size: 7rem; color: rgba(244,199,36,.07); line-height: 1; font-family: serif; pointer-events: none; }

/* ── FAQ ── */
.faq { background: var(--dark); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border-radius: 10px; overflow: hidden; border: 1px solid rgba(59,169,172,.14); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); text-align: left; padding: 18px 22px; font-family: 'Montserrat', sans-serif; font-size: .88rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: .2s; }
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-icon { width: 18px; height: 18px; min-width: 18px; fill: var(--accent); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 18px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--accent), #dba800); padding: 60px 5vw; text-align: center; }
.cta-band h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--dark); letter-spacing: -.02em; margin-bottom: 10px; }
.cta-band p { font-size: .93rem; color: rgba(10,46,56,.72); max-width: 480px; margin: 0 auto 28px; }

/* Botão WhatsApp verde no CTA */
.btn-dark-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 15px 34px; border-radius: 32px; text-decoration: none;
  transition: .2s; box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-dark-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.btn-dark-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 56px 5vw 24px; border-top: 1px solid rgba(244,199,36,.18); position: relative; overflow: hidden; }
.footer-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .05; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; position: relative; z-index: 1; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { height: 110px; width: 110px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)); margin-bottom: 14px; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.56); line-height: 1.68; max-width: 270px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.52); text-decoration: none; transition: .2s; }
.footer-socials a svg { width: 17px; height: 17px; fill: currentColor; }
.footer-socials a:hover { background: var(--accent); color: var(--dark); }
.footer-col { position: relative; z-index: 1; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.58); text-decoration: none; font-size: .84rem; padding: 3.5px 0; transition: .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.58); margin-bottom: 8px; }
.footer-contact-item svg { width: 15px; height: 15px; fill: currentColor; opacity: .6; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.58); text-decoration: none; transition: .2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .74rem; color: rgba(255,255,255,.32); position: relative; z-index: 1; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; transition: .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 9999; width: 54px; height: 54px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,.45); text-decoration: none; animation: waPulse 2.8s ease-in-out infinite; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,.45); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,.72); } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width:768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 60px 5vw; }
  nav { top: 28px; height: 72px; }
  .nav-logo img { height: 68px; width: 68px; }
  nav.scrolled { height: 60px; }
  nav.scrolled .nav-logo img { height: 50px; width: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .spots-info-card { padding: 28px 20px; }
  .spots-content { margin-top: -80px; }
  .testi-bg-images { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hero-title { font-size: 1.9rem; }
  .topbar { padding: 4px 14px; }
  .tagline-band p { font-size: .9rem; }
}
