:root {
  --bg-main: #ffffff;
  --bg-light: #f5f7fa;
  --bg-card: #ffffff;
  --blue: #0047ab;
  --blue-dark: #003a8c;

  --text-main: #1a1a1a;   /* 🔥 texto padrão escuro */
  --text-muted: #555555; /* 🔥 texto secundário */

  --border-light: #e3e7ee;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
}


/* HERO */
.hero {
  min-height: 100vh;
  background-image: url("../assets/WhatsApp Image 2026-01-09 at 19.55.58.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  padding-top: 18rem; /* 👈 ISSO DESCE O CONTEÚDO */
}
.hero-inner,
.section,
.cta,
.authority-container,
.method-container {
  max-width: 100%;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-logo img {
  max-width: 160px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--blue);
}

.hero-content p {
  margin: 1.5rem 0 2.5rem;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-content {
  flex: 1;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 ISSO resolve */
}


.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}



.hero-content {
  grid-column: 2;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  grid-column: 1;
}

.hero {
  color: #ffffff;
}

.hero-content p {
  color: var(--text-muted);
}

.hero h1,
.hero p,
.hero span {
  color: #ffffff;
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section.dark {
  background: var(--bg-light);
}

.section h2 span {
  color: var(--blue);
}

.subtitle {
  color: var(--text-muted);
  margin-top: 1rem;
}

/* RESULTS & TESTIMONIALS */
.results-grid.small {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 2x2 no desktop */
  gap: 1.5rem;
  margin: 2.5rem 0;
}


.result-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.result-card img {
  width: 100%;
  height: auto;          /* 🔑 imagem respeita o tamanho real */
  object-fit: contain;  /* 🔑 NUNCA corta */
  display: block;
  background: #000;     /* opcional: evita fundo estranho */
}



/* PROFILES */
.profiles,
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.profile-card,
.plan-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  text-align: left;
}

.profile-card h3,
.plan-card h3 {
  margin-bottom: 1rem;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--border-light);
}

/* TABS */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 3.5rem;
}

.tab {
  padding: .75rem 1.8rem;
  border-radius: 999px;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  background: var(--blue);
  color: white;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* CARD */
.plan-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.plan-card.highlight {
  border: 2px solid var(--blue);
  transform: translateY(-8px);
}

.plan-card.premium {
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  border: 2px solid var(--blue);
}

.plan-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* PREÇOS */
.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .95rem;
}

.price-list li span {
  text-align: right;
}

.price-list small {
  font-size: .8rem;
  color: var(--text-muted);
}

/* BADGE */
.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: .75rem;
  font-weight: 600;
}

.hidden {
  display: none;
}


/* CTA */
.cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  text-align: center;
  padding: 4.5rem 2rem;
  color: white;
}

.cta p {
  opacity: 0.9;
}

/* AUTHORITY */
.authority-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.authority-image {
  height: 400px;
  background: var(--bg-light);
  border-radius: 18px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: .95rem 1.9rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
}

.btn.primary {
  background: var(--blue);
  color: white;
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--blue);
  color: white;
}

.btn.center {
  margin-top: 2rem;
}

.btn.large {
  font-size: 1.1rem;
}

/* LEGAL */
.legal {
  display: block;
  margin: 1.5rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner,
  .authority-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo {
    margin-bottom: 2rem;
  }
}

/* FEEDBACK WHATSAPP */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.feedback-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feedback-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* AUTORIDADE */
.authority {
  background: linear-gradient(
    135deg,
    #f5f9ff,
    #ffffff
  );
}

.authority-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* IMAGEM */
.authority-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* CARD */
.authority-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.authority-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.authority-card h2 span {
  color: #0047ab;
}

.authority-desc {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#final {
  scroll-margin-top: 80px;
}

/* LISTA */
.authority-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.authority-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.authority-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0047ab;
  font-weight: bold;
}

@media (max-width: 900px) {
  .authority-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .authority-image img {
    margin: 0 auto;
  }

  .authority-card {
    padding: 2.5rem;
  }

  .authority-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .results-grid.small {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .results-grid.small {
    grid-template-columns: 1fr;
  }
}

/* MÉTODO */
.method-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* CARDS */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #0047ab;
}

.feature-card p {
  color: #555;
  line-height: 1.5;
}

/* IMAGEM */
.method-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .method-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .method-image img {
    margin-top: 2.5rem;
  }
}
/* CTA MÉTODO */
.method-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-primary {
  background: #0047ab; /* azul cobalto */
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0,71,171,0.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary:hover {
  background: #003a91;
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0,71,171,0.45);
}
@media (max-width: 600px) {
  .btn-primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 1.1rem 0;
  }
}
.section h2 span {
  color: #0b3c8c;
}

.hidden {
  display: none;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab {
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #1f4cff;
  background: transparent;
  color: #1f4cff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  background: #1f4cff;
  color: #fff;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
    padding-top: 12rem; /* menos espaço no mobile */
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media (max-width: 600px) {

  .hero {
    padding-top: 10rem; /* ajusta o respiro inicial */
  }

  .hero-content h1 {
    font-size: 2.1rem;   /* 🔥 reduz sem perder impacto */
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 0.5rem;   /* 🔥 evita texto colado na borda */
  }

  .hero-buttons {
    flex-direction: column; /* 🔥 empilha botões */
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {

  .hero-content {
    align-items: flex-start;   /* 🔥 puxa tudo pra esquerda */
    text-align: left;
    padding: 0 1.25rem;        /* respiro lateral */
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: row;       /* 🔥 mantém lado a lado */
    gap: 0.75rem;
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1;                   /* botões equilibrados */
    text-align: center;
  }
}
/* ===== AJUSTE HERO MOBILE ===== */
@media (max-width: 768px) {

  .hero {
    padding-top: 6rem;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 1.5rem;
  }

  .hero-logo {
    margin-bottom: 2rem;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
