html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.main-content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.banner-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  right: 50%;
  margin-right: -50vw;
  overflow: hidden;
}

.banner-wrapper picture,
.banner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.container-custom {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.small-banner-wrapper picture,
.small-banner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin: 20px 0;
}

.plans-container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 60px;
  flex-wrap: wrap;
}

.plan-card {
  flex: 1;
  max-width: calc((100% - 16px) / 3);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: background .3s;
  height: 375px;
}

.plan-card-third {
  flex: 1;
  max-width: calc((100% - 16px) / 4);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: background .3s;
  height: 400px;
}

.plans-container-secondary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 60px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.plan-card-secondary {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: background .3s;
  height: 375px;
  width: calc((100% - 16px) / 2);
  min-width: 220px;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

.plan-card:hover {
  background: #617FF8;
  box-shadow: 0 0 15px rgba(97, 127, 248, 0.6);
}

.plan-card-secondary:hover {
  background: #001565;
  box-shadow: 0 0 15px rgba(0, 21, 101, 0.6);
}

.plan-card:hover *,
.plan-card-secondary:hover * {
  color: #fff !important;
}

.plan-title {
  color: #617FF8;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-prefix {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  margin-right: 4px;
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  color: inherit;
}

.plan-price {
  color: #001565;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 10px !important;
}

.plan-title-secondary {
  color: #001565;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.plan-price-secondary {
  color: #617FF8;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 10px !important;
}

.plan-desc {
  font-size: 14px;
  margin-bottom: 16px;
}

.plan-sep {
  width: 90%;
  border-top: 1px solid #ddd;
  margin: 0 auto 16px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.plan-features span {
  display: flex;

  font-size: 14px;
  margin-bottom: 8px;
}

.plan-features i {
  font-size: 22px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.plan-btn,
.plan-btn-secondary {
  width: calc(100% - 48px);
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: background .3s, color .3s;
  background: #001565;
  color: #fff;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.plan-card:hover .plan-btn,
.plan-card-secondary:hover .plan-btn-secondary {
  background: #fff;
  color: #001565;
}

.plan-btn:hover,
.plan-btn-secondary:hover {
  color: #001565 !important;
}

.plan-card:hover .plan-btn,
.plan-card-secondary:hover .plan-btn-secondary {
  color: #001565 !important;
}

@media (max-width: 992px) {
  .plans-container-secondary {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  .plan-card-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    min-height: 350px;
  }
}

@media (max-width: 768px) {

  .plans-container,
  .plans-container-secondary {
    width: 100%;
    justify-content: center;
  }

  .plan-card,
  .plan-card-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {

  .plans-container,
  .plans-container-secondary,
  .services-container {
    padding: 0 12px;
  }

  .plan-card,
  .plan-card-secondary,
  .service-card {
    padding: 16px;
    min-height: auto;
  }
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 60px 0;
  max-width: 1200px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: box-shadow .3s;
}

.service-card:hover {
  box-shadow: 0 0 40px rgba(0, 21, 101, 0.6);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.service-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #001565;
  margin-top: 3px;
}

.service-card p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {

  .plans-container,
  .plans-container-secondary,
  .services-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    justify-items: center;
    width: 100%;
  }

  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
  }

  .plan-card,
  .plan-card-secondary,
  .service-card {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0 auto;
    min-height: 200px;
    align-items: center !important;
  }

  .services-container {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    /* height removido para não cortar */
  }
}

.services-title {
  text-align: center;
  max-width: 1200px;
  margin: 40px auto 24px;
  color: #001565;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem;
}

.scroll-indicator .line {
  width: 2px;
  height: 50px;
  background: #001565;
  margin-bottom: 1rem;
}

.scroll-indicator .mouse {
  width: 36px;
  height: 60px;
  border: 2px solid #001565;
  border-radius: 36px;
  position: relative;
}

.scroll-indicator .scroll-wheel {
  width: 4px;
  height: 10px;
  background: #617FF8;
  border-radius: 2px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}




@media (max-width: 768px) {
  /* Two per row for service cards */
  .services-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    justify-items: center;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .service-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Two per row for plan-card-third */
  .plans-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    justify-items: center;
    width: 100% !important;
  }

  .plan-card-third {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Two per row for plan-card-secondary */
  .plans-container-secondary {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    justify-items: center;
    width: 100% !important;
    max-width: 100% !important;
  }

  .plan-card-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }

  .plan-features{
    align-items: start!important;
  }
}

@media (max-width: 992px) {
  .plans-container-secondary {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  .plan-card-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    min-height: 350px;
  }

  .plan-features span{
    font-size: 0.8rem;
  }
}