:root {
  --bg: #FDFAF6;
  --rosa: #E8A0A0;
  --verde: #7BBFB5;
  --dourado: #C9A96E;
  --texto: #2D2D2D;

  --rosa-suave: #f3c9c9;
  --verde-suave: #b9dcd6;
  --dourado-suave: #e3d2b3;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--texto);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 250, 246, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 45, 45, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dourado);
  opacity: 0.85;
  padding-left: 12px;
  border-left: 1px solid rgba(45,45,45,0.15);
}

.header-nav {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 500;
}

.header-nav a {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.header-nav a:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
  padding: 96px 0 0;
}

.hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.28;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--rosa);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.82;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rosa);
  color: #fff;
}

.btn-primary:hover {
  background: #e08c8c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(232, 160, 160, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--texto);
  border: 1.5px solid rgba(45,45,45,0.18);
}

.btn-ghost:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.btn-outline {
  background: transparent;
  color: var(--verde);
  border: 1.5px solid var(--verde);
}

.btn-outline:hover {
  background: var(--verde);
  color: #fff;
}

.btn-verde {
  background: var(--verde);
  color: #fff;
}

.btn-verde:hover {
  background: #6aada3;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(123, 191, 181, 0.6);
}

.hero-tagline {
  text-align: center;
  padding: 0 0 64px;
}

.hero-tagline span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--dourado);
}

.hero-tagline span::before,
.hero-tagline span::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--dourado-suave);
  vertical-align: middle;
  margin: 0 16px;
}

/* ===== ORIGIN ===== */
.origin {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid rgba(45,45,45,0.06);
  border-bottom: 1px solid rgba(45,45,45,0.06);
}

.origin-inner {
  max-width: 680px;
  margin: 0 auto;
}

.origin-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  text-align: center;
  color: var(--texto);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
  opacity: 0.78;
}

/* ===== PILLARS ===== */
.pillars { padding: 96px 0; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(45,45,45,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
}

.pillar-corpo::before { background: var(--rosa); }
.pillar-mente::before { background: var(--verde); }
.pillar-logistica::before { background: var(--dourado); }

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(45,45,45,0.14);
}

.pillar-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.pillar-corpo .pillar-label { background: var(--rosa-suave); color: #a85a5a; }
.pillar-mente .pillar-label { background: var(--verde-suave); color: #3d7d73; }
.pillar-logistica .pillar-label { background: var(--dourado-suave); color: #8a6f3f; }

.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.95rem;
  opacity: 0.78;
}

/* ===== PHASES ===== */
.phases {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid rgba(45,45,45,0.06);
  border-bottom: 1px solid rgba(45,45,45,0.06);
}

.phase-list {
  max-width: 720px;
  margin: 0 auto;
}

.phase-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}

.phase-row:last-child { border-bottom: none; }

.phase-row h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--rosa);
}

.phase-row p {
  opacity: 0.8;
  font-size: 0.96rem;
}

/* ===== CONTACT / FORMS ===== */
.contact { padding: 96px 0 120px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(45,45,45,0.07);
}

.form-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.9rem;
  opacity: 0.72;
  margin-bottom: 24px;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 16px 0 6px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(45,45,45,0.14);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--texto);
  transition: border-color 0.2s ease;
}

.form-card select {
  padding-right: 36px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D2D2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-cliente input:focus,
.form-cliente select:focus {
  outline: none;
  border-color: var(--rosa);
}

.form-profissional input:focus {
  outline: none;
  border-color: var(--verde);
}

/* ===== CONSENT CHECKBOX ===== */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
  cursor: pointer;
  margin-top: 20px;
}

.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--rosa);
  cursor: pointer;
  border-radius: 4px;
}

.consent-label a {
  color: var(--verde);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== BUTTONS / FORM ===== */
.btn-form {
  width: 100%;
  margin-top: 24px;
  border: none;
  font-family: var(--font-body);
}

.form-success {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid rgba(45,45,45,0.06);
}

.site-footer .logo {
  display: block;
  margin-bottom: 8px;
}

.site-footer p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--verde);
  opacity: 1;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rosa);
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(45,45,45,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 20;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: #e08c8c; }

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .header-nav { display: none; }
  .logo-tagline { display: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .phase-row { grid-template-columns: 1fr; gap: 8px; }
  .hero { padding-top: 64px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .hero-tagline span::before,
  .hero-tagline span::after { width: 18px; margin: 0 10px; }
}

/* ===== ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}