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

:root {
  --bg-page: #f7f3ee;
  --bg-light: #ffffff;
  --bg-soft: #fbf7f2;
  --accent: #ff9b6a;
  --accent-soft: #ffe2cf;
  --text-main: #3c3a36;
  --text-muted: #8b857c;
  --border-soft: #e4d9cf;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
}

/* GENERAL LAYOUT */

.wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER / NAV */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-main);
}

.logo span {
  font-size: 12px;
  vertical-align: super;
}

.main-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text-main);
  border-color: var(--accent-soft);
}

/* HERO */

.hero {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-soft);
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0 50px;
}

.hero-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: var(--accent);
  color: #ffffff;
}

.btn.primary:hover {
  opacity: 0.9;
}

.btn.ghost {
  background-color: #ffffff;
  color: var(--text-main);
  border-color: var(--border-soft);
}

.btn.ghost:hover {
  background-color: var(--bg-soft);
}

/* GENERIC SECTION STYLES */

.section {
  padding: 40px 0;
}

.section-about {
  background-color: var(--bg-soft);
}

.section-reminders {
  background-color: #ffffff;
}

.section-steps {
  background-color: #ffffff;
}

.section-banner {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

/* ABOUT SPLIT SECTION */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: center;
}

.about-main h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-main p {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.about-core {
  margin-top: 14px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  border: 1px solid var(--border-soft);
}

.about-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.about-core-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-core-text span {
  font-weight: 600;
}

.about-media img {
  width: 100%;
  height: 360px;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  object-position: center bottom;
}

/* TEXT LINK */

.text-link {
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-main);
}

.text-link:hover {
  color: var(--accent);
}

/* REMINDER IMAGES */

.reminder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reminder-card {
  background-color: var(--bg-soft);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reminder-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.reminder-card figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  color: var(--text-main);
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background-color: var(--bg-soft);
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-soft);
}

.step-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* CTA BANNER */


.banner-inner {
  background-color: var(--bg-soft);
  border-radius: 26px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border-soft);
}

.banner-text h2 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}

.banner-text p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 420px;
}

/* FOOTER */

.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  padding: 16px 0 20px;
  text-align: center;
}

.footer-brand {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .reminder-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-inner {
    padding: 50px 0 40px;
  }

  .hero h1 {
    font-size: 24px;
  }
}
/* ========== DIGITAL OBESITY PAGE ========== */

.page-digital-obesity {
  background-color: var(--bg-page) 
}

/* generic layout helpers */

.do-screen {
  padding: 96px 24px;
}

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

/* small label text (eyebrow) */

.do-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  margin-bottom: 12px;
  color: #9d8777;
}

/* ===== SCREEN 1 – QUOTE (CLEAN FEED STYLE) ===== */

.do-quote-section {
  background-color: #ffffff;   /* pure white */
  padding: 120px 24px;
  text-align: center;
}

.do-quote-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #c9b6a9;  /* soft taupe, matching the index page */
  margin-bottom: 24px;
  display: block;
}

.do-quote-text {
  font-family: 'Reenie Beanie', cursive;
  font-size: 44px;
  line-height: 1.45;
  color: #e57c55;       /* your Clean Feed orange!! */
  max-width: 900px;
  margin: 0 auto 24px auto;
}

.do-quote-attrib {
  font-size: 15px;
  color: #a68b75;
}

/* ===== SCREEN 2 – SPLIT TEXT + IMAGE ===== *//* ===== SCREEN 2 — SPLIT TEXT + IMAGE (STYLE EXACT LIKE REFERENCE) ===== */

.do-split {
  background-color: #fdf7f2;
  padding: 120px 0;
}

.do-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;   /* <--- ESSENCIAL para CENTRALIZAR A IMAGEM */
  justify-content: space-between;
}

.do-split-text {
  flex: 1;
}

.do-split-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: #2a2a26;
  margin-bottom: 24px;
}

.do-split-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #5c524a;
  margin-bottom: 16px;
}

.do-split-img {
  flex: 1;
  display: flex;
  justify-content: center;   /* <--- CENTRALIZA A IMAGEM */
}

.do-split-img img {
  width: 70%;          /* <--- DEIXA A IMAGEM MENOR */
  max-width: 420px;    /* <--- EXATAMENTE COMO SUA REFERÊNCIA */
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

/* ===== SCREEN 3 – DEFINITION ===== */

.do-definition-section {
  background-color: #fbf2ec;
  padding: 120px 24px;
}

.do-definition-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 700px;
}

.do-definition p {
  text-align: left;
  color: #3f342c;
  font-size: 16px;
  line-height: 1.75;
}

.do-definition-columns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

/* ===== BANNER CORTADO ===== */

.do-banner {
  width: 100%;
  height: 380px;       /* altura exata do banner */
  overflow: hidden;    /* corta a imagem */
  margin: 0;
  padding: 0;
  background-color: #f8f5f2; /* opcional, mesmo tom da página */
}

.do-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* corta a imagem, NÃO distorce */
  object-position: center;
  display: block;
}

/* ===== SCREEN 5 – STATS ===== */

.do-stats-section {
  background-color: #fdf7f2;
}

.do-stats-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.do-stats-left h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-top: 12px;
}

.do-stats-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #5d4c3f;
}

.do-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.do-stat {
  border-radius: 20px;
  border: 1px solid #ead9ca;
  padding: 22px 20px;
  background-color: #fefaf7;
}

.do-stat-number {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.do-stat-label {
  font-size: 13px;
  line-height: 1.6;
  color: #6d5a4a;
}

/* responsive tweaks for stats */

@media (max-width: 900px) {
  .do-stats-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .do-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .do-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== SCREEN 6 – HEAVY DAY ===== */

.do-heavy-day-section {
  background-color: #fbf2ec;
}

.do-heavy-day-section h2 {
  max-width: 560px;
  margin-bottom: 32px;
}

.do-heavy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.do-heavy-card {
  background-color: #fefaf7;
  border-radius: 20px;
  border: 1px solid #ead9ca;
  padding: 20px 18px;
}

.do-heavy-card h3 {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.do-heavy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.do-heavy-card li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.do-heavy-note {
  font-size: 14px;
  max-width: 640px;
  color: #6d5a4a;
}

/* ===== NAV ACTIVE STATE (optional) ===== */

.main-nav a.nav-active {
  border-bottom: 2px solid #f68b58;
  padding-bottom: 4px;
}

/* ===== Responsive tweaks ===== */

@media (max-width: 900px) {
  .do-split {
    grid-template-columns: 1fr;
  }

  .do-definition-columns {
    grid-template-columns: 1fr;
  }

  .do-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .do-heavy-grid {
    grid-template-columns: 1fr;
  }

  .do-quote-card {
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .do-screen {
    padding: 72px 16px;
  }

  .do-quote-text {
    font-size: 24px;
  }

  .do-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   PAGE 3 – SYMPTOMS
   ============================ */

.symptoms-hero {
  padding: 120px 24px 64px;
  text-align: center;
}

.symptoms-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8b0a6; /* parecido com seu cinza clarinho */
  margin-bottom: 12px;
}

.symptoms-hero-title {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.symptoms-hero-subtitle {
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
  color: #7e746a;
}

/* BLOCO PRINCIPAL: POSTER + SINTOMAS */

.symptoms-main {
  padding: 0 24px 80px;
}

.symptoms-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* POSTER CARD */

.symptoms-poster-card {
  flex: 0 0 380px;
  background: #f8eee6; /* tom bege tipo o da home */
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.symptoms-poster-card img {
  display: block;
  width: 100%;
  height: auto;      /* não corta horizontalmente */
  object-fit: contain;
  border-radius: 16px;
}

/* LISTA DE SINTOMAS */

.symptoms-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.symptom-item {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.symptom-title {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.symptom-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6f665e;
}

/* FACT BOX FINAL */

.symptoms-fact-section {
  padding: 0 24px 96px;
}

.symptoms-fact-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fbf4ee;
  border-radius: 24px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.symptoms-fact-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8b0a6;
  margin-bottom: 8px;
}

.symptoms-fact-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6f665e;
}

/* RESPONSIVO – MOBILE */

@media (max-width: 768px) {
  .symptoms-hero {
    padding-top: 96px;
  }

  .symptoms-layout {
    flex-direction: column;
  }

  .symptoms-poster-card {
    margin: 0 auto 12px;
    flex: 0 0 auto;
    max-width: 360px;
  }

  .symptoms-main {
    padding-bottom: 64px;
  }

  .symptoms-fact-section {
    padding-bottom: 80px;
  }
}

/* ============================
   PAGE 4 – DETOX PLANS
   ============================ */

.detox-hero {
  padding: 120px 24px 72px;
  background: #f5eee7; /* mesmo clima da Digital Obesity / Symptoms */
  text-align: center;
}

.detox-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.detox-hero-title {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.detox-hero-subtitle {
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 18px;
  color: #7e746a;
}

.detox-hero-intro {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #6f665e;
  max-width: 620px;
  margin: 0 auto;
}

/* BLOCO TEASER (imagem + título + mini intro) */

.detox-block {
  padding: 56px 24px 8px;
}

.detox-teaser {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.detox-teaser-alt {
  flex-direction: row-reverse; /* só pra variar o lado da imagem no plano 2 */
}

.detox-image {
  flex: 0 0 360px;
  background: #fbf4ee;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.detox-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.detox-teaser-text {
  flex: 1;
}

.detox-plan-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.detox-plan-tagline {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #6a6159;
}

.detox-plan-blurb {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #6f665e;
}

/* DETALHES DO DETOX (screen 2) */

.detox-details-section {
  padding: 0 24px 40px;
}

.detox-details-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 22px 24px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.detox-details-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8b0a6;
  margin-bottom: 6px;
}

.detox-details-body {
  font-size: 0.94rem;
  color: #6f665e;
  margin-bottom: 18px;
  max-width: 700px;
}

.detox-details-columns {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}

.detox-details-column {
  flex: 1;
}

.detox-details-column h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.detox-details-column ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #645b54;
}

.detox-details-column ul ul {
  list-style: circle;
  margin-top: 4px;
}

.detox-details-footer {
  border-top: 1px solid #eee0d5;
  padding-top: 10px;
  margin-top: 6px;
}

.detox-details-footer p {
  font-size: 0.9rem;
  color: #6a6159;
}

/* FACT BOX FINAL */

.detox-fact-section {
  padding: 32px 24px 96px;
}

.detox-fact-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fbf4ee;
  border-radius: 26px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.detox-fact-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8b0a6;
  margin-bottom: 10px;
}

.detox-fact-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6f665e;
}

/* RESPONSIVO – MOBILE */

@media (max-width: 900px) {
  .detox-teaser,
  .detox-teaser-alt {
    flex-direction: column;
  }

  .detox-image {
    flex: 0 0 auto;
    max-width: 360px;
    margin: 0 auto 8px;
  }

  .detox-details-columns {
    flex-direction: column;
  }

  .detox-hero {
    padding-top: 96px;
  }
}

@media (max-width: 500px) {
  .detox-block {
    padding-top: 40px;
  }

  .detox-details-card {
    border-radius: 22px;
    padding: 18px 16px 20px;
  }

  .detox-fact-card {
    padding: 18px 16px;
  }
}

/* ============================
   PAGE 5 – TOOLS
   ============================ */

/* HERO – mesmo espírito do Detox Plans */

.tools-hero {
  padding: 120px 24px 72px;
  background: #f5eee7;
}

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

.tools-hero-title {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tools-hero-subtitle {
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  color: #7e746a;
}

/* BLOCO GERAL DE CADA TOOL */

.tools-block {
  padding: 56px 24px 40px;
  background: #ffffff;
}

.tools-block-alt {
  background: #fdf7f1;
}

.tools-layout {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.tools-layout-reverse {
  flex-direction: row-reverse;
}

.tools-text {
  flex: 1;
}

.tools-image {
  flex: 0 0 320px;
  max-width: 340px;
  background: #fbf4ee;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.tools-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
}

.tools-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8b0a6;
  margin-bottom: 8px;
}

.tools-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.tools-intro {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #6f665e;
  margin-bottom: 16px;
}

.tools-subheading {
  font-size: 0.94rem;
  margin-top: 10px;
  margin-bottom: 4px;
}

.tools-footnote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #867b71;
  margin-top: 14px;
}

/* COLUNAS – TOOL 01 */

.tools-columns {
  display: flex;
  gap: 32px;
  margin-top: 10px;
}

.tools-column {
  flex: 1;
}

.tools-column h3 {
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.tools-column-note {
  font-size: 0.85rem;
  color: #a09285;
  margin-bottom: 6px;
}

.tools-column ul,
.tools-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #645b54;
}

/* GRID – FOCUS MODES (TOOL 03) */

.tools-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.tools-focus-item ul,
.tools-list {
  list-style: disc;
  padding-left: 24px;   /* mais respiro */
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #645b54;
}

.tools-focus-item li {
  margin-bottom: 6px;    /* separação mais sofisticada */
}

/* CLOSING LINE */

.tools-closing {
  padding: 40px 24px 96px;
  text-align: center;
  background: #ffffff;
}

.tools-closing p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6f665e;
  font-style: italic;
}

/* RESPONSIVO – MOBILE */

@media (max-width: 900px) {
  .tools-hero {
    padding-top: 96px;
  }

  .tools-layout,
  .tools-layout-reverse {
    flex-direction: column;
  }

  .tools-image {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0 auto 16px;
  }

  .tools-columns {
    flex-direction: column;
  }

  .tools-focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .tools-block {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .tools-image {
    border-radius: 22px;
    padding: 12px;
  }

  .tools-focus-item {
    border-radius: 16px;
  }

  .tools-closing {
    padding-bottom: 80px;
  }
}

/* =========================================
   CLEAN FEED™ – GLOBAL STYLES
   ========================================= */

/* ----- Base ----- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, -webkit-system-font,
    "SF Pro Text", "Segoe UI", sans-serif;
  background: #f7f1ea; /* soft beige */
  color: #1f1f1f;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 0.75rem;
}

ul,
ol {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

/* ----- Layout helpers ----- */

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
}

/* ----- Typography ----- */

h1,
h2,
h3,
h4 {
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.1rem;
}

/* label-style small kicker text */
.label-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8c8780;
  margin-bottom: 0.4rem;
}

/* tiny caption text */
.tiny-caption {
  font-size: 0.72rem;
  color: #8c8780;
}

/* =========================================
   HEADER + NAV
   ========================================= */

.site-header {
  background: #f7f1ea;
  border-bottom: 1px solid #e2d6c6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo span {
  font-size: 0.75em;
  vertical-align: super;
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ff7440;
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* =========================================
   GENERIC SECTION STYLES
   ========================================= */

section {
  padding: 3.5rem 0;
}

.section-heading {
  margin-bottom: 1rem;
}

/* Simple card style (you might use this elsewhere) */
.card {
  background: #fdfaf6;
  border-radius: 18px;
  border: 1px solid #e4d7c8;
  padding: 1.75rem;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  border: none;
  padding: 0.7rem 1.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  cursor: pointer;
  background: #ff7440;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out,
    opacity 0.15s ease-out;
}

.btn-primary:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  border-top: 1px solid #e2d6c6;
  padding: 1.5rem 0 2rem;
  font-size: 0.78rem;
  color: #8c8780;
}

/* =========================================
   JOIN PAGE
   ========================================= */

/* ----- Hero block (Join Clean Feed™ + Human Being image) ----- */

.join-hero {
  padding: 4rem 0 3rem;
}

.join-hero-inner {
  align-items: center;
}

.join-hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.join-hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.join-hero-text .intro {
  margin-bottom: 0.9rem;
}

.join-highlights {
  margin: 0;
}

.join-highlights li {
  margin-bottom: 0.35rem;
}

.join-hero-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.join-hero-image img {
  max-width: 440px;
  border-radius: 22px;
  background: #ffffff;
  padding: 1.1rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

/* ----- Ingredients strip ----- */

.join-ingredients {
  border-top: 1px solid #e2d6c6;
  border-bottom: 1px solid #e2d6c6;
  padding: 2.8rem 0;
}

.join-ingredients h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.7rem;
}

.ingredient-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

/* ----- Main block: Good Mood image + form ----- */

.join-main {
  padding: 3.2rem 0 3.5rem;
}

.join-main-inner {
  align-items: flex-start;
}

/* Image side */

.join-image-block {
  flex: 1 1 340px;
  text-align: center;
}

.join-image-block img {
  max-width: 480px;
  margin: 0 auto 0.6rem;
  border-radius: 20px;
  background: #ffffff;
  padding: 1.1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Form side */

.join-form-block {
  flex: 1 1 360px;
}

.form-label-box {
  border-radius: 16px;
  border: 1.5px solid #ddd0c2;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.form-label-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #eee0d1;
}

.form-label-header h2 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.label-meta {
  font-size: 0.78rem;
  color: #8c8780;
}

/* Form elements */

.join-form .form-row {
  margin-bottom: 1.3rem;
}

.join-form label,
.join-form legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form select,
.join-form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1.5px solid #d4c5b4;
  background: #fbf7f2;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.12s ease-out, background 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.join-form input[type="text"]:focus,
.join-form input[type="email"]:focus,
.join-form select:focus,
.join-form textarea:focus {
  border-color: #ff7440;
  background: #fffdf9;
  box-shadow: 0 0 0 3px rgba(255, 116, 64, 0.12);
}

.join-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* checkbox / radio options */

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.82rem;
}

.option-list label {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* actions */

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-actions .tiny-caption {
  max-width: 260px;
}

/* ----- Bottom reassurance strip ----- */

.join-footer-strip {
  border-top: 1px solid #e2d6c6;
  padding: 1.8rem 0 3rem;
  font-size: 0.82rem;
  color: #7d776f;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
  }

  section {
    padding: 3rem 0;
  }

  .two-column {
    gap: 2.5rem;
  }

  .join-hero-inner,
  .join-main-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-hero-image,
  .join-image-block {
    width: 100%;
    justify-content: flex-start;
  }

  .join-hero-image img,
  .join-image-block img {
    margin-left: 0;
  }

  .form-label-box {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .join-hero {
    padding-top: 3rem;
  }

  .join-hero-image img,
  .join-image-block img {
    max-width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   ABOUT PAGE
   ========================================= */

.about-hero {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.about-hero h1 {
  margin-bottom: 0.9rem;
}

.about-intro {
  max-width: 650px;
}

/* Story + image strip */

.about-story {
  padding: 3rem 0 3.2rem;
}

.about-story-inner {
  align-items: flex-start;
}

.about-story-text {
  flex: 1 1 360px;
  max-width: 560px;
}

.about-story-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.about-image-strip {
  flex: 1 1 260px;
  display: flex;
  justify-content: flex-end;
}

.about-image-strip img {
  width: 100%;
  max-width: 340px;     /* your chosen size */
  height: 520px;        /* tall label card */
  object-fit: contain;  /* shows the full card */
  object-position: center;
  border-radius: 28px;  /* rounded top + bottom */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10); /* soft shadow */
}

/* Timeline section */

.about-timeline {
  border-top: 1px solid #e2d6c6;
  border-bottom: 1px solid #e2d6c6;
  padding: 3rem 0;
}

.about-timeline h2 {
  margin-bottom: 1.6rem;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.8rem;
}

.about-timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* Design ingredients */

.about-ingredients {
  padding: 3.2rem 0;
}

.about-ingredients-card {
  margin-top: 1.2rem;
  gap: 2.5rem;
}

.about-ingredients-column ul {
  margin-top: 0.4rem;
}

/* Credits */

.about-credits {
  padding: 2.8rem 0 3.5rem;
  font-size: 0.92rem;
}

.about-credits-text {
  max-width: 680px;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .about-story-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image-strip {
    justify-content: flex-start;
  }

  .about-image-strip img {
    max-width: 80%;
    height: 360px;
  }

  .about-ingredients-card.two-column {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .about-image-strip img {
    max-width: 100%;
    height: 320px;
  }
}

