/* ==========================================================================
   Piri Dicas — Design tokens
   ========================================================================== */
:root {
  --navy: #123B67;
  --navy-deep: #0A2544;
  --navy-soft: #2C5687;
  --red: #CD2D1F;
  --red-dark: #A2231A;
  --mist: #EFF3F8;
  --mist-deep: #E2E9F1;
  --sky: #4A8FC2;
  --white: #FFFFFF;
  --ink: #13223A;
  --ink-soft: #51617A;
  --ink-faint: #8494AA;
  --line: rgba(18, 59, 103, 0.12);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-accent: 'Caveat', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --container: 1180px;

  --shadow-card: 0 18px 40px -22px rgba(10, 37, 68, 0.35);
  --shadow-soft: 0 10px 24px -16px rgba(10, 37, 68, 0.25);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow svg { flex-shrink: 0; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-lede {
  font-size: clamp(16px, 1.9vw, 18.5px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 16px;
}

.accent-word {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--sky);
  font-size: 1.12em;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(205, 45, 31, 0.55);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 16px 32px -12px rgba(205, 45, 31, 0.65); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px -14px rgba(10, 37, 68, 0.6);
}
.btn-navy:hover { background: var(--navy-deep); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -14px rgba(10,37,68,0.25);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; transition: height 0.3s ease; }
.site-header.is-scrolled .brand img { height: 38px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--white); transition: color 0.3s ease; }
.site-header.is-scrolled .brand-name { color: var(--navy); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .main-nav a { color: var(--navy); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}
.main-nav a:hover::after { right: 0; }

.nav-cta {
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
}
.site-header.is-scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--navy); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav a { color: var(--navy) !important; font-size: 22px; padding: 14px 0; }
  .nav-cta { margin-top: 14px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
}
@media (min-width: 700px) {
  .hero-media img { object-position: center 22%; }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,25,45,0.92) 0%, rgba(9,25,45,0.55) 42%, rgba(9,30,54,0.35) 68%, rgba(9,32,58,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFD9CF;
}
.hero-route svg { flex-shrink: 0; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero h1 .script {
  font-family: var(--font-accent);
  font-weight: 600;
  color: #8FC4EA;
  font-size: 1.08em;
  display: inline-block;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}
.hero-fine {
  margin-top: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.68);
  max-width: 54ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stops {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stop {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.hero-stop svg { color: var(--red); flex-shrink: 0; }

@media (max-width: 600px) {
  .hero { align-items: flex-end; padding-bottom: 56px; padding-top: 130px; min-height: 92vh; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stops { display: none; }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view { transition-delay: var(--delay, 0ms); }

/* ==========================================================================
   Section utility
   ========================================================================== */
section { position: relative; }
.section-pad { padding: 96px 0; }
.bg-mist { background: var(--mist); }
.bg-navy { background: var(--navy-deep); color: var(--white); }

@media (max-width: 700px) {
  .section-pad { padding: 68px 0; }
}

/* ==========================================================================
   PiriGuia section
   ========================================================================== */
.piriguia { overflow: hidden; }
.piriguia-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.piriguia-visual {
  position: relative;
  justify-self: center;
}
.piriguia-glow {
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(60% 60% at 50% 38%, rgba(74,143,194,0.22), transparent 72%);
  z-index: 0;
  filter: blur(2px);
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: min(320px, 78vw);
  border-radius: 34px;
  background: var(--navy-deep);
  padding: 12px;
  box-shadow: var(--shadow-card);
  transform: rotate(-2.5deg);
}
.phone-frame img {
  border-radius: 24px;
  width: 100%;
  height: auto;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: var(--navy-deep);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.piriguia-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 30px 0 34px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.benefit-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }

.price-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-tag { display: flex; flex-direction: column; }
.price-tag .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); font-weight: 700; }
.price-tag .value { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--navy); line-height: 1.1; }
.price-note { font-size: 14.5px; color: var(--ink-soft); font-style: italic; flex: 1; min-width: 180px; }

@media (max-width: 940px) {
  .piriguia-grid { grid-template-columns: 1fr; gap: 44px; }
  .piriguia-visual { order: -1; }
}
@media (max-width: 480px) {
  .piriguia-benefits { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Eventos
   ========================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.event-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.event-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-media img { transform: scale(1.06); }
.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 7px 13px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-date-badge svg { color: var(--red); }
.event-free-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #1F7A45;
  color: var(--white);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 8px 16px -8px rgba(31,122,69,0.6);
}
.event-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-body h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--navy); }
.event-location { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }
.event-location svg { color: var(--red); flex-shrink: 0; }
.event-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.event-body .btn { margin-top: 8px; }

@media (max-width: 1180px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .events-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}


/* ==========================================================================
   Voo de balão
   ========================================================================== */
.balloon {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.balloon-media { position: absolute; inset: 0; z-index: -1; }
.balloon-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.balloon-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,25,45,0.94) 0%, rgba(9,25,45,0.8) 32%, rgba(9,25,45,0.32) 62%, rgba(9,25,45,0.1) 100%);
}
.balloon-content { max-width: 560px; padding: 90px 0; }
.balloon-content h2 { font-family: var(--font-display); font-size: clamp(30px, 4.2vw, 46px); font-weight: 600; line-height: 1.14; margin-bottom: 20px; }
.balloon-content p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.86); }
.balloon-content .hero-fine { color: rgba(255,255,255,0.7); }
.balloon-content .hero-actions { margin-top: 32px; }

@media (max-width: 700px) {
  .balloon { min-height: unset; }
  .balloon-content { padding: 74px 0; }
  .balloon-media img { object-position: 70% center; }
}

/* ==========================================================================
   ALQMAP
   ========================================================================== */
.alqmap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 64px;
  align-items: center;
}

.alqmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.alqmap-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 100px;
}

.alqmap-visual { position: relative; justify-self: center; }
.alqmap-glow {
  position: absolute;
  inset: -14% -24%;
  background: radial-gradient(58% 58% at 50% 40%, rgba(74,143,194,0.20), transparent 72%);
  z-index: 0;
  filter: blur(2px);
}
.alqmap-stack {
  position: relative;
  z-index: 1;
  width: min(280px, 68vw);
  margin: 0 auto;
  padding: 34px 46px 10px;
}
.alqmap-phone {
  border-radius: 30px;
  background: var(--navy-deep);
  padding: 9px;
  box-shadow: var(--shadow-card);
}
.alqmap-phone img { border-radius: 20px; width: 100%; height: auto; display: block; }
.alqmap-phone--front {
  position: relative;
  z-index: 3;
  width: 100%;
  transform: rotate(-2deg);
  margin: 0 auto;
}
.alqmap-phone--back-left {
  position: absolute;
  z-index: 1;
  width: 74%;
  left: -8%;
  top: 2%;
  transform: rotate(-11deg);
  opacity: 0.92;
}
.alqmap-phone--back-right {
  position: absolute;
  z-index: 2;
  width: 76%;
  right: -10%;
  top: -6%;
  transform: rotate(10deg);
  opacity: 0.96;
}

@media (max-width: 940px) {
  .alqmap-grid { grid-template-columns: 1fr; gap: 44px; }
  .alqmap-visual { order: -1; }
  .alqmap-stack { width: min(300px, 74vw); padding: 30px 40px 10px; }
}
@media (max-width: 480px) {
  .alqmap-phone--back-left, .alqmap-phone--back-right { display: none; }
  .alqmap-stack { padding: 0; width: min(280px, 80vw); }
}

/* ==========================================================================
   Autoridade
   ========================================================================== */
.authority { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.authority-copy p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin-top: 18px; }
.authority-copy p strong { color: var(--navy); font-weight: 700; }

@media (max-width: 860px) {
  .authority { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Prova social — Instagram
   ========================================================================== */
.social-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-top: 88px;
}
.social-proof-visual { justify-self: center; position: relative; }
.social-proof-glow {
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(55% 55% at 50% 30%, rgba(74,143,194,0.16), transparent 72%);
  z-index: 0;
}
.ig-phone-frame {
  position: relative;
  z-index: 1;
  width: min(300px, 76vw);
  border-radius: 34px;
  background: var(--navy-deep);
  padding: 12px;
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
}
.ig-phone-frame img { border-radius: 24px; width: 100%; height: auto; }
.ig-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: var(--navy-deep);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.social-proof-copy .section-title { margin-bottom: 4px; }
.social-proof-copy .section-lede { max-width: none; }
.social-proof-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .social-proof { grid-template-columns: 1fr; gap: 40px; margin-top: 56px; }
  .social-proof-visual { order: -1; }
}

/* ==========================================================================
   Escolha como viver Piri
   ========================================================================== */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.choice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.choice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: transparent; }
.choice-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.choice-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); }
.choice-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.choice-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--red); }
.choice-link svg { transition: transform 0.25s ease; }
.choice-card:hover .choice-link svg { transform: translateX(4px); }

@media (max-width: 940px) { .choice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .choice-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA final
   ========================================================================== */
.final-cta { text-align: center; padding: 110px 0; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 50px); font-weight: 600; color: var(--white); max-width: 780px; margin: 0 auto; line-height: 1.16; }
.final-cta p { color: rgba(255,255,255,0.72); font-size: 17px; margin-top: 18px; }
.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .final-cta { padding: 80px 0; }
  .final-actions { flex-direction: column; align-items: stretch; }
  .final-actions .btn { width: 100%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); font-size: 18px; color: var(--white); font-weight: 700; }
.footer-tag { font-size: 14.5px; max-width: 30ch; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ==========================================================================
   WhatsApp float button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(37,211,102,0.6);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ==========================================================================
   Misc
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
