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

:root {
  --green-dark:    #145a1e;
  --green-primary: #1e7a28;
  --green-medium:  #2a8e35;
  --green-bright:  #3db848;
  --yellow:        #f5c518;
  --yellow-cta:    #e8a800;
  --orange-cta:    #e87c00;
  --dark:          #080c08;
  --dark-2:        #0e120e;
  --dark-green-bg: #0d1e10;
  --white:         #ffffff;
  --gray-light:    #f4f4f4;
  --red-del:       #d93025;
  --text-dark:     #181818;
  --text-gray:     #555555;
  --text-muted:    #888888;

  --font-body:    'Montserrat', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --max-w:        1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- Utility ---- */
.c-green        { color: var(--green-primary); }
.c-green-light  { color: var(--green-bright); }
.c-green-bright { color: var(--green-bright); }

.section-pre {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-primary);
  margin-bottom: 8px;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
  transition: filter 0.2s ease, transform 0.1s ease;
  text-align: center;
}
.btn:hover  { filter: brightness(1.12); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--green    { background: var(--green-primary); color: var(--white); }
.btn--yellow   { background: var(--yellow-cta);    color: var(--dark); }
.btn--whatsapp { background: #25D366;               color: var(--white); }

.btn--lg { padding: 17px 44px; font-size: 1rem; }


/* ================================================================
   SEÇÃO 1 — HERO
================================================================ */
.hero {
  position: relative;
  background: #050f06 url('../assets/hero-bg.jpg') center/cover no-repeat;
  padding: 36px 20px 64px;
  text-align: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 18, 5, 0.88) 0%,
    rgba(5, 28, 8, 0.80) 50%,
    rgba(3, 18, 5, 0.92) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero__logo {
  flex-shrink: 0;
}
.hero__logo img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero__badge {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 5px;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(245, 197, 24, 0.55);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.hero__video-label {
  font-size: 0.88rem;
  color: #ccc;
  font-style: italic;
}

.hero__video {
  position: relative;
  width: 100%;
  max-width: 680px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.hero__video video,
.hero__video iframe,
.hero__video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  border: none;
  object-fit: cover;
}

/* Overlay sobre o vídeo */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.video-overlay:hover { background: rgba(0, 0, 0, 0.5); }

.video-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, filter 0.2s;
  animation: pulse-btn 2s ease-in-out infinite;
}
.video-cta-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.04);
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(30,122,40,0.5); }
  50%       { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(30,122,40,0); }
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 0.2s;
}
.hero__play-btn:hover { background: rgba(255, 255, 255, 0.32); }
.hero__play-btn svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  margin-left: 4px;
}

.hero__caption {
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.65;
  max-width: 600px;
}

.hero__cta { margin-top: 6px; }


/* ================================================================
   SEÇÃO 2 — CURSOS
================================================================ */
.cursos {
  padding: 72px 20px;
  background: var(--white);
  text-align: center;
}

.cursos__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 40px;
  line-height: 1.35;
}

/* ---- Carrossel infinito ---- */
.cursos__carousel-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

@keyframes scroll-cards {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cursos__track-infinite {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scroll-cards 32s linear infinite;
}


.cursos__card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 290px;
  aspect-ratio: 2 / 3;
  flex-shrink: 0;
  cursor: pointer;
}
.cursos__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ================================================================
   SEÇÃO 3 — CERTIFICAÇÃO
================================================================ */
.certificacao {
  padding: 80px 20px;
  background: var(--gray-light);
}

.certificacao__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 52px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.certificacao__img img {
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  width: 100%;
}

.certificacao__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.certificacao__content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-gray);
  margin-bottom: 14px;
}

.certificacao__content .btn { margin-top: 8px; }


/* ================================================================
   SEÇÃO 4 — DEPOIMENTOS
================================================================ */
.depoimentos {
  padding: 68px 20px;
  background: #192e1a;
  text-align: center;
  overflow: hidden;
}

.depoimentos__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 42px;
}



/* ================================================================
   SEÇÃO 4 — DEPOIMENTOS (carrossel de vídeos)
================================================================ */
.dep-carousel-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

@keyframes scroll-dep {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.dep-track-infinite {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-dep 28s linear infinite;
}

.dep-carousel-wrap:hover .dep-track-infinite {
  animation-play-state: paused;
}

.dep-video-card {
  position: relative;
  width: 368px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #0e1f10;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
}

.dep-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.dep-video-card:hover img { transform: scale(1.04); }

.dep-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 0.2s, transform 0.2s;
}
.dep-play-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) scale(1.1);
}
.dep-play-btn svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  margin-left: 4px;
}

@media (max-width: 768px) {
  .dep-video-card { width: 299px; }
}
@media (max-width: 480px) {
  .dep-video-card { width: 253px; }
}

/* ================================================================
   MODAL DE VÍDEO — DEPOIMENTOS
================================================================ */
.dep-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.dep-modal.active {
  display: flex;
}
.dep-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.dep-modal__box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 880px;
}
.dep-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.dep-modal__close:hover { opacity: 1; }
.dep-modal__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.dep-modal__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   SEÇÃO 5 — APP PREVIEW
================================================================ */
.app-preview {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.app-preview__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-preview__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 44px;
}

.phone-wrap { display: flex; justify-content: center; }

.phone-mockup {
  width: 240px;
  background: #111;
  border-radius: 38px;
  padding: 10px;
  border: 3px solid #2a2a2a;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
}

.phone-notch {
  width: 70px;
  height: 10px;
  background: #222;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 8px;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 420px;
}
.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================================================================
   SEÇÃO 6 — QUALIFICAÇÃO
================================================================ */
.qualificacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.qualificacao__left {
  background: #0c1a0d;
  display: flex;
  align-items: center;
  padding: 64px 48px;
}

.qualificacao__content { color: var(--white); }

.qualificacao__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.qualificacao__content h2 em { font-style: italic; }

.qualificacao__content > p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #ccc;
  margin-bottom: 22px;
}

.qualificacao__content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.qualificacao__content ul {
  margin-bottom: 22px;
}
.qualificacao__content ul li {
  font-size: 0.88rem;
  color: #bbb;
  padding: 5px 0 5px 20px;
  position: relative;
}
.qualificacao__content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--green-bright);
}

.qualificacao__right {
  overflow: hidden;
}
.qualificacao__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ================================================================
   SEÇÃO 7 — INPROTEC
================================================================ */
.inprotec {
  position: relative;
  padding: 80px 20px;
  background: var(--dark-green-bg) url('../assets/inprotec-bg.jpg') center/cover no-repeat;
}
.inprotec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 10, 0.88);
}
.inprotec .container { position: relative; z-index: 1; }

.inprotec__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: center;
}

.inprotec__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.inprotec__content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #ccc;
  margin-bottom: 14px;
}
.inprotec__content .btn { margin-top: 10px; }

.inprotec__img img {
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  width: 100%;
}


/* ================================================================
   SEÇÃO 8 — ACOMPANHAMENTO
================================================================ */
.acompanhamento {
  padding: 80px 20px;
  background: var(--white);
}

.acompanhamento__grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 52px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.acompanhamento__img img {
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  width: 100%;
}

.acompanhamento__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
}

.acompanhamento__content p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.acompanhamento__list {
  margin-bottom: 24px;
}
.acompanhamento__list li {
  font-size: 0.88rem;
  color: var(--text-gray);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.6;
}
.acompanhamento__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--green-bright);
}


/* ================================================================
   SEÇÃO 9 — PRICING
================================================================ */
.pricing {
  padding: 80px 20px;
  background: #0a0d0a;
  color: var(--white);
  text-align: center;
}

.pricing__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1.3;
  margin-bottom: 44px;
}

.pricing__box {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.pricing__list {
  margin-bottom: 24px;
}

.pricing__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: #d8d8d8;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing__row:last-child { border-bottom: none; }

.chk {
  color: var(--green-bright);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing__row del {
  color: var(--red-del);
  margin: 0 5px;
  font-size: 0.85rem;
}

.pricing__bonus-header {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 8px;
}

/* Total box */
.pricing__total {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  margin: 30px 0;
  text-align: center;
}

.total-label {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 4px;
}
.total-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ddd;
  text-decoration: line-through;
  text-decoration-color: var(--red-del);
}

.discount-label {
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 14px;
}

.price-installment {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.price-cash {
  font-size: 0.95rem;
  color: #999;
}

/* CTAs */
.pricing__ctas {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pricing__ctas .btn { flex: 1 1 200px; max-width: 280px; }

/* Selos de confiança */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 12px;
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
}
.trust-badge__icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #bbb;
  text-align: center;
  line-height: 1.5;
}

.trust-badge__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .trust-badges { gap: 0; padding: 16px 10px; }
  .trust-badge { padding: 0 6px; }
  .trust-badge__icon { width: 36px; height: 36px; }
  .trust-badge__label { font-size: 0.65rem; }
}


/* ================================================================
   SEÇÃO 10 — GARANTIA
================================================================ */
.garantia {
  padding: 80px 20px;
  background: var(--white);
}

.garantia__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

.garantia__badge-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Fallback CSS seal */
.garantia__seal { flex-shrink: 0; }
.seal__outer {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    #1e7a28 0deg 30deg,
    #f5c518 30deg 60deg,
    #1e7a28 60deg 90deg,
    #f5c518 90deg 120deg,
    #1e7a28 120deg 150deg,
    #f5c518 150deg 180deg,
    #1e7a28 180deg 210deg,
    #f5c518 210deg 240deg,
    #1e7a28 240deg 270deg,
    #f5c518 270deg 300deg,
    #1e7a28 300deg 330deg,
    #f5c518 330deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.seal__inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #1e7a28;
  border: 4px solid #f5c518;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seal__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.seal__dias {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.seal__sub {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.garantia__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.garantia__content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-gray);
  margin-bottom: 24px;
}


/* ================================================================
   SEÇÃO 11 — FAQ
================================================================ */
.faq {
  padding: 80px 20px;
  background: var(--gray-light);
}

.faq__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-primary);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto 44px;
}

.faq__item { border-bottom: 1px solid #ddd; }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--green-primary); }

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 16px;
}
.faq__a p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-gray);
  padding: 4px 8px;
}

.faq__cta { text-align: center; }


/* ================================================================
   FOOTER
================================================================ */
.footer {
  padding: 48px 20px 36px;
  background: #060d07;
  text-align: center;
}

.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.footer__logo {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Fallback texto logo */
.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.footer__logo-fd { color: var(--white); }
.footer__logo-o  { color: var(--green-bright); }

.footer__divider {
  width: 60px;
  height: 2px;
  background: var(--green-primary);
  margin: 0 auto 28px;
  opacity: 0.6;
}

.footer__legal {
  font-size: 0.7rem;
  color: #444;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}


/* ================================================================
   RESPONSIVIDADE — TABLET (≤ 768px)
================================================================ */
@media (max-width: 768px) {

  .cursos__card { width: 210px; }

  .certificacao__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .qualificacao {
    grid-template-columns: 1fr;
  }
  .qualificacao__right {
    height: 280px;
    order: -1;
  }
  .qualificacao__left {
    padding: 52px 28px;
  }

  .inprotec__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .acompanhamento__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .garantia__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .garantia__badge { margin: 0 auto; }
  .garantia__badge img { margin: 0 auto; }

}


/* ================================================================
   RESPONSIVIDADE — MOBILE (≤ 480px)
================================================================ */
@media (max-width: 480px) {

  .hero { padding: 28px 16px 52px; }
  .hero__badge { font-size: 1.4rem; letter-spacing: 2px; }

  .cursos { padding: 52px 0; }
  .cursos .container { padding: 0 24px; }
  .cursos__card { width: 178px; }

  .certificacao { padding: 56px 16px; }

  .qualificacao__left { padding: 44px 20px; }


  .phone-mockup { width: 200px; }
  .phone-screen { min-height: 350px; }

  .pricing__box { text-align: left; }
  .price-installment { font-size: 2rem; }

  .garantia { padding: 56px 16px; }

  .faq { padding: 56px 16px; }
  .faq__q { font-size: 0.85rem; }

  .btn--lg { padding: 15px 28px; font-size: 0.9rem; }
}
