/* ===================================================
   LINEA EQUILÍBRIO — Stylesheet
   Fonte: Google Sans Flex
   =================================================== */

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

:root {
  --teal:        #0F3F49;
  --teal-light:  #1a5c6b;
  --sage:        #6B8C7A;
  --sage-light:  #82a892;
  --cream:       #F5EFE6;
  --cream-dark:  #ede4d8;
  --gold:        #C5A55A;
  --gold-light:  #d4b97a;
  --white:       #FFFFFF;
  --text-dark:   #1A2E32;
  --text-mid:    #4a6267;
  --text-light:  #F5EFE6;

  --font: 'Google Sans Flex', 'Arial', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 63, 73, 0.10);
  --shadow-lg: 0 8px 40px rgba(15, 63, 73, 0.18);
  --transition: 0.25s ease;
  --max-w: 1120px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Texto em <svg>: garante que a webfont aplicada à página também seja usada no texto vetorial (alguns browsers ignoram apenas o <style> interno do SVG). */
svg text,
svg tspan {
  font-family: 'Google Sans Flex', 'Arial', sans-serif;
  text-rendering: geometricPrecision;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: 0.875rem; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 90, 0.4);
}

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--teal  { background: var(--teal); }
.section--sage  { background: var(--sage); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__header--light {}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.section__label--gold  { color: var(--gold); }
.section__label--cream { color: var(--cream); }

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section__title--light { color: var(--white); }

.section__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
  border-radius: 2px;
}
.section__divider--gold  { background: var(--gold); }
.section__divider--cream { background: rgba(245,239,230,0.6); }

/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav--scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: 0 2px 16px rgba(15, 63, 73, 0.08);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__brand-svg {
  display: block;
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

/* Símbolo só no celular — evita logo horizontal larga empurrar/cobrir o menu */
.nav__brand-svg--compact {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--teal); }

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 520px;
}

.hero__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__logo-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   SERVIÇOS
   =================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  border-top-color: var(--gold);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================================
   PREÇOS
   =================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.pricing-card--highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card--highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.pricing-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  padding-top: 8px;
}
.pricing-card__value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(245,239,230,0.75);
}

.pricing-card__promo {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-card__promo span {
  font-size: 0.78rem;
  color: var(--text-mid);
}
.pricing-card__promo strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}
.pricing-card__promo small {
  font-size: 0.75rem;
  color: var(--sage);
}

.pricing-packages {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
}

.pricing-packages__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.pricing-package {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-package:last-of-type { border-bottom: none; }

.pricing-package__sessions {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
  flex-shrink: 0;
}
.pricing-package__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-package__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.pricing-package--maintenance .pricing-package__num { font-size: 1.2rem; }

.pricing-package__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-package__info span {
  font-size: 0.9rem;
  color: var(--white);
}
.pricing-package__info small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.pricing-package__total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.pricing-package__total small {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.pricing-packages__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

.displacement {
  margin-top: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.12);
}

.displacement__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.displacement__items { display: flex; flex-direction: column; gap: 12px; }

.displacement__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.displacement__item:last-child { border-bottom: none; padding-bottom: 0; }

.displacement__value { font-weight: 600; color: var(--white); }
.displacement__value--free { color: var(--gold); }

.displacement__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ===================================================
   DIFERENCIAIS
   =================================================== */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pillar__icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar:hover .pillar__icon {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.pillar__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.pillars__phrase {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===================================================
   INFORMAÇÕES
   =================================================== */
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.info__list { display: flex; flex-direction: column; gap: 12px; }
.info__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.info__list li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.payment__methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.payment__method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.payment__method svg { color: var(--teal); flex-shrink: 0; }

.info__schedule {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 16px;
  background: var(--cream-dark);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

/* ===================================================
   CONTATO
   =================================================== */
.contact__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
}
.contact__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.contact__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--teal-light);
  padding: 40px 0;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__name {
  font-family: 'Google Sans Flex', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  line-height: 1.3;
  color: rgba(245, 239, 230, 0.88);
  text-transform: uppercase;
}
.footer__icon {
  width: 22px;
  height: auto;
  fill: rgba(255,255,255,0.5);
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .info__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .nav__container {
    gap: 12px;
    padding: 0 16px;
  }

  .nav__logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 48px);
  }

  .nav__brand-svg--full {
    display: none;
  }

  .nav__brand-svg--compact {
    display: block;
    height: 44px;
    width: auto;
    max-height: 44px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 101;
    margin-left: 0;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    visibility: hidden;
    pointer-events: none;
  }

  .nav__links--open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links a {
    display: block;
    padding: 14px 8px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(15, 63, 73, 0.08);
  }

  .nav__links a:last-child {
    border-bottom: none;
  }

  .nav__toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 102;
  }

  .nav__cta {
    display: none;
  }

  .section { padding: 72px 0; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .contact__actions { flex-direction: column; align-items: center; }
  .footer__content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pillars__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pricing-package { flex-wrap: wrap; }
  .displacement__item { flex-direction: column; align-items: flex-start; gap: 4px; }
}
