/* ════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --areia: #F5E8D6;
  --creme: #FFF7EC;
  --terra: #B9653D;
  --terra-dark: #8F4A2F;
  --olive: #5E6442;
  --olive-light: #8A8B68;
  --marrom: #6B4A32;
  --text-dark: #2F2A24;
  --text-mid: #5a4a3a;
  --text-light: #8a7a6a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --radius-pill: 50px;
  --radius-card: 16px;
  --shadow-soft: 0 4px 24px rgba(47,42,36,0.08);
  --shadow-card: 0 8px 32px rgba(47,42,36,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background-color: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════ */
.terracota { color: var(--terra); }

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background-color: var(--terra);
  color: #fff;
  box-shadow: 0 6px 24px rgba(185,101,61,0.35);
}
.btn--primary:hover {
  background-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(185,101,61,0.40);
}

.btn--dark {
  background-color: var(--text-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(47,42,36,0.30);
}
.btn--dark:hover {
  background-color: #1a1510;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--areia);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('/aplicacao-mentoria-mah/assets/bg-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Left Column */
.hero__left { display: flex; flex-direction: column; gap: 20px; }

.hero__logo { margin-bottom: 8px; }
.hero__logo-img { height: 72px; width: auto; object-fit: contain; }

.hero__pre-headline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--terra);
  text-transform: uppercase;
  line-height: 1.6;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero__subheadline {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
}

.hero__micro-text {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: -8px;
}

/* Right Column */
.hero__right { position: relative; }

.hero__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 580px;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

/* Mosaico top-right */
.hero__mosaic {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--terra) 0% 25%,
    var(--areia) 25% 50%,
    var(--olive-light) 50% 75%,
    var(--marrom) 75% 100%
  );
  opacity: 0.75;
  z-index: 3;
  background-size: 20px 20px;
  /* Fallback pattern */
  background-image:
    radial-gradient(circle at 25% 25%, var(--terra) 10px, transparent 11px),
    radial-gradient(circle at 75% 25%, var(--areia) 10px, transparent 11px),
    radial-gradient(circle at 25% 75%, var(--olive-light) 10px, transparent 11px),
    radial-gradient(circle at 75% 75%, var(--marrom) 10px, transparent 11px);
}

/* Organic waves bottom */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 3;
}

.hero__wave--olive {
  background: var(--olive);
  border-radius: 60% 40% 0 0 / 30px 30px 0 0;
  opacity: 0.6;
  height: 60px;
}

.hero__wave--terra {
  background: var(--terra);
  border-radius: 70% 30% 0 0 / 40px 20px 0 0;
  opacity: 0.5;
  height: 40px;
}

/* Leaf decoration */
.hero__leaf--left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 10 C20 50 10 100 50 190 C90 100 80 50 50 10Z' fill='%235E6442' opacity='0.35'/%3E%3Cline x1='50' y1='10' x2='50' y2='190' stroke='%235E6442' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   SECTION 2 — PAIN / O NAUFRÁGIO
════════════════════════════════════════════════ */
.pain {
  position: relative;
  overflow: hidden;
}

/* Full-bleed background image — pinned to left edge */
.pain__bg {
  position: absolute;
  inset: 0;
  background-image: url('/aplicacao-mentoria-mah/assets/bg-section-2.webp');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Content grid sits on top of image */
.pain__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: center;
}

/* ── Left: title + intro with sandy glass box ── */
.pain__left {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(245, 232, 214, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.pain__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.pain__title-em {
  font-style: italic;
  color: var(--terra);
}

.pain__text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 340px;
}

/* ── Right: pain items float over creme side of image ── */
.pain__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
}

.pain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(185, 101, 61, 0.12);
}

.pain__item:first-child {
  border-top: 1px solid rgba(185, 101, 61, 0.12);
}

/* Square icon box */
.pain__icon-box {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(185, 101, 61, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain__icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--terra);
}

.pain__item p {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.65;
  padding-top: 8px;
}

/* Closing quote box */
.pain__closing {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.55);
  border-left: 4px solid var(--terra);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(4px);
}

.pain__closing p {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   SECTION 3 — MÉTODO MAH
════════════════════════════════════════════════ */
.method {
  position: relative;
  background-color: var(--areia);
  padding: 100px 0 120px;
  overflow: hidden;
}

.method__bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('/aplicacao-mentoria-mah/assets/bg-section-3.webp');
  background-size: cover;
  opacity: 0.10;
  pointer-events: none;
}

.method__leaf--right {
  position: absolute;
  right: -40px;
  bottom: 40px;
  width: 200px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 10 C20 50 10 100 50 190 C90 100 80 50 50 10Z' fill='%235E6442' opacity='0.25'/%3E%3Cline x1='50' y1='10' x2='50' y2='190' stroke='%235E6442' stroke-width='1.5' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(20deg);
}

.method__inner { position: relative; z-index: 2; }

.method__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.method__pre-title {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--olive);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.method__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.method__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.method__sub-desc {
  font-size: 0.90rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Pillars Grid */
.method__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--creme);
  border-radius: var(--radius-card);
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(185,101,61,0.10);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pillar-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.pillar-card__badge--m { background: var(--terra); }
.pillar-card__badge--a { background: var(--olive); }
.pillar-card__badge--h { background: var(--terra-dark); }

.pillar-card__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--terra);
}

.pillar-card__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

.pillar-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: center;
  flex: 1;
}

.pillar-card__icon {
  margin-top: 16px;
  width: 28px;
  height: 28px;
  color: var(--olive);
  opacity: 0.7;
}

.pillar-card__icon svg { width: 28px; height: 28px; }

/* ════════════════════════════════════════════════
   SECTION 4 — MENTOR
════════════════════════════════════════════════ */
.mentor {
  position: relative;
  background-color: var(--areia);
  padding: 120px 0;
  overflow: hidden;
}

/* Background leaf shadow (top left) */
.mentor::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 300px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 10 C20 50 10 100 50 190 C90 100 80 50 50 10Z' fill='%235E6442' opacity='0.15'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-15deg);
  pointer-events: none;
}

.mentor__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Image */
.mentor__image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Organic blob behind the image */
.mentor__bg-blob {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 340px;
  height: 300px;
  background-color: rgba(185, 101, 61, 0.6); /* var(--terra) com opacidade */
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
}

.mentor__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 520px;
  z-index: 2;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mentor__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Leaf decoration over the image */
.mentor__leaf {
  position: absolute;
  bottom: 0px;
  right: -40px;
  width: 160px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 10 C20 50 10 100 50 190 C90 100 80 50 50 10Z' fill='%235E6442' opacity='0.4'/%3E%3Cline x1='50' y1='10' x2='50' y2='190' stroke='%235E6442' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M50 50 C30 60 20 70 10 90' stroke='%235E6442' stroke-width='1' opacity='0.4' fill='none'/%3E%3Cpath d='M50 80 C70 90 80 100 90 120' stroke='%235E6442' stroke-width='1' opacity='0.4' fill='none'/%3E%3Cpath d='M50 120 C25 130 15 145 5 165' stroke='%235E6442' stroke-width='1' opacity='0.4' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
}

/* Right Column: Content */
.mentor__content {
  padding-right: 20px;
}

.mentor__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--olive); /* Darker olive/brown tone based on reference */
  margin-bottom: 24px;
}

.mentor__title span.terracota {
  color: var(--terra);
}

.mentor__name {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.mentor__name strong {
  font-weight: 700;
}

.mentor__bio {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.mentor__highlight {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1.7;
  margin-top: 24px;
}

/* ════════════════════════════════════════════════
   SECTION 5 — APPLICATION
════════════════════════════════════════════════ */
.application {
  position: relative;
  background-color: var(--areia);
  padding: 100px 0;
  overflow: hidden;
}

/* Folha decorativa canto superior direito */
.application__leaf {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 180px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 240'%3E%3Cpath d='M60 10 C25 60 15 120 60 230 C105 120 95 60 60 10Z' fill='%235E6442' opacity='0.22'/%3E%3Cline x1='60' y1='10' x2='60' y2='230' stroke='%235E6442' stroke-width='1.5' opacity='0.28'/%3E%3Cpath d='M60 60 C40 70 30 80 20 100' stroke='%235E6442' stroke-width='1' opacity='0.2' fill='none'/%3E%3Cpath d='M60 90 C80 100 90 110 100 130' stroke='%235E6442' stroke-width='1' opacity='0.2' fill='none'/%3E%3Cpath d='M60 130 C35 140 25 155 15 175' stroke='%235E6442' stroke-width='1' opacity='0.2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.application__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.application__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.application__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.application__steps-title {
  font-family: var(--sans);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* ── Timeline ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__row {
  display: grid;
  grid-template-columns: 48px 56px 1fr;
  column-gap: 16px;
  align-items: flex-start;
}

/* Left column: number + dotted connector */
.timeline__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.timeline__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--terra);
  background: transparent;
  color: var(--terra);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.timeline__connector {
  width: 1px;
  flex: 1;
  min-height: 40px;
  border-left: 2px dashed rgba(185, 101, 61, 0.35);
  margin: 8px auto 8px;
}

/* Square icon box */
.timeline__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--creme);
  border: 1px solid rgba(185, 101, 61, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline__icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--terra);
}

/* Body text */
.timeline__body {
  padding: 10px 0 36px;
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.timeline__desc strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Remove bottom padding on last row */
.timeline__row:last-child .timeline__body {
  padding-bottom: 0;
}


/* ════════════════════════════════════════════════
   SECTION 6 — FINAL CTA
════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url('assets/bg-final-cta.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 42, 36, 0.78) 0%,
    rgba(107, 74, 50, 0.65) 100%
  );
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 80px 24px;
}

.final-cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta__title-em {
  font-style: italic;
  color: var(--areia);
}

.final-cta__text {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background-color: var(--text-dark);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 48px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ════════════════════════════════════════════════
   ANIMATIONS — AOS-like
════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; padding-top: 60px; padding-bottom: 0; }
  .hero__left  { padding-bottom: 40px; }
  .hero__image-wrapper { height: 420px; }
  .hero__headline { font-size: 2rem; }
  .btn--primary { width: 100%; }

  .pain__inner  { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .pain__left   { padding-right: 0; padding-bottom: 40px; }
  .pain__right  { padding-left: 0; }
  .pain__bg     { background-position: center top; }

  .method__pillars { grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin: 0 auto; }

  .mentor__inner { grid-template-columns: 1fr; gap: 40px; }
  .mentor__image-wrapper { width: 100%; max-width: 320px; height: 440px; }
  .mentor__image-col { justify-content: center; }
  .mentor__bg-blob { width: 280px; height: 260px; bottom: -10px; left: -10px; }

  .application__inner { grid-template-columns: 1fr; gap: 40px; }

  .final-cta__inner { padding: 60px 20px; }
  .btn--dark { width: 100%; font-size: 0.72rem; padding: 18px 24px; }
}

@media (max-width: 600px) {
  .hero__headline   { font-size: 1.7rem; }
  .pain__title      { font-size: 1.6rem; }
  .method__title    { font-size: 1.8rem; }
  .mentor__title    { font-size: 1.6rem; }
  .application__title { font-size: 1.6rem; }
  .final-cta__title { font-size: 1.8rem; }

  .hero__logo-img   { height: 56px; }
  .pain .container, .method .container, .mentor .container, .application .container {
    padding: 0 16px;
  }
  .pain { padding: 70px 0; }
  .method { padding: 70px 0 90px; }
  .mentor { padding: 70px 0; }
  .application { padding: 70px 0; }
}
