/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:  #ea591b;
  --orange2: #ff7f00;
  --dark:    #1d1d1d;
  --dark2:   #020204;
  --light:   #f2f2f2;
  --text:    #f2f2f2;
  --white:   #f2f2f2;
  --radius:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

img { max-width: 100%; display: block; }
strong { color: var(--orange2); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn--gold { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff !important; box-shadow: 0 4px 20px rgba(234,89,27,0.4); }
.btn--gold:hover { background: linear-gradient(135deg, var(--orange2), var(--orange)); transform: translateY(-1px); }
.btn--lg { padding: 18px 42px; font-size: 16px; }
.btn--full { width: 100%; text-align: center; }

/* ===== HEADER ===== */
.header {
  position: absolute;
  top: 30px; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  transition: background 0.3s;
}
.header.scrolled {
  background: transparent;
  border-bottom-color: transparent;
}
.header__nav {
  display: flex;
  gap: 36px;
}
.header__nav a {
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--orange); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.logo { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.logo-text { color: var(--orange); font-size: 26px; font-weight: 700; letter-spacing: 2px; font-family: 'Cinzel', serif; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('hero2.jpg') center center / cover no-repeat;
  padding-top: 72px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,18,0.55) 40%, rgba(10,10,18,0.15) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
  margin-left: 80px;
  margin-right: auto;
}
.hero__eyebrow {
  color: var(--orange);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.hero__title {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(26px, 3.7vw, 52px);
  font-weight: 500;
  color: #f2f2f2;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--orange2);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__body {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 24px;
}
.hero__list {
  list-style: none;
  margin-bottom: 40px;
}
.hero__list li {
  color: rgba(255,255,255,0.9);
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 16px;
}
.hero__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section--dark { background: #000; }
.section--dark .section__title,
.section--dark .section__subtitle,
.section--dark .section__lead { color: var(--white); }
.section--light { background: #000; }
.section--imagine { background: var(--dark2); }
.section--cadastro {
  background: url('capa.png') center center / cover no-repeat;
  position: relative;
}
.section--cadastro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2,2,4,0.75);
  z-index: 0;
}
#cadastro {
  filter: brightness(1.8);
}
#cadastro .container,
#cadastro > div {
  filter: brightness(0.56);
}
.section--cadastro .container {
  position: relative;
  z-index: 1;
}

.section__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section__subtitle {
  font-size: 17px;
  color: rgba(242,242,242,0.75);
  text-align: center;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section__lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}
.section__solution {
  text-align: center;
  margin-top: 56px;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.section__cta { text-align: center; margin-top: 48px; }
.section__closing {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  font-style: italic;
  color: rgba(242,242,242,0.75);
}

/* ===== BLOCO 2 – WRAPPER VÍDEO ===== */
.bloco2-wrapper {
  background: linear-gradient(180deg, #000 0%, #0d0608 40%, #1a0a0a 70%, #000 100%);
  padding: 30px 0 80px;
}
.bloco2-header {
  text-align: center;
  padding: 0 20px 48px;
}
.section__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 16px auto 0;
}

/* ===== BLOCO 2 – FUNDO COM FOTO ===== */
.bloco2-bg {
  position: relative;
  background: url('alan2.jpg') center center / cover no-repeat;
}
.bloco2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.75);
  z-index: 0;
}

/* ===== BLOCO 2 – PAIN BLOCKS ===== */
.pain-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pain-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,46,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}
.pain-icon {
  display: block;
  font-size: 28px;
  color: #e55;
  margin-bottom: 12px;
}

/* ===== BLOCO 3 – FEATURE CARDS ===== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
  position: relative;
}

.feature-card {
  background: #111;
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(234,89,27,0.2);
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
}
.feature-card--photo {
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(180,180,180,0.25);
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}
.feature-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

/* Animação de entrada dos cards */
.feature-card--photo {
  opacity: 0;
}
.feature-card--photo:nth-child(1) { transform: translateX(-80px); }
.feature-card--photo:nth-child(2) { transform: translateY(80px); }
.feature-card--photo:nth-child(3) { transform: translateX(80px); }

.feature-card--photo.card-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.5s ease !important;
}
.feature-card--photo:nth-child(1).card-in { transition-delay: 0s !important; }
.feature-card--photo:nth-child(2).card-in { transition-delay: 0.2s !important; }
.feature-card--photo:nth-child(3).card-in { transition-delay: 0.4s !important; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.feature-card__icon { font-size: 48px; margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: rgba(242,242,242,0.6); line-height: 1.7; }

.cities-block { text-align: center; }
.cities-label { font-size: 16px; color: #555; margin-bottom: 8px; }
.cities-list { font-size: 18px; font-weight: 700; color: var(--orange); }

/* ===== BLOCO 4 – TOPICS GRID ===== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.topic-item {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
}

/* ===== BLOCO 5 – AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.audience-item {
  background: #111;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  border-top: 3px solid var(--orange);
}

/* ===== BLOCO 6 – DIFERENCIAIS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 24px;
}
.diff-arrow {
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.diff-item p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ===== BLOCO 7 – IMAGINE ===== */
.imagine-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.imagine__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 40px;
}
.imagine__text {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}
.imagine__lead {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.imagine__list {
  list-style: none;
  margin-bottom: 40px;
}
.imagine__list li {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.imagine__closing {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* ===== BLOCO 8 – DEPOIMENTOS ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.stat-box { text-align: center; }
.stat-box__number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-box__label {
  font-size: 13px;
  color: rgba(242,242,242,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial {
  background: #111;
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
}
.testimonial p {
  font-size: 16px;
  color: rgba(242,242,242,0.8);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 15px; color: var(--white); }
.testimonial__author span { font-size: 13px; color: rgba(242,242,242,0.5); }

/* ===== SHORTS DEPOIMENTOS ===== */
.shorts-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 32px 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) #1a1a1a;
}
.shorts-row::-webkit-scrollbar { height: 4px; }
.shorts-row::-webkit-scrollbar-track { background: #1a1a1a; }
.shorts-row::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
.short-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(234,89,27,0.2);
  aspect-ratio: 9 / 16;
  position: relative;
}
.short-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
@media (min-width: 1024px) {
  .short-card { flex: 0 0 calc((100% - 64px) / 5); }
}

/* ===== BLOCO 2 – VÍDEO ===== */
.bloco2-video {
  margin-top: 48px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.bloco2-video__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(234,89,27,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.bloco2-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,2,4,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.bloco2-video__thumb:hover .bloco2-video__overlay {
  background: rgba(2,2,4,0.3);
}
.bloco2-video__play {
  width: 72px;
  height: 72px;
  background: rgba(234,89,27,0.4);
  border: 2px solid rgba(234,89,27,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  animation: pulse-play 2.5s ease-in-out infinite;
}
.bloco2-video__thumb:hover .bloco2-video__play {
  background: rgba(234,89,27,0.7);
  transform: scale(1.1);
  animation: none;
}
.bloco2-video__play svg { width: 44px; height: 44px; }

/* ===== BLOCO 9 – FINDER ===== */
.finder {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 440px;
  width: 88%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234,89,27,0.18);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  position: relative;
}

.finder__list {
  display: flex;
  flex-direction: column;
  background: #161616;
  border-right: 1px solid rgba(234,89,27,0.15);
  z-index: 2;
  min-height: 0;
  overflow: hidden;
}

.finder__search {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}
.finder__search input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px 10px 36px;
  color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgba(242,242,242,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398l3.85 3.85a1 1 0 0 0 1.415-1.415l-3.868-3.833zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
}
.finder__search input:focus { border-color: rgba(234,89,27,0.5); }
.finder__search input::placeholder { color: rgba(242,242,242,0.3); }

.finder__items {
  overflow-y: scroll;
  flex: 1;
  min-height: 0;
}
.finder__items::-webkit-scrollbar { width: 3px; }
.finder__items::-webkit-scrollbar-track { background: transparent; }
.finder__items::-webkit-scrollbar-thumb { background: rgba(234,89,27,0.4); border-radius: 2px; }

.finder__item {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.finder__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s;
}
.finder__item:hover { background: rgba(234,89,27,0.06); }
.finder__item:hover::before { background: rgba(234,89,27,0.4); }
.finder__item.active { background: rgba(234,89,27,0.1); }
.finder__item.active::before { background: var(--orange); }

.finder__pin {
  width: 44px;
  height: 44px;
  background: #0a0a0a;
  border: 1px solid rgba(234,89,27,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
  padding: 6px;
}
.finder__item.active .finder__pin,
.finder__item:hover .finder__pin {
  border-color: var(--orange);
}
.finder__pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.finder__item-info { flex: 1; min-width: 0; }

.finder__city {
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder__item.active .finder__city { color: var(--orange); }
.finder__address {
  color: rgba(242,242,242,0.4);
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder__directions { display: none; }

.btn-finder {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(234,89,27,0.4);
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-finder:hover,
.finder__item.active .btn-finder {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.finder__map-wrap {
  position: relative;
}
.finder__map-accent { display: none; }

#mapa {
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ===== CADASTRO ===== */
.vagas-aviso {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 36px;
}
.form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.form__group input,
.form__group select {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 16px;
  font-family: 'Mulish', sans-serif;
  outline: none;
  transition: border 0.2s;
}
.form__group input:focus,
.form__group select:focus { border-color: var(--orange); }
.form__group select option { background: var(--dark); color: #fff; }

/* ===== FAQ ===== */
.faq-category {
  max-width: 720px;
  margin: 0 auto 12px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(234,89,27,0.25);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(242,242,242,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question span {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-question.open span { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: rgba(242,242,242,0.65);
}
.faq-answer.open { display: block; }

/* ===== VÍDEO DE FUNDO ===== */
.video-section {
  position: relative;
  width: 92%;
  max-width: 1200px;
  height: 650px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.5s;
}
.video-thumb.hidden { opacity: 0; pointer-events: none; }

#ytPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
#ytPlayer.visible { opacity: 1; }
#ytPlayer iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(2,2,4,0.55) 0%,
    rgba(2,2,4,0.4) 50%,
    rgba(2,2,4,0.65) 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-play-btn:hover {
  transform: scale(1.06);
}

.video-play-btn__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(234, 89, 27, 0.35);
  border: 2px solid rgba(234, 89, 27, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: pulse-play 2.5s ease-in-out infinite;
}

.video-play-btn__icon svg {
  width: 60px;
  height: 60px;
}

.video-play-btn:hover .video-play-btn__icon {
  background: rgba(234, 89, 27, 0.65);
  border-color: #ea591b;
  box-shadow: 0 0 40px rgba(234, 89, 27, 0.5);
  animation: none;
}

.video-play-btn__text {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 500;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(234, 89, 27, 0.3);
  border: 1px solid rgba(234, 89, 27, 0.5);
  padding: 12px 32px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s;
}

.video-play-btn:hover .video-play-btn__text {
  background: rgba(234, 89, 27, 0.6);
  border-color: #ea591b;
}

@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,89,27,0.4); }
  50%       { box-shadow: 0 0 0 20px rgba(234,89,27,0); }
}

@media (max-width: 768px) {
  .video-play-btn__icon { width: 80px; height: 80px; }
  .video-play-btn__icon svg { width: 46px; height: 46px; }
  .video-play-btn__text { font-size: 13px; padding: 10px 24px; letter-spacing: 2px; }
}

/* ===== POPUP DO MAPA ===== */
.iamac-popup .maplibregl-popup-content {
  background: #1d1d1d;
  border: 1px solid rgba(234,89,27,0.4);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 220px;
}
.iamac-popup .maplibregl-popup-tip { border-top-color: #1d1d1d; }
.iamac-popup .maplibregl-popup-close-button { color: #f2f2f2; font-size: 18px; padding: 6px 10px; }

/* Controles do mapa */
.maplibregl-ctrl-group { background: #1d1d1d !important; border: 1px solid rgba(234,89,27,0.3) !important; }
.maplibregl-ctrl-group button { color: #f2f2f2 !important; }

.popup-card__header {
  background: linear-gradient(135deg, #ea591b, #ff7f00);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
}
.popup-card__body { padding: 14px 16px; }
.popup-card__address {
  color: rgba(242,242,242,0.75);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}
.popup-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.popup-btn:hover { opacity: 0.85; }
.popup-btn--whatsapp { background: #25D366; color: #fff; }
.popup-btn--maps { background: rgba(255,255,255,0.1); color: #f2f2f2; border: 1px solid rgba(255,255,255,0.15); }

.maplibregl-ctrl-group button:hover { background: rgba(234,89,27,0.15) !important; }
.maplibregl-ctrl-attrib { display: none; }



/* ===== BLOCO 11 – SOBRE ===== */
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sobre__esquerda { display: flex; flex-direction: column; }
.sobre__foto-wrap { position: relative; }
.sobre__retrato {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 0 0 0 auto;
  border: 1px solid rgba(180,180,180,0.25);
}
.sobre__carrossel {
  overflow: hidden;
  margin-top: 48px;
}
.sobre__carrossel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollFotos 80s linear infinite;
}
.sobre__carrossel-track img {
  width: 220px;
  flex-shrink: 0;
  height: 160px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(180,180,180,0.25);
}
.sobre__carrossel:hover .sobre__carrossel-track { animation-play-state: paused; }
@keyframes scrollFotos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sobre__prev,
.sobre__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sobre__prev:hover,
.sobre__next:hover { background: rgba(234,89,27,0.7); }
.sobre__prev { left: 16px; }
.sobre__next { right: 16px; }
.sobre__direita {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}
.sobre__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  text-transform: uppercase;
}
.sobre__direita p {
  color: rgba(242,242,242,0.75);
  font-size: 15px;
  line-height: 1.8;
}
.sobre__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.btn-sobre {
  display: block;
  text-align: center;
  padding: 16px 12px;
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-sobre:hover { background: var(--orange); }
@media (max-width: 900px) {
  .sobre-layout { grid-template-columns: 1fr; }
}

/* ===== BARRA LOGOS ===== */
.logos__barra {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.logos__barra-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 55s linear infinite;
}
.logos__barra-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  flex-shrink: 0;
}
.logos__item img:hover { opacity: 1; }
@keyframes scrollLogos {
  0%   { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  padding: 48px 0;
  border-top: 1px solid rgba(234,89,27,0.2);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__logo img { height: 44px; width: auto; object-fit: contain; }
.footer__tagline {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.footer__insta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__insta:hover { color: var(--orange); }
.footer__copy { text-align: right; }
.footer__copy p { color: rgba(255,255,255,0.35); font-size: 13px; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .sobre-layout { gap: 80px; }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-row { gap: 32px; }
  .hero__content { padding: 60px 16px; }
  .diff-grid { grid-template-columns: 1fr; }

  .finder {
    grid-template-columns: 1fr;
    grid-template-rows: auto 280px;
    height: auto;
    width: 100%;
    border-radius: 8px;
  }
  .finder__list { max-height: 260px; }
  .finder__map-wrap { height: 280px; }
  .finder__map-accent { display: none; }
}

/* ===== POPUP CURSOS ===== */
.feature-card--clickable {
  cursor: pointer;
}
.feature-card--clickable:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(234,89,27,0.2);
}

.curso-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
}
.curso-modal.open {
  opacity: 1;
  pointer-events: all;
}
.curso-modal__box {
  background: #1e1e1e;
  border: 1px solid rgba(234,89,27,0.3);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 40px 40px 36px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s;
  max-height: 90vh;
  overflow-y: auto;
}
.curso-modal.open .curso-modal__box {
  transform: translateY(0) scale(1);
}
.curso-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(242,242,242,0.45);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px;
}
.curso-modal__close:hover { color: #fff; }
.curso-modal__icon {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: center;
}
.curso-modal__title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 600;
  color: #f2f2f2;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.curso-modal__meta {
  text-align: center;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.curso-modal__desc {
  color: rgba(242,242,242,0.75);
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 28px;
}
.curso-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.curso-modal__list li {
  color: rgba(242,242,242,0.85);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.curso-modal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.curso-modal__footer {
  text-align: center;
}
@media (max-width: 600px) {
  .curso-modal__box { padding: 32px 24px 28px; }
  .curso-modal__title { font-size: 20px; }
}

/* ===== MODAL RICH CONTENT (ESPECIALIZAÇÃO HOF) ===== */
.curso-modal__box--rich {
  max-width: 720px;
  padding: 0;
  overflow: hidden;
}
.curso-modal__box--rich .curso-modal__close {
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 12px;
  right: 12px;
}
#modalRich {
  max-height: 88vh;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.rm-hero {
  background: linear-gradient(160deg, #0f0f0f 0%, #1a0a00 60%, #0f0f0f 100%);
  padding: 48px 36px 36px;
  text-align: center;
  border-bottom: 1px solid rgba(196,87,26,0.2);
}
.rm-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.rm-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #f2f2f2;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.rm-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  color: #f2f2f2;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.rm-h3-accent {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}
.rm-sub {
  color: rgba(242,242,242,0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 18px;
}
.rm-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.rm-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(242,242,242,0.8);
}
.rm-badge--alert {
  border-color: rgba(196,87,26,0.5);
  color: var(--orange);
  background: rgba(196,87,26,0.1);
}
.rm-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 0;
}
.rm-block {
  padding: 32px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rm-block--dark {
  background: rgba(0,0,0,0.35);
}
.rm-block--highlight {
  background: linear-gradient(135deg, rgba(196,87,26,0.12) 0%, rgba(0,0,0,0.2) 100%);
  border-left: 3px solid var(--orange);
}
.rm-block--invest {
  background: rgba(0,0,0,0.4);
}
.rm-text {
  color: rgba(242,242,242,0.72);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.rm-bonus {
  font-size: 16px;
  font-weight: 600;
  color: #f2f2f2;
  text-align: center;
  margin: 0;
}
.rm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}
.rm-list li {
  color: rgba(242,242,242,0.82);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.rm-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.rm-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}
.rm-invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.rm-invest-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rm-invest-item--destaque {
  border-color: rgba(196,87,26,0.5);
  background: rgba(196,87,26,0.1);
}
.rm-invest-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.5);
}
.rm-invest-val {
  font-size: 18px;
  font-weight: 700;
  color: #f2f2f2;
}
.rm-invest-item--destaque .rm-invest-val {
  color: var(--orange);
}
.rm-cta-final {
  background: linear-gradient(160deg, #1a0a00, #0f0f0f);
  padding: 40px 36px;
  text-align: center;
}
@media (max-width: 600px) {
  .rm-hero, .rm-block, .rm-cta-final { padding: 24px 20px; }
  .rm-list--two-col { grid-template-columns: 1fr; }
  .rm-invest-grid { grid-template-columns: 1fr; }
  .rm-h1 { font-size: 18px; }
}

/* ===== LIGHTBOX GALERIA ===== */
.sobre__carrossel-track img {
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.sobre__carrossel-track img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(6px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.15s;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: rgba(234,89,27,0.6); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav:hover { background: rgba(234,89,27,0.5); border-color: var(--orange); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 600px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ===== FOTO CLINICA ===== */
.clinica-foto {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.clinica-foto img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ===== CARD BADGE NOVO ===== */
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(234,89,27,0.5);
}

/* ===== BOTÕES SELEÇÃO CURSO ===== */
.curso-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.btn--outline-gold {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn--outline-gold:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== SOBRE LEAD ===== */
.sobre__lead {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}
