/* ========================================
   BOTOX LP - VISUAL PREMIUM ORGANIZADO
   ======================================== */

/* Logo do Instituto Bernardes fora do hero */
.logo-instituto-wrapper {
  text-align: center;
  margin: 0 auto 8px !important; /* só folga embaixo */
}

.logo-instituto-wrapper .logo-instituto-hero {
  display: inline-block !important;
  width: 240px !important;       /* desktop: 220–260px, ajusta se quiser */
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

/* HERO: container com gradiente sutil e cartão central */
#hero-botox {
  background: linear-gradient(
    135deg,
    rgba(205, 164, 94, 0.08) 0%,
    rgba(110, 68, 26, 0.03) 50%,
    rgba(205, 164, 94, 0.08) 100%
  );
  padding: 40px 32px;
  border-radius: 20px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 40px rgba(110, 68, 26, 0.12);
  border: 1px solid rgba(205, 164, 94, 0.2);
}

/* Eyebrow (topo) bem visível e premium */
.eyebrow-gold {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--accent-color);
  font-weight: 900;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(205, 164, 94, 0.4);
}

/* Título hero forte e editorial */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #6e441a;
  margin: 0 0 28px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(205, 164, 94, 0.15);
}

/* Subtítulo em caixa de destaque */
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 26px;
  border-left: 5px solid var(--accent-color);
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 26px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(110, 68, 26, 0.1);
  color: var(--primary-color);
  font-weight: 500;
}

.hero-sub strong {
  color: var(--primary-color);
}

/* SEÇÕES DA LANDING */
section.section-float {
  margin-bottom: 80px;
  scroll-margin-top: 30px;
}

#autoridade,
#conteudo,
#para-quem,
#oferta-botox {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4),
    rgba(205, 164, 94, 0.05)
  );
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(205, 164, 94, 0.15);
  box-shadow: 0 8px 30px rgba(110, 68, 26, 0.08);
}

/* Títulos de seção com underline dourado */
.title-minimal {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #6e441a;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 35px;
  padding-bottom: 20px;
  text-shadow: 0 1px 3px rgba(110, 68, 26, 0.12);
}

.title-minimal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

/* Texto base com legibilidade alta */
.text-minimal {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(110, 68, 26, 0.85);
}

/* GRID genérico */
.grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* CARDS PREMIUM */
.card-premium {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(205, 164, 94, 0.05)
  );
  padding: 40px 35px;
  border: 2px solid rgba(205, 164, 94, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(110, 68, 26, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card-premium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(110, 68, 26, 0.25);
  border-color: var(--accent-color);
}

.card-premium:hover::before {
  transform: scaleX(1);
}

.card-premium h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #6e441a;
}

.card-premium p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(110, 68, 26, 0.85);
}

/* GRID de cards premium */
.cards-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

/* BOTÕES DOURADOS – versão estável (desktop base) */
.btn-gold-gradient,
.btn-gold-premium {
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(205, 164, 94, 0.4),
              inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 0;
}

.btn-gold-gradient {
  background: linear-gradient(135deg, var(--accent-color), #d4a87a);
}

.btn-gold-premium {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

/* efeito “onda” no hover */
.btn-gold-gradient::before,
.btn-gold-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gold-gradient:hover::before,
.btn-gold-premium:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold-gradient:hover,
.btn-gold-premium:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(205, 164, 94, 0.6),
              inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

/* LISTA DE BENEFÍCIOS em formato de faixa */
.coluna-direita .list-minimal {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
}

.coluna-direita .list-minimal li {
  position: relative;
  margin-bottom: 12px;
  padding: 14px 18px 14px 56px;
  border-radius: 12px;
  background: radial-gradient(
    circle at 0 50%,
    rgba(205, 164, 94, 0.28) 0,
    rgba(205, 164, 94, 0.12) 32%,
    rgba(255, 255, 255, 0) 70%
  );
  box-shadow: 0 4px 14px rgba(110, 68, 26, 0.15);
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  border: 1px solid rgba(205, 164, 94, 0.4);
}

.coluna-direita .list-minimal li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-52%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(110, 68, 26, 0.25);
}

.coluna-direita .list-minimal li::marker {
  content: "";
}

/* DIVISOR PREMIUM */
.divider-hairline {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color) 20%,
    var(--accent-color) 80%,
    transparent
  );
  opacity: 0.6;
  margin: 70px auto;
  width: 80%;
  box-shadow: 0 2px 8px rgba(205, 164, 94, 0.3);
}

/* OFERTA DESTACADA */
.offer-outline {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(205, 164, 94, 0.1)
  );
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 0 8px rgba(205, 164, 94, 0.15),
              0 15px 50px rgba(110, 68, 26, 0.25);
  padding: 60px 40px;
  border-radius: 24px;
  position: relative;
}

.tag-outline {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 4px;
  font-weight: 900;
  padding: 8px 25px;
  background: linear-gradient(135deg, var(--accent-color), #d4a87a);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.5);
}

/* PREÇOS */
.price-group .old {
  text-decoration: line-through;
  opacity: 0.5;
  display: block;
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.price-group .new {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-color), #d4a87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(205, 164, 94, 0.4));
}

.installments {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* BÔNUS */
.bonus-minimal {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: rgba(110, 68, 26, 0.9);
  margin: 25px 0;
  text_align: left;
}

.bonus-minimal li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.bonus-minimal li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* IMAGENS DE ANTES/DEPOIS */
.img-minimal-wrapper {
  border: 4px solid var(--accent-color);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(110, 68, 26, 0.2),
              inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  overflow: hidden;
}

.img-minimal-wrapper:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 60px rgba(110, 68, 26, 0.35);
}

.img-minimal-wrapper img {
  display: block;
  width: 100%;
}

.caption-minimal {
  font-size: 0.9rem;
  color: rgba(110, 68, 26, 0.8);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}

/* FOOTER DA LP */
.footer-minimal {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(110, 68, 26, 0.15);
  font-size: 0.75rem;
  opacity: 0.5;
  color: var(--primary-color);
  text-align: center;
}

/* SCROLL SUAVE */
.lp-instituto {
  scroll-behavior: smooth;
}

/* ========================================
   AJUSTES DE LAYOUT DA COLUNA DIREITA
   ======================================== */

/* desktop base */
@media (min-width: 1366px) {
  .coluna-direita {
    width: 65%;
    margin-left: -8vw;
    padding-top: 0;
  }

  .coluna-direita .content-float {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 0;
  }
}

/* MOBILE: some coluna esquerda (Corps) e centraliza landing do Instituto */
@media (max-width: 900px) {
  .coluna-esquerda {
    display: none !important;
  }

  .coluna-direita {
    width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
  }

  .coluna-direita .content-float {
    max-width: 640px;
    margin: 0 auto;
    padding: 16px 0 40px !important;
  }

  /* Logo mobile maior */
  .logo-instituto-wrapper {
    margin-bottom: 8px !important;
  }

  .logo-instituto-wrapper .logo-instituto-hero {
    width: 220px !important;   /* 220–240px fica bom no mobile */
  }

  #hero-botox {
    padding: 20px 20px 32px;
  }
}

/* RESPONSIVO adicional – tipografia e cartões */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .title-minimal {
    font-size: 1.8rem;
  }

  .price-group .new {
    font-size: 3.8rem;
  }

  #autoridade,
  #conteudo,
  #para-quem,
  #oferta-botox {
    padding: 32px 20px;
  }

  .offer-outline {
    padding: 40px 20px;
  }

  .cards-premium-grid,
  .grid-minimal {
    grid-template-columns: 1fr;
  }
}

/* ======================
   BOTÕES – CORREÇÃO LIMPA
   ====================== */

/* Desktop – mantém presença, mas sem “faixão” */
.btn-gold-gradient,
.btn-gold-premium {
  padding: 16px 40px;
  font-size: 0.9rem;
  border-radius: 999px;
}

/* Oferta: botão limitado à largura do texto, centralizado, SEM afetar o layout da lista */
.offer-outline .btn-gold-gradient,
.offer-outline .btn-gold-premium {
  display: inline-block;
  width: auto;
  min-width: 260px;
  max-width: 420px;
  margin: 24px auto 0;
}

/* Garante que o container da oferta centralize o botão sem mexer nos itens */
.offer-outline {
  text-align: center;
}
.offer-outline ul,
.offer-outline .bonus-minimal {
  text-align: left;
}

/* Conteúdo (lista de tópicos) – botão menor e alinhado */
#conteudo .btn-gold-gradient,
#conteudo .btn-gold-premium {
  display: inline-block;
  width: auto;
  min-width: 240px;
  max-width: 380px;
  margin: 24px auto 0;
}

/* HERO – botão principal */
#hero-botox .btn-gold-gradient {
  display: inline-block;
  width: auto;
  min-width: 240px;
  max-width: 380px;
}
#hero-botox > div[style*="margin-top:35px"] {
  text-align: center;
}

/* MOBILE: botão da OFERTA ajustado sozinho */
@media (max-width: 768px) {
  /* Oferta: botão compacto e centralizado, sem virar faixa gigante */
  #oferta-botox .offer-outline .btn-gold-gradient {
    display: inline-block;
    font-size: 0.8rem;
    padding: 12px 22px;
    border-radius: 40px;
    letter-spacing: 1.5px;
    width: auto;
    max-width: 260px;   /* testa 240–260px até ficar no ponto */
    margin: 20px auto 0;
  }

  /* Garante que só a oferta centralize o botão */
  #oferta-botox .offer-outline {
    text-align: center;
  }

  /* Lista de benefícios da oferta continua alinhada à esquerda */
  #oferta-botox .offer-outline .bonus-minimal {
    text-align: left;
  }
}

/* MOBILE: cola logo + hero sem espaço morto */
@media (max-width: 900px) {
  /* reduz o respiro do wrapper da coluna direita */
  .coluna-direita .content-float {
    padding-top: 8px !important;   /* antes estava 16px/32px */
    padding-bottom: 32px !important;
  }

  /* logo praticamente encostada no topo e colada no hero */
  .logo-instituto-wrapper {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
  }

  .logo-instituto-wrapper .logo-instituto-hero {
    width: 220px !important;       /* mantém tamanho bom no mobile */
    height: auto !important;
  }

  /* hero começa logo abaixo da logo, com pouco respiro interno */
  #hero-botox {
    margin-top: 0 !important;
    padding-top: 12px !important;  /* se ainda parecer muito, testa 8px */
    padding-bottom: 8px;
  }

  /* garante que eyebrow e título não adicionem margem extra pra cima */
  #hero-botox .eyebrow-gold,
  #hero-botox .hero-title {
    margin-top: 0 !important;
  }
}

.depo-video {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.depo-video iframe {
  width: 100%;
  height: 220px; /* ajuste fino aqui (200–240px) */
  border: 0;
}





