:root {
  --green: #52c140;
  --green-hover: #00a63e;
  --dark: #021506;
  --deep: #092006;
  --title: #10270d;
  --text: #52605a;
  --muted: #72806d;
  --soft: #f3faf2;
  --bg: #f7faf7;
  --white: #fff;
  --border: #e9f1e7;
  --shadow: 0 22px 55px rgba(16, 39, 13, 0.09);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}
h1,
h2,
h3 {
  font-family: Inter, sans-serif;
  color: var(--title);
  letter-spacing: -0.045em;
  line-height: 1.05;
}
h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
}
h2 {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
}
h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lead {
  font-size: 18px;
  color: #e8f4e7;
  max-width: 680px;
}
.section-lead {
  font-size: 18px;
  max-width: 670px;
  margin: 16px auto 0;
  color: var(--muted);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--green);
}
.eyebrow:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(82, 193, 64, 0.12);
}
.hero .eyebrow:before {
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(82, 193, 64, 0.35);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(82, 193, 64, 0.05);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 16px 34px;
  min-width: 170px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn svg,
.icon svg,
.check svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(82, 193, 64, 0.32);
}
.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-outline:hover {
  background: #fff;
  color: var(--title);
}
.btn-light {
  background: #fff;
  color: var(--green);
  border-color: var(--border);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 39, 13, 0.08);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-header {
  width: 178px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}
nav a {
  position: relative;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.25s;
}
nav a:hover:after {
  width: 100%;
}
.menu-btn {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--deep);
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(82, 193, 64, 0.26),
      transparent 28%
    ),
    linear-gradient(115deg, #061806 0%, #0d2a0b 47%, #17360f 100%);
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 21, 6, 0.92),
    rgba(2, 21, 6, 0.58) 48%,
    rgba(2, 21, 6, 0.16)
  );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding: 90px 0;
}
.hero-copy h1 {
  margin: 18px 0 22px;
  color: #fff;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.trust {
  margin-top: 22px;
  color: #cbdcc7;
  font-size: 14px;
}
.hero-card {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  filter: saturate(1.02) contrast(1.03);
}
.hero-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 21, 6, 0.02),
    rgba(2, 21, 6, 0.18)
  );
  pointer-events: none;
}
section {
  padding: 96px 0;
}
.section-center {
  text-align: center;
  margin-bottom: 46px;
}
.pain {
  background: var(--bg);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #dff0dc;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  color: var(--green);
  margin-bottom: 18px;
}
.diagnosis {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.diagnosis h3 {
  font-size: 30px;
  margin-bottom: 16px;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--title);
  font-weight: 700;
}
.check {
  color: var(--green);
  flex: 0 0 20px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.solution {
  background: var(--dark);
  color: #fff;
}
.solution h2,
.solution h3 {
  color: #fff;
}
.solution .section-lead {
  color: #c8d7c4;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(82, 193, 64, 0.45);
  border-radius: 22px;
  padding: 34px;
  transition: 0.25s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 50px rgba(82, 193, 64, 0.12);
}
.solution-card p {
  color: #c9d8c5;
  margin-top: 10px;
}
.services {
  background: #fff;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 36px rgba(16, 39, 13, 0.06);
}
.plan.featured {
  border: 2px solid var(--green);
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(82, 193, 64, 0.16);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.plan ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.plan li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--title);
  font-weight: 600;
}
.plan .btn {
  width: 100%;
  margin-top: 10px;
}
.how {
  background: var(--bg);
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.step-number {
  font-family: Inter, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 16px;
}
.step-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.how-cta {
  text-align: center;
  margin-top: 34px;
}
.how-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
}
.step-card {
  text-align: center;
  padding: 34px 24px;
}
.step-icon {
  position: static;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #c8ffbf;
  color: #52c140;
  box-shadow: none;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -6px auto 22px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}
.step-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 16px;
  color: var(--text);
}
.step-icon svg {
  width: 26px;
  height: 26px;
  stroke: #52c140;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog {
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.blog-img {
  height: 170px;
  background: linear-gradient(135deg, #e6f8e2, #c8ffbf);
  position: relative;
}
.blog-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 35%,
    rgba(82, 193, 64, 0.42),
    transparent 26%
  );
}
.blog-content {
  padding: 28px;
}
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.blog-card h3 {
  transition: 0.25s;
}
.blog-card:hover h3 {
  color: var(--green);
}
.blog-link {
  margin-top: 16px;
  display: inline-block;
  font-weight: 800;
  color: var(--green);
}
.section-action {
  text-align: center;
  margin-top: 34px;
}
.professional {
  background: var(--bg);
}
.professional-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.professional-image {
  background: #eef8ec;
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.professional-image img {
  border-radius: 22px;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.pro-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.credential {
  color: var(--green);
  font-weight: 800;
  margin: 8px 0 18px;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--title);
  font-weight: 900;
  margin: 18px 0;
}
.testimonials {
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.stars {
  color: var(--green);
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 14px;
}
.client {
  margin-top: 18px;
  font-weight: 900;
  color: var(--title);
}
.contact {
  background: linear-gradient(135deg, #021506, #0b2c0b);
  color: #fff;
}
.contact h2 {
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.contact .section-lead {
  color: #c8d7c4;
  margin-left: 0;
}
.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  color: var(--title);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
label {
  font-size: 13px;
  font-weight: 800;
  color: var(--title);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--title);
  background: #fbfdfb;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
.field.full {
  grid-column: 1/-1;
}
.form-card .btn {
  width: 100%;
  margin-top: 16px;
}
.form-microcopy {
  text-align: center;
  font-size: 13px;
  color: #7a8a7a;
  margin-top: 10px;
  font-weight: 500;
}
.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-line {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #e4f3e2;
  font-weight: 700;
}
footer {
  background: #031003;
  color: #dce8da;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 42px;
}
.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}
.footer-title {
  font-family: Inter, sans-serif;
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.socials {
  display: flex;
  gap: 12px;
}
.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 22px;
  color: #aab8a6;
  font-size: 14px;
}
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #52c140;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}
@media (max-width: 1024px) {
  .hero-grid,
  .pain-grid,
  .professional-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .solution-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .plan.featured {
    transform: none;
  }
  .hero-card {
    min-height: auto;
  }
  .hero-card img {
    height: 430px;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .hero-card img {
    height: 360px;
  }
  .btn {
    min-width: 0;
  }
  .header-inner {
    height: 72px;
  }
  .logo-header {
    width: 145px;
  }
  nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  header .btn {
    padding: 11px 14px;
    font-size: 12px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 64px 0;
    gap: 36px;
  }
  .lead {
    font-size: 16px;
  }
  section {
    padding: 72px 0;
  }
  .cards-grid,
  .solution-grid,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .professional-image img {
    height: auto;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .float-wa {
    width: 54px;
    height: 54px;
  }
}
.professional .section-center {
  margin-bottom: 38px;
}
.professional .section-center h2 {
  font-size: clamp(30px, 3vw, 44px);
  text-align: center;
}
.professional-grid {
  align-items: center;
}
.pro-card h2 {
  display: none;
}
.pro-card .credential {
  font-size: 16px;
  font-weight: 700;
  color: #52c140;
  margin: 4px 0 22px;
}
.pro-card h3,
.pro-name {
  font-family: Inter, sans-serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #021506;
  margin: 0 0 6px;
  letter-spacing: -0.025em;
}
.pro-card p {
  font-size: 18px;
  line-height: 1.65;
  color: #34423b;
}
.professional .check-list li {
  font-weight: 500;
  color: #1d2c26;
}
.professional .check {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #d8ffd2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52c140;
}
.professional .check svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}
.professional .stat {
  display: none;
}
@media (max-width: 760px) {
  header nav.nav-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  header nav.nav-open a {
    padding: 12px 10px;
  }
}
.section-dark {
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(82, 193, 64, 0.26),
      transparent 28%
    ),
    linear-gradient(115deg, #061806 0%, #0d2a0b 47%, #17360f 100%);
  color: #fff;
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-dark .section-lead,
.section-dark p {
  color: #d8e8d5;
}
.section-light {
  background: #fff;
}
.pain {
  background: #fff;
}
.pain .container {
  display: block;
}
.cards-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}
.cards-grid .card {
  grid-column: span 2;
}
.cards-grid .card:nth-child(4) {
  grid-column: 2 / span 2;
}
.cards-grid .card:nth-child(5) {
  grid-column: 4 / span 2;
}
.contact.section-light {
  background: #fff;
  color: var(--text);
}
.contact.section-light h2 {
  color: var(--title);
}
.contact.section-light .section-lead {
  color: var(--muted);
}
.contact.section-light .contact-line {
  color: var(--title);
}
.btn-wa-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid .card,
  .cards-grid .card:nth-child(4),
  .cards-grid .card:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.btn-form-whatsapp {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}
:root {
  --dark-gradient:
    radial-gradient(
      circle at 75% 25%,
      rgba(82, 193, 64, 0.16),
      transparent 30%
    ),
    linear-gradient(115deg, #041404 0%, #0a2408 50%, #12330d 100%);
}
.hero,
.section-dark {
  background: var(--dark-gradient);
}
.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.section-dark .section-lead {
  color: #eef8eb;
  font-weight: 500;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.26);
}
.card,
.step-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(233, 241, 231, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.card h3,
.step-card h3,
.testimonial-card h3 {
  color: #021506;
}
.card p,
.step-card p,
.testimonial-card p {
  color: #2f3a33 !important;
  font-weight: 500;
}
.testimonial-card .client {
  color: #021506;
  font-weight: 900;
}
.solution-card {
  background: rgba(255, 255, 255, 0.07);
}
.solution-card p {
  color: #edf8ea !important;
  font-weight: 500;
}
.btn-form-whatsapp {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}
.btn-wa-icon,
.social svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-mini {
  margin-top: 42px;
}
.faq-heading {
  margin-bottom: 24px;
}
.faq-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(16, 39, 13, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.faq-card h3 {
  font-size: 18px;
  color: #021506;
  letter-spacing: -0.02em;
}
.faq-card p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  color: #2f3a33;
  font-weight: 500;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}
.faq-card:hover,
.faq-card:focus {
  transform: translateY(-4px);
  border-color: rgba(82, 193, 64, 0.35);
  box-shadow: 0 20px 44px rgba(16, 39, 13, 0.1);
  outline: none;
}
.faq-card:hover p,
.faq-card:focus p {
  max-height: 180px;
  opacity: 1;
  margin-top: 12px;
}
.social {
  font-size: 0;
}
.social:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.float-wa {
  font-size: 0;
}
.float-wa::before,
.float-wa::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.subpage-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(82, 193, 64, 0.2), transparent 30%),
    linear-gradient(115deg, #041404 0%, #0a2408 48%, #12330d 100%);
}
.subpage-hero-inner {
  max-width: 820px;
  text-align: center;
  padding: 86px 0;
}
.subpage-hero h1 {
  color: #fff;
  margin: 18px 0 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.subpage-hero .lead {
  margin-inline: auto;
  color: #f2fff0;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(16, 39, 13, 0.07);
  transition: 0.25s ease;
}
.blog-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(16, 39, 13, 0.1);
}
.blog-page-card span {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-page-card h3 {
  margin-bottom: 12px;
}
.blog-page-card p {
  color: #2f3a33;
  font-weight: 500;
}
.contact-page-wrap {
  max-width: 760px;
}
.contact-page .form-card {
  margin-inline: auto;
}
header nav a[aria-current="page"]:after {
  width: 100%;
}
@media (max-width: 900px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }
  .subpage-hero {
    min-height: auto;
  }
}
.hero {
  min-height: 720px;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 21, 6, 0.88) 0%,
      rgba(2, 21, 6, 0.72) 38%,
      rgba(2, 21, 6, 0.2) 68%,
      rgba(2, 21, 6, 0.06) 100%
    ),
    url("assets/hero-fitnesser.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::after {
  display: none;
}
.hero-grid {
  grid-template-columns: minmax(0, 640px);
  gap: 0;
  padding: 130px 0;
}
.hero-card {
  display: none !important;
}
.hero-copy {
  max-width: 640px;
}
@media (max-width: 1024px) {
  .hero {
    min-height: 650px;
    background-position: 68% center;
  }
  .hero-grid {
    padding: 105px 0;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 620px;
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 21, 6, 0.9) 0%,
        rgba(2, 21, 6, 0.74) 48%,
        rgba(2, 21, 6, 0.5) 100%
      ),
      url("assets/hero-fitnesser.webp");
    background-position: 62% center;
  }
  .hero-grid {
    padding: 82px 0;
  }
}
header nav {
  font-weight: 500;
  color: #4b5b51;
  letter-spacing: 0.01em;
}
header nav a {
  opacity: 0.9;
}
header nav a:hover {
  color: var(--green);
  opacity: 1;
}
.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
  justify-content: center;
}
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
@media (max-width: 760px) {
  .cards-grid .card:nth-child(4),
  .cards-grid .card:nth-child(5) {
    display: none;
  }
}
img {
  height: auto;
}
.hero {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 760px) {
  .hero {
    background-position: 62% center;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(82, 193, 64, 0.75);
  outline-offset: 3px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
}

/* Ajuste definitivo do botão flutuante do WhatsApp */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #52c140;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-size: 0 !important;
  line-height: 0 !important;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.float-wa::before,
.float-wa::after {
  content: none !important;
  display: none !important;
}

.float-wa svg {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  fill: #ffffff !important;
  stroke: none !important;
}

.float-wa svg path {
  fill: #ffffff !important;
  stroke: none !important;
}

.float-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.float-wa:focus-visible {
  outline: 3px solid rgba(82, 193, 64, 0.75);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .float-wa {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .float-wa svg {
    width: 31px;
    height: 31px;
  }
}

/* Correção final: botão flutuante do WhatsApp sem texto "WA" e sem ícone sobreposto */
.float-wa {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #52c140 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  text-decoration: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
}

.float-wa > *,
.float-wa svg,
.float-wa img,
.float-wa span {
  display: none !important;
}

.float-wa::after {
  content: none !important;
  display: none !important;
}

.float-wa::before {
  content: "" !important;
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 1.9 131.6 1.9 254c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

.float-wa:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
}

@media (max-width: 768px) {
  .float-wa {
    right: 18px !important;
    bottom: 18px !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
  }

  .float-wa::before {
    width: 31px !important;
    height: 31px !important;
  }
}


/* =========================================================
   MANUTENÇÃO 2026-05-31 — Formulários e acessibilidade
   Mantém os formulários dependentes do CSS global, sem estilos inline.
   ========================================================= */
.form[data-whatsapp-form="true"] {
  display: grid;
  gap: 18px;
}
.form[data-whatsapp-form="true"] .btn-form-whatsapp {
  margin-top: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
