/* ==========================================================================
   BEBÊ DORMINHOCO - PREMIUM HIGH-CONVERTING STYLESHEET
   Faithful to the original Elementor visual identity + Ultra-fast performance
   Fonts: Montserrat & Poppins
   ========================================================================== */

:root {
  --primary-purple: #5b27a0;
  --dark-purple: #3b156b;
  --deep-purple-gradient: linear-gradient(140deg, #5b27a0 0%, #004183 100%);
  --cyan-highlight: #00b5ff;
  --green-btn: #01bd39;
  --green-btn-hover: #00a832;
  --red-alert: #e43b2c;
  --star-gold: #f59e0b;
  --mustard-yellow: #ffc107;
  --text-main: #242424;
  --text-muted: #4f4f4f;
  --text-light: #777777;
  --bg-body: #ffffff;
  --bg-gray: #f5f5f5;
  --bg-light-purple: #fbf6fe;
  --border-color: #e5e0ed;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP NOTIFICATION BAR (OFERTA LIMITADA / DATA DINÂMICA)
   ========================================================================== */
.top-banner {
  background: #ffb703;
  color: #000000;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 14px;
  line-height: 1.35;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
}

.top-banner .date-tag {
  text-decoration: underline;
  font-weight: 900;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  line-height: 1.25;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.btn-primary {
  background: linear-gradient(180deg, #01bd39 0%, #009c2e 100%);
  color: #ffffff;
  padding: 18px 24px;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(1, 189, 57, 0.45);
  border-radius: 8px;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(180deg, #00d43f 0%, #008728 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 189, 57, 0.6);
}

.btn-pulse {
  animation: pulseBtn 1.6s infinite;
}

.btn-pulse:hover {
  animation: none;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(1, 189, 57, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 8px 26px rgba(1, 189, 57, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(1, 189, 57, 0.4);
  }
}

.btn-secondary {
  background: linear-gradient(180deg, #47cb59 0%, #28a745 100%);
  color: #ffffff;
  padding: 15px 22px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(71, 203, 89, 0.35);
  border-radius: 8px;
}

/* Shape Dividers */
.shape-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: 35px;
}

@media (min-width: 768px) {
  .shape-divider svg {
    height: 55px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #f8f3fc 0%, #ffffff 100%);
  padding: 35px 0 0 0;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .highlight-cyan {
  background-color: var(--cyan-highlight);
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 17px);
  color: #444444;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 24px auto;
}

.hero-image-wrapper {
  margin: 0 auto;
  max-width: 680px;
  padding: 0 10px;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

/* ==========================================================================
   PRICE ANCHOR / RISCO ZERO
   ========================================================================== */
.anchor-section {
  padding: 20px 0 30px 0;
  text-align: center;
  background-color: #ffffff;
}

.anchor-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #ebe5f5;
  max-width: 520px;
  margin: 0 auto;
}

.anchor-de {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #777777;
  font-weight: 700;
}

.anchor-de s {
  color: var(--red-alert);
}

.anchor-por {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #333333;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.anchor-price {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  color: var(--primary-purple);
  line-height: 1;
  margin: 8px 0;
}

.anchor-risk {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.divider-line {
  height: 1px;
  background-color: #e5e0ed;
  margin: 25px auto;
  max-width: 80%;
}

/* ==========================================================================
   PAIN POINTS & DESIRES (2-COLUMNS DESKTOP)
   ========================================================================== */
.pain-section {
  background-color: #ffffff;
  padding: 15px 0 40px 0;
}

.section-title {
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 900;
  text-align: center;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-title .purple-text {
  color: var(--primary-purple);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 36px;
  }
}

.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-main);
}

.icon-list-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.icon-list-item.pain-item svg {
  color: var(--primary-purple);
  fill: currentColor;
}

.imagine-box {
  background-color: #fbf8fe;
  border: 2px dashed #d5c4ee;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 4px 15px rgba(91, 39, 160, 0.05);
}

.imagine-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.imagine-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: #222222;
  line-height: 1.45;
}

.imagine-item:last-child {
  margin-bottom: 0;
}

.imagine-item .emoji {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ==========================================================================
   BONUS SECTION (RICH 2-COL CARDS ON DESKTOP)
   ========================================================================== */
.bonus-section {
  background: linear-gradient(180deg, #5b27a0 0%, #44177c 100%);
  color: #ffffff;
  padding: 40px 0 50px 0;
  position: relative;
}

.bonus-badge-title {
  text-align: center;
  margin-bottom: 10px;
}

.bonus-badge {
  background-color: #ffffff;
  color: var(--primary-purple);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(16px, 4vw, 22px);
  padding: 6px 16px;
  border-radius: 6px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-main-title {
  text-align: center;
  font-size: clamp(16px, 3.8vw, 21px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.bonus-subtitle {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  color: #ffd200;
  font-weight: 900;
  margin-bottom: 30px;
}

.bonus-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
}

.bonus-card {
  background-color: #ffffff;
  color: var(--text-main);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .bonus-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 30px 40px;
    gap: 30px;
  }
}

.bonus-card-content {
  flex: 1;
}

.bonus-card-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 8px;
}

.bonus-card-title .purple-span {
  color: var(--primary-purple);
}

.bonus-card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.45;
  margin-bottom: 14px;
}

.bonus-card-pricing {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 12px;
}

.bonus-card-pricing s {
  color: var(--text-light);
  font-weight: 700;
}

.bonus-card-pricing .free-tag {
  color: #01bd39;
  font-weight: 900;
  font-size: 20px;
  margin-left: 6px;
}

.bonus-card-img-wrap {
  width: 220px;
  flex-shrink: 0;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .bonus-card-img-wrap {
    margin-top: 0;
  }
}

.bonus-card-img-wrap img {
  width: 100%;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
   TESTIMONIALS (SWIPER 100% FAITHFUL)
   ========================================================================== */
.depoimentos-section {
  padding: 50px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.elementor-heading-title.depoimento-titulo {
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 4vw, 28px);
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.depoimentos-swiper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: auto;
  position: relative;
}

.swiper-wrapper {
  height: auto !important;
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto !important;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}

.swiper-slide img {
  width: auto;
  max-width: 100%;
  height: 420px;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto;
}

.swiper-button-prev, .swiper-button-next {
  color: var(--primary-purple) !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-purple) !important;
}

/* ==========================================================================
   OFFER SECTION (SIDE BY SIDE ON DESKTOP)
   ========================================================================== */
.offer-section {
  padding: 40px 0 50px 0;
  background-color: #f9f8fc;
}

.offer-main-title {
  text-align: center;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 900;
  color: #111111;
  margin-bottom: 35px;
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .plans-grid {
    flex-direction: row;
    align-items: stretch;
    max-width: 960px;
    gap: 30px;
  }
}

.plan-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e7e2ee;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-card-featured {
  border: 3px solid #00b5ff;
  box-shadow: 0 0 25px rgba(0, 181, 255, 0.35);
  background-color: #ffffff;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffb300 0%, #f57f17 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(245, 127, 23, 0.4);
  white-space: nowrap;
}

.star-rating {
  color: var(--star-gold);
  font-size: 18px;
  margin: 8px 0 4px 0;
  letter-spacing: 3px;
}

.plan-title {
  font-size: 22px;
  font-weight: 900;
  color: #111111;
}

.plan-subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-purple);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.plan-price-block {
  margin: 14px 0 18px 0;
}

.plan-price-old {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 700;
}

.plan-price-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #444444;
}

.plan-price-val {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
}

.plan-price-val.plan-price-green {
  color: #01bd39;
}

.plan-card-featured .plan-price-val {
  color: var(--primary-purple);
}

.plan-mockup {
  max-width: 320px;
  margin: 12px auto;
  border-radius: 8px;
}

.plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 20px 0 26px 0;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-main);
}

.plan-feature-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.plan-feature-item.included svg {
  color: #01bd39;
  fill: currentColor;
}

.plan-feature-item.gift svg {
  color: var(--primary-purple);
  fill: currentColor;
}

.plan-feature-item.excluded {
  color: var(--text-light);
  text-decoration: line-through;
}

.plan-feature-item.excluded svg {
  color: var(--red-alert);
  fill: currentColor;
}

.urgency-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--red-alert);
  margin-top: 14px;
}

.progress-container {
  background-color: #f2eef8;
  border-radius: 30px;
  height: 30px;
  overflow: hidden;
  margin: 12px auto 0 auto;
  max-width: 320px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.progress-fill {
  background: linear-gradient(90deg, #ff3b30 0%, #d32f2f 100%);
  height: 100%;
  width: 84%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}

.progress-text {
  flex-shrink: 0;
}

.progress-percent {
  flex-shrink: 0;
}

/* ==========================================================================
   CONSEQUENCES / DANOS
   ========================================================================== */
.consequences-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.cards-3col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.consequence-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 2px solid #cee8ff;
  padding: 24px 20px;
  box-shadow: 0 0 13px 1px rgba(0, 125, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .consequence-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 24px 35px;
    gap: 30px;
  }
}

.consequence-card-img {
  width: 140px;
  flex-shrink: 0;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .consequence-card-img {
    margin-bottom: 0;
  }
}

.consequence-card-img img {
  width: 100%;
  border-radius: 10px;
}

.consequence-card-body {
  flex: 1;
}

.consequence-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.consequence-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.consequence-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
}

.consequence-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #e43b2c;
  fill: currentColor;
  margin-top: 1px;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
  background-color: #fbf9fe;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
}

.guarantee-title {
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.guarantee-title .highlight-cyan {
  background-color: var(--cyan-highlight);
  color: var(--primary-purple);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.guarantee-seal {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 18px auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.guarantee-text {
  font-size: 15px;
  color: #4f4f4f;
  max-width: 580px;
  margin: 0 auto 24px auto;
  line-height: 1.55;
}

.security-seals-img {
  max-width: 340px;
  margin: 18px auto 0 auto;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 45px 0;
  background-color: #ffffff;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #d5d8dc;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--primary-purple);
}

.faq-header {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-header svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary-purple);
  transition: transform 0.25s ease;
  fill: currentColor;
}

.faq-item.active .faq-header svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content-inner {
  padding: 0 18px 16px 18px;
  font-size: 14.5px;
  color: #555555;
  line-height: 1.55;
}

.faq-cta-wrapper {
  margin-top: 30px;
  text-align: center;
}

.payment-badges-final {
  max-width: 360px;
  margin: 16px auto 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
  background-color: #1c1c1c;
  color: #aaaaaa;
  padding: 30px 0 35px 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 580px;
  margin: 0 auto 16px auto;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 8px;
}

/* ==========================================================================
   SOCIAL PROOF TOAST
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  pointer-events: none;
}

.toast-notification {
  background-color: #ffffff;
  color: #222222;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  border-left: 4px solid #01bd39;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: 280px;
  pointer-events: auto;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  width: 18px;
  height: 18px;
  color: #01bd39;
  flex-shrink: 0;
  fill: currentColor;
}
