/*================================  */
/*================================  */
/* ====== HERO SECTION ============ */
/*================================  */
/*================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 50, 0.92) 0%,
    rgba(10, 25, 50, 0.7) 50%,
    rgba(10, 25, 50, 0.4) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__badge-text {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1;
}

.hero__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.15s forwards;
  opacity: 0;
}

.hero__title span {
  color: var(--secondary);
}

.hero__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 800px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.45s forwards;
  opacity: 0;
}

.hero__actions .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* Decorative shape */
.section-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.section-shape svg {
  display: block;
  width: 100%;
  height: 8.5vw;
}

/* Floating elements */
.hero__float {
  position: absolute;
  z-index: 2;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.hero__float--1 {
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.hero__float--2 {
  bottom: 30%;
  right: 25%;
  width: 60px;
  height: 60px;
  animation-delay: 2s;
}

.hero__float--3 {
  top: 40%;
  right: 5%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

/*================================  */
/*================================  */
/* ====== HERO ANIMATIONS ========= */
/*================================  */
/*================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/*================================ */
/* ====== HERO SECTION DESKTOP === */
/*================================ */
/*================================ */

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero__content {
    padding: 140px 0 60px;
    max-width: 650px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__description {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__actions .btn {
    width: auto;
    max-width: none;
  }

  .hero__float--1 {
    width: 120px;
    height: 120px;
  }

  .hero__float--2 {
    width: 90px;
    height: 90px;
  }

  .hero__float--3 {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 58px;
  }

  .hero__content {
    padding: 160px 0 80px;
  }
}

/*================================  */
/*================================  */
/* ====== SERVICES SECTION ======== */
/*================================  */
/*================================ */

.services {
  padding: 80px 0 240px;
  background-color: var(--background-2);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--white);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  margin: 0 auto;
  max-width: 600px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 30px 30px; /* Padding suficiente para a caixa do ícone que agora começa no top 0 */
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-top: 24px;
  border: 1px solid var(--border-1);
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon-box {
  position: absolute;
  top: -16px; /* A caixa sobe além da borda do card */
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: var(--secondary);
  border-radius: 12px 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 183, 49, 0.3);
  transition: var(--transition);
}

.service-card__icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px; /* Ajusta a largura da dobra */
  width: 0;
  height: 0;
  border-bottom: 16px solid var(--secondary-dark); /* Altura exata da parte que sobe além do card */
  border-right: 16px solid transparent;
}

.service-card__icon,
.service-card__icon-box svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  fill: var(--primary);
}

.service-card__title {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 2px;
}

.service-card__link:hover {
  color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.service-card__link .icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}

.service-card__link:hover .icon {
  transform: translateX(4px);
}

/*================================ */
/* ====== SERVICES DESKTOP ======= */
/*================================ */
/*================================ */

@media (min-width: 768px) {
  .services {
    padding: 100px 0 280px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 38px;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*================================  */
/*================================  */
/* ====== CTA BANNER SECTION ====== */
/*================================  */
/*================================ */

.cta-banner {
  position: relative;
  z-index: 10;
  margin-top: -180px; /* Overlaps previous section */
  padding-bottom: 20px;
}

.cta-banner__wrapper {
  background-color: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-banner__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: left;
}

.cta-banner__title-icon {
  flex-shrink: 0;
  color: var(--secondary);
}

.cta-banner__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-banner__actions .btn {
  width: 100%;
  justify-content: center;
}

.cta-banner__actions .btn svg {
  margin-right: 4px;
}
.cta-banner__content__title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cta-banner__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 50px 50px;
  }

  .cta-banner__content {
    flex: 1;
    max-width: 60%;
  }

  .cta-banner__content__title {
    justify-content: flex-start;
  }

  .cta-banner__title {
    font-size: 28px;
    justify-content: flex-start;
  }

  .cta-banner__actions {
    flex-direction: row;
    flex-shrink: 0;
  }

  .cta-banner__actions .btn {
    width: auto;
  }
}

/*================================  */
/*================================  */
/* ====== ABOUT US SECTION ======== */
/*================================  */
/*================================ */

.about {
  padding: 80px 0;
  background-color: var(--background-1);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

/* Left side: Image and Badge */
.about__image-col {
  position: relative;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  background-color: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translate(5%, 25%);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__experience-icon {
  width: 32px;
  height: 32px;
  stroke: var(--secondary);
  fill: none;
  flex-shrink: 0;
}

.about__experience-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__experience-content h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.about__experience-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Right side: Text and Stats */
.about__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.about__text-box {
  margin-bottom: 40px;
}

.about .section-header {
  text-align: left;
  margin-bottom: 24px;
}

.about .section-title {
  margin: 0;
  max-width: 100%;
  font-size: 32px;
}

.about__desc {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.about__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-content: center;
}

.stat-item__dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-top: 14px;
  flex-shrink: 0;
}

.stat-item__content {
  display: flex;
  flex-direction: column;
}

.stat-item__number {
  font-family: var(--font-header);
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-item__text {
  font-size: 14px;
  color: var(--text-body);
}

/* Benefits Row at bottom of About Us */
.about__benefits {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.about-benefit__icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.about-benefit__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.about-benefit__text {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

/*================================ */
/* ====== ABOUT US DESKTOP ======= */
/*================================ */
/*================================ */

@media (min-width: 768px) {
  .about {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .about__image-col {
    margin-bottom: 0;
  }

  .about__content-col {
    padding-top: 0;
  }

  .about__benefits {
    flex-direction: row;
    justify-content: space-between;
  }

  .about-benefit {
    flex-direction: row;
    text-align: left;
  }

  .about__experience-badge {
    bottom: -30px;
    left: 40px;
    width: auto;
    max-width: 80%;
    transform: none;
    padding: 40px;
  }

  .about .section-title {
    font-size: 38px;
  }

  .stat-item__number {
    font-size: 42px;
  }
}

/*================================  */
/*================================  */
/* ====== REVIEWS SECTION ========= */
/*================================  */
/*================================ */

.reviews {
  padding: 100px 0;
  background-color: var(--background-2);
  position: relative;
}

.reviews .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews .section-title {
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Swiper overrides */
.reviews__slider {
  overflow: hidden;
  padding-bottom: 60px;
  position: relative;
}

.reviews__slider .swiper-wrapper {
  align-items: stretch;
}

.reviews__slider .swiper-slide {
  height: auto;
}

/* Review Card */
.review-card {
  background-color: var(--background-1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: grab;
}

.review-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-card__quote {
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__quote svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.review-card__rating .star-icon {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  flex-grow: 1;
  margin-bottom: 12px;
}

.review-card__date {
  font-size: 13px;
  color: var(--text-body-light);
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-1);
}

.review-card__author-info h4 {
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.review-card__author-info span {
  font-size: 13px;
  color: var(--text-body-light);
}

/* Swiper Pagination */
.reviews .swiper-pagination {
  bottom: 0 !important;
}

.reviews .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-1);
  opacity: 1;
  transition: var(--transition);
}

.reviews .swiper-pagination-bullet-active {
  background-color: var(--secondary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* Responsivo */
@media (min-width: 768px) {
  .reviews .section-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .reviews .section-title {
    font-size: 40px;
  }
}

/*================================  */
/*================================  */
/* ====== FAQ SECTION ============= */
/*================================  */
/*================================ */

.faq {
  padding: 100px 0;
  background-color: var(--background-1);
  position: relative;
}

.faq .section-title {
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* Accordion */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background-color: var(--background-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.faq__item.active {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: left;
  transition: var(--transition-fast);
}

.faq__item.active .faq__question {
  color: var(--primary-dark);
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--primary-dark);
  transition: var(--transition);
}

.faq__icon svg {
  width: 16px;
  height: 16px;
}

.faq__icon .icon-minus {
  display: none;
}

.faq__icon .icon-plus {
  display: block;
}

.faq__item.active .faq__icon .icon-minus {
  display: block;
}

.faq__item.active .faq__icon .icon-plus {
  display: none;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* Right Image Column */
.faq__image-col {
  display: block;
}

.faq__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.faq__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.faq__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 50, 0.92) 0%,
    rgba(10, 25, 50, 0.7) 50%,
    rgba(10, 25, 50, 0.4) 100%
  );
  z-index: 1;
}

.faq__support-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.faq__support-card h3 {
  font-family: var(--font-header);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq__support-phones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px; /* Space for the protruding icon */
}

.faq__support-phone {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 56px; /* Increased padding to make the white box taller */
  text-decoration: none;
  transition: var(--transition-fast);
  flex: 1;
}

.faq__support-phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.faq__phone-icon {
  position: absolute;
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--secondary);
  border-radius: 0 12px 12px 12px; /* Sharp top-left for the fold */
  color: var(--primary-dark);
  box-shadow: 0 4px 10px rgba(245, 183, 49, 0.3);
  z-index: 2;
}

.faq__phone-icon::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--secondary-dark);
  border-left: 20px solid transparent;
  z-index: 1;
}

.faq__phone-icon svg {
  width: 22px;
  height: 22px;
}

/* Responsivo FAQ */

.faq__phone-label {
  display: block;
  font-size: 13px;
  color: var(--text-body-light);
  margin-bottom: 2px;
}

.faq__phone-number {
  display: block;
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

/* Responsivo FAQ */
@media (min-width: 1024px) {
  .faq__support-phones {
    flex-direction: column;
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .faq .section-title {
    font-size: 36px;
  }

  .faq__question {
    font-size: 16px;
    padding: 20px 28px;
  }
}

@media (min-width: 1024px) {
  .faq__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .faq .section-title {
    font-size: 38px;
  }
}

/*================================  */
/*================================  */
/* ====== REGIONS SECTION ========= */
/*================================  */
/*================================ */

.regions {
  padding: 100px 0 80px;
  background-color: var(--background-2);
}

.regions .section-header {
  margin-bottom: 60px;
}

.regions .section-title {
  color: var(--primary-dark);
}

.regions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.region-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-1);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.region-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.region-card h3 {
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
}

@media (min-width: 768px) {
  .regions__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*================================  */
/*================================  */
/* ====== FINAL CTA SECTION ======= */
/*================================  */
/*================================ */

.final-cta {
  padding: 0;
  /* Fundo cinza até 150px antes do final, transparente depois */
  background: linear-gradient(
    to bottom,
    var(--background-2) calc(100% - 150px),
    transparent calc(100% - 100px)
  );
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
}

.final-cta__wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px 40px;
  display: flex;
  align-items: center;
}

.final-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 50, 0.95) 0%,
    rgba(10, 25, 50, 0.7) 60%,
    rgba(10, 25, 50, 0.2) 100%
  );
  z-index: 1;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.final-cta__title {
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-cta__actions .btn {
  justify-content: center;
  width: 100%;
}

.final-cta__actions .btn svg {
  margin-right: 6px;
}

/* Responsivo */
@media (min-width: 768px) {
  .final-cta__wrapper {
    padding: 80px 60px;
  }

  .final-cta__title {
    font-size: 42px;
  }

  .final-cta__actions {
    flex-direction: row;
  }

  .final-cta__actions .btn {
    width: auto;
  }
}
