/* ============================================================
   SAÚDE NA PALMA DA MÃO — style.css
   Revisado: layout responsivo, limpeza de duplicações e ajustes
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #54b22c;
  --green-dark: #3d9920;
  --green-light: #e8f7e0;
  --green-muted: #8ed16d;
  --text: #1a1a1a;
  --text-soft: #626262;
  --text-muted: #9a9a9a;
  --line: #e8e8e8;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 12px 28px rgba(84, 178, 44, 0.3);
  --color-text: var(--text);
  --color-bg: var(--bg);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: 220ms;
  --container: 1320px;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.green {
  color: var(--green);
}
strong {
  font-weight: 800;
}
.strong {
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 56px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(84, 178, 44, 0.38);
  outline: none;
}
.btn--primary:active {
  transform: translateY(0);
}
.btn__icon {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.btn--primary:hover .btn__icon {
  transform: translateX(3px);
}
.mybtn01 {
  background-color: #4fa62a;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 56px;
  min-width: 265px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--duration) var(--ease);
}
.mybtn01:hover {
  background-color: #459622;
  color: #fff;
}
.banner-section {
  background: #f3f3f3;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}
.banner-wrap {
  position: relative;
  min-height: 380px;
}
.banner-top {
  min-height: 150px;
  padding-top: 32px;
  margin-bottom: 60px;
}
.brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4px;
}
.logo-img {
  max-width: 250px;
  height: auto;
}
.banner-action {
  padding-top: 57px;
}
.banner-bottom {
  margin-top: 8px;
  row-gap: 10px;
  column-gap: 40px;
  position: relative;
  z-index: 2;
}
.feature-item {
  letter-spacing: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #242123;
  font-size: 18px;
  font-weight: 100;
}
.feature-item .fa-circle-check {
  color: #4fa62a;
  font-size: 20px;
}
.banner-person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(220px, 30vw, 420px);
  z-index: 1;
}
.person-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 300px;
  width: 50%;
  height: 100%;
  background-size: contain;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.banner-section .container,
.banner-section .content,
.banner-section .row {
  position: relative;
  z-index: 2;
}
.info__content {
  margin-bottom: 30px;
}
.info {
  padding: 38px 0 0 0;
}
.info__card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.info__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hand-phone {
  position: relative;
  width: min(100%, 380px);
  margin: 0 auto;
}
.parallax-home {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url("mobilehand.png");
  background-size: contain;
  background-position: 95% center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.55) 70%,
    rgba(255, 255, 255, 0.25) 100%
  );
}
.parallax-home .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}
.parallax-home__content {
  max-width: 620px;
  padding: 100px 0;
  text-align: left;
}
.parallax-home__tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(84, 178, 44, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.parallax-home__title {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 22px;
}
.parallax-home__title span {
  color: var(--green);
  font-weight: 800;
}
.parallax-home__text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 28px;
}
.parallax-home__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  transition:
  background-color var(--duration) var(--ease),
  transform var(--duration) var(--ease),
  box-shadow var(--duration) var(--ease);
  box-shadow: var(--shadow-green);
}
.parallax-home__button:hover {
  background-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}
.parallax-home__button span {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 991px) {
  .parallax-home {
    min-height: 460px;
    background-attachment: scroll;
    background-position: center right;
  }
  .parallax-home__content {
    max-width: 100%;
    padding: 80px 0;
  }
  .parallax-home__overlay {
    background: rgba(255, 255, 255, 0.82);
  }
}
@media (max-width: 768px) {
  .parallax-home {
    min-height: auto;
  }
  .parallax-home__content {
    padding: 64px 0;
    text-align: left;
  }
  .parallax-home__title {
    margin-bottom: 18px;
  }
  .parallax-home__text {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .parallax-home__button {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .parallax-home__content {
    padding: 56px 0;
  }
  .parallax-home__tag {
    font-size: 12px;
    padding: 7px 14px;
  }
}
.about-home {
position: relative;
  padding: 90px 0;
  /* background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%); */
  /* border-top: 1px solid var(--line); */
  border-bottom: 3px solid #d9eed663;
}
.about-home .container {
  display: flex;
  justify-content: center;
}
.about-home__content {
  width: 100%;
  max-width: 1100px;
}
.about-home__tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(84, 178, 44, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.about-home__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 32px;
}
.about-home__title span {
  color: var(--green);
  font-weight: 800;
}
.about-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-home__column {
  display: grid;
  gap: 20px;
}
.about-home__column p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text-soft);
}
@media (max-width: 768px) {
  .about-home {
    padding: 64px 0;
  }

  .about-home__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-home__title {
    margin-bottom: 24px;
  }

  .about-home__column p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.info__card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.info__heading {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 18px;
}
.info__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 0px;
}
.info__highlight {
  color: var(--green);
  font-weight: 700;
}
.info__desc {
  font-size: 0.97rem;
  color: #626262;
  margin-bottom: 22px;
}
.info__link {
  display: inline-flex;
  align-items: center;
  padding-left: 4px;
  gap: 8px;
  font-weight: 700;
  color: var(--text-soft);
  font-size: 0.97rem;
  transition:
  color var(--duration) var(--ease),
  gap var(--duration) var(--ease);
}
.info__link:hover {
  color: var(--green);
  gap: 14px;
}
.help {
  padding: 80px 0;
  background-color: #f9f9f9;
}
.help__heading {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 18px;
}
.help__heading strong {
  font-weight: 900;
}
.help__heading .help__normal {
  font-weight: 900;
}
.help__text {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.help__highlight {
  color: var(--green);
  font-weight: 700;
}
.faq {
  padding: 80px 0;
}
.faq__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.faq__header .fa-solid {
  color: #4fa62a;
  font-size: 40px;
}
.faq__title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.faq__version {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green);
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion__item {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background var(--duration) var(--ease);
}
.accordion__item:hover {
  background: #fdfdfd;
}
.accordion__item--open .accordion__trigger {
  color: var(--green);
  font-weight: 700;
}
.accordion__item--open .accordion__arrow {
  transform: rotate(90deg);
  color: var(--green);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--duration) var(--ease);
  background: transparent;
}
.accordion__trigger:hover {
  color: var(--green);
}
.accordion__trigger:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  border-radius: 4px;
}
.accordion__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition:
  transform var(--duration) var(--ease),
  color var(--duration) var(--ease);
}
.accordion__trigger[aria-expanded="true"] .accordion__arrow {
  transform: rotate(90deg);
  color: var(--green);
}
.accordion__trigger[aria-expanded="true"] {
  color: var(--green);
}
.accordion__body {
  overflow: hidden;
  max-height: 600px;
  transition:
    max-height 360ms var(--ease),
    opacity 280ms var(--ease);
  opacity: 1;
}
.accordion__body--collapsed {
  max-height: 0;
  opacity: 0;
}
.accordion__content {
  padding: 0 28px 22px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.68;
  max-width: 1000px;
}
.accordion__content p + p {
  margin-top: 10px;
}
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding-bottom: 55px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer__flag-mini {
  font-size: 1.1rem;
}
.footer__credits {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  line-height: 1;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.footer__link {
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: color var(--duration) var(--ease);
  font-weight: 500;
}
.footer__link:hover {
  color: var(--green);
}
.footer__link--green {
  color: var(--green);
  font-weight: 700;
}
.footer__link--green:hover {
  color: var(--green-dark);
}
.footer__link--problem {
  color: var(--green);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .banner-top {
    margin-bottom: 24px;
  }
  .banner-person {
    width: 300px;
  }
  .banner-bottom {
    justify-content: center;
    row-gap: 14px;
  }
  .feature-item {
    justify-content: center;
    text-align: center;
  }
  .info__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .info__link {
    justify-content: center;
  }
  .hand-phone {
    width: min(100%, 340px);
  }
  .help,
  .faq {
    padding: 64px 0;
  }
}
@media (max-width: 991px) {
  .banner-wrap {
    min-height: auto;
  }
  .brand {
    justify-content: center;
  }
  .banner-action {
    padding-top: 0;
    margin: 20px 0;
    text-align: center;
  }
  .banner-bottom {
    margin-top: 20px;
    justify-content: center;
  }
  .feature-item {
    justify-content: center;
    padding-left: 0;
  }
  .banner-person {
    position: static;
    width: 240px;
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  :root {
    --space-xl: 40px;
    --space-2xl: 64px;
  }
  .container {
    width: min(100% - 24px, var(--container));
  }
  .banner-section {
    padding-top: 48px;
  }
  .banner-wrap {
    min-height: auto;
  }
  .logo-img {
    max-width: 220px;
    margin: 0 auto;
  }
  .banner-action {
    padding-top: 0;
    margin: 20px 0 12px;
    text-align: center;
  }
  .mybtn01 {
    width: 100%;
    max-width: 340px;
    padding: 12px 24px;
    min-width: auto;
  }
  .banner-person {
    position: static;
    width: min(100%, 260px);
    margin: 24px auto 0;
  }
  .banner-bottom {
    margin-top: 24px;
    justify-content: center;
    gap: 12px;
  }
  .feature-item {
    justify-content: center;
    font-size: 15px;
  }
  .info {
    padding: 56px 0;
  }
  .info__heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .help {
    padding: 56px 0;
  }
  .help__heading {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
  .faq {
    padding: 56px 0;
  }
  .faq__header {
    gap: 10px;
  }
  .accordion__trigger {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .accordion__content {
    padding: 0 20px 18px;
  }
  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  .footer__nav {
    justify-content: center;
    gap: var(--space-md);
  }
}
@media (max-width: 480px) {
  :root {
    --space-xl: 32px;
  }
  .container {
    width: min(100% - 20px, var(--container));
  }
  .banner-section {
    padding-top: 32px;
  }
  .logo-img {
    max-width: 180px;
  }
  .mybtn01 {
    max-width: 100%;
    font-size: 15px;
  }
  .banner-person {
    width: min(100%, 220px);
    margin-top: 20px;
  }
  .feature-item {
    font-size: 14px;
  }
  .info__heading {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
    margin-bottom: 14px;
  }
  .info__lead {
    font-size: 1rem;
  }
  .info__desc {
    font-size: 0.94rem;
  }
  .hand-phone {
    width: min(100%, 280px);
  }
  .help__heading {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
  .help__text {
    font-size: 0.96rem;
  }
  .faq__title {
    font-size: 1.6rem;
  }
  .faq__version {
    font-size: 0.9rem;
  }
  .accordion__trigger {
    padding: 16px;
    font-size: 0.92rem;
  }
  .accordion__content {
    padding: 0 16px 16px;
    font-size: 0.93rem;
  }
  .footer__credits,
  .footer__link {
    font-size: 0.9rem;
  }
}
@media print {
  .btn,
  .info__visual,
  .banner-person {
    display: none;
  }
  .info__card {
    grid-template-columns: 1fr;
  }
}