:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --background: #f4f5f7;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
  --white: #ffffff;
}

/* DARK MODE */
[data-theme="dark"] {
  --background: #0f172a;
  --surface: #020617;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1e293b;
  --shadow-soft: 0 12px 36px rgba(0,0,0,0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout base */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.1s ease;
}

nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.25);
}

.btn-ghost {
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

/*    temas claro e escuro*/
.sun-icon {
  color: #facc15; /* amarelo sol */
  font-size: 1.1rem;
}

.moon-icon {
  color: #64748b; /* cinza elegante */
  font-size: 1.1rem;
}


/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-side {
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 36%, #f9fafb);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.8);
}

[data-theme="dark"] .hero-side {
  background: radial-gradient(circle at top left, #1e293b, #020617 65%);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Seções genéricas */

section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
}

/* Faixa de confiança */

.trust-band {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.trust-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-logos {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-logo-placeholder {
  width: 90px;
  height: 34px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  font-size: 0.7rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sobre */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  margin-top: 0.5rem;
}

.about-list li {
  font-size: 0.93rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}

.about-list li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.1rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #e5e7eb;
}

.about-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Serviços */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.94rem;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.service-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.service-text {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Diferenciais */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.1rem;
  font-size: 0.9rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.93rem;
}

.feature-text {
  color: var(--muted);
}

/* Atendimento SP */

.sp-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.sp-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.sp-pill {
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

[data-theme="dark"] .sp-pill {
  background: rgba(59, 130, 246, 0.15);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.25);
}

.sp-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.8);
  background: #e5e7eb;
}
[data-theme="dark"] .sp-map {
/*      border: 1px solid rgba(148, 163, 184, 0.15);*/
}

.sp-map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Depoimentos */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  font-size: 0.92rem;
}

.testimonial-quote {
  color: var(--muted);
  margin-bottom: 0.8rem;
  position: relative;
}

.testimonial-quote::before {
  content: "“";
  font-size: 2rem;
  color: rgba(37, 99, 235, 0.25);
  position: absolute;
  left: -0.3rem;
  top: -1.3rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA final */

.cta-section {
  padding: 2.75rem 0 3.25rem;
}

.cta-card {
  background: radial-gradient(circle at top left, #1d4ed8, #1e293b);
  border-radius: 26px;
  padding: 2rem 2rem 2.2rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.4), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.cta-text {
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
  color: rgba(226, 232, 240, 0.95);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-meta {
  font-size: 0.8rem;
  margin-top: 0.7rem;
  color: rgba(226, 232, 240, 0.85);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--background);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer-text {
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #6b7280;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social span {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: #4b5563;
}

/* WhatsApp flutuante */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Responsividade */

@media (max-width: 960px) {
  nav {
    display: none; /* simples: some o menu em telas menores */
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero-grid,
  .about-grid,
  .sp-card,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-side {
    order: -1;
  }

  .service-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-grid,
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    padding: 1.7rem 1.4rem 1.9rem;
  }
}


/*página resumo*/
/* ========================= */
/* Página Resumo / Características */
/* ========================= */

.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.page-hero-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.page-hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 38rem;
}

.page-hero-meta {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Card lateral do hero da página resumo */
.page-hero-aside {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.page-hero-aside-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-hero-aside-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* Seções da página */
.section-intro {
  max-width: 40rem;
  margin-bottom: 1.3rem;
}

.section-text {
  font-size: 0.96rem;
  color: var(--muted);
}

/* Lista com bullets bonitos */
.list {
  margin-top: 0.9rem;
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* Cards genéricos da página resumo */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
  font-size: 0.95rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
}

/* CTA final da página resumo */
.cta-final {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem 1.8rem 2.1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  margin-top: 2rem;
}

.cta-final h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.cta-final p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.4rem;
}

/* Responsividade específica da página resumo */
@media (max-width: 960px) {
  .page-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
