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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #08111f;
  color: white;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* ===========================
   TOPBAR
=========================== */
.topbar {
  background: #05111d;
  padding: 10px 0;
  font-size: 14px;
  color: #d9e3ef;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar i {
  color: #19d47b;
  margin-right: 8px;
}

/* ===========================
   NAVBAR
=========================== */
header {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: .35s;
}

header.scroll {
  top: 0;
  background: rgba(6, 16, 27, .96);
  backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .30);
  padding: 8px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 35px;
  background: rgba(10, 18, 32, .65);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
}

.logo i {
  font-size: 30px;
  color: #19d47b;
}

.logo-branco {
  color: white;
}

.logo-verde {
  color: #19d47b;
}

.menu {
  display: flex;
  list-style: none;
  gap: 45px;
}

.menu a {
  color: white;
  font-weight: 500;
  transition: .3s;
}

.menu a:hover {
  color: #19d47b;
}

/* Menu hamburguer */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.menu-mobile {
  display: none;
  background: rgba(10, 18, 32, .97);
  border-radius: 16px;
  padding: 20px 25px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.08);
}

.menu-mobile ul {
  list-style: none;
}

.menu-mobile ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.menu-mobile ul li:last-child {
  border-bottom: none;
}

.menu-mobile-link {
  color: white;
  font-weight: 500;
  font-size: 17px;
  transition: .3s;
}

.menu-mobile-link:hover {
  color: #19d47b;
}

.menu-mobile.active {
  display: block;
}

/* ===========================
   BOTÃO WHATSAPP
=========================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
  font-weight: 700;
  border-radius: 50px;
  transition: .35s;
  box-shadow: 0 12px 35px rgba(25, 212, 123, .30);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 80px;
  height: 100%;
  background: rgba(255, 255, 255, .25);
  transform: skewX(-25deg);
  transition: 1.2s;
}

.btn-whatsapp:hover::before {
  left: 250px;
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(25, 212, 123, .45);
}

.btn-whatsapp.btn-lg {
  padding: 20px 45px;
  font-size: 18px;
  border-radius: 60px;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .15);
  padding: 15px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  transition: .3s;
}

.btn-outline:hover {
  border-color: #19d47b;
  color: #19d47b;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  background:
    radial-gradient(circle at top right, #0b6a4d 0%, transparent 35%),
    radial-gradient(circle at bottom left, #143764 0%, transparent 40%),
    linear-gradient(135deg, #06101b, #0f1c33);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mini {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(25, 212, 123, .15);
  color: #66ffc0;
  border-radius: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero h1 span {
  color: #19d47b;
}

.hero p {
  font-size: 20px;
  line-height: 1.9;
  color: #c2cbd8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.microcopy span {
  padding: 10px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #c2cbd8;
  font-size: 14px;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}

.hero-stats .stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.hero-stats .stat strong {
  display: block;
  color: #19d47b;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stats .stat span {
  color: #c2cbd8;
  font-size: 14px;
}

.hero-image {
  position: relative;
  animation: fadeRight 1.2s ease;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .45);
}

.hero-badge {
  position: absolute;
  right: -16px;
  bottom: -16px;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(25, 212, 123, .35);
  text-align: center;
  font-weight: 700;
}

.hero-badge small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 600;
  letter-spacing: .05em;
}

.hero-badge strong {
  display: block;
  font-size: 16px;
  margin-top: 2px;
}

.hero-text {
  animation: fadeLeft 1s ease;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: none; }
}

/* ===========================
   TRUST BAR
=========================== */
.trust {
  background: #ffffff;
  padding: 50px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: #f6f8fb;
  border-radius: 18px;
  transition: .3s;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.trust-item i {
  font-size: 34px;
  color: #19d47b;
}

.trust-item h4 {
  color: #08111f;
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ===========================
   SECTION UTILS
=========================== */
.section-padding {
  padding: 120px 0;
  background: #ffffff;
}

.text-center-wrap {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #19d47b;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
}

.section-title {
  max-width: 850px;
  margin: auto;
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #19d47b;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title h2,
h2.section-title {
  font-size: 58px;
  line-height: 1.15;
  margin: 20px 0;
  color: #08111f;
}

.section-title p,
p.section-subtitle {
  font-size: 19px;
  color: #6d7b8b;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   SERVIÇOS — 12 CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .04);
  transition: .35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.service-card .media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .media img {
  transform: scale(1.06);
}

.service-card .icon-badge {
  position: absolute;
  left: 24px;
  bottom: -24px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(25, 212, 123, .35);
}

.service-card .body {
  padding: 40px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .body h3 {
  font-size: 21px;
  color: #08111f;
  margin-bottom: 12px;
}

.service-card .body p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-card ul li i {
  color: #19d47b;
  margin-top: 3px;
}

.guarantee-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #19d47b;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-primary-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  margin-top: auto;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(25, 212, 123, .25);
  text-align: center;
}

.btn-primary-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(25, 212, 123, .4);
}

/* ===========================
   ANTES / DEPOIS
=========================== */
.pain-solution {
  padding: 120px 0;
  background: #f5f7fb;
}

.pain-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare-card {
  padding: 45px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.compare-card.negative {
  border-top: 4px solid #e35d6a;
}

.compare-card.positive {
  border-top: 4px solid #19d47b;
}

.compare-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #08111f;
}

.compare-list {
  list-style: none;
}

.compare-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #64748b;
  line-height: 1.6;
}

.compare-list li i {
  flex: 0 0 20px;
  margin-top: 3px;
}

.compare-card.negative .compare-list i { color: #e35d6a; }
.compare-card.positive .compare-list i { color: #19d47b; }

/* ===========================
   DIFERENCIAIS
=========================== */
.diferenciais {
  padding: 120px 0;
  background: #f5f7fb;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.diferencial {
  background: white;
  padding: 40px;
  border-radius: 22px;
  text-align: center;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .04);
}

.diferencial:hover {
  transform: translateY(-10px);
}

.diferencial i {
  font-size: 48px;
  margin-bottom: 25px;
  color: #19d47b;
  display: block;
}

.diferencial h3 {
  margin-bottom: 15px;
  color: #08111f;
  font-size: 22px;
}

.diferencial p {
  color: #64748b;
  line-height: 1.8;
}

/* ===========================
   NÚMEROS
=========================== */
.numbers {
  padding: 110px 0;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.numbers h2 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 15px;
  font-weight: 800;
}

.numbers p {
  font-size: 18px;
}

/* ===========================
   COMO FUNCIONA
=========================== */
.process {
  padding: 120px 0;
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.step {
  position: relative;
  background: white;
  padding: 45px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  transition: .35s;
  border: 1px solid rgba(0, 0, 0, .04);
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: #19d47b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step i {
  font-size: 48px;
  margin: 25px 0;
  color: #19d47b;
  display: block;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #08111f;
}

.step p {
  color: #64748b;
  line-height: 1.8;
}

/* ===========================
   CTA FINAL
=========================== */
.cta-final {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #08111f, #10203a);
}

.cta-final h2 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.cta-final p {
  max-width: 700px;
  margin: 0 auto 45px;
  font-size: 20px;
  line-height: 1.9;
  color: #c6cfdb;
}

.cta-banner {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #06101b, #0c1e35);
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 50px);
  margin-bottom: 20px;
}

.cta-banner p {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.6);
}

/* ===========================
   REVIEWS / DEPOIMENTOS
=========================== */
.reviews {
  padding: 120px 0;
  background: #f5f7fb;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.review {
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .35s;
  border: 1px solid rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
}

.review:hover {
  transform: translateY(-10px);
}

.stars {
  font-size: 22px;
  color: #ffb400;
  margin-bottom: 20px;
}

.review p {
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #19d47b, #0fa96a);
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  color: #08111f;
  display: block;
}

.review-author small {
  color: #64748b;
  font-size: 13px;
}

/* ===========================
   FAQ — Accordion nativo
=========================== */
.faq {
  padding: 120px 0;
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.faq-intro h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #08111f;
  margin: 16px 0 20px;
}

.faq-intro p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: #08111f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  transition: color .25s;
}

.faq-btn:hover {
  color: #19d47b;
}

.faq-icon {
  flex-shrink: 0;
  color: #19d47b;
  transition: transform .3s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-body.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-body p {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}

/* ===========================
   SOBRE / ABOUT
=========================== */
.about {
  padding: 120px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 28px;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
  transition: transform .6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.service-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #e8fff4;
  color: #19d47b;
  font-weight: 700;
  border-radius: 30px;
  margin-bottom: 25px;
  font-size: 13px;
}

.about-content h2 {
  font-size: 52px;
  line-height: 1.15;
  color: #08111f;
  margin: 25px 0;
}

.about-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 25px;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #06101b;
  color: white;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-grid h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.footer-grid h2 span {
  color: #19d47b;
}

.footer-grid h3 {
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 12px;
  color: #b8c4d3;
}

.footer-grid p {
  line-height: 1.9;
  color: #b8c4d3;
}

.copyright {
  text-align: center;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #8fa1b7;
}

/* ===========================
   WHATSAPP FLUTUANTE
=========================== */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  color: white;
  z-index: 9999;
  box-shadow: 0 20px 45px rgba(37, 211, 102, .35);
  transition: .35s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
  70%  { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===========================
   BOTÃO TOPO
=========================== */
#topo {
  position: fixed;
  right: 30px;
  bottom: 120px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #08111f;
  color: white;
  cursor: pointer;
  font-size: 22px;
  display: none;
  z-index: 9998;
  transition: .3s;
  border: 1px solid rgba(255,255,255,.1);
}

#topo.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

#topo:hover {
  background: #19d47b;
}

/* ===========================
   BARRA FIXA MOBILE
=========================== */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  padding: 14px 16px;
  background: rgba(6, 16, 27, .95);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-sticky .btn-whatsapp {
  width: 100%;
  justify-content: center;
}

/* ===========================
   ANIMAÇÃO REVEAL
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
