:root {
  --bg-light: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-dark: #0f172a;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #2563eb;
  --accent-contrast: #ffffff;
  --header-bg: rgba(255,255,255,0.9);
}

/* Dark theme overrides */
.theme-dark {
  --bg-light: #0b1220;
  --bg-soft: #071025;
  --bg-dark: #00121a;
  --text-main: #e6eef8;
  --text-muted: #9fb3c8;
  --accent: #1fb6ff;
  --accent-contrast: #002233;
  --header-bg: rgba(8,16,24,0.8);
}

/* Header / footer & layout wrappers */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-weight:700; color:var(--text-main); }
.nav-links { display:flex; gap:12px; align-items:center; }
.nav-links a { color:var(--text-muted); text-decoration:none; font-weight:500 }

.page { min-height: calc(100vh - 120px); padding: 40px 16px; background: var(--bg-light); color: var(--text-main); }
.page .container { max-width:900px; margin:0 auto; padding: 48px 20px; background: transparent; }

/* Simple footer */
.site-footer { padding:28px 16px; text-align:center; color:var(--text-muted); }

/* Form styles for better structure */
form { display: grid; gap:12px; }
label { display:block; font-size:14px; color:var(--text-main); }
input, select, textarea { width:100%; padding:10px 12px; border-radius:10px; border:1px solid #e6e9ef; background:transparent; color:var(--text-main); }
button, .btn { background:var(--accent); color:var(--accent-contrast); border:0; padding:10px 14px; border-radius:10px; cursor:pointer; font-weight:600 }

/* Ensure hero text visible on themes */
.hero { color: white; }

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.45),
    rgba(15, 23, 42, 0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
  margin: auto;
  color: white;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(16px, 3vw, 20px);
  max-width: 640px;
}
/* =========================
   HERO 1 — CENTRALIZADO DE VERDADE
   ========================= */

.hero-simple {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.hero-simple .text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-simple h1 {
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: #222;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 120px;
  align-items: center;
}

.section.light {
  background: var(--bg-light);
}

.section.dark {
  background: var(--bg-soft);
  padding: 48px;
  border-radius: 20px;
}

.section.soft {
  background: var(--bg-soft);
  padding: 64px;
  border-radius: 24px;
}

.text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.text p {
  color: var(--text-muted);
}

.text.full {
  grid-column: 1 / -1;
}

.image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.image.small {
  max-height: 360px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-dark);
  color: white;
  border-radius: 28px;
}

.cta-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container {
    padding: 48px 16px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
/* ===== HOW IT WORKS (CENTERED) ===== */

.how-it-works {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 96px;
}

.how-it-works ol {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.how-it-works li {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-main);
}
/* ===== IMAGE SIZES ===== */

.image {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* imagens grandes (hero já tem regra própria) */
.image.medium {
  max-height: 500px;
  margin-bottom: 32px;
}

/* imagens pequenas (cafés, brunch, detalhes) */
.image.small {
  max-height: 3500px;
  margin-bottom: 24px;
}

/* mobile adjustment */
@media (max-width: 600px) {
  .image.medium {
    max-height: 300px;
  }

  .image.small {
    max-height: 220px;
  }
}
/* ===== HOW IT WORKS – PREMIUM ===== */

.how-it-works-section {
  background: linear-gradient(
    to bottom,
    #f6f8fb,
    #ffffff
  );
  padding: 20px 24px;
}

.how-it-works-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.how-it-works-inner h2 {
  font-size: 32px;
  margin-bottom: px;
  letter-spacing: -0.5px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  
}

.step p {
  margin: 0;
  font-size: 18px;
  text-align: left;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .how-it-works-section {
    padding: 72px 16px;
  }

  .how-it-works-inner h2 {
    font-size: 26px;
  }

  .step {
    padding: 18px;
  }

  .step p {
    font-size: 16px;
  }
}
/* ===== CHECK STYLE ===== */

.step-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ===== SCROLL FADE-IN (PREMIUM UX) ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .reveal {
    transform: translateY(16px);
  }
}
/* ===== SPLIT SECTION (TEXT LEFT / IMAGE RIGHT) ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split .text {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.split .image {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.split.visible .text,
.split.visible .image {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split .text,
  .split .image {
    transform: translateY(24px);
  }
}
/* Direção da animação */
.reveal.from-left {
  transform: translateX(-32px);
}

.reveal.from-right {
  transform: translateX(32px);
}

/* Quando fica visível */
.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}
/* ===== CTA ===== */
.cta {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 32px 32px;
  border-radius: 24px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-note {
  opacity: 0.85;
  margin-bottom: 24px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.cta-benefits li {
  margin-bottom: 8px;
  font-size: 14px;
}


/* ===== PAUSE ===== */
.pause {
  text-align: center;
  padding: 80px 24px;
  font-size: 20px;
  font-style: italic;
  color: #334155;
}

/* ===== FIT ===== */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
}

.fit h3 {
  margin-bottom: 12px;
}

.fit ul {
  padding-left: 18px;
}

@media (max-width: 768px) {
  .fit {
    grid-template-columns: 1fr;
  }
}
/* ===== FIT SECTION (POSITIONING) ===== */

.fit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 80px 24px;
  background: #f8fafc;
  border-radius: 32px;
  margin: 80px auto;
  max-width: 1100px;
}

.fit-card {
  padding: 40px 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.fit-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.fit-card ul {
  list-style: none;
  padding: 0;
}

.fit-card li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
}

/* Positive */
.fit-card.positive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 600;
}

/* Negative */
.fit-card.negative li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .fit-section {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }
}
/* =========================
   BENEFITS — HORIZONTAL CHECKLIST
   ========================= */
.fit-section {
  padding-top: 300px;
  padding-bottom: 160px;
}
.benefits-horizontal {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  margin-bottom: 80px;
}

.benefits-list-horizontal {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1100px;
  justify-content: center;
  align-items: flex-start;
}

.benefits-list-horizontal li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222;
}

.benefits-list-horizontal .check {
  color: #2e7d32;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .benefits-list-horizontal {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .benefits-list-horizontal li {
    justify-content: center;
    max-width: 500px;
    text-align: left;
  }
  
}
/* =========================
   BENEFITS TITLE — CENTERED
   ========================= */

.benefits-header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.benefits-title {
  text-align: center;
  margin: 3rem auto 2rem auto;
  font-size: 28px;
}

/* =========================
   BULLET — CIRCLE OUTLINE
   ========================= */

.benefits-list-horizontal .bullet {
  width: 10px;
  height: 10px;
  border: 2px solid #222;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
/* =========================
   IMAGES — CONSISTENT MOBILE SIZE
   ========================= */

.image.medium {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.image.medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .image.medium {
    aspect-ratio: 3 / 4;
  }
}
/* =========================
   MOBILE — CENTER ONLY SECTION TITLES
   ========================= */

@media (max-width: 768px) {
  .section .text h2 {
    text-align: center;
    width: 100%;
  }
}
/* =========================
   LANGUAGE DROPDOWN
   ========================= */

.language-dropdown {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
}

.language-current {
  background: white;
  border: none;
  border-radius: 999px;
  padding: 0.4rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.language-current img {
  width: 22px;
  height: 22px;
  display: block;
}

.language-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 12px;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  min-width: 160px;
}

.language-menu li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
}

.language-menu li:hover {
  background: #f5f5f5;
}

.language-menu img {
  width: 18px;
  height: 18px;
}
.language-dropdown.open .language-menu {
  display: block;
}
.hidden {
  display: none;
}
