/* ==========================================================================
   STYLE.CSS — LANDING PAGE DE ALTA CONVERSÃO (OSTEOPATIA MASTER)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #10B981;
  --primary-hover: #059669;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --dark-bg: #0A0F1D;
  --dark-bg2: #111827;
  --dark-bg3: #1F2937;
  --text: #F9FAFB;
  --text-muted: #9CA3AF;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.3);
  --border-emerald: rgba(16, 185, 129, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Dynamic CSS Override Container */
#vars-dinamicas {}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-emerald);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Header Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.navbar__logo span {
  color: var(--primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--text);
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #FFFFFF;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn--gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #FFFFFF;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn--outline:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #FFFFFF;
}

.btn--large {
  padding: 20px 40px;
  font-size: 1.15rem;
  border-radius: 12px;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.btn-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
}

.hero__bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.shape--1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.15);
}

.shape--2 {
  bottom: 0;
  left: -150px;
  width: 450px;
  height: 450px;
  background: rgba(245, 158, 11, 0.1);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 32px;
}

.hero__bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero__bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__mockup-wrap {
  position: relative;
}

.hero__mockup-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transition: var(--transition);
}

.hero__mockup-img:hover {
  transform: scale(1.02);
}

/* PARA QUEM É SECTION */
.para-quem {
  padding: 100px 0;
  background: var(--dark-bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-item {
  background: var(--dark-bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* VIDEO SECTION */
.video-section {
  padding: 100px 0;
  text-align: center;
}

.video-box-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-emerald);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* O QUE VAI RECEBER (MODULOS) */
.receber-section {
  padding: 100px 0;
  background: var(--dark-bg2);
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.modulo-card {
  background: var(--dark-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.modulo-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.modulo-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.25);
  position: absolute;
  top: 20px;
  right: 24px;
}

.modulo-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 12px;
}

.modulo-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.modulo-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* BONUS SECTION */
.bonus-section {
  padding: 100px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.bonus-card {
  background: linear-gradient(145deg, var(--dark-bg2), var(--dark-bg3));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.bonus-card:hover {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.bonus-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.bonus-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bonus-valor {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.bonus-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* SOBRE MENTOR SECTION */
.sobre-section {
  padding: 100px 0;
  background: var(--dark-bg2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-grid.inverter {
  direction: rtl;
}

.sobre-grid.inverter .sobre-content {
  direction: ltr;
}

.sobre-img-wrap img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-card);
}

.sobre-content .section-tag {
  margin-bottom: 16px;
}

.sobre-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.sobre-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* DEPOIMENTOS (PROVA SOCIAL) */
.depoimentos-section {
  padding: 100px 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.depo-card {
  background: var(--dark-bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.depo-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-4px);
}

.depo-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.depo-texto {
  font-size: 0.98rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.depo-nome {
  font-size: 1rem;
  font-weight: 700;
}

.depo-cargo {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.depo-badge {
  align-self: flex-start;
  margin-top: 16px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
}

/* DEPOIMENTOS PRINTS (WHATSAPP PRINTS 3 COLUNAS) */
.depo-prints-section {
  padding: 100px 0;
  background: var(--dark-bg2);
}

.depo-prints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .depo-prints-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .depo-prints-grid {
    grid-template-columns: 1fr;
  }
}

.print-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.print-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
  border-color: var(--primary);
}

.print-card-img-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.print-card-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.print-card:hover .print-card-img-wrap img {
  transform: scale(1.03);
}

.print-card-info {
  padding: 20px;
  text-align: center;
}

.print-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.print-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* GARANTIA SECTION */
.garantia-section {
  padding: 100px 0;
  background: var(--dark-bg2);
}

.garantia-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(245, 158, 11, 0.05));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.garantia-img-wrap img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.garantia-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 100px;
  margin-bottom: 14px;
}

.garantia-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.garantia-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* INSTAGRAM SECTION */
.instagram-section {
  padding: 100px 0;
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.insta-card:hover img {
  transform: scale(1.08);
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: var(--dark-bg2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question svg {
  transition: var(--transition);
  color: var(--primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 300px;
}

/* FOOTER */
.footer {
  padding: 80px 0 40px;
  background: #050811;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.footer__logo span {
  color: var(--primary);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  padding-top: 24px;
  margin-top: 16px;
}

/* WHATSAPP FLOAT BUTTON */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wa-float--left {
  right: auto;
  left: 28px;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulseWa 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--border-emerald);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero__grid, .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__bullets {
    justify-content: center;
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .garantia-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  .navbar__menu {
    display: none; /* Can be expanded or kept streamlined */
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 0 60px;
  }
  .btn--large {
    width: 100%;
    padding: 18px 24px;
  }
  .wa-tooltip {
    display: none;
  }
}
