:root {
  --green-900: #0f3c2e;
  --green-800: #15543f;
  --green-700: #1f6b4f;
  --green-500: #2e8a65;
  --white: #ffffff;
  --gray-50: #f7f9f8;
  --gray-100: #edf2ef;
  --gray-300: #c7d4cd;
  --gray-600: #56635e;
  --gray-800: #26322d;
  --cta: #ffb21d;
  --cta-hover: #f39c00;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 25px rgba(12, 48, 36, 0.08);
  --shadow-md: 0 20px 45px rgba(10, 38, 29, 0.14);
  --shadow-lg: 0 30px 70px rgba(8, 30, 23, 0.24);
  --container: min(1180px, 92vw);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--gray-800);
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 138, 101, 0.22), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(255, 178, 29, 0.18), transparent 30%),
    linear-gradient(180deg, #f5faf7 0%, #ffffff 35%, #f6f8f7 100%);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 8px 14px;
  background: var(--green-900);
  color: var(--white);
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}

h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(255, 178, 29, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid rgba(15, 60, 46, 0.18);
}

.btn-secondary:hover {
  background: #f1f7f4;
}

.btn-cta {
  background: linear-gradient(120deg, var(--cta), #ffca62);
  color: #3d2a00;
  box-shadow: 0 14px 32px rgba(255, 178, 29, 0.32);
}

.btn-cta:hover {
  background: linear-gradient(120deg, var(--cta-hover), #f7c25f);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: all 0.32s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 60, 46, 0.1);
  box-shadow: 0 8px 24px rgba(11, 43, 33, 0.12);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-900);
  flex-shrink: 0;
}

.brand-logo-wrap {
  width: 240px;
  height: 64px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-header.scrolled .brand-logo-wrap {
  width: 220px;
  height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.nav a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.84rem;
  white-space: nowrap;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn-primary {
  padding: 11px 18px;
  font-size: 0.84rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(15, 60, 46, 0.2);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  transition: 0.24s ease;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 60px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 480px;
  height: 480px;
  top: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(46, 138, 101, 0.3), rgba(46, 138, 101, 0));
  animation: floatY 8s ease-in-out infinite;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  right: -80px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 178, 29, 0.24), rgba(255, 178, 29, 0));
  animation: floatY 10s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  margin-top: 18px;
  color: var(--gray-600);
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--green-800);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(21, 84, 63, 0.15);
  border-radius: 999px;
  padding: 7px 12px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.visual-card.main {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, #184f3d, #0f3c2e);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  margin-left: auto;
}

.visual-card.main .icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.visual-card.main p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.visual-card.floating {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 60, 46, 0.14);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--green-900);
}

.card-a {
  top: 30px;
  left: 20px;
  animation: floatY 6s ease-in-out infinite;
}

.card-b {
  right: 0;
  bottom: 56px;
  animation: floatY 6.8s ease-in-out infinite reverse;
}

.visual-ring {
  position: absolute;
  right: 30px;
  top: 70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(21, 84, 63, 0.4);
  animation: spin 26s linear infinite;
}

.badge-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 10px;
}

.mini-badge {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 60, 46, 0.1);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-900);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-head {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--gray-600);
  margin-top: 10px;
}

.services-grid,
.benefits-cards,
.audience-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.benefit-card,
.audience-card,
.step,
.contact-form,
.faq-item,
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 63, 48, 0.11);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  padding: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-content: center;
  background: #e8f3ee;
  color: var(--green-700);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--gray-600);
  margin-top: 8px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 84, 63, 0.28);
}

.benefits {
  background: linear-gradient(180deg, rgba(13, 66, 49, 0.98), rgba(8, 45, 34, 0.98));
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.benefits-text .eyebrow,
.benefits-text p {
  color: #d9efe5;
}

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

.benefit-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.benefit-card i {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffce6f;
}

.benefit-card p {
  color: #dcebe4;
  margin-top: 8px;
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.about-visual {
  min-height: 350px;
  position: relative;
}

.about-panel {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(15, 60, 46, 0.92), rgba(25, 107, 79, 0.9)),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2), transparent 30%);
  box-shadow: var(--shadow-lg);
}

.about-floating {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #fff;
  color: var(--green-900);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.about-content p {
  margin-top: 12px;
  color: var(--gray-600);
}

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

.about-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.about-list i {
  color: var(--green-700);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 20px;
  position: relative;
}

.step span {
  display: grid;
  place-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: "Sora", sans-serif;
  margin-bottom: 12px;
}

.step p {
  margin-top: 8px;
  color: var(--gray-600);
}

.urgency {
  padding-top: 30px;
}

.urgency-box {
  background:
    linear-gradient(130deg, rgba(15, 60, 46, 0.95), rgba(26, 110, 81, 0.95)),
    radial-gradient(circle at top right, rgba(255, 194, 82, 0.22), transparent 36%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.urgency-box .eyebrow {
  color: #f4fffb;
}

.urgency-box p {
  margin-top: 10px;
  color: #d8f1e7;
}

.urgency-btn {
  flex-shrink: 0;
}

.testimonials-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 63, 48, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.24s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.testimonials-track {
  width: 100%;
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 26px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.stars {
  margin-top: 8px;
  color: #f7b625;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.testimonial-card p {
  margin-top: 12px;
  color: var(--gray-600);
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-card {
  padding: 20px;
  text-align: center;
  transition: 0.24s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-card i {
  width: 46px;
  height: 46px;
  margin-inline: auto;
  border-radius: 14px;
  display: grid;
  place-content: center;
  background: #e8f3ee;
  color: var(--green-700);
  margin-bottom: 10px;
}

.faq-intro p {
  margin-top: 12px;
  color: var(--gray-600);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--gray-800);
}

.faq-question i {
  transition: transform 0.24s ease;
  color: var(--green-700);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: var(--gray-600);
}

.contact-info p {
  margin-top: 12px;
  color: var(--gray-600);
}

.contact-info ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}

.contact-info i {
  color: var(--green-700);
  margin-top: 4px;
}

.contact-form {
  padding: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.field-group label {
  font-weight: 700;
  margin-bottom: 6px;
}

.field-group input,
.field-group select,
.field-group textarea {
  border: 1px solid rgba(15, 60, 46, 0.16);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(46, 138, 101, 0.14);
}

.field-group.error input,
.field-group.error select,
.field-group.error textarea {
  border-color: #de4f4f;
  box-shadow: 0 0 0 4px rgba(222, 79, 79, 0.12);
}

.error-msg {
  min-height: 18px;
  color: #b83f3f;
  font-size: 0.82rem;
  margin-top: 5px;
}

.form-note {
  margin-top: 10px;
  min-height: 22px;
  font-weight: 700;
  color: var(--green-700);
}

.final-cta {
  padding-top: 36px;
}

.final-cta-box {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 178, 29, 0.25), transparent 34%),
    linear-gradient(140deg, #0d3a2c, #1a6d51);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 24px;
  box-shadow: var(--shadow-lg);
}

.final-cta-box .eyebrow {
  color: #dff4ea;
}

.final-cta-box p {
  margin-top: 10px;
  color: #d4ece2;
}

.final-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: linear-gradient(145deg, #20b559, #169e4b);
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(25, 133, 63, 0.35);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  animation: pulseSoft 2.2s infinite;
}

.site-footer {
  margin-top: 80px;
  background: #0e2f24;
  color: #e6f5ef;
}

.footer-grid {
  padding: 58px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d3e7de;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: 74px;
    right: 4vw;
    width: min(360px, 92vw);
    background: #fff;
    border: 1px solid rgba(15, 60, 46, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 14px;
    display: grid;
    gap: 8px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav a {
    padding: 10px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: #f0f6f3;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions > .btn-primary {
    display: none;
  }

  .hero-grid,
  .benefits-grid,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .visual-card.main {
    margin: 0 auto;
  }

  .card-a {
    left: 0;
  }

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

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

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

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .urgency-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust span {
    font-size: 0.84rem;
  }

  .services-grid,
  .benefits-cards,
  .timeline,
  .audience-grid,
  .badge-row {
    grid-template-columns: 1fr;
  }

  .testimonials-wrap {
    align-items: stretch;
  }

  .carousel-btn {
    position: absolute;
    bottom: -50px;
    z-index: 2;
  }

  .carousel-btn.prev {
    left: calc(50% - 52px);
  }

  .carousel-btn.next {
    right: calc(50% - 52px);
  }

  .testimonials-track {
    min-height: 300px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
