:root {
  --primary: #f94d12;
  --secundary: #ab2c00;
  --bg: #fefefe;
  --dark: #1d1d1d;
  --text: #1d1d1d;
  --muted: #7d7d7d;
  --border: #e4e4e4;
}

/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Mídias nunca estouram a largura */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout base */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================= HERO ================= */

.hero {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secundary) 100%);
  color: #fefefe;
  max-width: 100vw;
  overflow-x: hidden;
  min-height: 90vh;         /* ocupa quase a tela inteira */
  display: flex;
  align-items: flex-end;    /* conteúdo encostado na parte de baixo do hero */
}

.hero__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;     /* distância do texto para a base */
}

.hero__tag {
  display: inline-block;
  background: rgba(29, 29, 29, 0.884);  
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}

.hero__text h1 {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__text p {
  max-width: 480px;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

.hero__info {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.hero__image {
  flex: 1;
  display: flex;
  align-items: flex-end;   /* alinha imagem na parte de baixo */
}

.hero__image img {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  display: block;
  /* box-shadow removido */
}

/* ================= BOTÕES ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: #2ab318;
  color: #fefefe;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4);
}

.btn--primary:hover {
  background: #208313;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45);
}

/* ================= SEÇÕES ================= */

.section {
  padding: 3.5rem 0;
  background: var(--bg);
  max-width: 100vw;
  overflow-x: hidden;
}

.section--light {
  background: #fafafa;
}

.section--alt {
  background: #f7f0f9;
}

.section--highlight {
  background: #1d1d1d;
  color: #fefefe;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section--highlight h2 {
  color: #fefefe;
}

.section__subtitle {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

.section--highlight .section__subtitle {
  color: #e0e0e0;
}

.section__note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================= CARDS RÁPIDOS ================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.card {
  background: #fefefe;
  border-radius: 1rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(114, 50, 126, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

.card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 1.05rem;
  font-weight: 600;
}

/* ================= GRIDS ================= */

.grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ================= LISTAS ================= */

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  border: 1px solid black;
  border-radius: 14px;
  padding-top: 5px; padding-bottom: 5px;margin-bottom: 5px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* ================= PARA QUEM É ================= */

.para-quem {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: center;
  width: 100%;
}

.para-quem__text p + p {
  margin-top: 0.7rem;
}

.para-quem__professora img {
  width: 100%;
  border-radius: 1.3rem;
  object-fit: cover;
  display: block;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.para-quem__professora-info {
  margin-top: 0.9rem;
}

.para-quem__professora-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

/* ================= TAGS PROFISSIONAIS ================= */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 50, 126, 0.35);
  font-size: 0.85rem;
  background: #fdf9ff;
  color: var(--dark);
}

/* ================= MEC / FACULDADE ================= */

.mec__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  width: 100%;
}

.mec__text p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* container dos logos */
.mec__logos {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

/* card somente como holder da imagem, sem borda nem sombra */
.mec__logo-card {
  box-shadow: none;
  background: transparent;
  padding: 14px;
  border-radius: 14px;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px black;
  border-style: dashed;
}

/* tamanho padrão das imagens dos selos/logos no desktop */
.mec__logo-card img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= FUTURO ================= */

.futuro__grid p {
  font-size: 0.98rem;
}

/* ================= DEPOIMENTOS (REELS) ================= */

.depoimentos__grid {
  margin-top: 1.5rem;
  width: 100%;
}

.depoimento {
  background: #fefefe;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(114, 50, 126, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

/* Formato Reels (9:16) */
.depoimento__video {
  background: #1d1d1d;
  border-radius: 1rem;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  font-size: 0.9rem;
}

/* Se usar iframe real */
.depoimento__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.depoimento__nome {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

/* ================= INSCRIÇÃO ================= */

.inscricao {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2.4rem;
  align-items: flex-start;
  width: 100%;
}

.inscricao__text p {
  color: #e0e0e0;
  margin-top: 0.7rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group label {
  font-size: 0.86rem;
  font-weight: 500;
}

.form__group input,
.form__group select {
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
  color: #fefefe;
  font-size: 0.95rem;
  width: 100%;
}

.form__group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form__group select {
  color: #fefefe;
}

.form__group--half {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form__group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.form__group--checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 0.1rem;
}

/* ================= FAQ ================= */

.faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq__item {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: #fdfdfd;
  padding: 0.8rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--primary);
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ================= FOOTER ================= */

.footer {
  background: #0f0f0f;
  color: #bfbfbf;
  padding: 1.4rem 0;
  font-size: 0.85rem;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    align-items: stretch;
   background: linear-gradient(180deg, var(--primary) 0%, var(--secundary) 100%);
  }

  .hero__content {
    flex-direction: column-reverse;
    text-align: left;
    gap: 2rem;
    align-items: center;
  }

  .hero__text {
    padding-bottom: 0;
  }

  .hero__image {
    justify-content: center;
  }

  .hero__image img {
    max-width: 340px;
    height: auto;
  }

  .para-quem,
  .inscricao {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .mec__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .mec__logos {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__text h1 {
    font-size: 1.8rem;
  }

  .hero__text p {
    margin-bottom: 1.1rem;
  }
  .hero__image {
    flex: 0;
  }

  .section {
    padding: 2.4rem 0;
  }

  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }

  .section__subtitle {
    margin-bottom: 1.3rem;
  }

  .cards {
    gap: 0.9rem;
  }

  .grid--two,
  .grid--three {
    grid-template-columns: 1fr;
   
  }

  .para-quem,
  .inscricao,
  .mec__content {
    gap: 1.8rem;
  }

  .form__group--half {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  /* Reels em carrossel */
  .depoimentos__grid {
    display: flex;
    overflow-x: auto;
    gap: 0.9rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.3rem 0 0.8rem;
  }

  .depoimento {
    scroll-snap-align: center;
    flex: 0 0 78%;
    max-width: 78%;
    padding: 0.8rem;
  }

  .depoimento__video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .hero__content {
    gap: 1.6rem;
  }

  .hero__text p {
    max-width: 100%;
  }

  .cards {
    gap: 0.8rem;
  }

  .card {
    padding: 0.9rem 0.85rem;
  }

  .section {
    padding: 2.1rem 0;
  }

  .para-quem,
  .inscricao,
  .mec__content,
  .depoimentos__grid {
    gap: 1.4rem;
  }

  .faq {
    gap: 0.5rem;
  }

  .footer {
    padding: 1.1rem 0;
  }

  /* Logos MEC/FAC menores e centralizados no mobile */
  .mec__logos {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }

  .mec__logo-card img {
    width: 140px; /* tamanho mobile */
  }

  /* Carrossel mais compacto */
  .depoimentos__grid {
    gap: 0.7rem;
  }

  .depoimento {
    flex: 0 0 82%;
    max-width: 82%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* HERO mobile: imagem + título alinhados na parte de baixo */
  .hero {
    min-height: 100vh;           /* ocupa a altura da tela */
    align-items: stretch;
  }

  .hero__content {
    justify-content: flex-end;   /* tudo encostado na parte de baixo do hero */
    align-items: center;
    gap: 0.001rem;
  }

  .hero__image {
    order: 1;
    justify-content: center;
  }

  .hero__image img {
    max-width: 320px;
    height: auto;
  }

  .hero__text {
    order: 2;
    padding-bottom: 1.5rem;      /* espaço entre título e fim do hero */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__tag {
    margin-bottom: 0.5rem;
  }

  .hero__text h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .hero__text p {
    margin-bottom: 0.75rem;
  }

  /* resto das seções mantém o que já tinha */
  .section {
    padding: 2.4rem 0;
  }

  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }

  .section__subtitle {
    margin-bottom: 1.3rem;
  }

  .cards {
    gap: 0.9rem;
  }

  .grid--two,
  .grid--three {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .para-quem,
  .inscricao,
  .mec__content {
    gap: 1.8rem;
  }

  .form__group--half {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  /* Reels em carrossel */
  .depoimentos__grid {
    display: flex;
    overflow-x: auto;
    gap: 0.9rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.3rem 0 0.8rem;
  }

  .depoimento {
    scroll-snap-align: center;
    flex: 0 0 78%;
    max-width: 78%;
    padding: 0.8rem;
  }

  .depoimento__video {
    max-width: 100%;
  }
}

.reels-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.reels-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Ícone de play/pause */
.reels-play-icon {
  position: absolute;
  font-size: 55px;
  color: white;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Barra de progresso inferior */
.reels-progress {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  overflow: hidden;
}

.reels-progress-bar {
  width: 0;
  height: 100%;
  background: white;
  transition: width .1s linear;
}


.reels-tap-audio {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  animation: blinkAudio 1s infinite;
  pointer-events: none;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes blinkAudio {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

.whatsapp-cta {
  background: linear-gradient(180deg, var(--primary), var(--secundary));
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.whatsapp-box {
  background: #ffffff;
  max-width: 500px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.whatsapp-box h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #111;
}

.whatsapp-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.whatsapp-button {
  display: inline-block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-button:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  background-color: #2ab318;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

/* Efeito no hover (só aparece no desktop) */
.whatsapp-float:hover {
  transform: scale(1.08);
  opacity: 0.9;
}
