/* Variables */
:root {
  --azul: #238FE5;
  --bg: #F1F8FF;
  --principal: #282C30;
  --claro: #6A6A6A;
  --fonte: 'Montserrat', sans-serif;
  --gradiente: linear-gradient(56deg, #D9DEEC 0%, #FFF 100%);
  --borda: 1px solid #DCDCDC;
  --raio: 12px;
  --branco: #FFF;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  background-color: var(--bg);
  font-family: var(--fonte);
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  animation: fadeIn ease-in 0.8s;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.coluna-interna-direita {
  background-color: var(--branco);
  border-radius: 0 0 18px 18px;
}

.coluna-interna-direita, .coluna-interna-esquerda {
  padding: 40px 20px;
}

.oferta-switcher {
  border-radius: 20px;
}

img:active, .logo:active, .selo:active {
  transform: scale(0.98);
}

a {
  text-decoration: none;
  font-weight: 700;
}

/* Typography */
h1, h2, h3, .alv {
  color: var(--principal);
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}

h1, .alv {
  font-size: 36px;
  line-height: 38px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
}

h3 {
  font-size: 20px;
  text-align: left;
}

.subtitulo, h4 {
  color: var(--claro);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  align-self: stretch;
}

p {
  color: var(--principal);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.ft {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.branco {
  color: var(--branco);
}

/* Layout Components */
.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 50px 30px;
  align-self: stretch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  gap: 30px;
  transition: transform 0.3s ease;
}

.selo {
  width: 100px;
  z-index: 5;
  margin-bottom: -40px;
  transition: transform 0.3s ease;
}

.paraselo {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.divisor {
  display: flex;
  padding: 50px 30px;
  margin: 50px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: var(--azul);
  align-self: stretch;
}

.footer {
  background-color: #000;
  color: var(--branco);
  text-align: center;
  padding: 24px 16px;
  font-size: 0.8rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/* Card & Container Styles */
.quadro, .card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: center;
    border-radius: var(--raio);
    background: var(--gradiente);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box; /* Inclui padding no cálculo da largura */
}

.quadro:hover, .card:hover, .depoimento:hover, .especialista:hover, .cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
}

.quadro.positivo, .quadro.negativo {
  padding: 30px;
}

.quadro.positivo p, .quadro.negativo p {
  margin-bottom: 10px;
}

.card {
  border-bottom: var(--borda);
}

ul.quadro {
  list-style: none;
}

.seguro {
  background: var(--principal);
}

.seguro p, .seguro h3 {
  color: var(--branco);
}

.decorando {
  height: auto;
  width: 120px;
}

/* Background & Image Styles */
.bg-cover {
  background-position: top;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 12px;
  position: relative;
}

.bg-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 18.96%, #000 100%);
  z-index: 1;
}

.bg-cover * {
  position: relative;  
  z-index: 2;
}

/* Button Styles */
.opcao-btn {
  padding: 20px;
}

button, .btn, .btn-destaque, .btn-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 4px;
  background: var(--azul);
  color: var(--branco);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  border: none;
  width: fit-content;
  padding: 20px 32px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

button:hover, .btn:hover, .btn-destaque:hover, .btn-cluster:hover, .opcao-btn:hover {
  box-shadow: 0px 6px 10px rgba(35, 143, 229, 0.3);
  cursor: pointer;
}

button:active, .btn:active, .btn-destaque:active, .btn-cluster:active, .opcao-btn:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: 0px 3px 5px rgba(35, 143, 229, 0.2);
  opacity: 0.9;
}

.btn.branco, a.btn.branco {
  background: var(--branco);
  color: #090A0B;
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.2), 0px 5px 15px rgba(255, 255, 255, 0.15);
}

.btn.colorido {
  background: linear-gradient(90deg, #ff7b00 0%, #ff4d00 100%);
  color: var(--branco);
  margin: auto;
  margin-top: 5px !important;
  box-shadow: 0px 2px 4px #ff7b0079, 0px 5px 15px #ff4d0077;
}

.btn.colorido:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Text Effects */
.tag {
  text-align: center;
  width: 100%;
  text-shadow: 0 0 24px #42A5F5;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: linear-gradient(90deg, #238FE5 36.4%, #FF001A 71.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.5s ease;
}

.destaque-texto {
  background: linear-gradient(84deg, #ff0055 22.29%, #0026ff 95.39%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.5s ease;
}

/* Testimonial & Expert Sections */
.depoimento, .especialista {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  border-radius: var(--raio);
  color: var(--branco);
  width: 100%;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento {
  aspect-ratio: 333 / 218;
}

.especialista {
  height: 500px;
}

.info {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.info strong {
  color: var(--branco);
  font-weight: 700;
}

.verificado {
  width: 20px;
  height: 20px;
}

.layout-colunas-internas {
  display: flex;
  flex-direction: column;
}

.fundo-basico {
  background: var(--azul);
}

.fundo-premium {
  background: var(--principal);
}

.text-centralizado {
  text-align: center;
  align-items: center;
}

.titulo-box {
  color: var(--branco);
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Pricing Styles */
.preco {
  color: var(--branco);
  font-family: Inter, sans-serif;
  width: 100%;
  font-size: 56px;
  font-weight: 700;
  line-height: 60px;
  white-space: nowrap;
  text-align: center;
}

.preco-parcela {
  font-size: 24px;
  margin-right: 5px;
}

.preco-simbolo {
  font-size: 36px;
  vertical-align: baseline;
}

.preco-inteiro {
  font-size: 56px;
}

.preco-fracao {
  font-size: 32px;
  vertical-align: baseline;
}

.avista {
  color: var(--branco);
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.beneficios-oferta {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.beneficios-oferta h4 {
  color: var(--branco);
  text-align: left;
  margin-bottom: 15px;
}

.beneficios-oferta ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.beneficios-oferta li {
  color: var(--branco);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
}

/* Form Styles */
.hotmart-form-integrado {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
}

.form-title {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--principal);
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.hotmart-form-integrado label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #525d64;
  font-size: 0.9em;
}

.hotmart-form-integrado input[type="text"],
.hotmart-form-integrado input[type="email"],
.hotmart-form-integrado input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #B0D7FF;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.95);
  color: #1A2B4D;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hotmart-form-integrado input::placeholder {
  color: #6B7F99;
  opacity: 1;
}

.hotmart-form-integrado input:focus {
  border-color: #6B7F99;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  outline: none;
}

.hotmart-form-integrado .error-message {
  color: #e74c3c;
  font-size: 0.85em;
  font-weight: bold;
  margin-top: 5px;
  display: none;
}

.hotmart-submit-integrado {
  width: 100%;
}

.seta {
  font-size: 16px;
  margin-left: 5px;
}

.cta-seguranca {
  margin-top: 15px;
  text-align: center;
}

.texto-seguranca {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.icones-pagamento {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.icones-pagamento img {
  max-height: 30px;
  margin: 0 auto;
}

/* CTA & Box Styles */
.cta-box {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: var(--raio);
  background: var(--azul);
  align-self: center;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.coluna-interna-esquerda,
.coluna-interna-direita {
    width: 100%;           /* Ocupa toda a largura */
    /* Remove bordas/margins extras se o gap já faz o espaçamento */
    border-right: none;
    border-bottom: none;
    margin-bottom: 0;
}

/* Media Queries - Responsive */
@media (min-width: 768px) {
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  header, .estrategia, .argumentos, .recebimento, .oferta-final {
    flex-direction: column !important;
    align-items: center !important;
  }

  .logo {
    max-width: 400px;
    margin-top: -40px;
  }

    .section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch; /* Alinha com a altura máxima */
        gap: 40px;
    }

  .container {
    max-width: 600px;
    margin: 0 auto;
  }

    .quadro, .card {
        padding: 40px 60px;
        width: 580px;
    }

  .depoimento, .especialista {
    max-width: 48%;
  }

  .cta-box {
    align-self: unset;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .btn {
    width: fit-content;
  }

  .footer {
    padding: 40px 80px;
  }

  .tag {
    font-size: 16px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.3;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
  }

  .preco {
    font-size: 72px;
    line-height: 1.1;
  }
  
  /* Layout colunas para desktop */
  .layout-colunas-internas {
    flex-direction: row;
  }

  .oferta-switcher {
    border-radius: 20px;
  }
  
  .coluna-interna-esquerda {
    flex: 1;
    padding: 30px;
  }
  
  .coluna-interna-direita {
    flex: 1;
    padding: 30px;
    border-radius: 0 18px 18px 0;
  }
}

@media (max-width: 767px) {
  button:hover, .btn:hover, .btn-destaque:hover, .btn-cluster:hover, .opcao-btn:hover,
  .quadro:hover, .card:hover, .depoimento:hover, .especialista:hover, .cta-box:hover {
    transform: none;
    box-shadow: none;
  }

  button:active, .btn:active, .btn-destaque:active, .btn-cluster:active, .opcao-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: none;
    opacity: 0.9;
  }
  
  .coluna-interna-esquerda {
    padding-bottom: 30px;
  }
}

/* --- Estilização do Seletor de Opções (Estilo HubSpot Refinado) --- */

.oferta-opcoes {
  display: flex;
  background-color: #f5f8fa; /* Confirmado: Cinza claro HubSpot */
  padding: 12px;             /* Confirmado: Padding pequeno no container */
  border-radius: 8px;        /* Confirmado: Bordas arredondadas (ajuste 8px ou 10px) */
  border: 1px solid #e1e8ed; /* Confirmado: Borda sutil HubSpot */
  margin-bottom: 20px;
  gap: 3px;
}

.opcao-btn {
  flex: 1;
  border: none;
  border-radius: 6px;        /* Confirmado: Bordas internas arredondadas */
  background-color: #f5f8fa; /* Confirmado: Fundo inativo igual ao container */
  color: #506e91;            /* Ajustado: Cinza/Azulado HubSpot para texto inativo */
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; /* Transição mais rápida */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  position: relative;
  gap: 0px;
}

.opcao-btn strong {
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* Tag Bônus/Melhor Valor */
.opcao-btn .tag-bonus {
  display: inline-block;
  background-color: #00a4bd; /* Confirmado: Verde/Azulado HubSpot */
  color: #fff;              /* Confirmado: Texto branco */
  font-size: 10px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 50px;       /* Confirmado: Formato de pílula */
  margin-top: 6px;
  text-transform: uppercase;
  /* Esconder a tag por padrão e só mostrar no botão premium */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s ease;
}

.tag-bonus {
  position: absolute;
  right: auto;
  top: -15px;
  font-size: 10px;
  background: #ff0055;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  text-shadow: none;
  -webkit-text-fill-color: white;
  }

/* Mostra a tag apenas no botão premium */
.opcao-btn[data-plano="premium"] .tag-bonus {
   visibility: visible;
   opacity: 1;
   transition-delay: 0s;
}

/* Estilo do botão ATIVO */
.opcao-btn.active {
  background-color: #fff;    /* Confirmado: Fundo branco */
  color: #33475b;            /* Confirmado: Cor texto ativo HubSpot (cinza bem escuro) */
  font-weight: 600;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08); /* Ajustado: Sombra sutil similar HubSpot */
  border: 1px solid rgb(0, 164, 189);
}

/* Ajusta a cor do strong no botão ativo */
.opcao-btn.active strong {
   color: #33475b; /* Mesma cor do texto principal ativo */
}

/* Opcional: Leve efeito no hover do inativo */
.opcao-btn:not(.active):hover {
  background-color: #e9ecef; /* Escurece levemente o fundo inativo */
}

/* --- Fim da Estilização --- */

/* --- Estilos para Animação Fade --- */

/* Elementos que serão animados */
#titulo-oferta,
#preco-oferta,
#avista-oferta,
#beneficios-oferta {
  transition: opacity 0.3s ease-in-out; /* Define a duração e suavização da animação de opacidade */
  opacity: 1; /* Estado inicial visível */
}

/* Classe para esconder o elemento (iniciar fade-out) */
.fade-out {
  opacity: 0 !important; /* Força a opacidade para 0 para o fade-out */
}

/* Opcional: Animar a mudança de fundo do container */
/* Se as classes .fundo-basico e .fundo-premium definem cores/imagens de fundo diferentes */
#oferta-container {
   /* Adicione a propriedade que você quer animar, ex: background-color */
   /* Exemplo: */
   transition: background-color 0.3s ease-in-out;
}