/* ══════════════════════════════════════════════════════════════
   Associação Amigas do Peito de Araruama
   style.css — Design: rosa claro, elegante, orgânico
   ══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Paleta rosa */
  --r50:  #fff0f4;
  --r100: #fce4ec;
  --r200: #f8c0d0;
  --r300: #f296b0;
  --r400: #e8819a;
  --r500: #d4607e;
  --r600: #b84268;
  --r700: #8c2c4e;

  /* Neutros */
  --n0:   #ffffff;
  --n50:  #fafafa;
  --n100: #f5f5f5;
  --n200: #e5e5e5;
  --n400: #a3a3a3;
  --n600: #525252;
  --n800: #262626;
  /*--n900: #111111;
  --n900: #1E90FF;*/
  --n900: #52A8F0;


  /* Tipografia */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  /* Espaços */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
  --sp-2x: 96px;

  /* Raios */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-pill:9999px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(180,80,110,.10);
  --sh-md: 0 8px 32px rgba(180,80,110,.14);
  --sh-lg: 0 20px 60px rgba(180,80,110,.18);
  --sh-xl: 0 32px 80px rgba(180,80,110,.24);

  /* Transição */
  --ease: .36s cubic-bezier(.25,.8,.25,1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: #000000;
  background: var(--n0);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
button { font-family: var(--ff-body); cursor: pointer; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 600; }
em { color: var(--r500); font-style: italic; }

.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--r600);
  background: var(--r100);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
}
.section-lead {
  max-width: 520px; margin: 12px auto 0;
  color: var(--n600); font-size: .96rem;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 var(--sp-md); }
.section-pad { padding: var(--sp-2x) 0; }
.section-head { text-align: center; margin-bottom: var(--sp-xl); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: none;
  background: linear-gradient(135deg, var(--r600) 0%, var(--r400) 100%);
  color: var(--n0);
  font-weight: 500; font-size: .94rem;
  box-shadow: 0 6px 24px rgba(180,66,104,.35);
  transition: var(--ease);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(180,66,104,.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  padding: 13px 30px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--n0);
  font-weight: 500; font-size: .94rem;
  transition: var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: var(--n0); }
.btn-full { width: 100%; justify-content: center; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-20px) rotate(6deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50%     { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.fade-up { animation: fadeUp .9s ease both; opacity: 0; }
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .30s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .60s; }
.d5 { animation-delay: .75s; }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }
.reveal.d5 { transition-delay: .60s; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.solid {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(180,80,110,.10);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 var(--sp-md);
  height: 70px;
  display: flex; align-items: center; gap: var(--sp-lg);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.nav-logo:hover { opacity: .8; }
.ribbon-icon { font-size: 1.8rem; }
.nav-logo strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem; line-height: 1.1;
  color: var(--r600);
}
.navbar:not(.solid) .nav-logo strong { color: var(--n0); }
.nav-logo em {
  display: block;
  font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--n400);
  font-style: normal;
}
.navbar:not(.solid) .nav-logo em { color: rgba(255,255,255,.6); }

.nav-links {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 400;
  color: var(--n0);
  transition: var(--ease);
}
.navbar.solid .nav-links a { color: var(--n600); }
.nav-links a:hover { background: var(--r100); color: var(--r600) !important; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: var(--n0);
  color: var(--r600);
  font-size: .85rem; font-weight: 600;
  transition: var(--ease);
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.navbar:not(.solid) .nav-cta { background: rgba(255,255,255,.18); color: var(--n0); backdrop-filter: blur(8px); }
.nav-cta:hover { background: var(--r600); color: var(--n0); }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 4px; margin-left: auto;
}
.burger span {
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--n0);
  transition: var(--ease);
  display: block;
}
.navbar.solid .burger span { background: var(--r600); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(120,30,60,.72) 0%,
    rgba(80,20,45,.60) 40%,
    rgba(40,10,25,.50) 100%
  );
}

/* Pétalas decorativas */
.petals { position: absolute; inset: 0; pointer-events: none; }
.p {
  position: absolute;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  opacity: .15;
  animation: floatY 8s ease-in-out infinite;
}
.p1 { width: 360px; height: 360px; background: var(--r300); top: -80px; right: -60px; animation-duration: 9s; }
.p2 { width: 180px; height: 180px; background: var(--r200); bottom: 10%; left: -30px; animation-duration: 7s; animation-delay: 1s; animation-direction: reverse; }
.p3 { width: 100px; height: 100px; background: var(--r400); top: 30%; left: 6%; animation-duration: 6s; animation-delay: .5s; }
.p4 { width: 260px; height: 260px; background: var(--r100); bottom: -60px; right: 5%; animation-duration: 11s; animation-delay: 2s; border-radius: 50%; }

.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-md);
}
.hero h1 { color: var(--n0); margin-bottom: var(--sp-md); text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero h1 em { color: var(--r200); }
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  max-width: 560px; margin: 0 auto var(--sp-lg);
  line-height: 1.8;
}
.hero-btns { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-xl); }

.hero-counters {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-lg); flex-wrap: wrap;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,.2);
}
.counter { text-align: center; }
.counter b {
  display: block;
  font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700;
  color: var(--n0); line-height: 1;
}
.counter span { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; display: block; }
.counter-div { width: 1px; height: 44px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  animation: floatY 2.4s ease-in-out infinite;
  cursor: pointer; z-index: 1;
  transition: color var(--ease);
}
.hero-scroll:hover { color: var(--n0); }

/* ══════════════════════════════════════════════════════════════
   IMPACT BAR
══════════════════════════════════════════════════════════════ */
.impact-bar {
  background: linear-gradient(135deg, var(--r600), var(--r400));
  padding: 18px 0;
  overflow: hidden;
}
.impact-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 var(--sp-md);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.impact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 28px;
  color: var(--n0);
  font-size: .88rem; font-weight: 400;
}
.impact-item i { font-size: 1rem; opacity: .85; }
.impact-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════════════ */
.sobre { background: var(--n0); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.sobre-img-wrap { position: relative; }
.sobre-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
  background: linear-gradient(160deg, var(--r50), var(--n0));
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  padding: 48px;
  display: block;
}

.sobre-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--n0);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg);
}
.sobre-badge i { font-size: 1.6rem; color: var(--r400); animation: pulse 2.5s ease-in-out infinite; }
.sobre-badge strong { display: block; font-family: var(--ff-display); font-size: 1.2rem; color: var(--r600); }
.sobre-badge small { font-size: .78rem; color: var(--n400); }

.sobre-dot-grid {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px;
  background-image: radial-gradient(var(--r200) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 50%;
  opacity: .7;
  z-index: -1;
}

.sobre-text h2 { margin-bottom: var(--sp-md); }
.sobre-text p  { color: var(--n600); margin-bottom: var(--sp-sm); }
.sobre-pilares {
  display: flex; flex-wrap: wrap; gap: var(--sp-sm);
  margin: var(--sp-md) 0;
}
.pilar {
  display: flex; align-items: center; gap: 9px;
  background: var(--r50);
  border-radius: var(--r-md);
  padding: 11px 18px;
  font-size: .88rem; font-weight: 500; color: var(--r600);
  transition: var(--ease);
}
.pilar:hover { background: var(--r600); color: var(--n0); }
.pilar i { font-size: 1rem; }

/* ══════════════════════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════════════════════ */
.servicos { background: var(--r50); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.card {
  background: var(--n0);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--r100);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card::before {
  content: '';
  position: absolute; inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--r600), var(--r300));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.card:hover::before { transform: scaleX(1); }

.card-ico {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: var(--r100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--r600);
  margin-bottom: var(--sp-md);
  transition: var(--ease);
}
.card:hover .card-ico { background: var(--r600); color: var(--n0); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .92rem; color: var(--n600); }
.card-line {
  height: 2px; background: var(--r100); border-radius: 2px;
  margin-top: var(--sp-md); margin-bottom: 0;
  transition: background var(--ease);
}
.card:hover .card-line { background: var(--r200); }

/* ══════════════════════════════════════════════════════════════
   GALERIA
══════════════════════════════════════════════════════════════ */
.galeria { background: var(--n0); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.g-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.g-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.g-item:hover img { transform: scale(1.08); }

.g-hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: var(--sp-sm);
  background: linear-gradient(180deg, transparent 40%, rgba(140,44,78,.75));
  opacity: 0; transition: opacity var(--ease);
  color: var(--n0);
}
.g-item:hover .g-hover { opacity: 1; }
.g-hover i { font-size: 1.4rem; margin-bottom: 4px; }
.g-hover span { font-size: .85rem; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,0,5,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--sh-xl);
}
.lb-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: var(--n0); font-size: 1.8rem;
  opacity: .7; transition: opacity var(--ease);
}
.lb-close:hover { opacity: 1; }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--n0); font-size: .9rem;
  background: rgba(255,255,255,.12);
  padding: 6px 20px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════════════════ */
.depo {
  background: var(--n0);
  position: relative;
  overflow: hidden;
}
.depo-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--r200) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  opacity: .5;
}

.depo .section-head { position: relative; z-index: 1; }

.depo-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  align-items: stretch;
}
.depo-card {
  --depo-a: var(--r500);
  --depo-b: var(--r300);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--n0);
  border-radius: var(--r-lg);
  padding: 34px 30px 32px;
  border: 1px solid var(--r100);
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.depo-card::before {
  content: '';
  position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, var(--depo-a), var(--depo-b));
  transition: height var(--ease);
}
.depo-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.depo-card:hover::before { height: 9px; }

/* Cor de destaque por depoimento */
.depo-card:nth-child(1) { --depo-a: #d4607e; --depo-b: #f2a7bd; }
.depo-card:nth-child(2) { --depo-a: #e07d54; --depo-b: #f6bd98; }
.depo-card:nth-child(3) { --depo-a: #9068c9; --depo-b: #c7abe6; }
.depo-card:nth-child(4) { --depo-a: #3aa79d; --depo-b: #8ad3ca; }
.depo-card:nth-child(5) { --depo-a: #d99b39; --depo-b: #f1cd80; }

.depo-stars { color: var(--depo-a); font-size: .95rem; letter-spacing: 3px; margin-bottom: 12px; }
.depo-card blockquote {
  flex: 1 1 auto;
  font-size: .95rem; color: var(--n600); line-height: 1.8;
  font-style: italic; font-family: var(--ff-display);
  margin-bottom: var(--sp-md);
  quotes: '\201C' '\201D';
}
.depo-card blockquote::before {
  content: open-quote;
  font-size: 3.2rem; color: var(--depo-b);
  line-height: 0; vertical-align: -.45em;
  margin-right: 2px;
}
.depo-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.depo-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--depo-a), var(--depo-b));
  color: var(--n0);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.depo-card footer strong { display: block; font-size: .93rem; }
.depo-card footer small  { font-size: .78rem; color: var(--n400); }

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--r700) 0%, var(--r500) 60%, var(--r300) 100%);
  padding: 64px 0;
}
.nl-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-lg); flex-wrap: wrap;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--r-xl) - 4px);
  padding: 36px;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}
.nl-left {
  display: flex; align-items: flex-start; gap: var(--sp-md);
  color: var(--n0);
}
.nl-left > i { font-size: 2.2rem; opacity: .9; margin-top: 4px; flex-shrink: 0; }
.nl-left h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400; margin-bottom: 6px; }
.nl-left p  { opacity: .8; font-size: .92rem; }

.nl-right {
  max-width: 520px;
}
.nl-right h2 {
  margin: 0 0 14px;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: #fff;
}
.nl-right p {
  margin: 0 0 24px;
  opacity: .85;
  line-height: 1.75;
}

.nl-form {
  display: grid;
  gap: 14px;
}
.nl-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nl-form .form-row label {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
}
.nl-form input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .95rem; font-family: var(--ff-body);
  outline: none;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.nl-form input::placeholder { color: rgba(255,255,255,.55); }
.nl-form input:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.nl-form button {
  width: max-content;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: none;
  background: #ffffff;
  color: var(--r700);
  font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.nl-form button:hover { transform: translateY(-1px); background: #f7f7f7; color: var(--r800); }
.form-feedback {
  width: 100%;
  font-size: .95rem;
  margin-top: 8px;
  min-height: 1.4rem;
  color: rgba(255,255,255,.9);
}
.form-feedback.success { color: #dcfce7; }
.form-feedback.error { color: #fecaca; }

/* ══════════════════════════════════════════════════════════════
   PATROCINADORES
══════════════════════════════════════════════════════════════ */
.patrocinadores { background: var(--n0); }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.sponsor-card {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  border: 1.5px solid var(--r100);
  border-radius: var(--r-lg);
  background: var(--r50);
  transition: var(--ease);
}
.sponsor-card:hover { border-color: var(--r300); box-shadow: var(--sh-md); transform: translateY(-4px); }
.sponsor-card i  { font-size: 1.8rem; color: var(--r400); flex-shrink: 0; }
.sponsor-card span { font-weight: 500; font-size: .92rem; color: var(--n600); }

.sponsor-cta {
  text-align: center; color: var(--n600); font-size: .92rem;
}
.sponsor-cta a { color: var(--r600); font-weight: 500; border-bottom: 1px solid var(--r300); transition: color var(--ease); }
.sponsor-cta a:hover { color: var(--r700); }

/* ══════════════════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════════════════ */
.contato { background: var(--r50); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.contato-info { display: flex; flex-direction: column; gap: var(--sp-md); }
.info-block { display: flex; gap: 14px; align-items: flex-start; }
.info-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--r100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--r600);
}
.info-block strong { display: block; font-size: .88rem; margin-bottom: 3px; }
.info-block p { font-size: .88rem; color: var(--n600); line-height: 1.6; }

.socials { display: flex; gap: 10px; margin-top: 6px; }
.soc {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--r100); color: var(--r600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--ease);
}
.soc:hover { background: var(--r600); color: var(--n0); transform: translateY(-3px); }
.soc.wpp:hover { background: #25d366; }

/* Form */
.contato-form { display: flex; flex-direction: column; gap: var(--sp-sm); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group label { font-size: .82rem; font-weight: 600; color: var(--n600); }
.f-group input,
.f-group select,
.f-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--r200);
  border-radius: var(--r-sm);
  font-size: .92rem; font-family: var(--ff-body);
  color: var(--n800); background: var(--n0);
  outline: none; resize: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--r500);
  box-shadow: 0 0 0 3px rgba(212,96,126,.12);
}
.f-success {
  display: none; align-items: center; gap: 10px;
  background: #e8f5e9; color: #2e7d32;
  border-radius: var(--r-sm); padding: 14px 18px;
  font-size: .9rem;
}
.f-success.show { display: flex; }

/* Mapa */
.mapa {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  height: 400px;
}
.mapa iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--n900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .nav-logo strong { color: var(--r300); }
.footer-brand .nav-logo em { color: rgba(255,255,255,.35); }
.footer-brand p { margin-top: var(--sp-sm); font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.75; }
.footer-cnpj { margin-top: 8px !important; font-size: .75rem !important; }

.footer-nav h4 {
  font-family: var(--ff-body); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--r300); margin-bottom: 16px;
}
.footer-nav a, .footer-contact p {
  display: block;
  font-size: .86rem; color: rgba(255,255,255,.45);
  margin-bottom: 9px;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--r300); }
.footer-contact h4 {
  font-family: var(--ff-body); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--r300); margin-bottom: 16px;
}
.footer-contact p { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact i { color: var(--r400); margin-top: 3px; }

.footer-soc { display: flex; gap: 10px; margin-top: var(--sp-sm); }
.footer-soc a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--ease);
}
.footer-soc a:hover { background: var(--r600); color: var(--n0); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 22px 0;
  font-size: .78rem; color: rgba(255,255,255,.25);
}

/* ══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════════════ */
.fab-wpp {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  color: var(--n0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  animation: pulse 3s ease-in-out infinite;
  transition: transform var(--ease), background var(--ease);
}
.fab-wpp:hover { transform: scale(1.12); background: #1ebe5d; }
.fab-tooltip {
  position: absolute; right: 70px;
  background: var(--n900); color: var(--n0);
  font-size: .8rem; padding: 6px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.fab-wpp:hover .fab-tooltip { opacity: 1; }

.fab-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 900;
  width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 2px solid var(--r300);
  background: var(--n0); color: var(--r600);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: var(--ease);
}
.fab-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.fab-top:hover { background: var(--r600); border-color: var(--r600); color: var(--n0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sobre-grid       { grid-template-columns: 1fr; }
  .sobre-img-frame img { height: 360px; padding: 36px; }
  .sobre-badge      { right: 10px; bottom: -10px; }
  .cards-grid       { grid-template-columns: 1fr 1fr; }
  .depo-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .sponsors-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed; inset: 70px 0 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; z-index: 999;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { color: var(--n600) !important; font-size: 1.05rem; padding: 13px 28px; }
  .nav-cta         { display: none; }
  .burger          { display: flex; }

  .cards-grid      { grid-template-columns: 1fr; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-item { height: 200px; }

  .depo-grid { grid-template-columns: 1fr; }
  .nl-box { flex-direction: column; align-items: stretch; }
  .nl-right { width: 100%; }
  .nl-left { width: 100%; }

  .nl-box      { flex-direction: column; text-align: center; }
  .nl-left     { flex-direction: column; align-items: center; }
  .nl-form     { width: 100%; justify-content: center; }
  .nl-form input { width: 100%; min-width: 0; }

  .sponsors-grid { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; }
  .f-row        { grid-template-columns: 1fr; }

  .footer-grid  { grid-template-columns: 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fab-wpp  { bottom: 20px; right: 18px; }
  .fab-top  { bottom: 90px; right: 18px; }

  .hero-counters { gap: var(--sp-md); }
  .counter-div   { display: none; }

  .sobre-img-frame img { height: 280px; padding: 28px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .impact-inner { flex-direction: column; gap: var(--sp-xs); }
  .impact-dot   { display: none; }

  .sobre-img-frame img { height: 220px; padding: 20px; }
}
