/*
  STYLE.CSS ORGANIZADO
  Projeto: Revisão UNEB/UESB
  Organização:
  01. Variáveis e reset
  02. Componentes globais
  03. Dobras 01 a 12
  04. Checkout / planos
  05. Cronograma HTML
  06. Responsivo
*/

:root {
  --pink:#ec006c;
  --purple:#55166f;
  --green:#7cff00;
  --dark:#121123;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

html, body {
  width:100%;
  max-width:100%;
  overflow-x:clip;
}

body {
  margin:0;
  font-family:Montserrat, Arial, sans-serif;
  background:#fff;
  color:#1d1230;
}

img {
  max-width:100%;
  display:block;
}

.wrap {
  width:min(1500px, 92%);
  margin:0 auto;
}

.two-col {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
}

.btn-premium {
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:#050505;
  font-size:clamp(16px, 1.4vw, 26px);
  font-weight:950;
  text-decoration:none;
  text-transform:uppercase;
  padding:22px 34px;
  border-radius:16px;
  box-shadow:0 0 22px rgba(124, 255, 0, .75);
  overflow:hidden;
  transition:.25s;
  animation:pulseButton 1.8s infinite;
}

.btn-premium:before {
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:60%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform:skewX(-25deg);
  animation:shineButton 2.6s infinite;
}

.btn-premium:hover {
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 0 34px rgba(124, 255, 0, .95);
}

.btn-small {
  font-size:16px;
  padding:14px 25px;
  border-radius:9px;
}

@keyframes pulseButton {
  0%, 100% {
    box-shadow:0 0 18px rgba(124, 255, 0, .65);
  }

  50% {
    box-shadow:0 0 34px rgba(124, 255, 0, 1);
  }

}

@keyframes shineButton {
  0% {
    left:-80%;
  }

  55%, 100% {
    left:130%;
  }

}

.reveal {
  opacity:0;
  transform:translateY(22px);
  transition:.7s ease;
}

.reveal.show {
  opacity:1;
  transform:none;
}

.dobra-01 {
  width:100%;
  min-height:100vh;
  background:url("../img/dobra-01-fundo1.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:70px 0;
}

.dobra-01__container {
  width:min(1500px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  align-items:center;
  gap:56px;
}

.dobra-01__content {
  position:relative;
  z-index:2;
}

.dobra-01__tags {
  display:flex;
  align-items:center;
  margin-bottom:42px;
}

.dobra-01__tags span {
  font-size:clamp(18px, 2vw, 38px);
  font-weight:900;
  line-height:1;
  padding:18px 28px;
}

.dobra-01__tags span:first-child {
  background:#4b1766;
  color:#fff;
}

.dobra-01__tags span:last-child {
  background:#fff;
  color:#4b1766;
}

.dobra-01__logo {
  width:min(760px, 100%);
  margin-bottom:34px;
  filter:drop-shadow(0 10px 0 rgba(75, 23, 102, .55));
}

.dobra-01__text {
  max-width:660px;
  color:#fff;
  font-size:clamp(22px, 2.1vw, 37px);
  font-weight:500;
  line-height:1.16;
  margin:0 0 95px;
}

.dobra-01__image {
  z-index:2;
}

.dobra-02 {
  position:relative;
  width:100%;
  min-height:100vh;
  background:#fff url("../img/dobra-02-fundo2.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:88px 0 84px;
  overflow:hidden;
}

.dobra-02:before, .dobra-02:after {
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:var(--pink);
  opacity:.8;
}

.dobra-02:before {
  top:0;
}

.dobra-02:after {
  bottom:0;
}

.dobra-02__container {
  width:min(1390px, 86%);
  margin:0 auto;
  text-align:center;
}

.dobra-02__video {
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:55px;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 24px 55px rgba(0, 0, 0, .16);
  transition:transform .28s ease, box-shadow .28s ease;
}

.dobra-02__video:hover {
  transform:translateY(-6px);
  box-shadow:0 32px 70px rgba(0, 0, 0, .22);
}

.dobra-02__video-center {
  position:absolute;
  top:0;
  left:34%;
  width:32%;
  height:100%;
  background:#bfbfbf;
  display:flex;
  align-items:center;
  justify-content:center;
}

.dobra-02__play {
  width:0;
  height:0;
  border-top:42px solid transparent;
  border-bottom:42px solid transparent;
  border-left:70px solid #000;
  margin-left:15px;
  filter:drop-shadow(0 8px 10px rgba(0, 0, 0, .12));
  transition:transform .25s ease;
}

.dobra-02__video:hover .dobra-02__play {
  transform:scale(1.12);
}

.btn-matricula {
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:31px;
  background:var(--pink);
  color:#fff;
  font-size:clamp(19px, 2vw, 34px);
  font-weight:950;
  text-transform:uppercase;
  text-decoration:none;
  line-height:1;
  padding:24px 34px;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(236, 0, 108, .28);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.btn-matricula:before {
  content:"";
  position:absolute;
  top:0;
  left:-90%;
  width:60%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform:skewX(-25deg);
  animation:shineButton 2.7s infinite;
}

.btn-matricula:hover {
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 16px 35px rgba(236, 0, 108, .42);
}

.dobra-03 {
  background:url("../img/dobra-03-fundo3.png") center/cover no-repeat;
  padding:75px 0;
  text-align:center;
}

.dobra-03 h2 {
  display:inline-block;
  background:#54176b;
  color:#fff;
  padding:10px 34px;
  border-radius:3px;
  font-size:clamp(21px, 2vw, 34px);
  margin:0 0 36px;
}

.dobra-03 h2 strong {
  color:var(--green);
}

.depo-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-bottom:28px;
}

.depo-grid img {
  background:#fff;
  box-shadow:0 10px 25px rgba(0, 0, 0, .14);
}

.dobra-04 {
  background:url("../img/dobra-04-fundo4.png") center/cover no-repeat;
  padding:95px 0;
}

.beneficios-list h2 {
  font-size:clamp(24px, 2.5vw, 42px);
  margin:0 0 22px;
}

.benefit {
  display:flex;
  align-items:center;
  gap:18px;
  background:var(--pink);
  color:#fff;
  font-size:clamp(16px, 1.3vw, 24px);
  font-weight:800;
  padding:17px 20px;
  margin-bottom:12px;
  max-width:430px;
}

.benefit img {
  width:44px;
}

.texto-card p, .texto-card strong {
  display:block;
  font-size:clamp(17px, 1.25vw, 24px);
  line-height:1.35;
  margin-bottom:24px;
}

.texto-card strong {
  border:4px solid #111;
  border-left:none;
  border-right:none;
  padding:18px 0;
  font-weight:900;
}

.dobra-05 {
  background:url("../img/dobra-05-fundo5.png") center/cover no-repeat;
  padding:70px 0 0;
}

.person img {
  margin:auto;
  max-height:680px;
}

.question {
  max-width:690px;
}

.qmark {
  width:140px;
  margin:0 auto 20px;
}

.question h2 {
  color:var(--pink);
  font-size:clamp(22px, 2vw, 36px);
  font-weight:900;
  line-height:1.18;
}

.question p {
  font-size:clamp(16px, 1.25vw, 23px);
  line-height:1.45;
  margin-bottom:34px;
}

.dobra-06 {
  background:url("../img/dobra-06-fundo-6.png") center/cover no-repeat;
  padding:80px 0;
  color:#fff;
}

.copy-light .quote {
  background:#44205b;
  padding:24px 35px;
  border-left:10px solid #fff;
  font-size:clamp(19px, 1.5vw, 28px);
  font-weight:700;
  margin-bottom:35px;
}

.copy-light p {
  font-size:clamp(16px, 1.25vw, 23px);
  line-height:1.45;
}

.approved img {
  max-height:690px;
  margin:auto;
}

.dobra-07 {
  background:url("../img/dobra-07-fundo-7.png") center/cover no-repeat;
  padding:75px 0;
}

.chrono {
  display:grid;
  grid-template-columns:.55fr 1.45fr;
  align-items:center;
  gap:40px;
}

.chrono-tag {
  max-width:460px;
  margin:auto;
}

.chrono-img {
  width:100%;
  filter:drop-shadow(0 20px 35px rgba(0, 0, 0, .25));
}

.dobra-08 {
  background:url("../img/dobra-08-fundo8.png") center/cover no-repeat;
  padding:80px 0;
}

.plans {
  display:grid;
  gap:28px;
}

.plan-card {
  border-radius:16px;
  padding:30px;
  color:#fff;
  box-shadow:0 12px 30px rgba(0, 0, 0, .16);
}

.plan-card.pink {
  background:var(--pink);
}

.plan-card.purple {
  background:var(--purple);
}

.plan-card h3 {
  font-size:clamp(21px, 1.7vw, 30px);
  margin:0 0 14px;
}

.plan-card h3 span {
  color:var(--green);
}

.plan-card p {
  font-size:clamp(15px, 1.1vw, 20px);
  line-height:1.4;
}

.btn-plan {
  display:inline-flex;
  background:var(--green);
  color:#111;
  text-transform:uppercase;
  font-weight:900;
  text-decoration:none;
  padding:12px 18px;
  border-radius:7px;
  font-size:14px;
}

.video-card {
  height:540px;
  max-width:330px;
  width:100%;
  background:#aaa;
  border-radius:10px;
  margin:auto;
  display:grid;
  place-items:center;
}

.play {
  font-size:76px;
  color:#fff;
  opacity:.75;
}

.dobra-09 {
  background:url("../img/dobra-09-fundo9.png") center/cover no-repeat;
  padding:95px 0;
}

.fotos img {
  max-height:610px;
  margin:auto;
}

.barra-dige {
  max-width:430px;
  margin-bottom:24px;
}

.bio p {
  font-size:clamp(17px, 1.35vw, 24px);
  line-height:1.45;
  max-width:580px;
}

.dobra-10 {
  background:url("../img/dobra-10-prancheta-140.png") center/cover no-repeat;
  padding:140px 0;
}

.cards-white {
  max-width:1180px;
}

.white-card {
  background:#fff;
  border-radius:14px;
  padding:38px;
  min-height:360px;
  box-shadow:0 20px 45px rgba(0, 0, 0, .18);
}

.white-card h3 {
  font-size:clamp(22px, 1.7vw, 32px);
  margin:0 0 20px;
  color:#251038;
}

.white-card h3:before {
  content:"⊘";
  color:var(--pink);
  margin-right:8px;
}

.white-card p {
  font-size:clamp(15px, 1.1vw, 20px);
  line-height:1.5;
}

.dobra-11 {
  background:url("../img/dobra-11-fundo11.png") center/cover no-repeat;
  padding:110px 0;
}

.oferta-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(280px, 420px));
  justify-content:center;
  gap:55px;
}

.price-card {
  background:#fff;
  border-radius:16px;
  padding:34px;
  text-align:center;
  box-shadow:0 14px 35px rgba(0, 0, 0, .25);
  position:relative;
}

.badge {
  display:inline-block;
  background:var(--pink);
  color:#fff;
  padding:10px 20px;
  border-radius:12px;
  font-weight:900;
  margin-bottom:22px;
}

.badge.dark {
  background:var(--purple);
}

.price-card span {
  display:block;
  text-transform:uppercase;
  color:#9d7a8b;
  text-decoration:line-through;
  font-weight:800;
  font-size:22px;
}

.price-card strong {
  display:block;
  font-size:clamp(54px, 5vw, 84px);
  line-height:1;
  color:#111;
  margin:8px 0 24px;
}

.btn-price {
  font-size:14px;
  padding:13px 21px;
  border-radius:7px;
}

.dobra-12 {
  background:url("../img/dobra-12-fundo12.png") center/cover no-repeat;
  padding:80px 0;
}

.final-grid {
  grid-template-columns:.85fr 1.15fr;
}

.lead-form {
  width:min(430px, 100%);
  background:#fff;
  border-radius:18px;
  padding:28px;
  margin:auto;
  box-shadow:0 20px 50px rgba(0, 0, 0, .18);
}

.form-logo {
  width:300px;
  margin:0 auto 14px;
}

.lead-form h3 {
  text-align:center;
  color:#4e1769;
  margin:0 0 16px;
  font-size:24px;
}

.lead-form input {
  width:100%;
  border:0;
  background:#f2eaf5;
  border-radius:7px;
  padding:16px;
  margin-bottom:10px;
  font:600 15px Montserrat;
}

.btn-form {
  width:100%;
  border:0;
  border-radius:9px;
  background:var(--pink);
  color:#fff;
  text-transform:uppercase;
  font-weight:900;
  padding:15px;
  cursor:pointer;
}

.lead-form small {
  display:block;
  text-align:center;
  color:#777;
  margin-top:10px;
}

.dige-final {
  max-height:690px;
  margin:auto;
}

.whatsapp-fixo {
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  background:var(--green);
  color:#111;
  text-transform:uppercase;
  text-decoration:none;
  font-weight:950;
  padding:15px 22px;
  border-radius:999px;
  box-shadow:0 0 24px rgba(124, 255, 0, .85);
}

@media(max-width:1100px) {
  .two-col, .dobra-01__container, .chrono {
    grid-template-columns:1fr;
    text-align:center;
  }

  .dobra-01 {
    min-height:auto;
    padding:56px 0 42px;
  }

  .dobra-01__tags {
    justify-content:center;
    margin-bottom:28px;
  }

  .dobra-01__logo, .dobra-01__text {
    margin-left:auto;
    margin-right:auto;
  }

  .dobra-01__text {
    margin-bottom:42px;
  }

  .dobra-01__image {
    max-width:760px;
    margin:0 auto;
  }

  .depo-grid {
    grid-template-columns:repeat(2, 1fr);
  }

  .benefit {
    margin-left:auto;
    margin-right:auto;
  }

  .oferta-grid {
    grid-template-columns:1fr;
    max-width:450px;
  }

  .final-grid {
    grid-template-columns:1fr;
  }

  .dobra-02 {
    min-height:auto;
  }

  .dobra-02__container {
    width:92%;
  }

  .dobra-02__video {
    border-radius:34px;
  }

  .dobra-02__play {
    border-top-width:30px;
    border-bottom-width:30px;
    border-left-width:50px;
  }

  .btn-matricula {
    margin-top:26px;
  }

}

@media(max-width:600px) {
  .wrap {
    width:94%;
  }

  section {
    overflow:visible;
  }

  .dobra-01 {
    padding:38px 0 30px;
  }

  .dobra-01__tags span {
    padding:12px 14px;
  }

  .dobra-01__text {
    font-size:20px;
    line-height:1.25;
  }

  .btn-premium {
    width:100%;
    padding:18px;
  }

  .depo-grid {
    grid-template-columns:1fr;
    gap:14px;
  }

  .dobra-04, .dobra-05, .dobra-06, .dobra-07, .dobra-08, .dobra-09, .dobra-10, .dobra-11, .dobra-12 {
    padding:55px 0;
  }

  .white-card {
    min-height:auto;
    padding:26px;
  }

  .dobra-02 {
    padding:44px 0 42px;
  }

  .dobra-02__container {
    width:94%;
  }

  .dobra-02__video {
    border-radius:22px;
  }

  .dobra-02__play {
    border-top-width:20px;
    border-bottom-width:20px;
    border-left-width:34px;
  }

  .btn-matricula {
    width:100%;
    font-size:18px;
    padding:18px 16px;
    border-radius:13px;
  }

  .whatsapp-fixo {
    left:12px;
    right:12px;
    text-align:center;
  }

  .price-card strong {
    font-size:56px;
  }

  .video-card {
    height:420px;
  }

}

/* Correção fina - Blocos 08 e 10 seguindo referência */

.dobra-08 {

  position:relative;

  background:#fff url("../img/dobra-08-fundo8.png") center/cover no-repeat;

  min-height:100vh;

  display:flex;

  align-items:center;

  padding:86px 0;

  overflow:hidden;

}

.dobra-08__container {

  width:min(1395px, 86%);

  margin:0 auto;

  display:grid;

  grid-template-columns:1.12fr .68fr;

  align-items:center;

  gap:104px;

}

.dobra-08__plans {
  display:grid;
  gap:18px;

}

.dobra-08__plan {

  border-radius:38px;

  padding:46px 56px 38px;

  color:#fff;

  box-shadow:none;

}

.dobra-08__plan--start {
  background:#ec006c;

}

.dobra-08__plan--elite {
  background:#4b1b61;

}

.dobra-08__plan h3 {

  display:flex;

  align-items:center;

  gap:24px;

  margin:0 0 22px;

  color:#7cff00;

  font-size:clamp(29px, 2.55vw, 48px);

  line-height:1;

  font-weight:900;

  letter-spacing:.2px;

}

.dobra-08__plan h3 img {
  width:64px;
  min-width:64px;

}

.dobra-08__plan p {

  max-width:690px;

  margin:0 0 32px;

  color:#fff;

  font-size:clamp(20px, 1.62vw, 31px);

  line-height:1.07;

  font-weight:500;

}

.dobra-08__plan--elite p {
  font-size:clamp(18px, 1.45vw, 28px);

}

.btn-plan-premium {

  position:relative;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  background:#7cff00;

  color:#030303;

  text-transform:uppercase;

  text-decoration:none;

  font-size:clamp(16px, 1.18vw, 24px);

  font-weight:950;

  padding:18px 28px;

  border-radius:13px;

  box-shadow:0 0 20px rgba(124, 255, 0, .9);

  overflow:hidden;

  transition:transform .25s ease, box-shadow .25s ease;

}

.btn-plan-premium:before {

  content:"";

  position:absolute;

  inset:0 auto 0 -80%;

  width:56%;

  background:linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);

  transform:skewX(-25deg);

  animation:shineButton 2.7s infinite;

}

.btn-plan-premium:hover {
  transform:translateY(-3px);
  box-shadow:0 0 30px rgba(124, 255, 0, 1);

}

/* =========================================
   DOBRA 08 - VÍDEO
========================================= */

.dobra-08__video {
  display: block;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 40px auto 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  height: auto;
  min-height: 0;
  border-radius: 24px;
}

.dobra-08__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.22),
    0 8px 20px rgba(87, 16, 103, 0.18);
}

.dobra-08__video-wrapper iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* remove qualquer elemento antigo */
.dobra-08__video > span {
  display: none !important;
}

@media (max-width: 768px) {

  .dobra-08__video {
    width: calc(100% - 32px);
    max-width: 380px;
    margin: 30px auto 0;
  }

  .dobra-08__video-wrapper {
    border-radius: 18px;
  }
}
.dobra-10 {

  position:relative;

  background:url("../img/dobra-10-prancheta-114.png") center/cover no-repeat;

  min-height:100vh;

  display:flex;

  align-items:center;

  padding:118px 0;

  overflow:hidden;

}

.dobra-10__container {

  width:min(1180px, 75%);

  margin:0 auto;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:38px;

  align-items:stretch;

}

.dobra-10__card {

  background:#fff;

  border-radius:23px;

  padding:58px 60px 48px;

  min-height:670px;

  color:#050505;

  box-shadow:none;

}

.dobra-10__card h3 {

  display:flex;

  align-items:center;

  gap:13px;

  margin:0 0 24px;

  color:#050505;

  font-size:clamp(27px, 1.65vw, 38px);

  line-height:1.05;

  font-weight:900;

}

.dobra-10__card h3 img {
  width:45px;
  min-width:45px;

}

.dobra-10__card ul {
  margin:0;
  padding:0;
  list-style:none;

}

.dobra-10__card li {

  position:relative;

  padding-left:26px;

  margin:0 0 8px;

  font-size:clamp(20px, 1.22vw, 28px);

  line-height:1.06;

  font-weight:500;

}

.dobra-10__card li:before {
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#050505;
  font-weight:900;

}

@media(max-width:1100px) {

  .dobra-08 {
    min-height:auto;
    padding:60px 0;

  }

  .dobra-08__container {
    width:92%;
    grid-template-columns:1fr;
    gap:36px;
    text-align:left;

  }

  .dobra-08__video {
    height:540px;
    max-width:380px;

  }

  .dobra-10 {
    min-height:auto;
    padding:70px 0;

  }

  .dobra-10__container {
    width:90%;
    grid-template-columns:1fr;
    gap:28px;

  }

  .dobra-10__card {
    min-height:auto;
    padding:38px 34px;

  }

}

@media(max-width:600px) {

  .dobra-08 {
    padding:42px 0;

  }

  .dobra-08__container {
    width:94%;
    gap:26px;

  }

  .dobra-08__plan {
    border-radius:26px;
    padding:30px 24px;

  }

  .dobra-08__plan h3 {
    gap:14px;

  }

  .dobra-08__plan h3 img {
    width:45px;
    min-width:45px;

  }

  .dobra-08__plan p {
    font-size:18px;
    line-height:1.18;

  }

  .btn-plan-premium {
    width:100%;
    padding:16px 18px;

  }

  .dobra-08__video {
    width:100%;
    height:430px;
    border-radius:24px;

  }

  .dobra-10 {
    padding:48px 0;

  }

  .dobra-10__container {
    width:94%;

  }

  .dobra-10__card {
    border-radius:20px;
    padding:30px 24px;

  }

  .dobra-10__card h3 {
    font-size:25px;
    align-items:flex-start;

  }

  .dobra-10__card h3 img {
    width:36px;
    min-width:36px;

  }

  .dobra-10__card li {
    font-size:18px;
    line-height:1.18;
    padding-left:20px;

  }

}

/* Checkout integrado por categoria/plano */

.price-card .btn-price {

  border:0;

  cursor:pointer;

}

.planos-opcoes {

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:10px;

  margin-bottom:12px;

}

.plano-option {

  min-height:52px;

  border:2px solid #eadff0;

  border-radius:10px;

  background:#f7effa;

  color:#4e1769;

  font-family:Montserrat, Arial, sans-serif;

  font-size:13px;

  font-weight:950;

  cursor:pointer;

  transition:transform .2s ease, background .2s ease, border-color .2s ease;

}

.plano-option:hover {

  transform:translateY(-2px);

}

.plano-option.active {

  background:var(--green);

  border-color:var(--green);

  color:#111;

  box-shadow:0 0 18px rgba(124, 255, 0, .55);

}

.lead-form select {

  width:100%;

  border:0;

  background:#f2eaf5;

  border-radius:7px;

  padding:16px;

  margin-bottom:10px;

  font:600 15px Montserrat;

  color:#555;

}

.lead-form .input-readonly {

  background:#fff;

  border:2px solid #7dff00;

  color:#4e1769;

  font-size:12px;

  font-weight:900;

}

#texto_cupom_desconto {

  display:block;

  min-height:1px;

  margin-bottom:8px;

  font-style:normal;

  font-size:12px;

  color:#4e1769;

}

@media(max-width:600px) {

  .planos-opcoes {
    grid-template-columns:1fr;

  }

}

@media (max-width: 600px)  {

  .dobra-09  {

    overflow: hidden;

  }

  .dobra-09 .bio  {

    width: 100%;

    padding: 0 22px;

    text-align: center;

  }

  .dobra-09 .bio p  {

    max-width: 100%;

    font-size: 20px;

    line-height: 1.35;

    word-break: normal;

    overflow-wrap: normal;

  }

  .dobra-09 .barra-dige  {

    max-width: 92%;

    margin: 0 auto 25px;

  }

}

.dobra-07 {
  background: url("../img/dobra-07-fundo-7.png") center / cover no-repeat;
  padding: 75px 0;
  overflow: hidden;
}

.cronograma-container {
  width: min(1500px, 94%);
  margin: 0 auto;
  text-align: center;
}

.cronograma-titulo {
  max-width: 460px;
  width: 90%;
  margin: 0 auto 34px;
}

.cronograma-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 22px;
  width: 100%;
  margin: 0 auto;
}

.cronograma-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  background: #fff;
  border-bottom: 6px solid #050505;
  min-width: 0;
  overflow: hidden;
}

.cronograma-item strong {
  background: #ec006c;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.cronograma-item span {
  color: #4b1766;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.08;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  text-align: left;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.cronograma-item.bonus strong {
  background: #7cff00;
  color: #4b1766;
  white-space: normal;
}

.cronograma-btn {
  margin-top: 40px;
}

/* TABLET */
@media (max-width: 1100px) {
  .cronograma-premium {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cronograma-item {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .cronograma-item strong {
    font-size: 16px;
    padding: 12px 8px;
  }

  .cronograma-item span {
    font-size: 16px;
    line-height: 1.15;
    padding: 12px;
  }
}

/* CELULAR */
@media (max-width: 600px) {
  .dobra-07 {
    padding: 48px 0;
    overflow: visible;
  }

  .cronograma-container {
    width: 94%;
    max-width: 94%;
  }

  .cronograma-titulo {
    max-width: 280px;
    margin-bottom: 24px;
  }

  .cronograma-premium {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cronograma-item {
    grid-template-columns: 78px minmax(0, 1fr);
    border-bottom: 3px solid #050505;
    min-height: auto;
  }

  .cronograma-item strong {
    font-size: 10px;
    line-height: 1.05;
    padding: 9px 4px;
    white-space: normal;
  }

  .cronograma-item span {
    font-size: 11px;
    line-height: 1.2;
    padding: 8px 7px;
    display: block;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .cronograma-btn {
    margin-top: 28px;
  }
}

/* =========================================================
   AJUSTES FINAIS - MOBILE / CRONOGRAMA / SAFARI
   Adicionado para evitar cortes no celular sem perder design
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

section {
  max-width: 100%;
}

.dobra-07,
.cronograma-container,
.cronograma-premium,
.cronograma-item,
.cronograma-item span,
.cronograma-item strong {
  min-width: 0;
  max-width: 100%;
}

.dobra-07 {
  overflow: visible !important;
}

.cronograma-premium {
  overflow: visible !important;
}

.cronograma-item {
  overflow: visible !important;
}

.cronograma-item span {
  overflow: visible !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto;
}

@media (max-width: 600px) {
  .dobra-07 {
    padding: 42px 0 !important;
    overflow: visible !important;
  }

  .cronograma-container {
    width: 94% !important;
    max-width: 94% !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .cronograma-premium {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin: 20px auto 0 !important;
    overflow: visible !important;
  }

  .cronograma-item {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    min-height: auto !important;
    border-bottom: 3px solid #050505 !important;
    overflow: visible !important;
  }

  .cronograma-item strong {
    font-size: 9.5px !important;
    line-height: 1.08 !important;
    padding: 8px 3px !important;
    white-space: normal !important;
  }

  .cronograma-item span {
    font-size: 10.5px !important;
    line-height: 1.18 !important;
    padding: 8px 6px !important;
    display: block !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }

  .cronograma-btn {
    margin-top: 26px !important;
  }
}

/* Ajuste específico para Safari/iPhone */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 600px) {
    .cronograma-item {
      grid-template-columns: 68px minmax(0, 1fr) !important;
    }

    .cronograma-item strong {
      font-size: 9px !important;
      padding: 8px 2px !important;
    }

    .cronograma-item span {
      font-size: 10px !important;
      line-height: 1.16 !important;
      padding: 7px 5px !important;
    }
  }
}
