﻿* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #06d4e6;
  --primary-dark: #03a7b8;
  --dark-bg: #050b16;
  --dark-bg-2: #0a1224;
  --dark-bg-3: #0d152c;
  --light-bg: #f6f7fb;
  --white: #ffffff;
  --text-muted: #9aa2b5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }
main { display: block; }

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 11, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 9999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo-wrap img { height: 52px; width: auto; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.96rem;
  transition: 0.25s;
}

.nav-link:hover { color: var(--primary); }

.active-link { color: var(--primary) !important; font-weight: 700 !important; }

.nav-phone {
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
}

.hero,
.page-hero {
  padding: 140px 1.5rem 90px;
  background: radial-gradient(circle at top, var(--primary-dark), var(--dark-bg-2) 60%);
}

.page-hero { padding-bottom: 70px; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero .hero-inner { grid-template-columns: 1.2fr 1fr; }

.hero-kicker {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, #06d4e6, #79faff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  max-width: 540px;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1rem 0 0.6rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.6rem; }

.badge {
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
}

.hero-note { margin-top: 1rem; opacity: 0.75; font-size: 0.95rem; }

.hero-card {
  background: rgba(15, 23, 42, 0.95);
  padding: 1.6rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.55);
}

.hero-card h2 { font-size: 1.25rem; margin-bottom: 0.8rem; }

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
  opacity: 0.9;
}

.hero-card ul li::before { content: "- "; color: var(--primary); font-weight: 700; }

.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.8rem;
}

.breadcrumbs a { color: rgba(226, 232, 240, 0.9); text-decoration: none; }

.breadcrumbs span { margin: 0 0.35rem; }

.section {
  padding: 70px 1.5rem;
  background: var(--light-bg);
  color: #111827;
}

.section.dark {
  background: var(--dark-bg-3);
  color: var(--white);
}

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section h2 { font-size: 2.1rem; margin-bottom: 0.4rem; }

.section-sub { font-size: 1.05rem; color: var(--text-muted); }

.section.dark .section-sub { color: rgba(226, 232, 240, 0.75); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.service-card h3 { font-size: 1.18rem; color: #020617; }

.service-card p { font-size: 0.98rem; color: #4b5563; }

.section.dark .service-card { background: #0f172a; border-color: rgba(148, 163, 184, 0.4); }

.section.dark .service-card h3 { color: #f8fafc; }

.section.dark .service-card p { color: rgba(226, 232, 240, 0.85); }

.service-link {
  margin-top: 0.2rem;
  font-size: 0.96rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.section.dark .service-link { color: var(--primary); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.step {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }

.step p { font-size: 0.95rem; color: rgba(241, 245, 249, 0.9); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.feature {
  background: var(--white);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(6, 212, 230, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #02808f;
  font-weight: 700;
}

.feature p { font-size: 0.96rem; color: #4b5563; }

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.content-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.section.dark .content-card { background: #0f172a; border-color: rgba(148, 163, 184, 0.4); color: #f8fafc; }

.content-card h3 { margin-bottom: 0.6rem; }

.content-card p { color: #4b5563; }

.section.dark .content-card p { color: rgba(226, 232, 240, 0.85); }

.list-check { list-style: none; display: grid; gap: 0.6rem; margin-top: 0.6rem; }

.list-check li::before { content: "- "; color: var(--primary); font-weight: 700; }

.cta-band {
  margin-top: 2rem;
  background: rgba(6, 212, 230, 0.1);
  border: 1px solid rgba(6, 212, 230, 0.2);
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  text-align: center;
}

.section.dark .cta-band { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.08); }

.cta-band p { margin-bottom: 0.8rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary { background: var(--primary); color: #021018; }

.btn-secondary { background: #25D366; color: #ffffff; }

.btn-outline { border-color: rgba(255, 255, 255, 0.3); color: #ffffff; background: transparent; }

.btn-dark { background: #0f172a; color: #ffffff; }

.btn-whatsapp-hero {
  width: 100%;
  max-width: 360px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar { display: none; }

.testimonial {
  min-width: 320px;
  max-width: 320px;
  background: #050b16;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
}

.testimonial .stars {
  color: #facc15;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-comment {
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  color: rgba(248, 250, 252, 0.95);
}

.testimonial small { font-size: 0.9rem; color: rgba(148, 163, 184, 0.96); }

.faq-grid { display: grid; gap: 1rem; }

.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.6rem 1rem 0.9rem;
}

.section.dark .faq-item { background: #0f172a; border-color: rgba(148, 163, 184, 0.4); }

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.6rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p { color: #4b5563; margin-top: 0.4rem; }

.section.dark .faq-item p { color: rgba(226, 232, 240, 0.85); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.article-wrap { max-width: 980px; margin: 0 auto; }

.article {
  background: var(--white);
  color: #111827;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.article h2 { margin-top: 1.6rem; font-size: 1.6rem; }

.article h3 { margin-top: 1.2rem; font-size: 1.2rem; }

.article p { margin: 0.8rem 0; color: #374151; }

.article ul { margin: 0.8rem 0 0.8rem 1.2rem; color: #374151; }

.post-meta { color: #6b7280; font-size: 0.95rem; margin-bottom: 1.2rem; }

.toc {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0 1.6rem;
}

.toc h3 { margin: 0 0 0.6rem; font-size: 1rem; }

.toc ul { margin-left: 1.1rem; }

.cta-final { max-width: 620px; margin: 0 auto; text-align: center; font-size: 1rem; }

.footer {
  background: #020617;
  color: rgba(148, 163, 184, 0.95);
  padding: 40px 1.5rem 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.footer h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--white); }

.footer p,
.footer a { font-size: 0.9rem; color: rgba(148, 163, 184, 0.95); text-decoration: none; }

.footer a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg { width: 18px; height: 18px; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.9);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom .fb-left,
.footer-bottom .fb-center,
.footer-bottom .fb-right { flex: 1; min-width: 220px; }

.footer-bottom .fb-left { text-align: left; }

.footer-bottom .fb-center { text-align: center; }

.footer-bottom .fb-right { text-align: right; padding-right: 110px; }

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  z-index: 9998;
  animation: pulseWpp 2.1s infinite ease-in-out;
}

.whatsapp-float span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.whatsapp-float svg { width: 22px; height: 22px; }

@keyframes pulseWpp {
  0% { transform: scale(1); }
  50% { transform: scale(1.17); box-shadow: 0 0 26px rgba(37, 211, 102, 0.9); }
  100% { transform: scale(1); }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    right: 1.5rem;
    background: rgba(5, 11, 22, 0.97);
    padding: 1rem 1.4rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    gap: 0.9rem;
  }

  .menu-toggle { display: block; }

  .nav-phone { display: none; }

  /*
    Importante: em páginas internas o layout é definido com o seletor
    mais específico `.page-hero .hero-inner`. Sem repetir esse seletor aqui,
    o grid continuaria em 2 colunas em telas menores.
  */
  .hero-inner,
  .page-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .content-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: center; }

  .footer-bottom .fb-left,
  .footer-bottom .fb-center,
  .footer-bottom .fb-right {
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .hero,
  .page-hero {
    padding-top: 115px;
    padding-bottom: 70px;
  }

  .nav-container { padding: 0.85rem 1rem; }
  .logo-wrap img { height: 46px; }

  .hero h1 { font-size: 2.05rem; }
  .hero-subtitle { font-size: 1.02rem; }

  .breadcrumbs { font-size: 0.85rem; line-height: 1.35; }
  .breadcrumbs span { margin: 0 0.25rem; }

  /* CTAs mais “legíveis” no celular, sem mexer nas cores */
  .hero-cta { gap: 0.7rem; }
  .hero-cta .btn { width: 100%; }
  .btn { padding: 0.78rem 1.3rem; font-size: 0.98rem; }

  .badge { font-size: 0.84rem; }

  .hero-card { padding: 1.25rem 1.25rem; }
  .hero-card ul { font-size: 0.96rem; }

  /* Conteúdo (blog/artigos/serviços) com padding menor no celular */
  .content-card { padding: 1.25rem 1.25rem; }
  .article { padding: 1.5rem; }
  .article h2 { font-size: 1.45rem; }
  .article h3 { font-size: 1.12rem; }

  .footer-top { grid-template-columns: 1fr; }

  .whatsapp-float span { display: none; }

  .whatsapp-float {
    padding: 0.55rem;
    border-radius: 999px;
    right: 10px;
    bottom: 84px;
  }
}

.redirect-page {
  background: var(--dark-bg);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 1.5rem 90px;
}

.redirect-content {
  max-width: 560px;
  text-align: center;
  display: grid;
  gap: 1.2rem;
}

.redirect-note {
  color: rgba(226, 232, 240, 0.8);
}
