/* ============================================================
   MOVA GENTE E GESTÃO — Landing Page Styles
   Mobile-first. No gradients. Clean & professional.
   ============================================================ */

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

:root {
  --orange: #ffb884;
  --yellow: #f5df98;
  --cream:  #fff8d4;
  --sage:   #c0d1c2;
  --dark:   #2e4347;
  --white:  #ffffff;
  --body-text: #4b6469;

  --ff-heading: 'Playfair Display', serif;
  --ff-body:    'Inter', sans-serif;

  --section-v: 88px;
  --container-w: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ----------------------------------------
   CONTAINER
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}


/* ----------------------------------------
   TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3 {
  font-family: var(--ff-heading);
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--ff-body); }

p {
  color: var(--body-text);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}


/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 5px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--dark);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #f0a568;
  border-color: #f0a568;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}


/* ----------------------------------------
   SECTION BACKGROUNDS
   ---------------------------------------- */
.section {
  padding: var(--section-v) 0;
}

.section-white { background: var(--white); }
.section-cream  { background: var(--cream);  }
.section-sage   { background: var(--sage);   }
.section-dark   { background: var(--dark);   }

.section-header {
  max-width: 600px;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
}


/* ----------------------------------------
   NAVBAR
   ---------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 6px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: var(--white);
  padding: 4px 0;
  box-shadow: 0 1px 0 rgba(46, 67, 71, 0.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-img {
    height: 130px;
  }
}


/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  padding-top: 112px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 138px;
  }
}

.hero-image {
  width: 100%;
  height: 62vw;
  max-height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-content {
  padding: 48px 24px 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-content h1 {
  max-width: 17ch;
}

.hero-desc {
  font-size: 1rem;
  max-width: 42ch;
  color: var(--body-text);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 54% 46%;
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-image {
    order: 1;
    height: 100%;
    max-height: none;
  }

  .hero-content {
    order: 0;
    padding: 120px 56px 80px 40px;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .hero-content {
    padding: 140px 80px 100px 80px;
  }
}


/* ----------------------------------------
   PROBLEMA
   ---------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #dde8e9;
}

.pain-item {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pain-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.pain-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.pain-item p {
  font-size: 0.92rem;
  margin: 0;
}

@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ----------------------------------------
   SOLUÇÃO
   ---------------------------------------- */
.solucao-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.solucao-inner h2 {
  margin-bottom: 28px;
}

.solucao-inner p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #3d5256;
}

.solucao-inner p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--dark);
}

.section-sage .eyebrow {
  color: var(--dark);
  opacity: 0.65;
}

.section-sage h2 {
  color: var(--dark);
}


/* ----------------------------------------
   DIFERENCIAIS
   ---------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--sage);
}

.card {
  background: var(--white);
  padding: 40px 32px;
}

.card-icon {
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ----------------------------------------
   SOBRE
   ---------------------------------------- */
.sobre {
  display: grid;
  grid-template-columns: 1fr;
}

.sobre-image {
  width: 100%;
  height: 80vw;
  max-height: 560px;
  overflow: hidden;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-content {
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sobre-content h2 {
  max-width: 20ch;
}

.sobre-content p {
  max-width: 46ch;
}

.sobre-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 28px;
  border-top: 1px solid var(--sage);
  margin-top: 8px;
}

.sobre-stat strong {
  font-size: 2.2rem;
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.sobre-stat span {
  font-size: 0.85rem;
  color: #7a9da2;
  margin-top: 4px;
}

@media (min-width: 900px) {
  .sobre {
    grid-template-columns: 42% 58%;
    min-height: 580px;
  }

  .sobre-image {
    height: 100%;
    max-height: none;
  }

  .sobre-content {
    padding: 80px 72px 80px 64px;
    justify-content: center;
  }
}


/* ----------------------------------------
   CTA INTERMEDIÁRIO
   ---------------------------------------- */
.cta-section {
  padding: 88px 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.section-dark h2 {
  color: var(--white);
  max-width: 22ch;
}

.section-dark p {
  color: #9bbec2;
  font-size: 1.05rem;
}


/* ----------------------------------------
   FORMULÁRIO
   ---------------------------------------- */
.form-container {
  max-width: 700px;
}

.form-header {
  margin-bottom: 44px;
}

.form-header h2 {
  margin-bottom: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #c8d8da;
  border-radius: 5px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #a8bfc2;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--dark);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%232e4347' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

select option:first-child {
  color: #a8bfc2;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group:last-of-type {
  margin-bottom: 32px;
}

.form-success {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid var(--sage);
  border-radius: 8px;
}

.success-check {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 12px;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}


/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background: var(--dark);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--white);
}

.footer-logo em {
  font-style: italic;
  font-weight: 400;
}

.footer-copy {
  font-size: 0.8rem;
  color: #6a8f94;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
