/* ═══════════════════════════════════════════
   TOKENS DE MARCA — VASQUES
═══════════════════════════════════════════ */
:root {
  --noite:    #0B2859;
  --marinho:  #1B2B5E;
  --btg:      #2F3D72;
  --safira:   #3D5A99;
  --eletrico: #00A0E3;
  --ouro:     #C69C6D;
  --gelo:     #E8EEF8;
  --cinza-btg:#F0F2F5;
  --branco:   #FFFFFF;
  --texto:    #1A1F36;
  --subtexto: #4A5578;
  --borda:    #E0E6F0;
  --whatsapp: #25D366;
  --radius-btn: 8px;
  --radius-card: 2px;
  --shadow:   0 2px 16px rgba(11,40,89,0.08);
  --shadow-lg:0 8px 40px rgba(11,40,89,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════════ */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius-btn);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--branco);
  padding: 14px 28px;
}
.btn--whatsapp:hover { opacity: 0.9; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--ouro); color: var(--ouro); }

.btn--primary {
  background: var(--btg);
  color: var(--branco);
  padding: 14px 32px;
}
.btn--primary:hover { background: var(--noite); transform: translateY(-1px); }

.btn--whatsapp-outline {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--whatsapp);
  padding: 13px 20px;
  border: 1.5px solid var(--whatsapp);
  font-size: 14px;
}
.btn--whatsapp-outline:hover { background: var(--whatsapp); color: var(--branco); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 40, 89, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,156,109,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav__logo-fallback {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-fallback-name {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--branco);
  letter-spacing: 0.14em;
  line-height: 1;
}
.nav__logo-fallback-sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0.85;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ouro); }
.nav__cta {
  background: var(--whatsapp) !important;
  color: var(--branco) !important;
  padding: 9px 18px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  border-radius: var(--radius-btn) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.nav__cta:hover { opacity: 0.9 !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--noite);
  border-top: 1px solid rgba(198,156,109,0.15);
  padding: 20px 24px 24px;
  gap: 16px;
}
.nav__mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile .nav__cta {
  justify-content: center;
  margin-top: 4px;
  padding: 13px 20px !important;
  font-size: 15px !important;
  border-radius: var(--radius-btn) !important;
}
.nav__mobile.open { display: flex; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--noite);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,160,227,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(198,156,109,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  color: var(--ouro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--ouro);
}
.hero__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__title em {
  font-style: italic;
  color: var(--ouro);
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__badge-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(198,156,109,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon span:first-child {
  font-family: 'IBM Plex Serif', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ouro);
  line-height: 1;
}
.hero__badge-icon span:last-child {
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(198,156,109,0.6);
}
.hero__badge-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}
.hero__badge-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Foto hero */
.hero__photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__eyebrow {
  color: var(--safira);
  margin-bottom: 14px;
  display: inline-block;
}
.section__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--noite);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section__subtitle {
  font-size: 17px;
  color: var(--subtexto);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════ */
.problema { background: var(--branco); }
.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problema__card {
  background: var(--cinza-btg);
  border: 1px solid var(--borda);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.problema__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.problema__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--btg);
}
.problema__card-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--noite);
  margin-bottom: 14px;
  line-height: 1.3;
}
.problema__card-text {
  font-size: 15px;
  color: var(--subtexto);
  line-height: 1.7;
}
.problema__cta { text-align: center; margin-top: 52px; }
.problema__transition {
  font-family: 'IBM Plex Serif', serif;
  font-size: 24px;
  color: var(--noite);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════ */
.sobre { background: var(--noite); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre__photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}
.sobre__photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre__eyebrow {
  color: var(--ouro);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sobre__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--ouro);
}
.sobre__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 28px;
  line-height: 1.15;
}
.sobre__text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.sobre__text strong { color: rgba(255,255,255,0.88); font-weight: 400; }
.sobre__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sobre__stat-num {
  font-family: 'IBM Plex Serif', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ouro);
  margin-bottom: 6px;
  line-height: 1;
}
.sobre__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════ */
.servicos { background: var(--cinza-btg); }
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.servico__card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.servico__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--noite), var(--safira));
  opacity: 0;
  transition: opacity 0.2s;
}
.servico__card:hover { box-shadow: var(--shadow); }
.servico__card:hover::before { opacity: 1; }
.servico__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--btg);
}
.servico__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--noite);
  margin-bottom: 12px;
  line-height: 1.3;
}
.servico__text {
  font-size: 15px;
  color: var(--subtexto);
  line-height: 1.7;
}
.servicos__cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════
   PLANOS
═══════════════════════════════════════════ */
.planos { background: var(--branco); }
.planos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plano__card {
  border: 1px solid var(--borda);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.plano__card:hover { box-shadow: var(--shadow-lg); }
.plano__card--featured {
  border-color: var(--btg);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.plano__head {
  padding: 32px 28px 24px;
  background: var(--cinza-btg);
  border-bottom: 1px solid var(--borda);
}
.plano__card--featured .plano__head {
  background: var(--noite);
  border-bottom-color: rgba(255,255,255,0.06);
}
.plano__badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--safira);
}
.plano__card--featured .plano__badge { color: var(--ouro); }
.plano__name {
  font-family: 'IBM Plex Serif', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--noite);
  margin-bottom: 6px;
}
.plano__card--featured .plano__name { color: var(--branco); }
.plano__target {
  font-size: 13px;
  color: var(--subtexto);
}
.plano__card--featured .plano__target { color: rgba(255,255,255,0.4); }
.plano__body { padding: 28px; }
.plano__card--featured .plano__body { background: var(--noite); }
.plano__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plano__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--subtexto);
  line-height: 1.55;
}
.plano__card--featured .plano__item { color: rgba(255,255,255,0.65); }
.plano__item-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gelo);
  border: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.plano__item-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--safira);
}
.plano__card--featured .plano__item-dot {
  background: rgba(0,160,227,0.1);
  border-color: rgba(0,160,227,0.2);
}
.plano__card--featured .plano__item-dot::after { background: var(--eletrico); }
.plano__card--featured .btn--whatsapp-outline {
  background: var(--whatsapp);
  color: var(--branco);
  border-color: var(--whatsapp);
}
.plano__card--featured .btn--whatsapp-outline:hover { opacity: 0.9; }
.planos__note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--subtexto);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { background: var(--cinza-btg); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__sidebar-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--noite);
  line-height: 1.2;
  margin-bottom: 20px;
}
.faq__sidebar-text {
  font-size: 15px;
  color: var(--subtexto);
  line-height: 1.7;
  margin-bottom: 32px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.open { border-color: var(--btg); }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--noite);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq__item.open .faq__question { color: var(--btg); }
.faq__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  background: var(--gelo);
}
.faq__item.open .faq__icon {
  background: var(--btg);
  border-color: var(--btg);
  transform: rotate(45deg);
}
.faq__item.open .faq__icon svg line { stroke: white; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
}
.faq__item.open .faq__answer {
  max-height: 300px;
  padding: 0 22px 20px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--subtexto);
  line-height: 1.75;
  border-top: 1px solid var(--borda);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  background: var(--noite);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,160,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__eyebrow {
  color: var(--ouro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-final__eyebrow::before,
.cta-final__eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--ouro);
}
.cta-final__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 20px;
  position: relative;
}
.cta-final__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
.cta-final__btn {
  background: var(--whatsapp);
  color: var(--branco);
  padding: 18px 44px;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-final__btn:hover { opacity: 0.9; transform: translateY(-2px); }
.cta-final__contact {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-final__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   RODAPÉ
═══════════════════════════════════════════ */
.footer {
  background: #080F24;
  padding: 40px 0 32px;
  border-top: 1px solid rgba(198,156,109,0.12);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo img {
  height: 48px;
  width: auto;
  display: block;

}
.footer__logo-fallback {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__logo-fallback-name {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--branco);
  letter-spacing: 0.14em;
  line-height: 1;
}
.footer__logo-rule {
  width: 32px; height: 0.5px;
  background: var(--ouro);
  opacity: 0.5;
  margin: 5px 0;
}
.footer__logo-fallback-sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0.7;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: right;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ═══════════════════════════════════════════
   FADE UP
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 60px; }
  @media (max-width: 900px) {
  .hero__photo-frame {
    aspect-ratio: unset;
    height: auto;
  }
}
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .problema__grid { grid-template-columns: 1fr; gap: 14px; }
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__photo-frame { aspect-ratio: 16/9; }
  .servicos__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .planos__grid { grid-template-columns: 1fr; gap: 16px; }
  .plano__card--featured { transform: none; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-final__contact { flex-direction: column; align-items: center; gap: 14px; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__copy { text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .servicos__grid { grid-template-columns: 1fr; }
  .sobre__stats { grid-template-columns: 1fr 1fr 1fr; }
}
