/* ===== FONTS ===== */
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/Iskra-Bold.woff2') format('woff2'),
       url('../assets/fonts/Iskra-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/IskraW01-Regular.woff2') format('woff2'),
       url('../assets/fonts/IskraW01-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --laranja: #FE8802;
  --navy: #022D53;
  --teal: #02B1BA;
  --creme: #FFF5EA;
  --creme-base: #F7F3EC;
  --branco: #FFFFFF;
  --texto: #333333;
  --sombra: 0 4px 16px rgba(0,0,0,0.06);
  --radius: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Iskra', sans-serif;
  font-size: 17.6px;
  line-height: 1.5;
  color: var(--texto);
  background-color: var(--creme-base);
  overflow-x: hidden;
}
img { max-width: 100%; width: auto; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* ===== SECTIONS ===== */
.secao { padding: 96px 0; }
.secao--branco { background: var(--branco); }
.secao--creme { background: var(--creme); }
.secao--navy { background: var(--navy); }
@media (max-width: 768px) {
  .secao { padding: 64px 0; }
}

/* ===== DESIGN SYSTEM — SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.kicker {
  display: block;
  font-family: 'Iskra', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.kicker--laranja { color: var(--laranja); }
.section-title {
  font-family: 'Iskra', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .section-title { font-size: 36px; }
}
@media (max-width: 640px) {
  .section-title { font-size: 28px; }
}
.section-subtitle {
  font-family: 'Iskra', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--texto);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
.section-subtitle + .section-subtitle { margin-top: 16px; }

/* ===== TYPOGRAPHY (non-section) ===== */
h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}
h2.white { color: var(--branco); }
h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background-color: var(--laranja);
  color: var(--branco);
  border-radius: 32px;
  padding: 20px 36px;
  font-family: 'Iskra', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  text-align: center;
  line-height: 1.3;
}
.btn-cta:hover { background-color: #E87500; transform: translateY(-2px); }
.btn-wrap { text-align: center; margin-top: 40px; }

/* ===== LOGO ===== */
.site-header {
  background: var(--branco);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid rgba(2,45,83,0.07);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-icon { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2; }
.logo-teal { color: var(--teal); }
.logo-orange { color: var(--laranja); }

/* ===== HERO ===== */
.hero {
  background: url('https://metodoconstrucao.com/wp-content/uploads/2024/02/bg-hero_01-copy.webp') center/cover no-repeat;
  padding: 64px 0 80px;
}
.hero__inner { text-align: center; }
.hero h1 { max-width: 780px; margin: 0 auto 16px; }
.hero__sub {
  font-size: 20px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero__intro {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--navy);
}
.hero-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin: 0 0 36px;
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--navy);
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--laranja);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__video {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
}
.hero__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .hero { padding: 40px 0 48px; }
}

/* ===== YOUTUBE EMBED (depoimentos) ===== */
.yt-wrap {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.yt-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.yt-wrap:hover img { opacity: 0.8; }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.yt-play-circle {
  width: 76px;
  height: 76px;
  background: rgba(254,136,2,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.yt-wrap:hover .yt-play-circle { transform: scale(1.08); }
.yt-play-circle::after {
  content: '';
  border: 14px solid transparent;
  border-left: 22px solid white;
  margin-left: 5px;
}
.yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* ===== JORNADA DO TUTOR ===== */
.jornada-lista {
  display: grid;
  gap: 32px;
  margin: 0 auto 40px;
  max-width: 800px;
}
.jornada-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.jornada-item__icon { flex-shrink: 0; color: var(--teal); }
.jornada-item__titulo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.jornada-item__texto { font-size: 15.5px; color: var(--texto); margin: 0; }

/* ===== CONE NUNCA MAIS ===== */
.cone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.cone-card {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.cone-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cone-card__info { padding: 16px; }
.cone-card__nome {
  font-weight: 700;
  color: var(--laranja);
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
}
.cone-card__legenda { font-size: 14px; color: var(--texto); line-height: 1.4; margin: 0; }
@media (max-width: 900px) { .cone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cone-grid { grid-template-columns: 1fr; } }

/* ===== DEPOIMENTOS ===== */
.balde { margin-bottom: 80px; }
.balde:last-child { margin-bottom: 0; }

.carousel-outer { overflow: hidden; width: 100%; }
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-track { background: #ddd; border-radius: 4px; }
.carousel::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 280px;
}
.dep-card {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.dep-card img { width: 100%; height: auto; display: block; }

@media (min-width: 769px) {
  .carousel {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .carousel--5 { grid-template-columns: repeat(5, 1fr); }
  .carousel--4 { grid-template-columns: repeat(4, 1fr); }
  .carousel--3 { grid-template-columns: repeat(3, 1fr); }
  .carousel-item { flex: none; width: auto; }
  .carrossel-dots { display: none; }
}

/* ===== DOTS DE CARROSSEL (mobile only) ===== */
.carrossel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.dot.active {
  background: var(--laranja);
  width: 24px;
  border-radius: 4px;
}

.video-dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-dep-card {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.video-dep-card__info {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .video-dep-grid { grid-template-columns: 1fr; }
}

/* ===== ANALOGIA / 3 FASES ===== */
.fases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.fase-card {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 4px solid var(--teal);
  text-align: left;
}
.fase-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.fase-card h3 { color: var(--navy); margin-bottom: 12px; }
.img-center {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 32px auto;
  border-radius: var(--radius);
}
.blockquote-gin {
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  max-width: 700px;
  margin: 8px auto 0;
  line-height: 1.55;
  quotes: "\201C""\201D";
}
.blockquote-gin::before {
  content: open-quote;
  font-size: 64px;
  color: var(--laranja);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
  font-style: normal;
}
@media (max-width: 768px) {
  .fases-grid { grid-template-columns: 1fr; }
}

/* ===== RÉGUA DA COCEIRA ===== */
.regua-img { max-width: 700px; width: 100%; margin: 0 auto 40px; }
.regua-img img { width: 100%; height: auto; display: block; }
.regua-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.regua-card {
  border-radius: var(--radius);
  padding: 28px 24px;
}
.regua-card--red { background: #FFF0F0; border-top: 4px solid #C53030; }
.regua-card--yellow { background: #FFFFF0; border-top: 4px solid #D69E2E; }
.regua-card--green { background: #F0FFF4; border-top: 4px solid #276749; }
.regua-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.regua-card--red .regua-card__badge { background: #C53030; color: white; }
.regua-card--yellow .regua-card__badge { background: #D69E2E; color: white; }
.regua-card--green .regua-card__badge { background: #276749; color: white; }
.regua-card h3 { margin-bottom: 10px; font-size: 18px; }
.regua-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.regua-card--red .regua-tag { background: #C53030; color: white; }
.regua-card--yellow .regua-tag { background: #D69E2E; color: white; }
.regua-card--green .regua-tag { background: #276749; color: white; }
@media (max-width: 768px) { .regua-grid { grid-template-columns: 1fr; } }

/* ===== EXPECTATIVA x REALIDADE ===== */
.flow-section { text-align: center; }
.flow-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 28px;
}
.flow-step {
  background: var(--branco);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--sombra);
}
.flow-step--bad { border-top: 3px solid #C53030; }
.flow-step--good { border-top: 3px solid #276749; }
.flow-arrow { font-size: 20px; font-weight: 700; }
.flow-arrow--bad { color: #C53030; }
.flow-arrow--good { color: #276749; }
.flow-pill {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 20px;
  margin: 12px 0 16px;
}
.expectativa-text { max-width: 760px; margin: 32px auto 0; text-align: left; }
.met-img { max-width: 700px; width: 100%; margin: 0 auto 32px; border-radius: var(--radius); display: block; }

/* ===== INCLUÍDO ===== */
.incluido-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.incluido-card {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--branco);
  display: flex;
  flex-direction: column;
}
.incluido-card__img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
}
.incluido-card__mockup {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.incluido-card__mockup svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 10px;
}
.incluido-card h3 {
  color: var(--branco);
  font-size: 18px;
  margin-bottom: 10px;
}
.incluido-card p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 900px) { .incluido-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .incluido-grid { grid-template-columns: 1fr; } }

/* ===== FRASE DESTAQUE ===== */
.destaque-frase {
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
  max-width: 800px;
  margin: 48px auto;
}
@media (max-width: 768px) {
  .destaque-frase { font-size: 24px; margin: 36px auto; }
}

/* ===== QUEM É A GABI ===== */
.gabi-secao {
  background: var(--creme);
}
.gabi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.gabi-foto img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(245, 133, 63, 0.4);
}
.gabi-box {
  min-width: 0;
}
.gabi-box .section-header {
  max-width: 100%;
  text-align: left;
  margin-bottom: 28px;
}
.gabi-box .section-title { font-size: 36px; }
.gabi-destaque {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--branco);
  border-radius: 12px;
  border-left: 4px solid var(--laranja);
}
@media (max-width: 1023px) {
  .gabi-layout {
    grid-template-columns: 45fr 55fr;
    gap: 36px;
    padding: 72px 24px;
  }
  .gabi-foto img { max-width: 500px; }
}
@media (max-width: 768px) {
  .gabi-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }
  .gabi-foto { order: -1; }
  .gabi-foto img { max-width: 500px; width: 100%; margin: 0 auto; }
  .gabi-box .section-header { text-align: center; }
  .gabi-box .section-title { font-size: 28px; }
}

/* ===== GARANTIA ===== */
.garantia-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.garantia-img-wrap { flex-shrink: 0; width: 200px; }
.garantia-img-wrap img { width: 100%; border-radius: 12px; }
.garantia-destaque {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--laranja);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .garantia-layout { flex-direction: column; align-items: center; gap: 28px; }
  .garantia-img-wrap { width: 160px; }
  .garantia-destaque { font-size: 18px; }
}

/* ===== FAQ ===== */
.faq-lista {
  display: grid;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 800px;
}
details.faq-item {
  background: var(--branco);
  border: 1.5px solid #E8E8E8;
  border-radius: var(--radius);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--teal); }
summary.faq-pergunta {
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary.faq-pergunta::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  width: 28px;
  text-align: center;
}
details[open] .faq-plus { display: none; }
details:not([open]) .faq-minus { display: none; }
.faq-resposta {
  padding: 4px 24px 20px;
  font-size: 16px;
  color: var(--texto);
  line-height: 1.65;
}

/* ===== CTA FINAL ===== */
.cta-final-section {
  text-align: center;
  padding: 100px 0;
}
.cta-final-section h2 {
  color: var(--branco);
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 8px;
}
.cta-final-section .sub {
  color: rgba(255,255,255,0.8);
  font-size: 19px;
  margin-bottom: 40px;
}
.btn-cta--large {
  font-size: 18px;
  padding: 24px 48px;
}
@media (max-width: 480px) {
  .cta-final-section { padding: 64px 0; }
  .btn-cta--large { font-size: 16px; padding: 20px 28px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--creme-base);
  padding: 56px 24px;
  text-align: center;
}
.footer-logo { margin-bottom: 28px; display: flex; justify-content: center; }
.footer-pagamentos { max-width: 280px; margin: 0 auto 28px; }
.footer-disclaimer {
  font-size: 13px;
  color: #888;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,45,83,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
}
.modal-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.modal-card p { font-size: 14.5px; color: #666; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 0 4px;
}
.modal-close:hover { color: var(--navy); }
.modal-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Iskra', sans-serif;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  display: block;
}
.modal-field:focus { border-color: var(--teal); outline: none; }
.modal-submit { width: 100%; margin-top: 8px; padding: 18px; font-size: 16px; }
.modal-error {
  display: none;
  background: #FFF0F0;
  color: #C53030;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 12px;
}
.modal-error.active { display: block; }
@media (max-width: 480px) {
  .modal-card { padding: 32px 20px; }
}
