/* ======================
   RESETANDO TUDO
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #e3f1f3;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======================
   TOPO - LOGO + BOTÃO
====================== */
.top-bar {
  background: #0d316d;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 32px;
}

.btn-top {
  background: linear-gradient(90deg, #08e8b9, #0dc08d);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  color: #002957;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s ease-in-out;
}

.btn-top:hover {
  transform: scale(1.05);
}

/* ======================
   HERO SECTION
====================== */
.hero {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

/* CAPSULAS FLUTUANTES */
.capsula {
  position: absolute;
  width: 35px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.cap1 { top: 60px; left: 10%; animation-delay: 0s; }
.cap2 { top: 90px; right: 15%; animation-delay: 1s; }
.cap3 { top: 160px; left: 45%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-20px); opacity: 0.7; }
}

/* POTES FLUTUANDO */
.potes-flutuando {
  width: 90%;
  max-width: 400px;
  animation: flutuarPotes 4s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

@keyframes flutuarPotes {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ======================
   TEXTO DE CHAMADA
====================== */
.hero-text {
  margin-top: 2rem;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 1.4rem;
  color: #082f6c;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-text p strong {
  font-weight: 700;
  color: #222;
  display: block;
  margin-top: 0.5rem;
}

/* BOTÃO PRINCIPAL */
.btn-principal {
  display: inline-block;
  background: linear-gradient(90deg, #08e8b9, #0dc08d);
  padding: 1rem 1.6rem;
  border-radius: 30px;
  font-weight: 700;
  color: #002957;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease-in-out;
  margin-top: 1rem;
}

.btn-principal:hover {
  background: linear-gradient(90deg, #0dc08d, #08e8b9);
  transform: scale(1.05);
}

/* ======================
   BLOCO: SELO E BENEFÍCIOS
====================== */
.selo-beneficios {
  padding: 2rem 1.5rem;
  background: #f3f3f3;
  text-align: center;
}

/* CARTÕES */
.cartoes-img img {
  max-width: 260px;
  margin: 0 auto 2rem auto;
  display: block;
}

/* BLOCO COM SETA */
.beneficios-bloco {
  background: #eeeeee;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.decor-seta {
  font-size: 2rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

/* GRID DE BENEFÍCIOS */
.beneficios-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  color: #0d316d;
  text-align: left;
}

.beneficio i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.beneficio span {
  display: block;
  font-size: 0.7rem;
  color: #555;
  font-weight: 500;
}

.beneficio strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
}

/* MOBILE GRID 1 COL */
@media (max-width: 480px) {
  .beneficios-grid {
    flex-direction: column;
    align-items: center;
  }

  .beneficio {
    justify-content: center;
    text-align: center;
  }

  .beneficio div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* RESPONSIVO GERAL */
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }

  .capsula {
    width: 45px;
  }

  .beneficios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem 4rem;
  }

  .beneficio {
    width: calc(50% - 2rem);
  }

  .beneficios-bloco {
    padding: 2rem 3rem;
  }

  .decor-seta {
    font-size: 2.4rem;
  }
}

/* ======================
   BLOCO: REFLEXÃO PESSOAL
====================== */
.bloco-reflexao {
  background: #f5f5f5;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #ccc;
}

.container-reflexao {
  max-width: 720px;
  margin: 0 auto;
}

.container-reflexao h2 {
  font-size: 1.4rem;
  color: #082f6c;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.container-reflexao .sub {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.container-reflexao .sub em {
  font-style: italic;
  font-weight: 600;
  color: #000;
}

.container-reflexao .desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

/* ======================
   BLOCO: TRANSFORMAÇÃO
====================== */
.bloco-transformacao {
  background: #f3f3f3;
  text-align: center;
  padding: 2rem 1rem 0;
  position: relative;
  overflow: hidden;
}

.bloco-transformacao .content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.texto-transformacao h2 {
  font-size: 1.4rem;
  color: #082f6c;
  font-weight: 800;
  margin-bottom: 1rem;
}

.texto-transformacao p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.texto-transformacao strong {
  font-weight: 700;
  color: #000;
}

/* IMAGENS */
.imagem-transformacao {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.imagem-transformacao .fita {
  width: 100%;
  max-width: 320px;
  animation: girarFita 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.imagem-transformacao .mulher {
  position: absolute;
  bottom: -140px; /* AQUI TU DESCE MAIS! */
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 280px;
  z-index: 2;
}

/* ANIMAÇÃO DE RESPIRAÇÃO */
@keyframes girarFita {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (min-width: 768px) {
  .container-reflexao h2 { font-size: 1.8rem; }
  .container-reflexao .sub { font-size: 1.05rem; }
  .container-reflexao .desc { font-size: 1rem; }

  .texto-transformacao h2 { font-size: 1.8rem; }
  .texto-transformacao p { font-size: 1.05rem; }
  .imagem-transformacao .mulher { max-width: 300px; bottom: -20px; }
  .bloco-transformacao {
  padding: 2rem 1rem 4rem; /* último valor aumentei de 0 pra 4rem */
}

}

/* ======================
   BLOCO: HERO AZUL OZEN
====================== */
.hero-azul-ozen {
  background: linear-gradient(to bottom, #2e3192, #1bffff);
  min-height: 100vh;
  padding: 1.5rem 1rem 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.container-hero {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-azul-ozen h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.hero-azul-ozen h2 span {
  color: #00ffb3;
}

.desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.desc2 {
  font-size: 0.92rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-cta-ozen {
  background: linear-gradient(90deg, #08e8b9, #0dc08d);
  color: #002957;
  font-weight: 700;
  padding: 1rem 1.6rem;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
}

.btn-cta-ozen:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0dc08d, #08e8b9);
}

/* ======================
   IMAGEM MÃO COM POTE
====================== */
.mao-pote {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: 360px;
  z-index: 1;
  animation: fadeinout 4s ease-in-out infinite;
}

/* ANIMAÇÃO DE ENTRADA E RESPIRO */
@keyframes fadeinout {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ================
   RESPONSIVO
================ */
@media (min-width: 768px) {
  .hero-azul-ozen h2 {
    font-size: 2rem;
  }

  .desc {
    font-size: 1.05rem;
  }

  .desc2 {
    font-size: 1rem;
  }

  .mao-pote {
    width: 360px;
    bottom: -50px;
  }
}

/* ==========================
   BLOCO: FABRICAÇÃO
========================== */
.bloco-fabricacao {
  background: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}

.container-fabricacao {
  max-width: 720px;
  margin: 0 auto;
}

.container-fabricacao h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #082f6c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.container-fabricacao h2 .destaque-verde {
  color: #00e6c3;
}

.container-fabricacao p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.container-fabricacao p .sublinhado {
  text-decoration: underline;
  color: #555;
}

/* IMAGEM COM HOVER */
.box-hover-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.box-hover-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease-in-out;
  border-radius: 16px;
}

.box-hover-img:hover img {
  transform: scale(1.05);
}

/* ==========================
   BLOCO: DEPOIMENTOS
========================== */
.depoimentos {
  padding: 3rem 1rem;
  background: #ffffff;
  text-align: center;
}

.depoimentos h2 {
  font-size: 1.5rem;
  color: #0b1857;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.depoimentos h2 span {
  color: #00deb3;
  font-weight: bold;
  display: block;
}

/* CARROSSEL */
.carrossel-container {
  position: relative;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  touch-action: pan-y;
  will-change: transform;
}


.slide {
  min-width: 100%;
  transition: opacity 0.5s;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* CONTROLES */
.controles {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.controles button {
  background: #0b1857;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.controles button:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .container-fabricacao h2 {
    font-size: 1.8rem;
  }

  .container-fabricacao p {
    font-size: 1.1rem;
  }

  .depoimentos h2 {
    font-size: 1.8rem;
  }
}

.depoimentos {
  padding: 2rem 1rem;
  background: #ffffff;
  text-align: center;
}

.depoimentos h2 {
  font-size: 1.3rem;
  color: #0b1857;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.depoimentos h2 span {
  color: #00deb3;
  font-weight: bold;
  display: block;
}

.carrossel-container {
  position: relative;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  touch-action: pan-y;
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  user-select: none;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.controles {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.controles button {
  background: #0b1857;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.controles button:hover {
  transform: scale(1.1);
}

..cta-wrapper {
  margin-top: 2rem; /* Afasta do carrossel */
}

/* Botão já estilizado anteriormente */
.btn-quero {
  background: linear-gradient(to right, #00f0d2, #00c9a7);
  color: #001d3d;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  animation: flutuar 2.5s ease-in-out infinite;

  /** ESSE AQUI FAZ A MÁGICA PRA DESCOLAR **/
  margin-top: 1.5rem; 
}

/* Animação flutuante */
.flutuante {
  animation: levita 3s ease-in-out infinite;
}

@keyframes levita {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-quero:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 255, 191, 0.6);
  background: linear-gradient(145deg, #00c9a7, #00f7d9);
}

/* BLOCO IDENTIFICAÇÃO - ESTILO LIMPO E FIXO EM 2 COLUNAS */
.bloco-identificacao {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
}

.container-identificacao {
  max-width: 1140px;
  margin: 0 auto;
}

.bloco-identificacao h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #2e3192;
  font-weight: 700;
  line-height: 1.4;
}

.destaque-identificacao {
  color: #1bffff;
}

/* GRID FORÇADO EM 2 COLUNAS FIXAS */
.grid-identificacao {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  justify-items: center;
}

/* ITEM INDIVIDUAL - CENTRALIZADO, LIMPO */
.item-identificacao {
  text-align: center;
  max-width: 240px;
}

/* IMAGEM REDONDA COM BORDA AZUL-CIANO */
.item-identificacao img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #1bffff;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.item-identificacao img:hover {
  transform: scale(1.08);
}

/* TEXTO ABAIXO DA IMAGEM */
.item-identificacao p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  padding: 0 0.5rem;
}

/* RESPONSIVO: GARANTE ESPAÇO MESMO EM TELAS PEQUENAS */
@media (max-width: 480px) {
  .grid-identificacao {
    column-gap: 1rem;
    row-gap: 2rem;
  }

  .item-identificacao {
    max-width: 180px;
  }

  .item-identificacao img {
    width: 90px;
    height: 90px;
  }
}
/* BLOCO PEDIU CHEGOU */
.bloco-pediu-chegou {
  background: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.container-pediu {
  max-width: 720px;
  margin: 0 auto;
}

/* Botão CTA no topo */
.btn-quero {
  background: linear-gradient(to right, #2e3192, #1bffff);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.btn-quero:hover {
  transform: scale(1.05);
}

/* Título principal */
.titulo-pediu {
  font-size: 2rem;
  font-weight: 700;
  color: #2e3192;
  margin-bottom: 2.5rem;
}

.titulo-pediu span {
  color: #00e6e6;
}

/* Estilo dos depoimentos */
.depoimento-item {
  margin-bottom: 3rem;
}

.depoimento-item img {
  width: 180px;
  height: auto;
  border: 4px solid #1bffff;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.depoimento-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e3192;
  margin-bottom: 0.5rem;
}

.depoimento-item p {
  font-size: 0.95rem;
  color: #444;
  max-width: 500px;
  margin: 0 auto;
}
/* BOTÃO FLUTUANTE FIXO NA TELA */
/* BOTÃO CENTRAL COM ESTILO */
.btn-quero {
  background: linear-gradient(to right, #2e3192, #1bffff);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  transition: transform 0.3s ease;
  margin-bottom: 2.5rem;
}

/* FLUTUANDO BONITO */
.btn-quero.animado {
  animation: flutuarSolto 2.5s ease-in-out infinite;
}

@keyframes flutuarSolto {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .btn-quero {
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
  }
}

/* BLOCO FORMULAÇÃO */
.bloco-formulacao {
  background: #f2f6f7;
  padding: 4rem 1rem;
  text-align: center;
}

.container-formulacao {
  max-width: 720px;
  margin: 0 auto;
}

.bloco-formulacao h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e3192;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.bloco-formulacao h2 .cor-ozen {
  color: #00e6e6;
}

.texto-formulacao {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.texto-formulacao strong {
  font-weight: bold;
}

.texto-formulacao .sublinhado {
  text-decoration: underline;
}

/* IMAGEM DO POTE CENTRALIZADA */
.img-formulacao {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* BLOCO COMPOSIÇÃO DETALHADA - ESTILO LIMPO */
.bloco-composicao-detalhada {
  background: #f2f6f7;
  padding: 4rem 1rem;
  text-align: center;
}

.container-composicao-detalhada {
  max-width: 1140px;
  margin: 0 auto;
}

/* GRADE 2 COLUNAS */
.grid-ingredientes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
}

/* ITEM SEM CARD, ESTILO FLAT */
.item-ingrediente {
  text-align: left;
  max-width: 320px;
}

/* IMAGEM REDONDA COM BORDA CIANO */
.item-ingrediente img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #00e6e6;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* TÍTULO AZUL NEGRITO */
.item-ingrediente h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e3192;
  margin-bottom: 1rem;
}

/* LISTA SEM FUNDO, COM CIRCULO AZUL */
.item-ingrediente ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-ingrediente ul li {
  font-size: 0.95rem;
  color: #333;
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}

/* CHECK ICON CIRCULADO AZUL */
.item-ingrediente ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid #2e3192;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L7 11L12 5' stroke='%232e3192' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* BLOCO BÔNUS */
.bloco-bonus {
  background: #1b2e85;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}

.container-bonus {
  max-width: 720px;
  margin: 0 auto;
}

/* TÍTULO */
.titulo-bonus {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.titulo-bonus .bonus-verde {
  color: #00ffcc;
}

/* CARD DE BÔNUS */
.card-bonus {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* IMAGEM DO BÔNUS */
.card-bonus img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* PREÇO RISCADO */
.preco-bonus {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}

/* GRÁTIS DESTACADO */
.bonus-gratis {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.bonus-gratis span {
  color: #00ffcc;
}

/* DESCRIÇÃO DO BÔNUS */
.descricao-bonus {
  font-size: 0.95rem;
  color: #eee;
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}
/* BLOCO GERAL DA OFERTA */
.bloco-oferta {
  background: #f4f4f4;
  padding: 4rem 1rem;
  text-align: center;
}

.container-oferta {
  max-width: 480px;
  margin: 0 auto;
}

/* TÍTULOS */
.titulo-oferta {
  font-size: 2rem;
  color: #1c1c3a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.subtitulo-oferta {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 2rem;
}

.subtitulo-oferta .urgente {
  color: #e53935;
  font-weight: bold;
}

/* CARD */
.card-oferta {
  background: #1b2e85;
  border-radius: 16px;
  padding: 2rem 1rem 6rem; /* Padding inferior maior pra caber o botão */
  color: #fff;
  position: relative;
  overflow: visible; /* Permitir botão flutuar */
}

/* TÍTULO DO POTE */
.pote-nome {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00e676;
  margin-bottom: 0.3rem;
}

.subinfo {
  background: #e53935;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}

/* IMAGEM DO PRODUTO */
.imagem-oferta {
  max-width: 240px;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* VALORES */
.valor-oferta {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.preco-dinamico {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.pix {
  font-size: 0.95rem;
  color: #ddd;
}

.desconto {
  font-size: 0.9rem;
  color: #00e676;
  margin-top: 0.5rem;
}

/* BOTÃO DENTRO DO CARD COM POSIÇÃO FIXA */
.btn-wrapper {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 90%;
  text-align: center;
}

/* BOTÃO COM FLUTUAÇÃO */
.btn-quero.interno {
  background: linear-gradient(to right, #2e3192, #1bffff);
  color: white;
  padding: rem 2rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  white-space: nowrap;
  animation: flutuarNoCard 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.btn-quero.interno:hover {
  transform: translateY(-2px) scale(1.03);
}

/* ANIMAÇÃO SUAVE DENTRO DO CARD */
@keyframes flutuarNoCard {
  0%, 100% {
    transform: translateX(-30%) translateY(0);
  }
  50% {
    transform: translateX(-00%) translateY(-0px);
  }
}

/* RESPONSIVO MOBILE */
@media (max-width: 490px) {
  .preco-dinamico {
    font-size: 1.rem;
  }

  .btn-quero.interno {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }
}

.planos-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* CARD BONITÃO */
.card-oferta {
  background: #1b2e85;
  border-radius: 16px;
  padding: 2.5rem 1.5rem 4.5rem;
  color: #fff;
  position: relative;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* TÍTULO PLANO */
.titulo-plano {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: #ffffff;
}

.card-oferta.familiar .titulo-plano,
.card-oferta.maximo .titulo-plano {
  color: #00e676;
}

/* TAG VERMELHA */
.subinfo {
  background: #e53935;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* IMAGEM CENTRAL */
.imagem-oferta {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* PREÇOS */
.valor-oferta {
  font-size: 1rem;
}

.preco-dinamico {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.4rem 0;
}

.pix {
  font-size: 0.95rem;
  color: #ddd;
}

.desconto {
  font-size: 0.95rem;
  color: #00e676;
  margin: 0.5rem 0 2rem;
}

.riscado {
  text-decoration: line-through;
  color: #ffbaba;
  font-weight: normal;
}

/* BOTÃO ANIMADO */
.btn-quero.interno {
  background: linear-gradient(to right, #2e3192, #1bffff);
  color: white;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  white-space: nowrap;
  animation: flutuarNoCard 2.8s ease-in-out infinite;
}

.btn-quero.interno.verde {
  background: linear-gradient(to right, #00e676, #00bfa5);
}

@keyframes flutuarNoCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* FRETE */
.frete-icon {
  margin: 2rem auto 0.4rem;
  width: 48px;
  display: block;
}

.frete-texto {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.3;
}
.bloco-garantia {
  background: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.container-garantia {
  max-width: 480px;
  margin: 0 auto;
}

.titulo-garantia {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #1c1c3a;
}

.titulo-garantia .verde {
  color: #00e676;
}

.titulo-garantia .azul {
  color: #00bfa5;
}

.img-garantia {
  max-width: 260px;
  width: 100%;
  margin: 0 auto 2rem;
  display: block;
}

.texto-garantia {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.bloco-alerta {
  background: #1b2e85;
  padding: 3rem 1rem;
  color: #fff;
  text-align: center;
}

.container-alerta {
  max-width: 480px;
  margin: 0 auto;
}

.imagem-alerta {
  width: 100%;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.titulo-alerta {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.titulo-alerta .verde {
  color: #00e676;
  display: block;
  font-size: 1.6rem;
  margin-top: 0.5rem;
}

.texto-alerta {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #eee;
}

/* BOTÃO FLUTUANTE */
.btn-quero.fixo {
  margin-top: 2rem;
  background: linear-gradient(to right, #00e676, #00bfa5);
  color: white;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: flutuarSuave 2.8s ease-in-out infinite;
}

@keyframes flutuarSuave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.faq-container {
  padding: 3rem 1rem;
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

.faq-titulo {
  text-align: center;
  font-size: 2rem;
  color: #1c1c3a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.faq-item {
  background: #e9e9e9;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-pergunta {
  background: transparent;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.faq-pergunta::after {
  content: '⌄';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s;
}

.faq-item.ativo .faq-pergunta::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #555;
  padding: 0 1rem;
  transition: max-height 0.3s ease;
}

.faq-item.ativo .faq-resposta {
  padding: 1rem;
  max-height: 600px; /* Ajustável */
}
.footer-ozen {
  background: linear-gradient(to bottom, #102274, #1b2e85);
  padding: 3rem 1rem;
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 500px;
  margin: 0 auto;
}

.footer-logo {
  width: 90px;
  margin-bottom: 1.2rem;
}

.footer-links h4,
.footer-aviso h4,
.footer-pagamento h4,
.footer-seguro h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-aviso p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.footer-pagamento img,
.footer-seguro img {
  margin-top: 0.5rem;
  max-width: 100%;
  height: auto;
}
