/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #FFE5EC; 
  color: #4A4A4A;
  line-height: 1.6;
}

/* HERO COM IMAGEM DE FUNDO */
.hero {
  background-image: url("images/casal-feliz.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 229, 236, 0.65); /* imagem mais visível */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.7rem;
  color: #C2185B;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #4A4A4A;
}

/* Botão HERO com animação pulsante */
.cta-btn {
  display: inline-block;
  background-color: #D81B60;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  background-color: #AD1457;
  transform: scale(1.05);
}


.cta-btn:hover {
  background-color: #C2185B;
}

/* Seções */
section {
  padding: 50px 20px;
  max-width: 850px;
  margin: auto;
}

section h2 {
  color: #C2185B;
  margin-bottom: 20px;
}

/* NOVA SEÇÃO DE VÍDEO */
.video-section {
  padding: 40px 20px;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 800px;
  height: auto;
  min-height: 400px; /* altura mínima maior */
  aspect-ratio: 16 / 9; /* mantém proporção mesmo com min-height */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Como funciona */
.ebook-img {
  margin-top: 20px;
  max-width: 260px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  border: 2px solid #D81B60;
}

/* Formulário */
section.cadastro {
  background: #FFF0F5;
  text-align: center;
  border-top: 2px solid #FFC1D2;
}

form input, form button {
  padding: 12px;
  margin: 8px;
  width: 80%;
  max-width: 420px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form button {
  background-color: #D81B60;
  color: #fff;
  cursor: pointer;
}

form button:hover {
  background-color: #C2185B;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 30px;
  color: #9575CD;
  font-size: 0.95rem;
}

footer a {
  color: #D81B60;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #AD1457;
  text-decoration: underline;
}


/* NOVA SESSÃO DE DEPOIMENTOS */
.depoimentos {
  background-color: #FFF0F5;
  padding: 60px 20px;
  text-align: center;
}

.depoimentos h2 {
  color: #C2185B;
  margin-bottom: 40px;
}

.depoimento {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 20px;
  background: #ffffff;
  border-left: 5px solid #D81B60;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-style: italic;
}

.depoimento p {
  margin-bottom: 10px;
  color: #4A4A4A;
}

.depoimento span {
  display: block;
  font-weight: bold;
  color: #9575CD;
}

.carrossel-videos {
  padding: 60px 20px;
  background-color: #FFF0F5;
  text-align: center;
}

.carrossel-videos h2 {
  color: #C2185B;
  margin-bottom: 30px;
}

.video-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
   justify-content: center; /* <-- ESTA É A LINHA QUE REMOVE O ESPAÇO VAZIO */
}

.video-slider video {
  scroll-snap-align: start;
  width: 220px;
  height: 390px;
  border-radius: 10px;
  flex: 0 0 auto;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 2px solid #D81B60;
}

.video-explicativo {
  background-color: #FFEAF0;
  padding: 60px 20px;
  text-align: center;
}

.video-explicativo h2 {
  color: #C2185B;
  font-size: 1.8rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.video-explicativo .highlight {
  color: #D81B60;
  font-weight: bold;
}

.video-explicativo video {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* GATILHOS REAIS */

/* Gatilhos mentais com layout aprimorado */
.gatilhos-mentais {
  max-width: 960px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

.gatilho-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff0f5;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(210, 130, 170, 0.2);
  padding: 24px;
  transition: transform 0.3s ease;
}

.gatilho-box:hover {
  transform: translateY(-5px);
}

.gatilho-box img {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gatilho-texto h3 {
  color: #C2185B;
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-align: center;
}

.gatilho-texto p {
  color: #4A4A4A;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}

/* Responsivo: imagem ao lado do texto em telas maiores */
@media (min-width: 768px) {
  .gatilho-box {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: left;
  }

  .gatilho-box:nth-child(even) {
    flex-direction: row-reverse;
  }

  .gatilho-texto {
    flex: 1;
  }

  .gatilho-box img {
    margin-bottom: 0;
    width: 300px;
  }

  .gatilho-texto h3 {
    text-align: left;
  }

  .gatilho-texto p {
    text-align: left;
  }
}

/* CTA SECUNDÁRIO DEPOIS DOS DEPOIMENTOS */
.cta-secundario {
  background-color: #ffe0eb;
  border: 2px dashed #f48fb1;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  box-shadow: 0 2px 12px rgba(210, 130, 170, 0.15);
}

.cta-secundario h2 {
  color: #C2185B;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-secundario p {
  font-size: 1.1rem;
  color: #4A4A4A;
  margin-bottom: 30px;
}

.cta-btn.grande {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* BLOCO DE GARANTIA / SEGURANÇA */
.garantia-bloco {
  background-color: #fff0f5;
  padding: 40px 20px;
  margin: 60px auto;
  border: 2px dashed #f8bbd0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(220, 120, 160, 0.12);
  text-align: center;
  max-width: 850px; /* alinhado com outras seções */
  width: 100%;
}


.garantia-conteudo h3 {
  color: #C2185B;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.garantia-conteudo p {
  font-size: 1.1rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FAQ */
.faq {
  max-width: 850px;
  margin: 60px auto;
  padding: 20px;
  background: #fff0f5;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.faq h2 {
  text-align: center;
  color: #C2185B;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ffc1d2;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #D81B60;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  color: #C2185B;
}

/* Esconde a resposta por padrão */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  color: #444;
  font-size: 1rem;
  transition: all 0.4s ease;
}

/* Exibe quando item está ativo */
.faq-item.active .faq-answer {
  max-height: 500px; /* ajustável conforme o conteúdo */
  opacity: 1;
  padding: 10px 16px 20px;
}


/* BOTÃO FINAL */
/* CTA FINAL */
/* CTA FINAL */
.cta-final {
  text-align: center;
  background-color: #ffebf0;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 60px auto 40px;
  max-width: 850px; /* mesmo do FAQ */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Título */
.cta-final h2 {
  font-size: 1.8rem;
  color: #c2185b;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: bold;
}

/* Botão com animação pulsante */
.cta-final-btn {
  background-color: #d81b60;
  color: #fff;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  animation: pulse 2s infinite;
}

.cta-final-btn:hover {
  background-color: #ad1457;
  transform: scale(1.05);
}

/* Animação pulsante */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(216, 27, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
  }
}

/* BOTÃO CTA SECUNDÁRIO COM EFEITO PULSANTE */
.cta-secundario .cta-btn.grande {
  background-color: #d81b60;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: pulse 2s infinite;
}

.cta-secundario .cta-btn.grande:hover {
  background-color: #ad1457;
  transform: scale(1.05);
}

/* Reutilizando a animação pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(216, 27, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
  }
}

.contador-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffe3ec;
  color: #c2185b;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 10px;
  border-bottom: 1px solid #f8bbd0;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(216, 27, 96, 0.1);
  animation: slideDown 0.6s ease;
}

/* Suavidade na transição ao entrar */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#mensagem-contador {
  transition: opacity 0.4s ease-in-out;
}

/* BOTÃO WHATSAPP */
.botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 15px;
}

.botao-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.botao-whatsapp img {
  width: 22px;
  height: 22px;
}

/* VIDEO DEPOIMENTO */
.video-slider iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-slider .video-wrapper {
  width: 260px; /* ou o mesmo valor que seus vídeos locais tinham */
  height: 460px; /* mantém a proporção vertical */
  margin-right: 10px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #d4145a;
  border-radius: 12px;
}

.carrossel-videos {
  max-width: 1100px !important; /* deixando a caixa rosa maior */
  margin: 0 auto;
}

.diferenciais {
  text-align: center;
}

.diferenciais ul {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
}

.diferenciais li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.como-funciona h2 {
  text-align: center;
}
/* =====================================================
   RESET BÁSICO
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   VARIÁVEIS ONE LOVE
===================================================== */
:root {
  --pink-bg: #ffe6ee;
  --pink-card: #fff1f5;
  --pink-primary: #e91e63;
  --pink-secondary: #ff5f8a;
  --text-dark: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --border-soft: rgba(233, 30, 99, 0.15);
}

/* =====================================================
   BODY
===================================================== */
body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #ffe6ee 0%, #ffffff 100%);
  color: var(--text-dark);
  line-height: 1.7;
}

/* =====================================================
   CONTAINER PRINCIPAL
===================================================== */
.legal-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 50px;
  background: var(--pink-card);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(233, 30, 99, 0.12);
  border: 1px solid var(--border-soft);
}

/* =====================================================
   TÍTULOS
===================================================== */
.legal-container h1 {
  font-size: 2.6rem;
  color: var(--pink-primary);
  margin-bottom: 12px;
  text-align: center;
}

.legal-container h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--pink-secondary);
  border-left: 4px solid var(--pink-primary);
  padding-left: 12px;
}

/* =====================================================
   TEXTOS
===================================================== */
.legal-container p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.legal-container p strong {
  color: var(--pink-primary);
}

/* =====================================================
   LISTAS
===================================================== */
.legal-container ul {
  margin: 14px 0 14px 22px;
}

.legal-container ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* =====================================================
   META (DATA)
===================================================== */
.legal-container > p:first-of-type {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* =====================================================
   FOOTER
===================================================== */
.legal-footer {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

/* =====================================================
   LINKS
===================================================== */
a {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media (max-width: 768px) {
  .legal-container {
    margin: 30px 16px;
    padding: 30px 22px;
  }

  .legal-container h1 {
    font-size: 2rem;
  }

  .legal-container h2 {
    font-size: 1.2rem;
  }
}

/* ============================================================
   One Love Navbar (padrão em todas as páginas)
   ============================================================ */

.ol-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;

  /* fundo rosé com blur */
  background: rgba(255, 235, 243, 0.78);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(226, 56, 123, 0.14);
}

.ol-navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ol-navbar__brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ol-navbar__brandText {
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #c2185b;
  font-size: 18px;
  white-space: nowrap;
}

.ol-navbar__menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ol-navlink {
  text-decoration: none;
  color: #7a2a4a;
  font-weight: 700;
  font-size: 14.5px;

  padding: 10px 10px;
  border-radius: 12px;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ol-navlink:hover {
  background: rgba(226, 56, 123, 0.10);
  color: #c2185b;
}

.ol-navlink--cta {
  background: #e2387b;
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(226, 56, 123, 0.20);
}

.ol-navlink--cta:hover {
  background: #cf2a6b;
  transform: translateY(-1px);
}

/* botão hambúrguer */
.ol-navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ol-navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c2185b;
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 768px) {
.ol-navbar__toggle {
  display: flex;
  flex-direction: column; /* ✅ empilha os 3 traços */
}


  .ol-navbar__menu {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    padding: 12px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 56, 123, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  }

  .ol-navbar__menu.is-open {
    display: flex;
  }

  .ol-navlink {
    padding: 12px 12px;
    text-align: center;
  }
}

/* Logo One Love na Navbar */
.ol-navbar__logo {
  height: 46px; /* ajuste fino aqui se quiser */
  width: auto;
  display: block;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 40px 20px 30px;
  background: #fff;
  color: #c2185b;
}

.footer p {
  margin: 8px 0;
  font-size: 14px;
}

.footer a {
  color: #c2185b;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* =========================================================
   FOOTER (MOBILE) — ícones centralizados e clicáveis
========================================================= */
@media (max-width: 768px) {
  .footer {
    padding: 28px 16px 22px;
  }

.footer-social {
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: nowrap;          /* ✅ NÃO quebra linha */
  justify-content: center;
  overflow-x: hidden;         /* evita scroll */
}


  /* AUMENTA A ÁREA CLICÁVEL (tap area) */
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;   /* recomendado p/ mobile */
    height: 44px;  /* recomendado p/ mobile */
    border-radius: 12px;
    background: rgba(227, 106, 141, 0.10); /* rosa soft */
    transition: transform 0.2s ease, background 0.2s ease;
  }

  /* ÍCONE UM POUCO MAIOR NO MOBILE */
  .footer-social img {
    width: 22px;
    height: 22px;
    opacity: 0.95;
  }

  /* hover no desktop / active no mobile */
  .footer-social a:active {
    transform: scale(0.96);
    background: rgba(227, 106, 141, 0.18);
  }

  .footer p {
    font-size: 13px;
    line-height: 1.35;
  }

  .footer p a {
    display: inline-block;
    padding: 6px 4px; /* melhora clique nos links */
  }
}

/* ==========================================
   MENU MOBILE PREMIUM — "neon highlight" suave
========================================== */

/* deixa os links com "cartão" */
.ol-navlink {
  position: relative;
  overflow: hidden;
  border-radius: 14px; /* mais premium */
}

/* camada neon que aparece ao passar o mouse */
.ol-navlink::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity .22s ease, transform .22s ease;

  /* neon suave */
  background: radial-gradient(
    120px 60px at 30% 50%,
    rgba(226, 56, 123, 0.22),
    rgba(226, 56, 123, 0.06) 55%,
    rgba(226, 56, 123, 0.00) 75%
  );
}

/* borda brilhante leve */
.ol-navlink::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity .22s ease;

  border: 1px solid rgba(226, 56, 123, 0.20);
  box-shadow:
    0 10px 24px rgba(226, 56, 123, 0.10),
    0 0 0 4px rgba(226, 56, 123, 0.06);
}

/* hover (desktop) */
.ol-navlink:hover::before,
.ol-navlink:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* active (mobile ao tocar) */
.ol-navlink:active::before,
.ol-navlink:active::after {
  opacity: 1;
  transform: scale(0.99);
}

/* estado "selecionado" (ativo) */
.ol-navlink.is-active::before,
.ol-navlink.is-active::after {
  opacity: 1;
  transform: scale(1);
}

/* reforça texto do ativo */
.ol-navlink.is-active {
  color: #c2185b;
}

/* opcional: CTA continua especial */
.ol-navlink--cta::before,
.ol-navlink--cta::after {
  display: none;
}
