.elementor-226 .elementor-element.elementor-element-1c0fc5b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-90e13dd *//* =========================
   HERO - AJUSTE MOBILE
========================= */
@media (max-width: 768px){

  /* diminui a hero (evita 100vh gigante) */
  .hero-section{
    min-height: auto !important;
    height: auto !important;
    padding: 44px 0 !important;
    overflow: hidden !important;
  }

  /* garante que o fundo continue full */
  .hero-background,
  .hero-overlay{
    position: absolute !important;
    inset: 0 !important;
  }

  /* “respiro” lateral e alinhamento */
  .hero-content{
    padding-left: 16px !important;
    padding-right: 16px !important;
    text-align: center !important;
  }

  /* tipografia do título */
  .hero-section h1{
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.15 !important;
    margin: 0 0 12px 0 !important;
  }

  .hero-subtitle{
    font-size: 16px !important;
    line-height: 1.45 !important;
    margin: 0 auto 18px auto !important;
    max-width: 36ch;
  }

  /* botão em bloco no mobile */
  .hero-section .btn{
    width: 100% !important;
    max-width: 360px !important;
    margin: 10px auto 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
  }
}/* End custom CSS */
/* Start custom CSS *//* Root Variables & Reset */
:root {
    --primary-dark: #441f24;
    --secondary-dark: #3b2c35;
    --light-pink: #f4e0e4;
    --text-gray: #ab9da0;
    --text-dark: #5d4e53;
    --white: #ffffff;
    
    --orange: #f97316;
    --orange-bg: #fff7ed;
    --indigo: #6366f1;
    --indigo-bg: #eef2ff;
    --rose: #f43f5e;
    --rose-bg: #fff1f2;
    --yellow: #ca8a04;
    --yellow-bg: #fefce8;
    --purple: #a855f7;
    --purple-bg: #faf5ff;
    --red: #ef4444;
    --red-bg: #fef2f2;

    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--secondary-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--secondary-dark); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* Layout Utilities */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }
.section { py-16: 4rem 0; padding: 5rem 0; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.align-center { align-items: center; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .section { padding: 3rem 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .legal-links a { justify-content: center; }
}

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.hover-scale { transition: var(--transition); }
.hover-scale:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Components */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 99px; font-weight: 600; transition: var(--transition); font-size: 1rem; gap: 8px; }
.btn-primary { background-color: var(--primary-dark); color: var(--white); }
.btn-primary:hover { background-color: #2c1417; transform: scale(1.05); }
.btn-secondary { background-color: var(--text-gray); color: var(--white); }
.btn-secondary:hover { background-color: #8d7f82; transform: scale(1.05); }
.btn-large { padding: 16px 40px; font-size: 1.125rem; }
.full-width { width: 100%; }

.card { background: var(--white); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow); border: 1px solid #f9fafb; }
.icon-circle { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bg-light { background-color: var(--light-pink); color: var(--text-gray); }

/* Hero Section */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 0 20px; }
.hero-background { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background-color: rgba(68, 31, 36, 0.5); z-index: -1; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.text-highlight { color: var(--light-pink); }
.hero-subtitle { font-size: 1.25rem; color: var(--light-pink); margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* About Section */
.about-section { background: linear-gradient(to bottom, #fff, rgba(244, 224, 228, 0.2)); }
.section-title { font-size: 2.5rem; color: var(--secondary-dark); margin-bottom: 2rem; }
.about-grid img { border-radius: 1rem; box-shadow: var(--shadow-lg); width: 100%; }
.about-grid .card { margin-bottom: 1.5rem; }
.about-grid h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.about-grid p { color: var(--text-gray); font-size: 0.95rem; }

/* Philosophy */
.philosophy-section { background: linear-gradient(135deg, rgba(171, 157, 160, 0.1), rgba(244, 224, 228, 0.3)); }
.large-card p { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--secondary-dark); }
.gradient-text { background: linear-gradient(to right, var(--text-gray), var(--secondary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.highlight-text { color: var(--text-gray); font-weight: 700; }

/* YouTube */
.video-card { display: block; background: var(--white); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.video-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; height: 200px; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover img { transform: scale(1.1); }
.play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.video-card:hover .play-icon { opacity: 1; }
.video-info { padding: 1.5rem; }
.video-info h3 { font-size: 1.1rem; color: var(--secondary-dark); }
.loading-spinner { border: 4px solid #f3f3f3; border-top: 4px solid var(--text-gray); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 50px auto; grid-column: span 3; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Identification */
.identification-section { background: linear-gradient(135deg, #f9f5f6, #fff); }
.section-subtitle { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 2rem; }
.symptom-card { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; }
.symptom-card p { font-weight: 500; font-size: 1.1rem; }
.bg-orange { background: var(--orange-bg); color: var(--orange); } .text-orange { color: var(--orange); }
.bg-indigo { background: var(--indigo-bg); color: var(--indigo); } .text-indigo { color: var(--indigo); }
.bg-rose { background: var(--rose-bg); color: var(--rose); } .text-rose { color: var(--rose); }
.bg-yellow { background: var(--yellow-bg); color: var(--yellow); } .text-yellow { color: var(--yellow); }
.bg-purple { background: var(--purple-bg); color: var(--purple); } .text-purple { color: var(--purple); }
.bg-red { background: var(--red-bg); color: var(--red); } .text-red { color: var(--red); }
.emphasis-text { font-size: 1.25rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 0.5rem; }

/* Learning Path */
.learning-section { background: linear-gradient(to bottom, #fff, rgba(244, 224, 228, 0.3)); }
.divider { height: 4px; width: 100px; background: var(--primary-dark); margin: 1rem auto 2rem; border-radius: 2px; }
.course-feature-card { background: var(--white); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; }
@media(max-width: 768px) { .course-feature-card { grid-template-columns: 1fr; } }
.feature-content { padding: 3rem; display: flex; flex-col; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(244, 224, 228, 0.5); border-radius: 99px; font-weight: 600; font-size: 0.875rem; color: var(--primary-dark); text-transform: uppercase; width: fit-content; margin-bottom: 1.5rem; }
.subtitle-text { font-size: 1.125rem; color: var(--text-gray); font-weight: 500; margin-bottom: 2rem; }
.description-text p { margin-bottom: 1rem; color: var(--secondary-dark); }
.feature-image { position: relative; background-size: cover; background-position: center; min-height: 400px; }
.image-overlay { position: absolute; inset: 0; background: rgba(68, 31, 36, 0.6); }
.feature-highlights { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; color: var(--white); }
.highlight-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.icon-box { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); flex-shrink: 0; }
.highlight-item h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.highlight-item p { font-size: 0.9rem; color: var(--light-pink); opacity: 0.9; }

/* Scientific */
.scientific-section { background: var(--white); }
.info-card { background: rgba(244, 224, 228, 0.3); border: 1px solid var(--light-pink); border-radius: 1rem; padding: 3rem; }
.info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.info-icon { width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); flex-shrink: 0; box-shadow: var(--shadow); }
.info-item h3 { color: var(--primary-dark); font-size: 1.25rem; margin-bottom: 0.5rem; }
.quote-box { background: #f9f5f6; border-left: 4px solid var(--primary-dark); padding: 2rem; border-radius: 0.5rem; font-style: italic; font-size: 1.25rem; color: var(--secondary-dark); }

/* Course Promo */
.course-promo-section { padding: 4rem 0; background: linear-gradient(135deg, #fff0f3, #fff); }
.course-promo-card { background: var(--white); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(244,224,228,0.5); }
@media(max-width: 768px) { .course-promo-card { grid-template-columns: 1fr; } .promo-visual { order: -1; } }
.promo-content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.badge-dark { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: rgba(68,31,36,0.05); color: var(--primary-dark); border-radius: 99px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; width: fit-content; }
.gradient-text-dark { background: linear-gradient(to right, var(--primary-dark), var(--text-gray)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.promo-visual { background: var(--primary-dark); padding: 4rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--light-pink); position: relative; }
.icon-hero { width: 96px; height: 96px; background: rgba(255,255,255,0.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.2); color: var(--light-pink); }
.feature-list { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; }
.feature-row { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.1); }
.feature-row span { font-weight: 500; color: var(--white); }

/* Benefits */
.benefits-section { background: linear-gradient(to bottom, rgba(244, 224, 228, 0.2), #fff); }
.center-content { display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.center-content h3 { margin-bottom: 1rem; color: var(--secondary-dark); }
.center-content p { color: var(--text-gray); }

/* Filter */
.filter-section { background: linear-gradient(135deg, rgba(171, 157, 160, 0.05), rgba(244, 224, 228, 0.1)); }
.check-card { height: 100%; }
.yes-card { background: linear-gradient(135deg, #f0fdf4, #fff); }
.no-card { background: linear-gradient(135deg, #fef2f2, #fff); }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 1rem; padding: 1rem; border-radius: 0.5rem; transition: background 0.3s; font-size: 1.125rem; }
.yes-card li:hover { background: rgba(220, 252, 231, 0.5); }
.no-card li:hover { background: rgba(254, 226, 226, 0.5); }
.icon-check { color: #16a34a; font-weight: bold; }
.icon-cross { color: #dc2626; font-weight: bold; }

/* Form */
.form-section { background: linear-gradient(to bottom, #fff, rgba(244, 224, 228, 0.3)); }
.form-card { padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--secondary-dark); }
.form-group input { width: 100%; padding: 0.875rem 1rem; border: 2px solid rgba(171, 157, 160, 0.3); border-radius: 0.5rem; font-size: 1rem; outline: none; transition: var(--transition); }
.form-group input:focus { border-color: var(--text-gray); box-shadow: 0 0 0 3px rgba(171, 157, 160, 0.1); }
.security-note { display: flex; align-items: center; gap: 0.75rem; background: rgba(244, 224, 228, 0.3); padding: 1rem; border-radius: 0.5rem; margin-top: 1.5rem; font-size: 0.875rem; color: var(--secondary-dark); }

/* Footer */
.footer { background-color: var(--secondary-dark); color: var(--white); padding: 4rem 0; }
.role { font-size: 1.125rem; color: var(--light-pink); margin-bottom: 0.25rem; }
.crm { color: var(--text-gray); font-size: 0.875rem; margin-bottom: 2rem; }
.social-links { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.social-links a { width: 48px; height: 48px; background: var(--text-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: #8d7f82; transform: scale(1.1); }
.hotmart-link { border-radius: 99px !important; width: auto !important; padding: 0 1.5rem; font-weight: 600; font-size: 0.875rem; }
.legal-links a { color: var(--light-pink); font-size: 0.875rem; display: flex; align-items: center; gap: 4px; margin-bottom: 0.5rem; }
.legal-links a:hover { color: var(--white); }
.legal-links p { color: var(--text-gray); font-size: 0.75rem; margin-top: 0.5rem; }
.footer-image img { border-radius: 1rem; box-shadow: var(--shadow-lg); max-height: 450px; margin-left: auto; }
@media(max-width: 768px) { .footer-image img { margin: 0 auto; } }

/* Toast */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--white); border-left: 4px solid var(--primary-dark); padding: 1rem 1.5rem; border-radius: 0.5rem; box-shadow: var(--shadow-lg); transform: translateX(120%); transition: transform 0.3s ease; max-width: 300px; font-size: 0.9rem; }
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }
.toast.show { transform: translateX(0); }

/* ========= FIXES ELEMENTOR ========= */

/* 1) Corrige erro de sintaxe */
.section{ padding: 5rem 0; }

/* 2) Corrige typo que quebra layout */
.feature-content{
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 3) Elementor pode não rodar JS -> não pode esconder conteúdo */
.fade-in-up{
  opacity: 1 !important;
  transform: none !important;
}

/* 4) Garante que o widget não fique “espremido” por estilos do tema */
.hero-section, .section, .footer{
  width: 100%;
}

.sala-aula{
  padding: 40px 16px 46px;
  background: #ffffff;
  font-family: Tahoma, Arial, sans-serif;
  color: #111;
}

.sala-aula__container{
  max-width: 1120px;
  margin: 0 auto;
}

.sala-aula__titulo{
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: .2px;
}

.sala-aula__subtitulo{
  margin: 10px 0 26px;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #6b6b6b;
}

.sala-aula__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.video-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.video-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}

.video-card__thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-card__thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.16));
}

.video-card__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  color: #2b2b2b;
  z-index: 1;
}

.video-card__play svg{
  transform: translateX(2px);
}

.video-card__body{
  padding: 16px 18px 18px;
}

.video-card__title{
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #2b2b2b;
}

.sala-aula__cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.sala-aula__botao{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #b7a4b0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.sala-aula__botao:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 26px rgba(0,0,0,.16);
}

/* Responsivo */
@media (max-width: 980px){
  .sala-aula__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px){
  .sala-aula{
    padding: 34px 14px 40px;
  }
  .sala-aula__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .video-card__title{
    font-size: 15px;
  }
}

/* HERO FULL WIDTH REAL */
.hero-section{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* Garante que a imagem cubra tudo */
.hero-background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.text-center.mt-12 {
    margin-top: 80px !important;
} 

/* =========================================================
   PATCH MOBILE GERAL (centralização + anti-vazamento)
   Cole no FINAL do styles.css
   (Se existir <body class="lp-ajuste-mobile">, fica escopado)
========================================================= */

@media (max-width: 768px){

  /* 1) Escopo (se tiver a classe no body) */
  .lp-ajuste-mobile, 
  body{
    max-width: 100%;
    overflow-x: hidden;
  }

  /* 2) Anti-vazamento global */
  .lp-ajuste-mobile *,
  body *{
    box-sizing: border-box;
    max-width: 100%;
  }

  .lp-ajuste-mobile img,
  .lp-ajuste-mobile svg,
  .lp-ajuste-mobile video,
  .lp-ajuste-mobile iframe,
  img, svg, video, iframe{
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* 3) Centraliza textos + força títulos em negrito */
  .lp-ajuste-mobile,
  body{
    text-align: center;
  }

  .lp-ajuste-mobile p,
  .lp-ajuste-mobile h1,
  .lp-ajuste-mobile h2,
  .lp-ajuste-mobile h3,
  .lp-ajuste-mobile h4,
  .lp-ajuste-mobile h5,
  .lp-ajuste-mobile h6,
  p, h1, h2, h3, h4, h5, h6{
    text-align: center !important;
  }

  .lp-ajuste-mobile h1,
  .lp-ajuste-mobile h2,
  .lp-ajuste-mobile h3,
  .lp-ajuste-mobile h4,
  .lp-ajuste-mobile h5,
  .lp-ajuste-mobile h6,
  h1, h2, h3, h4, h5, h6{
    font-weight: 800 !important;
  }

  /* 4) Containers com padding seguro (evita encostar nas bordas) */
  .lp-ajuste-mobile .container,
  .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* 5) Ajuste de espaçamentos grandes entre seções */
  .lp-ajuste-mobile .section,
  .section{
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* reduz espaçamento onde costuma ficar “grande demais” */
  .lp-ajuste-mobile .mt-12, .mt-12{ margin-top: 28px !important; }
  .lp-ajuste-mobile .mb-12, .mb-12{ margin-bottom: 28px !important; }

  /* 6) TODOS os botões centralizados e sem vazar */
  .lp-ajuste-mobile .btn,
  .lp-ajuste-mobile button,
  .lp-ajuste-mobile .elementor-button,
  .btn, button, .elementor-button{
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    white-space: normal !important;     /* quebra linha se precisar */
    overflow-wrap: anywhere !important; /* evita texto estourar */
  }

  /* botão do formulário especificamente (texto vazando) */
  .lp-ajuste-mobile #submit-btn,
  #submit-btn{
    padding-left: 16px !important;
    padding-right: 16px !important;
    line-height: 1.2 !important;
  }

  /* 7) Grids viram coluna (evita vazamento de cards) */
  .lp-ajuste-mobile .grid,
  .grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  /* Sala de aula (cards de vídeo) */
  .lp-ajuste-mobile .sala-aula__grid,
  .sala-aula__grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* 8) Cards “Uma nova forma de compreender a menopausa” (info-card) */
  .lp-ajuste-mobile .info-card,
  .info-card{
    display: grid !important;
    gap: 12px !important;
  }

  .lp-ajuste-mobile .info-item,
  .info-item{
    display: grid !important;
    grid-template-columns: 1fr !important; /* tira colunas no mobile */
    gap: 10px !important;
    text-align: center !important;
  }

  .lp-ajuste-mobile .info-icon,
  .info-icon{
    margin: 0 auto !important;
  }

  /* 9) Card “Menopausa: A melhor fase da vida!” + itens centralizados */
  .lp-ajuste-mobile .course-promo-card,
  .course-promo-card{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    overflow: hidden !important;
  }

  .lp-ajuste-mobile .promo-visual,
  .promo-visual{
    width: 100% !important;
    text-align: center !important;
  }

  .lp-ajuste-mobile .feature-list,
  .feature-list{
    display: grid !important;
    gap: 10px !important;
  }

  .lp-ajuste-mobile .feature-row,
  .feature-row{
    justify-content: center !important;
    text-align: center !important;
    flex-wrap: wrap !important;
  }

  /* 10) “O que vou compartilhar com você por e-mail” (grid-4 vazando) */
  .lp-ajuste-mobile .benefits-section .grid,
  .benefits-section .grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .lp-ajuste-mobile .benefits-section .card,
  .benefits-section .card{
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 11) Course feature card (Menopausa em Equilíbrio) não vazar */
  .lp-ajuste-mobile .course-feature-card,
  .course-feature-card{
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .lp-ajuste-mobile .feature-image,
  .feature-image{
    min-height: 240px !important;
  }

  .lp-ajuste-mobile .feature-highlights,
  .feature-highlights{
    position: static !important;
    padding: 14px !important;
  }

  .lp-ajuste-mobile .highlight-item,
  .highlight-item{
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .lp-ajuste-mobile .icon-box,
  .icon-box{
    margin: 0 auto !important;
  }

  /* 12) Seção “Isso não é drama...” reduzir espaço grande antes da próxima */
  .lp-ajuste-mobile .identification-section .text-center.mt-12,
  .identification-section .text-center.mt-12{
    margin-top: 20px !important;
  }

  /* 13) Rodapé não vazar e virar coluna */
  .lp-ajuste-mobile .footer .grid,
  .footer .grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .lp-ajuste-mobile .footer-image img,
  .footer-image img{
    width: min(320px, 92%) !important;
    margin: 0 auto !important;
  }

  /* 14) Mata transforms/margens negativas que causam vazamento */
  .lp-ajuste-mobile [style*="translate"],
  .lp-ajuste-mobile .floating,
  .lp-ajuste-mobile .is-animated,
  [style*="translate"],
  .floating,
  .is-animated{
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  /* 15) Segurança extra: se algum elemento estiver com 100vw e padding */
  .lp-ajuste-mobile [style*="100vw"],
  [style*="100vw"]{
    width: 100% !important;
  }
}
/* ===============================
   CORREÇÃO FAIXA BRANCA NA HERO
================================ */

html, body{
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

@media (max-width: 768px){

  /* força hero ocupar 100% real */
  .hero-section{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* remove qualquer container interno limitando */
  .hero-section .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;  /* mantém respiro interno */
    padding-right: 20px !important;
  }

  /* fundo cobrindo corretamente */
  .hero-background{
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* garante que não tem 100vw quebrando */
  .hero-section,
  .hero-background{
    max-width: 100vw !important;
  }

}/* End custom CSS */