/* --------- Base --------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #1b1b1b;
  color: #ffffff;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section.dark {
  background: linear-gradient(to bottom, #121212 0%, #1b1b1b 100%) /* degradê escuro */
  color: #ffffff;
}
.section.padrao.dark {
  background: linear-gradient(to bottom, #121212 0%, #1b1b1b 100%);
  color: #ffffff;
}
.section.blue {
  background: linear-gradient(45deg, #488fa8, #55c1d4);
  color: #ffffff;
}
.center {
  text-align: center !important;
}

/* AZUL PARADISICO DA FABI */
.blue-text {
  color: #55c1d4;
}

.bluegrad-text {
  background: linear-gradient(90deg, #43a2b3, #66c9dd, #2f6caa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: bold;
}
.blue2-text {
  color: #2f6caa;
}

.faixa-marquee {
  background: linear-gradient(to right, #55c1d4, #2f6caa);
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}

.marquee-conteudo {
  display: inline-block;
  padding-left: 100%;
  animation: correrTexto 25s linear infinite;
}

.marquee-conteudo span {
  display: inline-block;
  margin-right: 60px;
  font-weight: bold;
  color: white;
  font-size: 1rem;
  letter-spacing: 1px;
}

@keyframes correrTexto {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


/* --------- BLOQUINHOS SIMPLES DA FABI --------- */
.bloco-simples {
  background-color: #ffffff;
  color: #111;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* --------- PILOTAGEM E LIBERDADE --------- */
.imagem-liberdade-final {
  margin-top: 32px;
  text-align: center;
}

.imagem-liberdade-final img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

/* --------- MEU HERO --------- */
.hero.split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 100px 60px;
  background-color: #000000;
}
.hero-text {
  flex: 1 1 50%;
  max-width: 700px;
  text-align: left;
}
.hero-image {
  flex: 1 1 40%;
  text-align: right;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Imagem maior apenas no desktop */
@media (min-width: 1024px) {
  .hero-image img {
    width: 520px;
    max-width: 100%;
    display: block;
  }
}


/* --------- Estilo visual --------- */
.hero-title {
  font-size: 2.8rem;
  line-height: 1.3;
}
.gradient-text {
  background: linear-gradient(90deg, #55c1d4, #66c9dd, #2f6caa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.btn {
  display: inline-block;
  background: linear-gradient(to right, #55c1d4, #2f6caa);
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px #55c1d4, 0 0 5px #55c1d4, 0 0 5px #55c1d4;
}
.btn:hover {
  box-shadow: 0 0 12px #8ae5f1, 0 0 25px #8ae5f1, 0 0 35px #8ae5f1;
  background-color: #8ae5f1;
  color: #1f578f;
}

.quebra-objecao {
    font-size: 0.85rem;
    color: #111;
    line-height: 1.5;
    max-width: 200px;
    margin: -8px auto 24px;
    padding: 0 12px;
    text-align: center;
}

/* --------- SeÃ§Ãµes e Cards --------- */
.section-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.features {
  list-style: none;
  padding: 0;
}
.features li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.section h2, .section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.light .card {
  background-color: #ffffff;
  color: #1b1b1b;
  border: 1px solid #ddd;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}
.card h4 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  margin: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}
.light .card p {
  color: #111;
}

/* --------- GRID PADRÃO DE IAs --------- */
.ia-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 72px;  
  column-gap: 40px;
  justify-content: center;
  margin-top: 72px;
}

/* --------- CARD COM IMAGEM SOBREPOSTA --------- */
.card-sobreposto {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 20px 20px;
  position: relative;
  width: 300px;
  text-align: center;
  transition: 0.3s ease;
}

.card-sobreposto:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.imagem-sobreposta {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 105px;
  height: 105px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.imagem-sobreposta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conteudo-card h4 {
  margin-top: 40px;
  margin-bottom: 2px;
  font-size: 1.1rem;
  color: #ffffff;
}

.conteudo-card p {
  margin: 0px;
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.4;
}


/* --------- Cores e rodapÃ© --------- */
.light {
  background-color: #f4f4f4;
  color: #111;
}
footer {
  background-color: #000;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #ccc;
}

/* --------- Novo padrÃ£o de seÃ§Ãµes --------- */
.section.padrao h2,
.section.padrao h3,
.section.padrao p,
.section.padrao .section-title,
.section.padrao .section-description,
.section.padrao .features {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* --------- SEÇÃO SOBRE FABI ROSANT --------- */

.sobre-mim {
  padding: 80px 20px;
  background-color: #0f0f0f;
}

.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 20px;
}

.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.sobre-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 16px;
}

.sobre-imagens {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-vertical img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.img-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-grid {
    flex-direction: column;
  }

  .img-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-texto {
    order: 2;
  }

  .sobre-imagens {
    order: 1;
  }
}

/* --------- FAQ - Dúvidas Frequentes --------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-toggle {
  background: none;
  border: none;
  color: #fff;
  padding: 20px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #73e0f4;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.faq-question {
  flex: 1;
  color: #ffffff;
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}


/* --------- SEÇÃO INVESTIMENTO --------- */
.section.investimento {
  background-color: transparent;
  padding: 0;
  overflow-x: visible;
}

.section.investimento-container {
  background-color: #111;
  padding: 60px 32px; /* Aumentado o padding lateral */
}

.investimento-box {
  display: flex;
  flex-wrap: nowrap;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.investimento-col {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ESQUERDA - Fundo azul degradê */
.investimento-col.esquerda {
  background: linear-gradient(to bottom, #1598B7, #55c1d4);
  color: white;
  align-items: flex-start;
  position: relative;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.investimento-col.esquerda h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}

.mockup-bonus {
  width: 140%;
  max-width: none;
  margin: 0 0 10px;
  transform: translateX(-15%);
}

.bonus-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 1rem;
}

.bonus-lista li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.9rem;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bonus-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.bonus-lista .preco {
  background-color: red;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  font-size: 0.8rem;
  text-decoration: line-through; 
}

.valor-total {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 24px;
  text-align: left;
}

/* DIREITA - Fundo claro */
.investimento-col.direita {
  background-color: #f4f4f4;
  text-align: center;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.logo-investimento {
  height: 60px;
  margin: 0 auto 20px;
}

.parcelas {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
}

.preco-final {
  font-size: 3rem;
  font-weight: bold;
  color: #2f6caa;
  margin: 4px 0 8px;
}

.preco-final span {
  font-size: 3.5rem;
}

.avista {
  font-size: 1.55rem;
  color: #333;
  margin-top: 12px;
  margin-bottom: 24px;
}

.garantia-img {
  width: 250px;
  margin: 16px auto 0;
  display: block;
}

/* --------- RESPONSIVO INVESTIMENTO --------- */
@media (max-width: 768px) {
  .investimento-box {
    flex-direction: column;
    border-radius: 24px;
  }

  .investimento-col {
    padding: 32px 20px;
  }

  .investimento-col.esquerda {
    align-items: center;
    text-align: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0;
  }

  .investimento-col.direita {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border-top-right-radius: 0;
  }

  .mockup-bonus {
    width: 135%;
    max-width: none;
    margin: 0 auto 16px;
    transform: translateX(-15%);
    display: block;
    object-fit: contain;
  }

  .bonus-lista li {
    justify-content: flex-start;
    text-align: left;
  }

  .valor-total {
    text-align: center;
  }

  .logo-investimento {
    height: 60px;
    margin-bottom: 16px;
  }

  .preco-final {
    font-size: 2.2rem;
  }

  .preco-final span {
    font-size: 2.6rem;
  }

  .garantia-img {
    width: 160px;
    margin: 12px auto 0;
  }
}


/* --------- SEÇÃO GARANTIA 7 DIAS --------- */
.section.garantia {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.section.garantia .container {
  max-width: 720px;
  margin: 0 auto;
}

.selo-garantia {
  width: 200px;
  margin: -50px auto 32px;
}

.garantia-titulo {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.garantia-titulo span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #55c1d4;
  margin-bottom: 8px;
}

.section.garantia p {
  font-size: 1rem;
  line-height: 1.6;
  color: #eee;
}

.section.garantia p strong,
.section.garantia p .blue-text {
  color: #55c1d4;
  font-weight: 600;
}

/* RESPONSIVO GARANTIA */
@media (max-width: 768px) {
  .selo-garantia {
    width: 180px;
    margin-bottom: 24px;
  }

  .garantia-titulo {
    font-size: 1.6rem;
  }

  .garantia-titulo span {
    font-size: 0.95rem;
  }
}

/* boonus da Fabi */
.bonus-degrade {
  background: linear-gradient(45deg, #488fa8, #55c1d4);
  padding: 60px 20px;
  color: #ffffff;
}

.bonus-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.bonus-titulo {
  font-size: 1.6rem;
  margin-bottom: 100px;
  margin-top: 0px;
  font-weight: 700;
}

.bonus-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 100px 24px 24px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: #111;
  text-align: center;
}

.bonus-img {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90%;
}

.bonus-conteudo h3 {
  margin-top: 80px;
  font-size: 1.1rem;
}

.bonus-conteudo p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 8px;
}

/* Gradiente suave para título */
.gradient-text {
  background: linear-gradient(to right, #55c1d4, #2f6caa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  white-space: normal;
}

.bonus-seta-emoji {
  text-align: center;
  font-size: 5rem;
  margin-top: -50px;
  margin-bottom: -80px;
  color: white;
  opacity: 1.0;
  animation: seta-pulando 1.2s infinite ease-in-out;
}

@keyframes seta-pulando {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}


/* Responsivo */
@media (max-width: 768px) {
  .bonus-img {
    width: 300px;
    top: -105px;
  }

  .bonus-conteudo h3 {
    margin-top: 70px;
    font-size: 1rem;
  }

  .bonus-card {
    padding: 40px 20px 20px;
    margin-bottom: 80px;
  }
  .bonus-degrade {
    padding: 30px 30px;
  }
}
/* --------- Responsivo tudo --------- */

@media (max-width: 768px) {
  .hero.split {
    flex-direction: column-reverse;
    padding: 0;
    text-align: center;
    background-color: #000;
  }

  .hero-image,
  .hero-image img {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  .hero-text {
    max-width: 100%;
    padding: 16px 16px 32px;
    margin: -100px 0 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 16px;
  }

  .hero-text p {
    max-width: 95%;
    margin: 4px auto 16px;
    padding: 0 8px;
    font-size: 0.82rem;
    line-height: 1.3;
    text-align: center;
  }

  .btn {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px 24px;
    display: block;
    box-shadow: 0 0 8px #55c1d4, 0 0 5px #55c1d4, 0 0 5px #55c1d4;
  }

  .btn:hover {
    box-shadow: 0 0 12px #8ae5f1, 0 0 25px #8ae5f1, 0 0 35px #8ae5f1;
    background-color: #8ae5f1;
    color: #000;
  }

  .mobile-wrap {
    display: inline-block;
  }
  .section.padrao {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .container {
    padding: 0 30px !important;
  }

  .sobre-grid {
    padding: 0 30px !important;
  }
  .sobre-texto {
    margin-top: -50px;
  }

  .imagem-liberdade-final {
    margin-top: 24px;
  }
}

.titulo-principal {
  gap: 4px;
  padding-top: 0.5rem;
  margin: 0;
}

.linha-h1 {
  display: block;
  font-size: 2.7rem;
  line-height: 1.2;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .linha-h1 {
    font-size: 1.6rem;
    line-height: 1.9;
    display: block;
  }
  .titulo-principal {
    display: flex;
    flex-direction: column;
}
.linha-h1:nth-child(2),
.linha-h1:nth-child(3) {
    margin-top: -0.6rem;
}
}