/* =========================
   CONTAINER
========================= */

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

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: #0E1113;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #0E1113 0%, #0B0F12 100%);
  color: white;
}

.hero-proof {
  margin-top: 25px;
  font-size: 14px;
  color: #A0B3C0;
}

/* =========================
   RUPTURA
========================= */

.ruptura {
  background: #F2F4F6;
  padding: 140px 0;
}

.ruptura-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 100px;
  align-items: center;
}

.ruptura-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0F2F3A;
  margin-bottom: 20px;
}

.ruptura-left h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #0D0F10;
}

.ruptura-description {
  font-size: 18px;
  line-height: 1.7;
  color: #4F5A60;
}

.ruptura-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ruptura-item {
  font-size: 18px;
  padding-left: 24px;
  border-left: 3px solid #0F2F3A;
  color: #1A1F23;
}

/* =========================
   CORE JORNADA
========================= */

.core {
  background: #0B1116;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.core h2 {
  font-size: 36px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.section-subtitle {
  color: #A0B3C0;
  max-width: 600px;
  margin: 0 auto 40px;
}

.core-main {
  margin: 40px 0;
}

.core-main img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

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

.core-item {
  text-align: left;
}

.core-item h3 {
  color: #3A7C8F;
  margin-bottom: 8px;
}

.core-item p {
  color: #C6D4DD;
  font-size: 14px;
}

.core-highlight {
  color: #3A7C8F;
  font-size: 14px;
  margin-top: 20px;
}

.btn-core {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #3A7C8F;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.btn-core::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #3A7C8F;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.btn-core:hover::after {
  opacity: 1;
  transform: scaleX(1.1);
}
.btn-core::before {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-core:hover::before {
  transform: translateX(4px);
}

.servicos {
  background: #F5F7F9;
  padding: 100px 0;
  color: #111;
}

.servicos h2 {
  font-size: 34px;
  max-width: 700px;
  margin-bottom: 20px;
}

.servicos .section-subtitle {
  color: #5A6B75;
  max-width: 600px;
  margin-bottom: 60px;
}

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

.servico {
  display: block;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #E3E8EC;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

.servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.servico h3 {
  margin-bottom: 10px;
  color: #0F2F3A;
}

.servico p {
  color: #5A6B75;
  font-size: 14px;
}

/* Blip Partner */
.blip-badge {
  height: 22px;
  margin-top: 15px;
}
.prova {
  background: #0B1116;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.prova h2 {
  font-size: 34px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.prova .section-subtitle {
  color: #A0B3C0;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.prova-item {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.prova-item h3 {
  font-size: 32px;
  color: #3A7C8F;
  margin-bottom: 10px;
}

.prova-item p {
  font-size: 14px;
  color: #C6D4DD;
}

.cta-final {
  background: linear-gradient(135deg, #0B1116, #0F1B22);
  padding: 110px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  font-size: 38px;
  max-width: 750px;
  margin: 0 auto 20px;
}

.cta-final p {
  color: #A0B3C0;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* WHATSAPP MAIS FORTE */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
}

/* PROVA */
.cta-proof {
  margin-top: 40px; /* aumenta o respiro */
  line-height: 1.8;
}

.parceiros {
  background: #F5F7F9;
  padding: 100px 0;
  text-align: center;
}

.parceiros .section-label {
  color: #3A7C8F;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.parceiros .section-subtitle {
  color: #5A6B75;
  max-width: 600px;
  margin: 0 auto 50px;
}

.parceiros-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD PRINCIPAL (BLIP) */
.parceiro.destaque {
  background: #fff;
  padding: 35px 50px;
  border-radius: 12px;
  border: 1px solid #E3E8EC;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.parceiro.destaque:hover {
  transform: translateY(-5px);
}

/* LOGO */
.parceiro img {
  height: 40px;
  margin-bottom: 10px;
}

/* TEXTO */
.parceiro span {
  display: block;
  font-size: 14px;
  color: #5A6B75;
}

/* FUTUROS PARCEIROS */
.parceiro.coming {
  padding: 25px 30px;
  border: 1px dashed #C9D3DA;
  border-radius: 12px;
  color: #7A8B95;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.parceiro-box {
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #E3E8EC;
  display: inline-block;
}

.parceiro-box img {
  height: 34px;
  display: block;
}
.section-eyebrow {
  color: #3A7C8F;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.parceiros h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.resultados {
  background: #0B1116;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.resultados h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.resultados .section-subtitle {
  color: #A0B3C0;
  margin-bottom: 60px;
}

.resultados-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.resultado-card {
  background: #111A21;
  padding: 30px;
  border-radius: 12px;
  width: 260px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.resultado-card:hover {
  transform: translateY(-5px);
}

.resultado-card h3 {
  font-size: 40px;
  color: #3A7C8F;
  margin-bottom: 10px;
}

.resultado-card p {
  font-size: 14px;
  color: #C6D4DD;
}

.blip-partner {
  height: 70px; /* aumentamos mais um pouco */
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}
/* =========================
   FOOTER FINAL LIMPO
========================= */

.footer {
  background: #070D11;
  color: #C6D4DD;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #3A7C8F;
}

/* TEXTO */
.footer-text {
  font-size: 14px;
  color: #7F95A3;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 10px;
}

/* TÍTULOS */
.footer h4 {
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* LISTAS */
.footer ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #7F95A3;
}

/* LINKS */
.footer a {
  color: #C6D4DD;
  text-decoration: none;
}

.footer a:hover {
  color: #3A7C8F;
}

/* BLIP */
.footer-partner-inline {
  margin-top: 25px;
  max-width: 140px;
}

.footer-partner-inline img {
  width: 100%;
  opacity: 0.85;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 40px 0 20px;
}

/* BASE */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #5A6B75;
}

.hero-badge img {
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-visual img {
  max-width: 380px;
  width: 100%;
  opacity: 0.9;
}

section {
  padding: 100px 0;
}

/* =========================
   MENU MOBILE
========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .ruptura-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .core-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .core-items {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0E1113;
    padding: 20px 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}
