:root {
  --color-green: #AFCD36;
  --color-cream: #EDF1E4;
  --color-offwhite: #F8F9F5;
  --color-orange: #EB9F25;
  --color-gray: #D1D6BE;
  --color-title-dark: #3B721E;
  --color-text: #292929;
  --color-text-gray: #545454;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .show-desktop-only {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-desktop-only {
    display: none !important;
  }
}

.eyebrow {
  color: var(--color-text-gray);
  font-size: 0.8rem;
  font-weight: 600;
}

.eyebrow-white {
  color: var(--color-offwhite);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Header */
.site-header {
  padding-block: 1rem;
  background: #fff;
}

.brand-logo {
  width: 9.5rem;
}

/* CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  padding: 0.85rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 999rem;
  background: var(--color-orange);
  color: var(--color-offwhite);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 2rem;
}

.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  padding: 0.85rem 1.5rem;
  border-radius: 999rem;
  background: var(--color-green);
  color: var(--color-title-dark);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 2rem;
}

/* Hero */
.hero-section {
  position: relative;
}

.hero-divider {
  width: 80%;
  height: 2px;
  margin: 1.5rem auto 0;
  border: 0;
  background: var(--color-gray);
  opacity: 1;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999rem;
  background: var(--color-cream);
  color: var(--color-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-title {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.15;
  text-shadow: 1px 1px 1px var(--color-cream);
}

.hero-title-green {
  color: var(--color-green);
}

.hero-title-white {
  color: var(--color-offwhite);
}

.hero-title-dark {
  color: var(--color-title-dark);
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-offwhite);
  font-weight: 400;
  font-size: 1.05rem;
}

.hero-bullets-container {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10% 10%;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-bullet {
  display: flex;
  color: var(--color-text-gray);
  font-weight: 600;
  align-items: center;
  flex: 0 1 auto;
  white-space: nowrap;
  font-size: 0.8rem;
}

/* Desktop hero */
.hero-bg {
  position: relative;
  aspect-ratio: 2 / 1;
  min-height: 26rem;
  background-image: url('../img/acolhimento-atendente.png');
  background-size: cover;
  background-position: center;
}

.hero-text-col {
  max-width: 32rem;
  padding-top: 7vw;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero-bullet {
    display: flex;
    color: var(--color-offwhite);
    font-weight: 600;
    align-items: center;
    flex: 0 1 auto;
    white-space: nowrap;
    font-size: 1rem;
  }

  .hero-bullet img {
    width: 10%;
  }
}

/* Mobile hero */

.hero-mobile-media {
  position: relative;
}

.hero-mobile-img {
  width: 100%;
}

.hero-mobile-content {
  padding-top: 1.75rem;
  padding-left: 8%;
  padding-right: 8%;
  padding-bottom: 2.5rem;
  text-align: left;
  background-color: var(--color-cream);
}

.hero-mobile-content .hero-subtitle {
  color: var(--color-text);
}

.hero-mobile-content .btn-cta {
  width: 100%;
  justify-content: center;
}

.hero-mobile-content .btn-cta-green {
  width: 100%;
  justify-content: center;
}

/* Gallery carousel */
.gallery-section {
  padding-block: 1.5rem 3rem;
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.gallery-slide {
  display: block;
  flex: none;
  border: 0;
  padding: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: grab;
  opacity: 0.6;
  transition: opacity 0.35s;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (min-width: 992px) {
  .gallery-track {
    gap: 0.75rem;
  }

  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-title-dark);
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.18);
    cursor: pointer;
  }

  .gallery-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
  }

  .gallery-btn-prev {
    left: 1.25rem;
  }

  .gallery-btn-next {
    right: 1.25rem;
  }
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.92);
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  max-width: min(90vw, 60rem);
  max-height: 80vh;
}

.lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* Depoimentos */
.depo-section {
  padding-block: 3rem;
  overflow: hidden;
  background-color: var(--color-cream);
}

.depo-heading {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

.depo-dark {
  color: var(--color-title-dark);
}

.depo-green {
  color: var(--color-green);
}

.depo-carousel {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: 1rem;
  touch-action: pan-y;
}

.depo-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.depo-card {
  display: flex;
  flex-direction: column;
  flex: none;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #ECECEC;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.12), 0 0.15rem 0.4rem rgba(0, 0, 0, 0.06);
  opacity: 0.6;
  transition: opacity 0.35s;
  cursor: grab;
}

.depo-card.active {
  opacity: 1;
}

.depo-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.depo-stars img {
  width: 1.1rem;
  height: auto;
  pointer-events: none;
}

.depo-quote-mark {
  margin: 0;
  color: #D9D9D9;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 0.5;
}

.depo-text {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-weight: 400;
}

.depo-divider {
  margin: auto 0 1.25rem;
  border: 0;
  border-top: 1px solid #E5E5E5;
}

.depo-author {
  display: flex;
  align-items: center;
  flex: none;
  gap: 0.85rem;
}

.depo-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
}

.depo-name {
  margin: 0;
  color: var(--color-title-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.depo-role {
  margin: 0;
  color: #A3A3A3;
  font-weight: 400;
  font-size: 0.82rem;
}

.depo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.depo-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.depo-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  background: #D9D9D9;
  padding: 0;
  cursor: pointer;
}

.depo-dot.active {
  background: var(--color-green);
}

@media (min-width: 992px) {
  .depo-btn-prev,
  .depo-btn-next {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .depo-btn-prev:hover,
  .depo-btn-next:hover {
    transform: scale(1.06);
  }
}

/* Steps */
.steps-section {
  padding-block: 3rem;
  padding-left: 8%;
  padding-right: 8%;
}

.steps-heading {
  max-width: 40rem;
  margin: 0 auto 0.5rem;
  text-align: left;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

.steps-subtitle {
  margin-bottom: 2.5rem;
  color: var(--color-text-gray);
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
}

.steps-dark {
  color: var(--color-title-dark);
}

.steps-green {
  color: var(--color-green);
}

.steps-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-icon {
  flex: 0 0 auto;
  display: block;
  width: 4.5rem;
}

.step-icon img {
  width: 100%;
  border-radius: 50%;
}

.step-title {
  margin: 0 0 0.4rem;
  color: var(--color-title-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.step-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.92rem;
}

.steps-connector {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.875rem;
  z-index: 0;
  pointer-events: none;
}

.steps-connector-bar {
  position: absolute;
  top: 0;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 3px;
  background: var(--color-green);
}

.steps-connector-corner {
  position: absolute;
  top: 0;
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--color-green);
}

.steps-connector-corner-left {
  left: 16.666%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-left-radius: 1rem;
}

.steps-connector-corner-right {
  right: 16.666%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-right-radius: 1rem;
}

.steps-connector-stub {
  position: absolute;
  top: 1rem;
  width: 3px;
  height: 0.875rem;
  background: var(--color-green);
}

.steps-connector-stub-left {
  left: 16.666%;
}

.steps-connector-stub-right {
  right: 16.666%;
}

.steps-connector-stub-mid {
  top: 0;
  left: 50%;
  height: 1.875rem;
  margin-left: -1.5px;
}

.steps-divider {
  width: 80%;
  height: 2px;
  margin: 1.5rem auto 0;
  border: 0;
  background: var(--color-gray);
  opacity: 1;
}

@media (min-width: 992px) {
  .steps-section {
    background-color: var(--color-cream);
  }

  .steps-subtitle {
    max-width: 40rem;
    margin: 0 auto 0.5rem;
  }
}

/* Atendimento */
.atendimento-section {
  padding-left: 8%;
  padding-right: 8%;
  margin-bottom: 2.5rem;
}

.atendimento-heading {
  max-width: 40rem;
  margin: 0 auto 0.5rem;
  text-align: left;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

.atendimento-heading p {
  font-weight: 500;
}

.atendimento-dark {
  color: var(--color-title-dark);
}

.atendimento-green {
  color: var(--color-green);
}

.atendimento-subtitle {
  margin-bottom: 2.5rem;
  color: var(--color-text-gray);
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
}

.atendimento-bullets-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.atendimento-bullet {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.atendimento-bullet-icon {
  flex: 0 0 auto;
  display: block;
  width: 2rem;
}

.atendimento-divider {
  width: 80%;
  height: 2px;
  margin: 1.5rem auto 0;
  border: 0;
  background: var(--color-gray);
  opacity: 1;
}

@media (min-width: 992px) {
  .atendimento-section {
    margin-top: 3rem;
  }

  .atendimento-columns {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
  }

  .atendimento-col-left,
  .atendimento-col-right {
    flex: 1 1 0%;
    min-width: 0;
  }

  .atendimento-col-left .atendimento-heading,
  .atendimento-col-left .atendimento-subtitle {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .atendimento-col-right .atendimento-bullets-row {
    margin-bottom: 0;
  }
}

/* Confiança */
.confianca-section {
  padding-left: 8%;
  padding-right: 8%;
}

.confianca-heading {
  max-width: 40rem;
  margin: 0 auto 0.5rem;
  text-align: left;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

.confianca-subtitle {
  margin-bottom: 2.5rem;
  color: var(--color-text-gray);
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
}

.confianca-heading p {
  font-weight: 500;
}

.confianca-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.confianca-bullet {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.confianca-bullet ul {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-gray);
}

.confianca-bullet-icon {
  flex: 0 0 auto;
  display: block;
  width: 10rem;
}

.confianca-items-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.confianca-item {
  position: relative;
  z-index: 1;
  display: block;
  align-items: flex-start;
  gap: 1.25rem;
}

.confianca-item p {
  color: var(--color-text-gray);
  text-align: justify;
}

.confianca-item-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.confianca-item-icon {
  flex: 0 0 auto;
  display: block;
  width: 3rem;
}

.item-title {
  margin: 0;
  text-align: left;
  color: var(--color-title-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  .confianca-columns {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
  }

  .confianca-col-left,
  .confianca-col-right {
    flex: 1 1 0%;
    min-width: 0;
  }

  .confianca-col-left .confianca-heading,
  .confianca-col-left .confianca-subtitle {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .confianca-col-right .confianca-items-row {
    margin-bottom: 0;
  }
}

/* Dúvidas */
.duvidas-section {
  padding-left: 8%;
  padding-right: 8%;
  padding-bottom: 3rem;
}

.duvidas-heading {
  max-width: 40rem;
  margin: 0 auto 0.5rem;
  text-align: left;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
}

.duvidas-card {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.duvida-question {
  background-color: var(--color-green);
  color: var(--color-title-dark);
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5em 0.25em;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.duvida-answer {
  background-color: var(--color-cream);
  color: var(--color-text);
  text-align: center;
  padding: 0.5em 0.25em;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

@media (min-width: 992px) {
  .duvidas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .duvidas-card {
    width: auto;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .duvida-answer {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .steps-connector {
    display: block;
  }

  .steps-row {
    flex-direction: row;
    gap: 0;
    padding-top: 1.875rem;
  }

  .steps-row::before {
    display: none;
  }

  .step {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    text-align: center;
  }

  .step-body {
    padding-inline: 1.5rem;
  }

  .step-icon {
    align-self: center;
    width: 5rem;
    margin-bottom: 1rem;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-cta .btn-cta,
.floating-cta .btn-cta-green {
  margin: 0;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.floating-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.floating-cta-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 1000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-cta-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 8%;
  padding-right: 8%;
}

.floating-cta-mobile .btn-cta,
.floating-cta-mobile .btn-cta-green {
  width: 100%;
  justify-content: center;
  margin: 0;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

.floating-cta-mobile.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Footer */
.site-footer {
  padding-block: 1.5rem;
  padding-left: 4%;
  padding-right: 4%;
  border-top: 1px solid var(--color-cream);
  background: #fff;
  text-align: center;
}

.footer-logo {
  width: 9rem;
  margin-inline: auto;
}

.footer-stats {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-gray);
}

.footer-stats-heading {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw + 1.2rem, 2rem);
  line-height: 1.2;
}

.footer-stats-dark {
  color: var(--color-title-dark);
}

.footer-stats-green {
  color: var(--color-green);
}

.footer-stats-text {
  margin-bottom: 2rem;
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .footer-logo {
    width: 7rem;
  }
}
