/* =====================================================
   Kids2Gether — main.css (fiel ao Figma)
   - Header + Hero: TEAL
   - Por que: WHITE
   - Processo: TEAL
   - Nathalia: BLACK
   - Travel Place: TEAL
   - Footer: BLACK
   ===================================================== */
:root {
  --c-teal: #81CBA9;
  --c-teal-deep: #5fb89c;
  --c-teal-soft: #92D6C0;
  --c-yellow: #F9C045;
  --c-orange: #F5A640;
  --c-orange-strong: #F39E2D;
  --c-orange-deep: #E5710B;
  --c-text: #2C3E50;
  --c-text-soft: #4B5563;
  --c-muted: #8F8F8F;
  --c-bg: #FFFFFF;
  --c-black: #0E0E0E;
  --c-black-soft: #1A1A1A;
  --c-gray-light: #C7C7C7;
  --c-gray-dark: #4A4A4A;
  --c-cream: #FFF5F0;
  --c-border: #E2E2E2;

  --shadow-sm: 0 4px 14px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --font-display: 'Quicksand', 'Raleway', system-ui, sans-serif;
  --font-body: 'Raleway', system-ui, sans-serif;

  /* T1.1 — section spacing scale (BPM pattern) */
  --section-py: 60px;
  --section-py-tight: 48px;
  --section-py-spacious: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-orange-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 18px;
  background: var(--c-text); color: #fff; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; border-radius: 8px; }

/* =================== HEADER + HERO (TEAL) =================== */
.hero {
  background: var(--c-teal);
  position: relative;
  padding-bottom: 60px;
  color: #fff;
}

.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; padding-bottom: 12px;
}
.brand img {
  width: 110px; height: auto; object-fit: contain;
  /* Branqueia o logo cursivo para contrastar com o teal */
  filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 1px 0 rgba(0,0,0,.05));
}
.wave-header {
  width: 220px; height: 40px;
  opacity: .85;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 40px;
}
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 36px;
  overflow-wrap: break-word;
}
.wave-hero {
  display: block;
  width: 140px; height: 36px;
  margin-top: 26px;
  opacity: 1;
}
.hero-right {
  display: flex; justify-content: flex-end; align-items: center;
}

/* Video player */
.video-player {
  display: block;
  width: 100%; max-width: 580px;
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  background: #000;
  object-fit: cover;
}

/* Hero photo (usado no lugar do vídeo nas landings, ex: Summer Camp) */
.hero-photo {
  display: block;
  width: 100%; max-width: 580px;
  height: auto;
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

/* divider entre Hero top e Hero bottom */
.hero-divider { padding: 18px 32px; }
.hero-divider span {
  display: block; height: 1px;
  background: rgba(255,255,255,.6);
}

/* Hero bottom row: Paris photo + lead text/form */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  padding-top: 30px;
}
.paris-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  height: 100%;
  min-height: 100%;
}
.paris-card > img:first-child {
  width: 100%; height: 100%; object-fit: cover;
}
.paris-logo {
  position: absolute;
  top: 24px; left: 50%; transform: translateX(-50%);
  width: 180px; height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.hero-bottom-right {
  display: flex; flex-direction: column; gap: 24px;
}
.lead-text {
  color: #fff;
  font-size: 16px; line-height: 1.5;
  margin: 0;
}

/* Form card (mantido na home, posicionado abaixo do lead text) */
.form-card {
  background: var(--c-yellow);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  box-shadow: var(--shadow-md);
}
.cotacao-form .field { margin-bottom: 10px; }
.cotacao-form input,
.cotacao-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--c-teal);
  border-radius: 6px;
  font-family: inherit; font-size: 14px;
  background: #fff; color: var(--c-text);
}
.cotacao-form input::placeholder,
.cotacao-form textarea::placeholder { color: var(--c-muted); }
.cotacao-form input:focus,
.cotacao-form textarea:focus {
  outline: none; border-color: var(--c-teal-deep);
  box-shadow: 0 0 0 3px rgba(129,203,169,.25);
}
.cotacao-form textarea { resize: vertical; min-height: 60px; }

.radio-group { border: 0; padding: 6px 0 4px; margin: 8px 0; }
.radio-group legend { font-weight: 600; color: var(--c-text); margin-bottom: 8px; font-size: 13px; }
.radio-group .req { color: var(--c-orange-deep); }
.radio { display: flex; align-items: center; gap: 8px; padding: 3px 0; cursor: pointer; }
.radio input[type=radio] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; border: 2px solid var(--c-text); border-radius: 50%;
  display: inline-block; position: relative; cursor: pointer;
  background: transparent;
}
.radio input[type=radio]:checked {
  border-color: var(--c-teal-deep);
  box-shadow: inset 0 0 0 3px var(--c-teal-deep);
}
.radio span { font-size: 13px; color: var(--c-text); }

.cotacao-form button { margin-top: 12px; padding: 11px 18px; font-size: 14px; }
.cotacao-form .btn-orange {
  background: var(--c-teal);
  box-shadow: 0 4px 14px rgba(129,203,169,.30);
}
.cotacao-form .btn-orange:hover { background: var(--c-teal-deep); }
.form-feedback { font-size: 13px; margin: 10px 0 0; text-align: center; min-height: 16px; }
.form-feedback.is-error   { color: #b81d1d; }
.form-feedback.is-success { color: #176f3b; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 1.5px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  text-align: center; text-decoration: none;
  text-transform: uppercase; font-size: 13px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-orange {
  background: var(--c-yellow);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,192,69,.30);
}
.btn-orange:hover {
  background: var(--c-orange-deep);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-lg { padding: 14px 38px; font-size: 14px; }
.btn-block { width: 100%; display: block; }

/* =================== SECTIONS =================== */
.section { padding: var(--section-py) 0; }
.section--tight    { --section-py: var(--section-py-tight); }
.section--spacious { --section-py: var(--section-py-spacious); }
.section-white { background: #fff; }
.section-teal { background: var(--c-teal); color: #fff; }
.section-teal-soft { background: var(--c-teal); color: var(--c-text); }
.section-black {
  background: #fff;
  color: var(--c-text);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600; line-height: 1.18;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
  color: var(--c-text);
}
.section-title-light { color: #fff; font-weight: 500; }
.section-title-dark  { color: var(--c-gray-light); font-weight: 500; }

.title-dot {
  color: var(--c-orange-strong); margin-right: 6px;
  font-weight: 700;
}

.process-title {
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 0 0 48px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 1.2px #fff;
}
.process-title .airplane { display: inline-flex; }
.process-title .process-logo { height: 1.4em; width: auto; display: inline-block; }

.two-col {
  display: grid; gap: 60px; align-items: center;
  grid-template-columns: 1fr 1fr;
}
.col-text p {
  margin: 0 0 12px; font-size: 13px; line-height: 1.7;
}
.section-white .col-text p { color: var(--c-text); }
.section-teal-soft .col-text p { color: var(--c-text); font-size: 16px; }
.section-teal-soft .section-title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.8px var(--c-text);
}
.section-black .col-text p { color: var(--c-text); font-size: 16px; }
.col-media { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.col-media.center { gap: 28px; align-items: center; }

/* =================== POR QUE =================== */
.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.porque-text { padding-top: 16px; max-width: 480px; }
.porque-text .section-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.8px var(--c-text);
}
.porque-text p {
  color: var(--c-text); font-size: 15px; line-height: 1.7;
  margin: 0;
}

/* Cluster scrapbook estilo Figma */
.porque-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 14px;
  align-items: start;
}
.porque-photos .ph {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  object-fit: cover;
  width: 100%;
}
.porque-photos .ph-1 {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1/1;
}
.porque-photos .ph-2 {
  grid-column: 1 / 3;
  grid-row: 2;
  aspect-ratio: 5/4;
}
.porque-photos .ph-3 {
  grid-column: 3;
  grid-row: 1 / 3;
  aspect-ratio: 1/1;
  align-self: center;
}

/* =================== PROCESS =================== */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.process-step { color: #fff; }
.process-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.process-icon svg { width: 100%; height: 100%; }
.process-step h3 {
  font-family: var(--font-display);
  margin: 0 0 14px;
  font-size: 24px; font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
}
.process-step p {
  margin: 0; color: #fff; font-size: 19px; line-height: 1.55;
}

/* =================== NATHALIA (BLACK) =================== */
.section-black .section-title {
  color: var(--c-text);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.8px var(--c-text);
}
.polaroid {
  background: #fff;
  padding: 16px 16px 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  max-width: 280px;
  transform: rotate(-3deg);
  transform-origin: center center;
}
.polaroid img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 3/4; object-fit: cover;
}
.badge-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: 22px;
}
.badge-row img {
  height: 52px; width: auto;
  border-radius: 4px;
}

/* =================== TRAVEL PLACE =================== */
.travel-logo { max-width: 440px; width: 100%; }

/* =================== CTA FINAL (BLACK) =================== */
.cta-final {
  background: var(--c-black);
  padding: 30px 0 40px;
  text-align: center;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--c-black);
  color: #888;
  padding: 14px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner { display: flex; justify-content: center; align-items: center; }
.site-footer p { margin: 0; font-size: 11px; }
.site-footer a { color: var(--c-orange-strong); font-weight: 500; }
.site-footer a:hover { color: var(--c-orange-deep); }

/* =====================================================
   NINA PELO MUNDO — estilos específicos da landing do livro
   ===================================================== */

/* Hero: subtítulo abaixo do título */
.hero-sub {
  margin: 14px 0 26px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text);
  max-width: 460px;
}
/* Foto do hero com acento amarelo na base (igual figma) */
.hero-photo--accent {
  border-bottom: 8px solid var(--c-yellow);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

/* Título centralizado com sublinhado tracejado laranja */
.section-title--center {
  text-align: center;
  display: block;
  font-weight: 500;
  color: var(--c-text);
  margin: 0 0 14px;
}
.title-dashes {
  width: 220px; max-width: 60%;
  margin: 0 auto 8px;
  border: 0;
  border-top: 3px dashed var(--c-orange);
}

/* =================== FEATURES (o que você vai encontrar) =================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}
.features-box {
  background: #ECECEC;
  border-radius: var(--radius-sm);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.feature-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}
.feature-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-text-soft);
}
.features-media {
  border-bottom: 8px solid var(--c-teal);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.features-media img { width: 100%; height: 100%; object-fit: cover; }

/* =================== DEPOIMENTOS (black) =================== */
.testimonials { background: var(--c-black); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: #fff;
  padding: 36px 28px 30px;
  border-bottom: 6px solid var(--c-teal);
  text-align: center;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .6;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 24px;
}
.testi-author {
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 14px;
  font-size: 15px;
}
.testi-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-soft);
  font-style: italic;
}

/* =================== CTA COMPRAR (teal) =================== */
.cta-buy { background: var(--c-teal); text-align: center; }
.cta-buy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  margin: 0 0 6px;
}
.cta-buy p { color: rgba(255,255,255,.92); margin: 0 0 26px; font-size: 15px; }

/* =================== SOBRE MIM =================== */
.section-graylight { background: #ECECEC; }
.sobre-title { font-weight: 700; }
.sobre-title small {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-text-soft);
  margin-top: 4px;
}
.sobre-media {
  border-bottom: 8px solid var(--c-teal);
  border-radius: 4px;
  overflow: hidden;
}

/* =====================================================
   CHAPADA DOS VEADEIROS — landing com formulário no hero
   ===================================================== */
.chapada-hero .hero-grid { align-items: center; }
.chapada-intro {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 16px 0 22px;
  max-width: 460px;
}
.chapada-form { max-width: 440px; }
.chapada-form .field { margin-bottom: 14px; }
.chapada-form .form-label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}
.chapada-form input { width: 100%; }
.chapada-form .btn-block { margin-top: 6px; }

/* Seção Pousada Maya */
.chapada-pousada .section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.chapada-pousada .col-text p { max-width: 520px; }
.chapada-pousada .btn { margin-top: 26px; }
.chapada-media img {
  border-radius: var(--radius-sm);
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.chapada-divider { padding: 0 0 8px; }
.chapada-divider span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.7);
  max-width: 760px;
  margin: 0 auto;
}

/* =================== NINA REDIRECT (tela de redirecionamento) =================== */
.redirect-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-teal);
  padding: 40px 24px;
}
.redirect-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.redirect-logo { width: 64px; height: auto; margin: 0 auto 24px; opacity: .85; }
.redirect-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  margin: 0 0 18px;
}
.redirect-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 14px;
}
.redirect-hint {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0 0 22px;
}
.redirect-count {
  display: inline-block;
  background: var(--c-teal-deep);
  color: var(--c-text);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  margin: 0 0 22px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .hero-grid   { grid-template-columns: 1fr; gap: 32px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-bottom .paris-card { aspect-ratio: 4/3; height: auto; min-height: 0; }
  .porque-grid { grid-template-columns: 1fr; gap: 32px; }
  .porque-text { max-width: 100%; }
  .porque-photos { min-height: 480px; }
  .two-col     { grid-template-columns: 1fr; gap: 32px; }
  .process     { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-box  { padding: 28px; }
  .testi-grid    { grid-template-columns: 1fr; gap: 20px; }
  .chapada-form  { max-width: 100%; }
  .chapada-media { display: flex; justify-content: center; }
  .chapada-media img { max-width: 100%; }
  .section     { padding: 50px 0; }
  .hero        { padding-bottom: 40px; }
  .hero-right  { justify-content: center; }
  .brand img   { width: 90px; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .form-card { padding: 18px 16px; }
  .badge-row img { height: 44px; }
  .polaroid { max-width: 240px; }

  /* T1.3 mobile fix — hero title cabe nas 3 linhas <br/> do HTML */
  .hero-title { font-size: clamp(19px, 5vw, 24px); }

  /* T1.5 — mobile fallback do CSS Grid Z-pattern */
  .porque-photos {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .porque-photos .ph,
  .porque-photos .ph-1,
  .porque-photos .ph-2,
  .porque-photos .ph-3 {
    margin: 0;
    aspect-ratio: 4/3;
    max-width: 100%;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
