:root {
  --green: #1d9a6c;
  --green-dark: #13724f;
  --green-soft: #e2f4ee;
  --white: #ffffff;
  --gray-50: #f5f7f6;
  --gray-100: #ecefed;
  --gray-300: #c9d1cc;
  --gray-700: #4a5a54;
  --gray-900: #1e2b25;
  --shadow: 0 20px 60px rgba(29, 154, 108, 0.15);
  --accent: #f38870;
  --accent-soft: rgba(243, 136, 112, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 40%, #f1f8f5 100%);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions--split .desktop-nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions--split .mobile-nav-buttons {
  display: none;
  width: 100%;
  gap: 8px;
}

.nav-actions--split .mobile-nav-buttons .btn {
  flex: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.9rem;
}

.language-switch span,
.language-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-switch .language-current {
  color: var(--green-dark);
}

.language-switch a {
  color: var(--gray-700);
  font-weight: 600;
}

.language-switch a:hover,
.language-switch a:focus {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(19, 114, 79, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(19, 114, 79, 0.28);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--green);
  color: var(--green-dark);
  background: transparent;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

body.js-animate .reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.js-animate .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.js-animate .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

section {
  padding: 70px 0;
}

.hero {
  display: grid;
  gap: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.hero h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--gray-700);
  margin: 0 0 24px;
}

.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-soft);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.hero-cta {
  display: grid;
  gap: 10px;
}

.cta-note {
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: 10%;
  background: var(--accent);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--gray-900);
  font-weight: 700;
}

.hero-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--gray-900);
  font-weight: 700;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-meta {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--green-dark);
}

.section-text {
  margin-top: 16px;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.pain-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.icon-card {
  background: var(--white);
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-card i {
  font-size: 1.3rem;
  color: var(--accent);
}

.solution {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
  background: linear-gradient(135deg, var(--green-dark), #0b5a3b);
  border-radius: 28px;
  padding: 50px 40px;
  color: var(--white);
  text-align: center;
}

.solution h2,
.solution p {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.solution .tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.solution-media img {
  border-radius: 50%;
  border: none;
  background: transparent;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.solution-media {
  display: flex;
  justify-content: center;
}

.tag {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.meal-plans {
  background: linear-gradient(135deg, var(--accent-soft), #fff8f5);
  border-radius: 28px;
  padding: 50px 30px;
  margin-top: 80px;
}

.plan-custom-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan-custom-grid article {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--accent-soft);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(243, 136, 112, 0.12);
}

.plan-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accent-pill {
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--accent-soft);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
  margin: 10px 0 8px;
}

.feature-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.feature-media {
  margin-top: 30px;
}

.phone-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.phone-frame {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 32px;
  padding: 16px;
  max-width: 320px;
  min-width: 240px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 10px;
  text-align: center;
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(243, 136, 112, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-arrow.right {
  right: 12px;
}
.gallery-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  font-weight: 600;
  color: var(--gray-700);
}

.gallery-hint i {
  color: var(--accent);
}
.phone-frame a {
  display: block;
}

.phone-frame img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.phone-frame figcaption {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.media-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-700);
  text-align: center;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-content {
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  width: min(90vw, 520px);
  display: grid;
  gap: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.image-modal-content img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(243, 136, 112, 0.35);
}

.step-layout {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 360px);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--accent-soft);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--gray-900);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.step-media {
  display: flex;
  justify-content: center;
}

.step-media img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 3px solid var(--accent-soft);
}

#substituicao-analise .step-media img.table-photo-small {
  max-width: 100%;
  aspect-ratio: 567 / 338;
  object-fit: contain;
}

.free-plan {
  background: linear-gradient(120deg, var(--green-soft), #ffffff);
  border-radius: 24px;
  padding: 40px;
}

.plan-box {
  display: grid;
  gap: 24px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.plan-price {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
}

.plan-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 12px;
}

.plan-card.highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 30px 60px rgba(243, 136, 112, 0.25);
  position: relative;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gray-700);
}

.plan-label {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.plan-price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
}

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

.differential-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px;
  border-radius: 24px;
  background: var(--green-dark);
  color: var(--white);
}

.differential-card i {
  font-size: 2.5rem;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  background: transparent;
  border-radius: 20px;
  padding: 24px;
  border: 2px solid var(--accent);
  box-shadow: 0 16px 32px rgba(243, 136, 112, 0.12);
}

.testimonial p {
  color: var(--gray-700);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin: 10px 0;
  color: #fbbf24;
  font-size: 1rem;
}

.seal {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  padding: 12px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  padding-right: 30px;
}

.faq summary::after {
  content: "➜";
  position: absolute;
  right: 8px;
  font-size: 0.9rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(90deg);
}

.faq-emoji {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--gray-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.final-cta {
  background: var(--accent);
  color: var(--white);
  border-radius: 26px;
  padding: 40px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.final-cta .btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.site-footer {
  text-align: center;
  padding: 40px 20px 60px;
  color: var(--white);
  background: var(--green-dark);
}

.footer-brand {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--white);
}

.footer-links {
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
}

.footer-links a {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
  z-index: 100;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp i {
  font-size: 1.2rem;
}

.floating-whatsapp span {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .solution {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-box {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-actions--split {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-actions .btn {
    width: auto;
    align-self: center;
    order: 2;
  }

  .language-switch {
    width: auto;
    align-self: center;
    order: 1;
    justify-content: flex-start;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0.8rem;
    gap: 6px;
    text-align: left;
  }

  .language-switch span,
  .language-switch a {
    gap: 4px;
  }

  .nav-actions--split .desktop-nav-actions {
    display: none;
  }

  .nav-actions--split .mobile-nav-buttons {
    display: flex;
  }

  .nav-actions--split .mobile-nav-buttons .btn {
    order: 0;
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .free-plan,
  .final-cta {
    padding: 28px;
  }

  .step-layout {
    grid-template-columns: 1fr;
  }

  .phone-gallery {
    justify-content: flex-start;
  }

  .phone-frame {
    min-width: 80%;
  }

  .gallery-arrow {
    opacity: 1;
  }

  .gallery-hint {
    display: flex;
  }

  .floating-whatsapp {
    right: 16px;
    justify-content: center;
    padding: 12px;
  }

  .floating-whatsapp span {
    display: none;
  }
}
.feature-card i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* 2026 visual system */
:root {
  --green: #167553;
  --green-dark: #0f3d2e;
  --green-soft: #e8f2ed;
  --white: #ffffff;
  --gray-50: #f7f5ef;
  --gray-100: #e8e5dc;
  --gray-300: #c9c7be;
  --gray-700: #4e5c56;
  --gray-900: #15251f;
  --accent: #dc765e;
  --accent-soft: #f7e4de;
  --shadow: 0 18px 48px rgba(21, 37, 31, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  background: var(--gray-50);
}

h1,
h2,
h3,
.brand,
.price,
.plan-price-tag {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  background: rgba(247, 245, 239, 0.94);
  border-color: rgba(15, 61, 46, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1160px;
  padding: 14px 24px;
}

.brand {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.language-switch {
  min-height: 44px;
  padding: 5px 12px;
  border-radius: 8px;
  border-color: rgba(15, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.6);
}

.language-switch a {
  min-width: 34px;
  min-height: 34px;
  justify-content: center;
}

.btn {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 650;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn-primary {
  background: var(--green-dark);
  box-shadow: none;
}

.btn-primary:hover,
.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  background: #082e22;
  box-shadow: 0 8px 20px rgba(15, 61, 46, 0.18);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
}

.btn-ghost {
  border-color: rgba(15, 61, 46, 0.3);
}

main {
  max-width: 1160px;
  padding: 0 24px 96px;
}

section {
  padding: 84px 0;
}

.hero {
  min-height: min(760px, calc(100vh - 75px));
  gap: clamp(40px, 7vw, 88px);
  padding-top: 72px;
  padding-bottom: 92px;
}

.eyebrow,
.section-meta {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 1.02;
}

.hero h2 {
  max-width: 650px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
}

.proof {
  align-items: flex-start;
  max-width: 620px;
  margin-bottom: 26px;
  padding: 14px 0;
  background: transparent;
  border-top: 1px solid rgba(15, 61, 46, 0.18);
  border-bottom: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: 0;
}

.proof i {
  margin-top: 5px;
  color: var(--green);
}

.hero-cta {
  justify-items: start;
}

.cta-note {
  margin: 0;
  font-size: 0.85rem;
}

.hero-media > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-card {
  right: -18px;
  bottom: -24px;
  left: auto;
  max-width: 250px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 61, 46, 0.24);
}

.hero-card ul {
  color: rgba(255, 255, 255, 0.82);
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title h2,
.solution h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-text {
  max-width: 780px;
  line-height: 1.75;
}

.pain-grid,
.feature-grid {
  gap: 0;
  border-top: 1px solid var(--gray-300);
}

.icon-card,
.feature-card {
  min-height: 126px;
  padding: 22px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0;
  box-shadow: none;
}

.icon-card i,
.feature-card i {
  color: var(--green);
}

.feature-card h3 {
  margin-top: 14px;
}

.solution {
  padding: clamp(36px, 6vw, 72px);
  background: var(--green-dark);
  border-radius: 10px;
  text-align: left;
}

.solution h2,
.solution p {
  margin-left: 0;
  margin-right: 0;
}

.solution p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.solution .tag {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: #c9e7d9;
}

.solution-media img {
  width: min(100%, 380px);
  border-radius: 50%;
  box-shadow: none;
}

.meal-plans,
.free-plan,
.final-cta {
  margin-top: 64px;
  padding: clamp(34px, 6vw, 64px);
  background: var(--accent-soft);
  border-radius: 10px;
}

.plan-custom-grid {
  gap: 1px;
  background: rgba(21, 37, 31, 0.14);
  border: 1px solid rgba(21, 37, 31, 0.14);
}

.plan-custom-grid article {
  padding: 26px;
  background: var(--gray-50);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.accent-pill,
.tag,
.seal,
.plan-label {
  border-radius: 6px;
}

.phone-gallery {
  gap: 28px;
  justify-content: flex-start;
  padding: 10px 4px 24px;
}

.phone-frame {
  max-width: 310px;
  padding: 10px;
  border: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(21, 37, 31, 0.08);
}

.phone-frame img {
  border-radius: 12px;
  box-shadow: none;
}

.step-layout {
  gap: clamp(36px, 7vw, 88px);
}

.step-list {
  gap: 0;
  border-top: 1px solid var(--gray-300);
}

.step-card {
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0;
  box-shadow: none;
}

.step-header {
  display: inline-flex;
  padding: 0;
  background: transparent;
  color: var(--green);
  border-radius: 0;
  font-size: 0.82rem;
}

.step-media img,
#substituicao-analise .step-media img.table-photo-small {
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.free-plan {
  background: var(--green-soft);
}

.plan-grid {
  gap: 18px;
}

.plan-card {
  padding: 30px;
  border-color: rgba(15, 61, 46, 0.16);
  border-radius: 10px;
  box-shadow: none;
}

.plan-card.highlight {
  border: 2px solid var(--green);
  box-shadow: 0 18px 44px rgba(15, 61, 46, 0.1);
}

.plan-label {
  top: 16px;
  right: 16px;
  left: auto;
  background: var(--green-dark);
}

.differential-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 10px;
}

.testimonial-grid {
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
}

.testimonial {
  padding: 28px;
  background: var(--gray-50);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-grid {
  border-top: 1px solid var(--gray-300);
}

.faq details {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0;
}

.faq summary {
  min-height: 58px;
  padding: 16px 42px 16px 0;
}

.faq summary::after {
  content: "+";
  right: 4px;
  color: var(--green-dark);
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--gray-700);
}

.final-cta {
  color: var(--white);
  background: var(--green-dark);
}

.final-content {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .btn-primary {
  color: var(--green-dark);
  background: var(--white);
}

.site-footer {
  background: #0b2d22;
}

.floating-whatsapp {
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(21, 37, 31, 0.2);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  }

  .pain-grid,
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icon-card:not(:nth-child(3n)),
  .feature-card:not(:nth-child(3n)) {
    border-right: 1px solid var(--gray-300);
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 18px;
  }

  main {
    padding-right: 18px;
    padding-left: 18px;
  }

  section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.25rem);
  }

  .hero-media > img {
    min-height: 420px;
  }

  .hero-card {
    margin-top: -54px;
    margin-left: 18px;
  }

  .free-plan,
  .meal-plans,
  .final-cta,
  .solution {
    padding: 30px 22px;
  }

  .phone-frame {
    min-width: 86%;
  }
}
