@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0a4d8c;        /* Azul Hidrodaxii */
  --primary-dark: #073a6b;
  --primary-light: #1e88e5;
  --primary-glow: #2196f3;
  --primary-fg: #ffffff;
  --accent: #16a34a;          /* VERDE no lugar do amarelo */
  --accent-dark: #15803d;
  --accent-light: #22c55e;
  --bg: #f7fafc;
  --card: #ffffff;
  --foreground: #0f172a;
  --muted: #475569;
  --muted-bg: #eef4fa;
  --border: #dbe7f1;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --success: #16a34a;
  --danger: #dc2626;
  --call-red: #dc2626;        /* Botão LIGAR vermelho */
  --call-red-dark: #b91c1c;
  --shadow: 0 1px 3px rgba(10,77,140,.08), 0 1px 2px rgba(10,77,140,.06);
  --shadow-lg: 0 10px 25px -5px rgba(10,77,140,.12), 0 4px 6px -4px rgba(10,77,140,.08);
  --shadow-xl: 0 20px 40px -8px rgba(10,77,140,.18), 0 8px 16px -6px rgba(10,77,140,.10);
  --gradient-primary: linear-gradient(135deg, #0a4d8c 0%, #1e88e5 100%);
  --gradient-call: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  --gradient-hero: linear-gradient(135deg, rgba(7,58,107,.92) 0%, rgba(10,77,140,.78) 50%, rgba(30,136,229,.55) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { color: #fff; }

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

/* Top Bar */
.top-bar { background: var(--primary-dark); color: #fff; padding: .5rem 1rem; font-size: .875rem; }
.top-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; }
.top-bar a, .top-bar span { color: #fff; }
.top-bar a { font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; transition: opacity .2s; }
.top-bar a:hover { opacity: .85; }
.top-bar .info { display: inline-flex; align-items: center; gap: .5rem; color: #fff; }

/* Header */
.header {
  background: var(--card);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--primary);
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; padding-bottom: .75rem; gap: 1rem; }
.header .logo img { height: 4.5rem; width: auto; max-width: 260px; object-fit: contain; }
.header .nav-desktop { display: none; gap: 1.5rem; font-size: .9rem; font-weight: 600; }
.header .nav-desktop a { color: var(--foreground); transition: color .2s; }
.header .nav-desktop a:hover { color: var(--primary); }
.btn-header { display: none; }

/* ============ BOTÕES MODERNOS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem; border-radius: .75rem;
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  letter-spacing: .01em;
}
.btn svg { flex-shrink: 0; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(100%); }

/* Botão LIGAR — VERMELHO com texto branco */
.btn-call {
  background: var(--gradient-call);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(220,38,38,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(220,38,38,.55), inset 0 1px 0 rgba(255,255,255,.25); filter: brightness(1.05); }
.btn-call:active { transform: translateY(0); }

/* Botão WHATSAPP — verde com ícone real */
.btn-whatsapp {
  background: var(--gradient-whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37,211,102,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.55); filter: brightness(1.05); }

/* Botão primário azul */
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 14px rgba(10,77,140,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,77,140,.5); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(22,163,74,.35); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; border-radius: .9rem; }

/* Pulse animation in critical CTAs */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 18px rgba(220,38,38,.4), 0 0 0 0 rgba(220,38,38,.5); }
  50%      { box-shadow: 0 6px 18px rgba(220,38,38,.4), 0 0 0 14px rgba(220,38,38,0); }
}
.btn-call.btn-lg { animation: pulseGlow 2.4s ease-out infinite; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero .container { position: relative; padding-top: 5rem; padding-bottom: 5rem; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent);
  border-radius: 9999px; padding: .45rem 1.1rem;
  font-size: .85rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem; box-shadow: 0 4px 12px rgba(22,163,74,.4);
}
.hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; }
.hero h1 span { color: #4ade80; display: block; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.95); margin-bottom: 1.5rem; max-width: 600px; }
.hero p strong { color: #4ade80; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-features span { display: inline-flex; align-items: center; gap: .4rem; color: #fff; font-size: .9rem; font-weight: 600; background: rgba(255,255,255,.12); padding: .4rem .8rem; border-radius: 9999px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }

/* Stats */
.stats { background: #fff; border-bottom: 1px solid var(--border); position: relative; z-index: 2; margin-top: -2rem; border-radius: 1rem 1rem 0 0; box-shadow: 0 -10px 30px rgba(0,0,0,.05); }
.stats .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; }
.stat .value { font-size: 1.875rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--primary); }
.stat .label { font-size: .85rem; color: var(--muted); margin-top: .25rem; font-weight: 500; }

/* Section headers */
section { scroll-margin-top: 80px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .tag { display: inline-block; color: var(--primary); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; padding: .3rem .9rem; background: var(--muted-bg); border-radius: 9999px; }
.section-header h2 { font-size: 1.875rem; font-weight: 800; color: var(--foreground); }
.section-header p { color: var(--muted); margin-top: .75rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* URGENCY BAR — BRANCA em fundo PRETO */
.urgency-bar {
  background: #000000;
  color: #ffffff;
  padding: .9rem 1rem;
  text-align: center;
  font-weight: 600; font-size: .95rem;
  border-bottom: 2px solid var(--call-red);
}
.urgency-bar strong { color: #ffffff; font-weight: 800; }
.urgency-bar a {
  color: #ffffff; font-weight: 800; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: var(--call-red);
}
.urgency-bar a:hover { color: #fecaca; }

/* Services */
.services { padding: 4rem 0; background: var(--bg); }
.services-grid { display: grid; gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-lg); transition: all .3s;
  border: 1px solid var(--border);
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: var(--primary-light); }
.service-card .img-wrap { position: relative; height: 12rem; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .img-wrap .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,58,107,.85), transparent 70%); }
.service-card .img-wrap h3 { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; color: #fff; font-weight: 800; font-size: 1.1rem; }
.service-card .content { padding: 1.25rem; }
.service-card .content p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.service-card .content a { display: inline-flex; align-items: center; gap: .4rem; color: var(--primary); font-weight: 700; font-size: .9rem; margin-top: 1rem; transition: gap .2s; }
.service-card .content a:hover { gap: .75rem; color: var(--primary-light); }

/* PROCESS */
.process { padding: 4rem 0; background: #fff; }
.process-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.process-step { background: var(--muted-bg); border-radius: 1rem; padding: 1.75rem; position: relative; border-left: 4px solid var(--primary); transition: all .3s; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-step .num { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--gradient-primary); color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(10,77,140,.3); }
.process-step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; color: var(--foreground); }
.process-step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* WHY US */
.whyus { padding: 4rem 0; background: var(--bg); }
.whyus-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.whyus-card { background: #fff; border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow); transition: all .3s; border-top: 4px solid var(--primary); }
.whyus-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.whyus-card .icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: .75rem; background: var(--muted-bg); color: var(--primary); margin-bottom: 1rem; font-size: 1.6rem; }
.whyus-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; color: var(--foreground); }
.whyus-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* CAUSES */
.causes { padding: 4rem 0; background: #fff; }
.causes-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.causes-col { background: var(--muted-bg); border-radius: 1rem; padding: 2rem; }
.causes-col.danger { background: #fef2f2; border: 1px solid #fecaca; }
.causes-col.tips { background: #f0fdf4; border: 1px solid #bbf7d0; }
.causes-col h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; color: var(--foreground); }
.causes-col.danger h3 { color: var(--danger); }
.causes-col.tips h3 { color: var(--success); }
.causes-col ul { display: flex; flex-direction: column; gap: .75rem; }
.causes-col li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--foreground); line-height: 1.5; }
.causes-col li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.causes-col.danger li::before { content: "⚠"; color: var(--danger); }

/* ============ NOSSO COMPROMISSO (substitui PREÇOS) ============ */
.commitment { padding: 4rem 0; background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.commitment-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; }
.commitment-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  transition: transform .3s ease, box-shadow .3s ease;
}
.commitment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.commitment-card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: var(--accent-dark); margin-bottom: 1rem;
}
.commitment-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; color: var(--foreground); }
.commitment-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

.commitment-cta {
  margin-top: 2.5rem;
  background: var(--gradient-primary); color: #fff;
  border-radius: 1.25rem; padding: 2rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.commitment-cta h3 { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; }
.commitment-cta p { color: rgba(255,255,255,.95); margin-bottom: 1.5rem; }
.commitment-cta .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* COMPARISON */
.comparison { padding: 4rem 0; background: #fff; }
.comparison-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.comparison-col { background: #fff; border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow); border: 2px solid var(--border); }
.comparison-col.us { border-color: var(--primary); background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%); position: relative; }
.comparison-col.us::before { content: "RECOMENDADO"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .7rem; font-weight: 800; padding: .25rem .75rem; border-radius: 9999px; letter-spacing: .1em; }
.comparison-col h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; text-align: center; color: var(--foreground); }
.comparison-col.us h3 { color: var(--primary); }
.comparison-col ul { display: flex; flex-direction: column; gap: .6rem; }
.comparison-col li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--foreground); }
.comparison-col.us li::before { content: "✓"; color: var(--success); font-weight: 800; flex-shrink: 0; }
.comparison-col.them li::before { content: "✗"; color: var(--danger); font-weight: 800; flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials { padding: 4rem 0; background: var(--bg); }
.testimonials-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.testimonial { background: #fff; border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .3s ease, box-shadow .3s ease; }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial .text { color: var(--foreground); font-style: italic; margin-bottom: 1rem; line-height: 1.65; font-size: .95rem; }
.testimonial .author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial .avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.testimonial .name { font-weight: 700; color: var(--foreground); font-size: .95rem; }
.testimonial .city { font-size: .8rem; color: var(--muted); }

/* About */
.about { padding: 4rem 0; background: #fff; }
.about-grid { display: grid; gap: 3rem; align-items: center; }
.about .tag { display: inline-block; color: var(--primary); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; padding: .3rem .9rem; background: var(--muted-bg); border-radius: 9999px; }
.about h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--foreground); }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.diff-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.diff-item { display: flex; align-items: center; gap: .75rem; padding: .85rem; border-radius: .6rem; background: var(--muted-bg); border-left: 3px solid var(--primary); }
.diff-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-weight: 800; }
.diff-item span { font-weight: 600; font-size: .9rem; color: var(--foreground); }
.about-img { position: relative; }
.about-img img {
  border-radius: 1rem; box-shadow: var(--shadow-xl);
  width: 100%; height: 100%;
  object-fit: cover; min-height: 320px;
  background: var(--primary-dark);
}
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gradient-primary); color: #fff; border-radius: 1rem;
  padding: 1.5rem; box-shadow: var(--shadow-xl);
}
.about-badge .num { font-size: 2rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: #fff; }
.about-badge .txt { font-size: .85rem; font-weight: 600; opacity: .95; color: #fff; }

/* GUARANTEE */
.guarantee { padding: 3.5rem 0; background: var(--gradient-primary); color: #fff; text-align: center; }
.guarantee h2 { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.guarantee p { color: rgba(255,255,255,.95); max-width: 700px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.guarantee .seal { display: inline-flex; align-items: center; justify-content: center; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(255,255,255,.15); border: 3px solid #fff; margin-bottom: 1rem; font-size: 2rem; }

/* Segments */
.segments { padding: 4rem 0; background: var(--primary-dark); color: #fff; text-align: center; }
.segments h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.segments > .container > p { color: rgba(255,255,255,.92); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.segments-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.segments-list span {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 9999px; padding: .55rem 1.25rem; font-size: .9rem; font-weight: 600; color: #fff;
  transition: all .2s;
}
.segments-list span:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* MAP */
.map-section { padding: 4rem 0; background: #fff; }
.map-wrapper {
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-cta {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2rem;
}

/* FAQ */
.faq { padding: 4rem 0; background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: .75rem; overflow: hidden; box-shadow: var(--shadow); transition: border-color .2s; }
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: 1rem; color: var(--foreground); cursor: pointer;
  text-align: left; font-family: 'Inter', sans-serif;
}
.faq-question span { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--primary); }
.faq-item.active .faq-question span { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--muted); line-height: 1.7; font-size: .95rem; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--muted); }
.faq-answer strong { color: var(--foreground); }

/* CONTACT FORM */
.contact-section { padding: 4rem 0; background: #fff; }
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; color: var(--foreground); }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--muted-bg); border-radius: .6rem; }
.contact-info-item .icon { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .lbl { font-size: .8rem; color: var(--muted); font-weight: 600; }
.contact-info-item .val { font-size: 1rem; font-weight: 700; color: var(--foreground); }
.contact-info-item a { color: var(--foreground); }
.contact-form { background: var(--muted-bg); border-radius: 1rem; padding: 2rem; }
.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--foreground); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--foreground); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: .5rem; font-size: .95rem; font-family: inherit;
  background: #fff; color: var(--foreground); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,77,140,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; }

/* CTA */
.cta { padding: 4rem 0; background: var(--gradient-primary); text-align: center; color: #fff; }
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.cta p { color: rgba(255,255,255,.95); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }

/* Footer */
.footer { background: #0a0e1a; color: rgba(255,255,255,.75); padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer .logo img { height: 4.5rem; width: auto; max-width: 260px; margin-bottom: 1rem; object-fit: contain; }
.footer p, .footer li { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.75); }
.footer h4 { color: #fff; font-weight: 800; margin-bottom: 1rem; font-size: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer ul a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer ul a:hover { color: var(--accent-light); }
.footer .contact-item { display: flex; align-items: center; gap: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.5rem 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.6); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--whatsapp); color: #fff; border-radius: 50%;
  width: 3.75rem; height: 3.75rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.55); transition: all .3s;
  animation: bounce 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: var(--whatsapp-dark); }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive */
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .cta-buttons { flex-direction: row; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .whyus-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .causes-grid, .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .header .nav-desktop { display: flex; }
  .btn-header { display: inline-flex; }
  .nav-toggle { display: none !important; }
  .hero .container { padding-top: 7rem; padding-bottom: 7rem; }
  .hero h1 { font-size: 3.4rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .commitment-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header h2, .about h2, .segments h2, .cta h2, .guarantee h2 { font-size: 2.25rem; }
  .map-wrapper iframe { height: 480px; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .whyus-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Modal de Localização */
.location-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.location-modal.active { opacity: 1; visibility: visible; }
.location-content {
  background: #fff; border-radius: 1.5rem; max-width: 450px; width: 100%;
  padding: 2.5rem 2rem; text-align: center; position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
  transform: translateY(20px); transition: transform .3s ease;
}
.location-modal.active .location-content { transform: translateY(0); }
.location-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.75rem; cursor: pointer; color: #64748b; line-height: 1; }
.location-logo { height: 4rem; margin: 0 auto 1.5rem; object-fit: contain; }
.location-content h2 { color: var(--primary); font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; text-transform: uppercase; }
.location-content h3 { color: var(--accent); font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
.location-content p { color: #475569; font-size: .95rem; margin-bottom: 2rem; line-height: 1.5; }
.location-buttons { display: flex; flex-direction: column; gap: .75rem; }
.btn-location { background: var(--primary); color: #fff; padding: .9rem; }
.btn-location:hover { background: var(--primary-dark); }

/* ===== Hamburger + Mobile Menu ===== */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border: 0; background: transparent;
  cursor: pointer; margin-left: auto; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 3px; background: var(--primary);
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 88%; max-width: 360px;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,.2);
  padding: 5.5rem 1.5rem 2rem; z-index: 9000;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(100%); transition: transform .35s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: .9rem 1rem; font-weight: 600; font-size: 1rem;
  color: var(--foreground); border-bottom: 1px solid #f1f5f9; border-radius: .5rem;
  transition: background .2s, color .2s;
}
.mobile-menu a:hover, .mobile-menu a:active { background: #f0fdf4; color: var(--accent); }
.mobile-menu-cta {
  margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem;
}
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* Header — garantir que mobile não corte botão */
.header .container { flex-wrap: nowrap; }
.header .logo img { max-width: 200px; height: 3.4rem; }
@media (min-width: 480px) {
  .header .logo img { max-width: 240px; height: 4rem; }
}

/* ===== Mapa em grid com bairros à direita ===== */
.map-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .map-grid { grid-template-columns: 1.4fr 1fr; align-items: stretch; }
}
.map-bairros {
  background: linear-gradient(160deg, #0a1428 0%, #122a52 100%);
  color: #fff; border-radius: 1rem; padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.map-bairros h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: .5rem; color: #fff; }
.map-bairros-sub { font-size: .9rem; opacity: .85; margin-bottom: 1.25rem; }
.bairros-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
}
.bairros-list li {
  position: relative; padding: .5rem .75rem .5rem 1.6rem;
  background: rgba(255,255,255,.06); border-radius: .5rem;
  font-size: .88rem; font-weight: 500;
  border-left: 3px solid var(--accent);
}
.bairros-list li::before {
  content: "✓"; position: absolute; left: .5rem; top: 50%;
  transform: translateY(-50%); color: var(--accent); font-weight: 800;
}
.map-cidades {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 1rem;
  font-size: .85rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
}
.map-cidades strong { display: block; width: 100%; margin-bottom: .35rem; opacity: .9; }
.map-cidades span {
  background: var(--accent); color: #fff; padding: .25rem .65rem;
  border-radius: 999px; font-size: .78rem; font-weight: 600;
}

/* ===== Subpáginas: hero, breadcrumb, layout com sidebar ===== */
.page-hero { background: linear-gradient(135deg, #0a1428 0%, #0a4d8c 100%); color: #fff; padding: 3rem 0 2.5rem; }
.page-hero-blog { background: linear-gradient(135deg, #0a4d8c 0%, #16a34a 100%); }
.page-hero h1 { font-size: 1.85rem; font-weight: 800; margin: .75rem 0 1rem; line-height: 1.2; }
@media (min-width: 768px) { .page-hero h1 { font-size: 2.6rem; } }
.page-hero .page-lead { font-size: 1.05rem; opacity: .95; max-width: 780px; line-height: 1.6; }
.page-hero .page-lead a { color: #ffe066; text-decoration: underline; }
.crumb { font-size: .85rem; opacity: .85; margin-bottom: .5rem; }
.crumb a { color: #fff; text-decoration: underline; }
.page-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.post-tag { display: inline-block; background: rgba(255,255,255,.18); padding: .35rem .85rem; border-radius: 999px; font-size: .8rem; font-weight: 700; }

.content-layout { padding: 2.5rem 0 3rem; background: #f8fafc; }
.content-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .content-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 2.5rem; } }
.content-main { background: #fff; border-radius: 1rem; padding: 1.75rem; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
@media (min-width: 768px) { .content-main { padding: 2.5rem; } }
.content-main h2 { font-size: 1.6rem; font-weight: 800; color: #0a1428; margin: 2rem 0 1rem; }
.content-main h3 { font-size: 1.2rem; font-weight: 700; color: #0a4d8c; margin: 1.5rem 0 .6rem; }
.content-main p, .content-main li { font-size: 1rem; line-height: 1.7; color: #334155; }
.content-main ul, .content-main ol { margin: .5rem 0 1rem 1.25rem; }
.content-main li { margin-bottom: .4rem; }
.content-main a { color: #0a4d8c; text-decoration: underline; font-weight: 600; }
.content-main a:hover { color: #16a34a; }
.content-section { scroll-margin-top: 90px; }

.toc { background: #f0fdf4; border-left: 4px solid #16a34a; border-radius: .75rem; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc h3 { margin-top: 0; color: #16a34a; }
.toc ol { margin: .5rem 0 0 1.25rem; }
.toc a { text-decoration: none; }

.faq-item { background: #f8fafc; border-radius: .5rem; padding: .85rem 1.1rem; margin-bottom: .6rem; border: 1px solid #e2e8f0; }
.faq-item summary { cursor: pointer; font-weight: 700; color: #0a1428; }
.faq-a { padding-top: .6rem; color: #475569; }

.content-cta { background: linear-gradient(135deg, #0a1428, #0a4d8c); color: #fff; border-radius: 1rem; padding: 2rem; margin-top: 2.5rem; text-align: center; }
.content-cta h3 { color: #fff; font-size: 1.35rem; margin-bottom: 1rem; }
.content-cta .page-cta { justify-content: center; }

.comp-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .92rem; }
.comp-table th, .comp-table td { border: 1px solid #e2e8f0; padding: .65rem .8rem; text-align: left; }
.comp-table th { background: #0a4d8c; color: #fff; }
.comp-table tr:nth-child(even) td { background: #f8fafc; }

/* ===== Sidebar Sticky Direita ===== */
.sticky-sidebar { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .sticky-sidebar { position: sticky; top: 90px; align-self: start; max-height: calc(100vh - 100px); overflow-y: auto; } }
.side-card { background: #fff; border-radius: .85rem; padding: 1.25rem; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.side-card h3 { font-size: 1rem; font-weight: 800; color: #0a1428; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid #16a34a; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li { padding: .45rem 0; border-bottom: 1px solid #f1f5f9; font-size: .9rem; }
.side-list li:last-child { border-bottom: 0; }
.side-list a { color: #334155; text-decoration: none; font-weight: 500; }
.side-list a:hover { color: #16a34a; }
.side-card-cta { background: linear-gradient(135deg, #0a1428, #0a4d8c); color: #fff; }
.side-card-cta h3 { color: #fff; border-bottom-color: rgba(255,255,255,.25); }
.side-card-cta p { font-size: .85rem; opacity: .85; margin-bottom: .85rem; }
.side-card-cta .btn { width: 100%; justify-content: center; margin-bottom: .5rem; }

/* ===== Cards de serviços e blog ===== */
.srv-grid, .blog-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .srv-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.srv-card, .blog-card { display: block; background: #f8fafc; padding: 1.5rem; border-radius: .85rem; border: 1px solid #e2e8f0; text-decoration: none !important; transition: transform .2s, box-shadow .2s; }
.srv-card:hover, .blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,.08); border-color: #16a34a; }
.srv-card h3, .blog-card h3 { color: #0a1428; font-size: 1.1rem; margin-bottom: .5rem; }
.srv-card p, .blog-card p { color: #475569; font-size: .9rem; margin-bottom: .85rem; }
.srv-link { color: #16a34a; font-weight: 700; font-size: .9rem; }
.blog-card-tag { display: inline-block; background: #16a34a; color: #fff; padding: .2rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 700; margin-bottom: .5rem; }

.bairros-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin: 1rem 0; }
@media (min-width: 640px) { .bairros-grid { grid-template-columns: repeat(3, 1fr); } }
.bairros-grid span { background: #f0fdf4; border-left: 3px solid #16a34a; padding: .5rem .75rem; border-radius: .35rem; font-weight: 600; font-size: .9rem; color: #0a1428; }

.related-list { list-style: none; padding: 0; }
.related-list li { padding: .65rem 0; border-bottom: 1px solid #e2e8f0; }
.related-list a { color: #0a4d8c; font-weight: 600; }
