/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f35;
  --navy-mid:   #112844;
  --navy-light: #1a3a5c;
  --blue:       #4a90d9;
  --blue-light: #6aaee8;
  --blue-vivid: #2563eb;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray:       #8a9ab0;
  --gray-light: #e8edf5;
  --text:       #1e2d3d;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(13,31,53,.10);
  --shadow-lg:  0 12px 48px rgba(13,31,53,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,144,217,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* === SECTION TAGS === */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(74,144,217,.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p { font-size: 17px; color: var(--gray); max-width: 540px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.65); }
.section-header.light .section-tag { color: var(--blue-light); background: rgba(255,255,255,.1); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: var(--navy);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,31,53,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 44px;
  width: 44px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-logo-text strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
/* Hamburguer → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(74,144,217,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,144,217,.08) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(74,144,217,.12);
  border: 1px solid rgba(74,144,217,.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-text h1 .highlight { color: var(--blue); }
.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-seal {
  width: 340px;
  height: 340px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 48px rgba(74,144,217,.45)) drop-shadow(0 0 16px rgba(74,144,217,.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%{ opacity: 1; }
  100%{ opacity: 0; transform: scaleY(1); }
}

/* === SOBRE === */
.sobre {
  padding: 100px 0;
  background: var(--off-white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}
.sobre-fachada {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}
.sobre-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.sobre-badge-float .num { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.sobre-badge-float .label { font-size: 12px; font-weight: 500; opacity: .85; }
.sobre-text .section-tag { margin-bottom: 12px; }
.sobre-text h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.sobre-text p { color: #4a5568; margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.sobre-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--gray-light);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* === SERVIÇOS === */
.servicos {
  padding: 100px 0;
  background: var(--white);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; background: var(--white); }
.servico-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px;
  background: rgba(74,144,217,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: var(--transition);
}
.card-icon svg { width: 26px; height: 26px; }
.servico-card:hover .card-icon { background: var(--blue); color: var(--white); }
.servico-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.servico-card p  { font-size: 14px; color: #6b7a8d; line-height: 1.7; }

/* === VALORES === */
.valores {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.valores::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(74,144,217,.1) 0%, transparent 70%);
  pointer-events: none;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.valor-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(74,144,217,.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.valor-item:hover { background: rgba(74,144,217,.1); border-color: rgba(74,144,217,.4); transform: translateY(-4px); }
.valor-icon {
  width: 64px; height: 64px;
  background: rgba(74,144,217,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-light);
  transition: var(--transition);
}
.valor-icon svg { width: 28px; height: 28px; }
.valor-item:hover .valor-icon { background: var(--blue); color: var(--white); }
.valor-item h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.valor-item p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-vivid) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-inner p  { color: rgba(255,255,255,.75); font-size: 16px; }
.cta-inner .btn-primary {
  background: var(--white);
  color: var(--blue-vivid);
  border-color: var(--white);
  flex-shrink: 0;
}
.cta-inner .btn-primary:hover { background: var(--off-white); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* === CONTATO === */
.contato {
  padding: 100px 0;
  background: var(--off-white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-item:hover { background: var(--off-white); }
.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-icon.whatsapp  { background: #e8f7ee; color: #25d366; }
.info-icon.email     { background: #e8f0fe; color: var(--blue); }
.info-icon.instagram { background: #fce8f3; color: #e1306c; }
.info-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 2px; }
.info-value { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.horario-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}
.horario-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; color: var(--blue-light); }
.horario-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px;
}
.horario-row:last-child { border: none; }
.horario-row span:first-child { color: rgba(255,255,255,.65); }
.horario-row span:last-child  { font-weight: 600; color: var(--white); }

/* FORM */
.contato-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contato-form h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,144,217,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9ab0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; }
.footer-links h4,
.footer-contato h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-light); margin-bottom: 20px; }
.footer-links a,
.footer-contato a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contato a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,.3);
  font-size: 13px;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes pulse {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.5); }
}

/* === CONTADOR === */
.contador { padding: 100px 0; background: var(--off-white); }
.contador-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
}
.contador-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.avatar-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  /* Duplo anel azul — estilo da logo */
  border: 4px solid var(--blue);
  box-shadow:
    0 0 0 8px rgba(74,144,217,.15),
    0 0 0 12px rgba(74,144,217,.07),
    0 20px 60px rgba(13,31,53,.2);
  background: var(--gray-light);
}
.avatar-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
}
.crc-badge {
  background: rgba(74,144,217,.1);
  border: 1px solid rgba(74,144,217,.25);
  color: var(--blue);
  font-size: 13px; font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.contador-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900; color: var(--navy);
  margin-bottom: 4px;
}
.contador-title {
  font-size: 14px; color: var(--blue);
  font-weight: 600; margin-bottom: 24px;
  display: block;
}
.contador-text p {
  font-size: 16px; color: #4a5568;
  line-height: 1.75; margin-bottom: 16px;
}
.contador-creds {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.cred-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
}
.cred-item::before { content: '✓'; color: var(--blue); font-weight: 800; }

/* Location icon color */
.info-icon.location { background: #e8f0fe; color: var(--blue); }

/* === MAPA === */
.mapa-wrap {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  box-shadow: var(--shadow);
  text-decoration: none;
  cursor: pointer;
}
.mapa-wrap iframe { display: block; pointer-events: none; }
.mapa-overlay {
  background: var(--navy);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  transition: var(--transition);
}
.mapa-wrap:hover .mapa-overlay { background: var(--navy-light); }
.mapa-overlay svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
.mapa-overlay span { font-size: 13px; font-weight: 600; color: var(--white); flex: 1; }
.mapa-overlay small { font-size: 11px; color: rgba(255,255,255,.45); width: 100%; padding-left: 28px; }

/* === DIFERENCIAIS STRIP === */
.diferenciais {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 28px 0;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid var(--gray-light);
}
.dif-item:last-child { border-right: none; }
.dif-icon {
  width: 40px; height: 40px;
  background: rgba(74,144,217,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.dif-icon svg { width: 20px; height: 20px; }
.dif-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dif-item span   { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* === OFERTA ESPECIAL === */
.oferta {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}
.oferta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,144,217,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 100%, rgba(37,99,235,.12) 0%, transparent 60%);
  pointer-events: none;
}
.oferta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.oferta-badge {
  display: inline-block;
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.3);
  color: #ffd700;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.oferta h2 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.oferta-destaque {
  color: #ffd700;
  position: relative;
}
.oferta > .oferta-inner > p,
.oferta-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.oferta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}
.oferta-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.oferta-card:hover { background: rgba(255,215,0,.07); border-color: rgba(255,215,0,.35); transform: translateY(-4px); }
.oferta-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,215,0,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  margin-bottom: 16px;
}
.oferta-card-icon svg { width: 22px; height: 22px; }
.oferta-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.oferta-card p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }
.oferta-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.oferta-cta .btn-primary {
  background: #ffd700;
  color: var(--navy);
  border-color: #ffd700;
  font-size: 17px;
  font-weight: 800;
  padding: 20px 44px;
}
.oferta-cta .btn-primary:hover { background: #ffe84d; border-color: #ffe84d; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,215,0,.35); }
.oferta-obs { font-size: 12px; color: rgba(255,255,255,.4); font-style: italic; }

/* === AOS ANIMATIONS === */
[data-aos] { opacity: 0; transition: opacity .6s ease, transform .6s ease; }
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .servicos-grid  { grid-template-columns: repeat(2, 1fr); }
  .valores-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .oferta-cards   { grid-template-columns: repeat(2, 1fr); }
  .oferta-cards .oferta-card:last-child { grid-column: 1 / -1; }
  .dif-grid       { grid-template-columns: repeat(2, 1fr); }
  .dif-item       { border-top: 1px solid var(--gray-light); }
  .dif-item:nth-child(1),
  .dif-item:nth-child(2) { border-top: none; }
  .dif-item:nth-child(2) { border-right: none; }
  .dif-item:nth-child(3) { border-right: 1px solid var(--gray-light); }
  .sobre-grid     { gap: 48px; }
}

/* Mobile grande */
@media (max-width: 768px) {
  /* Global */
  .container { padding: 0 18px; }
  section    { padding: 64px 0 !important; }

  /* ===== NAVBAR MOBILE ===== */
  .nav-toggle   { display: flex; }
  .nav-logo-img { height: 40px; width: 40px; }
  .nav-logo-text { font-size: 13px; }
  .nav-logo-text strong { font-size: 11px; }

  /* Painel lateral — BLOCK (não flex) para evitar bug iOS */
  .nav-links {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #112844;
    padding: 100px 20px 40px;
    z-index: 999;
    transform: translateX(105%);
    transition: transform .3s ease-in-out;
    box-shadow: -6px 0 32px rgba(0,0,0,.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
  .nav-links.open { transform: translateX(0); pointer-events: auto; }

  /* Itens do menu */
  .nav-links li { display: block; margin-bottom: 4px; }
  .nav-links a  {
    display: block;
    padding: 14px 18px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a:active,
  .nav-links a:focus { background: rgba(255,255,255,.1); color: #fff; }

  /* Botão CTA do menu */
  .nav-cta {
    display: block !important;
    margin-top: 16px !important;
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 50px !important;
    text-align: center !important;
    border-bottom: none !important;
    padding: 15px 18px !important;
  }

  /* ===== HERO MOBILE ===== */
  .hero         { padding: 100px 0 56px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-image   { display: none; }
  .hero-btns    { justify-content: center; flex-direction: column; align-items: center; margin-top: 4px; }
  .hero-btns .btn { width: 100%; max-width: 340px; justify-content: center; }
  .hero-text    { padding: 0; }
  .hero-text h1 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 16px; }
  .hero-text p  { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero-badge   { font-size: 11px; margin-bottom: 20px; }
  .hero-scroll  { display: none; }

  /* Diferenciais */
  .diferenciais      { padding: 0; }
  .dif-grid          { grid-template-columns: 1fr 1fr; gap: 0; }
  .dif-item          { border-top: 1px solid var(--gray-light); padding: 16px 14px; gap: 10px; }
  .dif-item:nth-child(1),
  .dif-item:nth-child(2) { border-top: none; }
  .dif-item:nth-child(odd) { border-right: 1px solid var(--gray-light); }
  .dif-item strong   { font-size: 12px; }
  .dif-item span     { font-size: 11px; }
  .dif-icon          { width: 34px; height: 34px; flex-shrink: 0; }
  .dif-icon svg      { width: 17px; height: 17px; }

  /* Contador */
  .contador-grid     { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .avatar-wrap       { width: 220px; height: 220px; margin: 0 auto; border-radius: 50%; }
  .contador-creds    { justify-content: center; }
  .contador-title    { margin-bottom: 16px; }

  /* Sobre */
  .sobre-grid        { grid-template-columns: 1fr; gap: 0; }
  .sobre-img         { display: none; }
  .sobre-stats       { gap: 0; justify-content: space-between; }
  .stat              { flex: 1; text-align: center; padding: 16px 8px; border-right: 1px solid var(--gray-light); }
  .stat:last-child   { border-right: none; }
  .stat-num          { font-size: 22px; }
  .stat-label        { font-size: 11px; }

  /* Serviços */
  .servicos-grid     { grid-template-columns: 1fr; gap: 16px; }
  .servico-card      { padding: 24px 20px; }

  /* Oferta */
  .oferta-cards      { grid-template-columns: 1fr; gap: 14px; }
  .oferta-cards .oferta-card:last-child { grid-column: auto; }
  .oferta-badge      { font-size: 12px; padding: 7px 16px; }
  .oferta-cta .btn-primary { width: 100%; max-width: 360px; padding: 18px 28px; font-size: 16px; }

  /* Valores */
  .valores-grid      { grid-template-columns: 1fr 1fr; gap: 14px; }
  .valor-item        { padding: 22px 16px; }
  .valor-icon        { width: 52px; height: 52px; }

  /* CTA Banner */
  .cta-banner        { padding: 52px 0; }
  .cta-inner         { flex-direction: column; text-align: center; gap: 24px; }
  .cta-inner .btn-primary { width: 100%; max-width: 340px; justify-content: center; }

  /* Contato */
  .contato-grid      { grid-template-columns: 1fr; gap: 28px; }
  .contato-form-wrapper { padding: 24px 18px; }
  .info-card         { padding: 4px; }
  .info-item         { padding: 16px; }

  /* Footer */
  .footer            { padding: 48px 0 0; }
  .footer-inner      { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand      { grid-column: auto; }
  .footer-brand img  { height: 52px; }
  .footer-links,
  .footer-contato    { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .footer-links h4,
  .footer-contato h4 { grid-column: 1 / -1; }

  /* WhatsApp float */
  .whatsapp-float    { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .float-pulse       { display: none; }

  /* Section headers */
  .section-header    { margin-bottom: 36px; }
  .section-header p  { font-size: 15px; }
  .section-header h2 { font-size: clamp(24px, 7vw, 36px); }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .container         { padding: 0 16px; }
  section            { padding: 56px 0 !important; }

  /* Hero */
  .hero-text h1      { font-size: clamp(28px, 8vw, 34px); }
  .hero-seal         { width: 120px; height: 120px; }
  .hero-btns .btn    { font-size: 14px; padding: 14px 20px; }

  /* Diferenciais - 1 coluna em telas muito pequenas */
  .dif-grid          { grid-template-columns: 1fr; }
  .dif-item:nth-child(odd) { border-right: none; }
  .dif-item:nth-child(2)   { border-top: 1px solid var(--gray-light); }

  /* Sobre */
  .sobre-stats       { flex-wrap: wrap; gap: 0; }
  .stat              { min-width: 33%; border-bottom: none; }

  /* Oferta */
  .oferta h2         { font-size: clamp(22px, 7vw, 28px); }
  .oferta-card       { padding: 22px 18px; }

  /* Valores */
  .valores-grid      { grid-template-columns: 1fr; }
  .valor-item        { padding: 20px 16px; }

  /* Footer */
  .footer-inner      { gap: 28px; }
  .footer-links,
  .footer-contato    { grid-template-columns: 1fr; }

  /* Contato */
  .info-value        { font-size: 13px; word-break: break-word; }
  .horario-card      { padding: 20px 16px; }
  .contato-form h3   { font-size: 18px; }
  .contato-form-wrapper { padding: 20px 16px; }

  /* CTA */
  .cta-inner h2      { font-size: clamp(20px, 6vw, 26px); }
}

/* Touch: remove hover states que não fazem sentido no mobile */
@media (hover: none) {
  .servico-card:hover  { transform: none; box-shadow: var(--shadow); }
  .valor-item:hover    { transform: none; }
  .oferta-card:hover   { transform: none; }
  .btn:hover           { transform: none; box-shadow: none; }
  .whatsapp-float:hover { transform: none; }
}
