/* ============================================================
   PIERIM Seguros — Stylesheet
   Identidade: monocromática azul, formas pílula, textura ruído,
   diagonais, tipografia sans-serif geométrica (Montserrat).
   ============================================================ */

:root {
  --azul-medio: #2E6FD9;          /* azul sereno topo */
  --azul-medio-soft: #4B86E0;
  --azul-royal: #1E40C4;          /* azul vibrante base */
  --azul-royal-deep: #1A36A8;
  --azul-marinho: #0B1F4D;        /* acentos da marca */
  --azul-marinho-2: #0a1a3e;
  --branco: #ffffff;
  --offwhite: #f5f8ff;
  --cinza-100: #eef2f9;
  --cinza-300: #c9d3e6;
  --cinza-500: #6a778f;
  --cinza-700: #36405a;
  --texto: #0d1733;
  --amarelo: #FFD24D;             /* destaque ocasional */
  --verde-wa: #25D366;
  --verde-wa-dark: #128C7E;

  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow-sm: 0 4px 16px rgba(11,31,77,.08);
  --shadow-md: 0 12px 40px rgba(11,31,77,.14);
  --shadow-lg: 0 24px 60px rgba(11,31,77,.22);

  --max: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { list-style: none; padding: 0; margin: 0; }

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

/* ----------------------------- Tipografia ----------------------------- */
h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.eyebrow.dark {
  color: var(--azul-marinho);
  background: rgba(30,64,196,.08);
}
.text-blue { color: var(--azul-royal); }
.text-yellow { color: var(--amarelo); }
.highlight { color: var(--amarelo); }

/* ----------------------------- Botões ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-weight: 700; font-size: .95rem;
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-pill { border-radius: var(--radius-pill); }
.btn-primary {
  background: var(--branco);
  color: var(--azul-marinho);
  box-shadow: 0 10px 24px rgba(11,31,77,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(11,31,77,.28); }
.btn-ghost {
  background: transparent; color: var(--branco); border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--branco); }
.btn-cta-header {
  background: var(--azul-marinho); color: var(--branco); padding: 11px 22px; font-size: .85rem;
}
.btn-cta-header:hover { background: var(--azul-royal); transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(11,31,77,.08);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo "tag" — canto inferior esquerdo arredondado */
.logo { display: inline-block; }
.logo-tag {
  display: inline-flex; flex-direction: column;
  background: var(--azul-marinho);
  color: var(--branco);
  padding: 10px 18px 12px;
  border-radius: 8px 8px 8px 22px;
  line-height: 1;
}
.site-header:not(.scrolled) .logo-tag { box-shadow: 0 6px 20px rgba(11,31,77,.25); }
.logo-name {
  font-weight: 900; letter-spacing: .28em; font-size: 1.15rem;
}
.logo-sub {
  font-size: .55rem; letter-spacing: .25em; margin-top: 4px; opacity: .85;
  font-weight: 500;
}

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: inline-block; padding: 10px 14px; border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 600; color: var(--branco);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.site-header.scrolled .main-nav a { color: var(--azul-marinho); }
.main-nav a:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .main-nav a:hover { background: rgba(30,64,196,.08); color: var(--azul-royal); }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--branco); margin: 5px 0; border-radius: 2px;
  transition: .25s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--azul-marinho); }

/* ----------------------------- HERO ----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--branco);
}
.hero-bg-top {
  position: absolute; inset: 0 0 35% 0;
  background: linear-gradient(160deg, var(--azul-medio) 0%, var(--azul-medio-soft) 100%);
  z-index: -3;
}
.hero-bg-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; top: 50%;
  background: linear-gradient(180deg, var(--azul-royal) 0%, var(--azul-royal-deep) 100%);
  z-index: -3;
}
/* Diagonal cut */
.hero-diagonal {
  position: absolute; left: 0; right: 0;
  top: calc(50% - 100px); height: 200px; width: 100%;
  z-index: -2;
}

/* Noise texture — SVG turbulence */
.noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
  opacity: .18; mix-blend-mode: overlay;
}
.noise-soft { opacity: .10; }

.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-text h1 { color: var(--branco); }
.hero-lead { font-size: 1.1rem; opacity: .92; max-width: 520px; }

.hero-benefits {
  display: grid; gap: 12px; margin: 22px 0 30px; max-width: 520px;
}
.hero-benefits li {
  position: relative; padding-left: 36px;
  font-weight: 500; font-size: 1rem;
}
.hero-benefits li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 24px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M2 8 c4 -6 10 -6 14 -2'/><path d='M12 2 l5 4 -3 4'/></svg>") no-repeat center / contain;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — card flutuante */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #eef3ff 100%);
  color: var(--azul-marinho);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: floaty 6s ease-in-out infinite;
}
.hero-card-shine {
  position: absolute; top: -50%; left: -30%; width: 80%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform: rotate(20deg); pointer-events: none;
}
.hero-card-row { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--cinza-500); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #28c76f; box-shadow: 0 0 0 4px rgba(40,199,111,.18); }
.hero-card h3 { font-size: 1.4rem; margin-top: 10px; }
.hero-card-policy { color: var(--cinza-500); font-size: .85rem; margin-bottom: 18px; }
.hero-card-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 16px 0; border-top: 1px dashed var(--cinza-300); border-bottom: 1px dashed var(--cinza-300);
}
.hero-card-meta div { display: flex; flex-direction: column; }
.hero-card-meta span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cinza-500); }
.hero-card-meta strong { font-size: .95rem; }
.hero-card-foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-royal), var(--azul-marinho));
  color: var(--branco); display: grid; place-items: center; font-weight: 800; font-size: .85rem;
}
.hero-card-foot strong { display: block; font-size: .9rem; }
.hero-card-foot span { font-size: .75rem; color: var(--cinza-500); }

.floating-badge {
  position: absolute; background: var(--branco); color: var(--azul-marinho);
  padding: 14px 18px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); font-size: .8rem;
}
.floating-badge strong { font-size: 1.1rem; color: var(--azul-royal); }
.badge-1 { top: -20px; left: -10px; animation: floaty 5s ease-in-out infinite reverse; }
.badge-2 { bottom: -10px; right: -10px; animation: floaty 7s ease-in-out infinite; }

@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-10px) rotate(-2deg); }
}
.floating-badge.badge-1 { animation-name: floaty2; }
.floating-badge.badge-2 { animation-name: floaty2; }
@keyframes floaty2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ----------------------------- STATS ----------------------------- */
.stats {
  background: var(--branco);
  margin-top: -50px; position: relative; z-index: 3;
}
.stats-grid {
  background: var(--branco);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat {
  text-align: center; padding: 30px 20px;
  border-right: 1px solid var(--cinza-100);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--azul-royal); font-weight: 800;
}
.stat span { color: var(--cinza-500); font-size: .85rem; }

/* ----------------------------- SECTIONS ----------------------------- */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-tinted { background: var(--offwhite); }
.section-dark {
  background: linear-gradient(180deg, var(--azul-marinho) 0%, var(--azul-marinho-2) 100%);
  color: var(--branco);
}
.section-cta {
  background: linear-gradient(160deg, var(--azul-royal) 0%, var(--azul-royal-deep) 100%);
  color: var(--branco);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-head p { color: var(--cinza-500); font-size: 1.05rem; }
.section-head.light p { color: rgba(255,255,255,.78); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* ----------------------------- SOBRE ----------------------------- */
.col-text h2 { margin-top: 6px; }
.check-list { display: grid; gap: 10px; margin: 18px 0 26px; }
.check-list li {
  position: relative; padding-left: 32px; font-weight: 500;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--azul-royal);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

.col-visual { display: grid; gap: 18px; }
.about-card {
  padding: 26px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-card h4 { font-size: 1.1rem; }
.about-card p { margin: 0; font-size: .95rem; }
.card-blue { background: var(--azul-royal); color: var(--branco); transform: translateX(20px); }
.card-light { background: var(--branco); color: var(--azul-marinho); border: 1px solid var(--cinza-100); }
.card-dark { background: var(--azul-marinho); color: var(--branco); transform: translateX(40px); }

/* ----------------------------- SERVIÇOS ----------------------------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--branco);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: auto -40px -40px auto;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,196,.08), transparent 70%);
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,64,196,.25);
}
.service-card:hover::before { transform: scale(1.4); }
.icon-circle {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--azul-royal), var(--azul-marinho));
  color: var(--branco); display: grid; place-items: center;
  margin-bottom: 18px;
}
.icon-circle svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.15rem; color: var(--azul-marinho); }
.service-card p { color: var(--cinza-500); font-size: .92rem; }
.card-link {
  display: inline-block; margin-top: 4px;
  color: var(--azul-royal); font-weight: 700; font-size: .9rem;
  transition: gap .2s var(--ease);
}
.card-link:hover { letter-spacing: .02em; }

/* ----------------------------- DIFERENCIAIS ----------------------------- */
.section-dark .noise { z-index: 0; }
.section-dark .container { position: relative; z-index: 1; }

.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.diff-item {
  padding: 28px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.diff-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,210,77,.4);
}
.diff-num {
  font-size: 1.6rem; font-weight: 800; color: var(--amarelo);
  margin-bottom: 12px; letter-spacing: -.02em;
}
.diff-item h3 { color: var(--branco); }
.diff-item p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }

/* ----------------------------- PARCEIROS ----------------------------- */
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.partner-pill {
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  color: var(--azul-marinho);
  font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.partner-pill:hover {
  transform: translateY(-3px);
  color: var(--azul-royal);
  border-color: var(--azul-royal);
}

/* ----------------------------- DEPOIMENTOS ----------------------------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--branco);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-100);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--amarelo); font-size: 1.05rem; letter-spacing: 2px; }
.testimonial p { font-style: italic; color: var(--cinza-700); margin: 0; }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial footer strong { color: var(--azul-marinho); }
.testimonial footer span { font-size: .8rem; color: var(--cinza-500); }

/* ----------------------------- CONTATO ----------------------------- */
.section-cta .noise { z-index: 0; }
.section-cta .container { position: relative; z-index: 1; }
.contact-grid { gap: 50px; align-items: start; }
.contact-info h2 { color: var(--branco); }
.contact-info > p { color: rgba(255,255,255,.85); max-width: 480px; }

.contact-list { display: grid; gap: 16px; margin: 24px 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.ci {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.14);
  display: grid; place-items: center; color: var(--branco);
  flex-shrink: 0;
}
.ci svg { width: 20px; height: 20px; }
.ci-wa { background: var(--verde-wa); color: var(--branco); }
.contact-list strong { display: block; font-size: .8rem; opacity: .8; font-weight: 600; }
.contact-list a, .contact-list span { color: var(--branco); font-weight: 600; font-size: 1rem; }
.contact-list a:hover { color: var(--amarelo); }

.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center; color: var(--branco);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.contact-social a:hover { background: var(--amarelo); color: var(--azul-marinho); transform: translateY(-2px); }

/* Form */
.quote-form {
  background: var(--branco);
  color: var(--texto);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; gap: 16px;
}
.quote-form h3 { color: var(--azul-marinho); font-size: 1.4rem; margin: 0 0 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--cinza-700); }
.quote-form label.full { grid-column: 1 / -1; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: inherit;
  border: 1.5px solid var(--cinza-100);
  background: var(--offwhite);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .95rem;
  color: var(--texto);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--azul-royal);
  background: var(--branco);
}
.checkbox { display: flex !important; flex-direction: row !important; align-items: center; gap: 10px !important; font-weight: 500 !important; }
.checkbox input { width: auto !important; }
.form-feedback { font-size: .9rem; margin: 4px 0 0; min-height: 1.2em; }
.form-feedback.success { color: #1c9a4f; }
.form-feedback.error { color: #c0392b; }

/* ----------------------------- FAQ ----------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-list details[open] { border-color: var(--azul-royal); box-shadow: var(--shadow-sm); }
.faq-list summary {
  cursor: pointer; font-weight: 700; color: var(--azul-marinho);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--azul-royal);
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 12px 0 0; color: var(--cinza-700); font-size: .95rem; }

/* ----------------------------- FOOTER ----------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--azul-marinho) 0%, #060f2b 100%);
  color: rgba(255,255,255,.78);
  padding-top: 70px;
  position: relative; overflow: hidden;
}
.site-footer .noise { z-index: 0; }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p { margin-top: 18px; font-size: .9rem; max-width: 320px; }
.logo-tag.dark { background: var(--azul-royal); }
.site-footer h4 { color: var(--branco); margin-bottom: 16px; font-size: 1rem; }
.site-footer ul { display: grid; gap: 8px; font-size: .92rem; }
.site-footer a { transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--amarelo); }
.footer-contact li { font-size: .9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  font-size: .82rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }

/* ----------------------------- WHATSAPP FLOAT ----------------------------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--verde-wa); color: var(--branco);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

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

/* ----------------------------- RESPONSIVO ----------------------------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .card-blue, .card-dark { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--cinza-100); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--cinza-100); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; inset: 0 0 0 30%;
    background: var(--azul-marinho);
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { color: var(--branco); font-size: 1rem; padding: 12px 14px; display: block; }
  .site-header.scrolled .main-nav a { color: var(--branco); }
  .nav-toggle { display: block; z-index: 51; position: relative; }
  .btn-cta-header { display: none; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .hero { padding: 120px 0 60px; }
  .badge-1 { top: -10px; left: 5px; }
  .badge-2 { bottom: -5px; right: 5px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .stat:not(:last-child) { border-bottom: 1px solid var(--cinza-100); }
  .hero-cta .btn { width: 100%; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}
