:root {
  --color-light-gray: #eef3f6;
  --color-dark-gray: #414042;
  --color-purple: #474fa2;
  --color-light-blue: #5aa0d7;
  --color-yellow: #ffc537;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.bg-light-gray {
  background-color: var(--color-light-gray);
}

.bg-dark-gray {
  background-color: var(--color-dark-gray);
}

.bg-purple {
  background-color: var(--color-purple);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-yellow {
  background-color: var(--color-yellow);
}

.text-light-gray {
  color: var(--color-light-gray);
}

.text-dark-gray {
  color: var(--color-dark-gray);
}

.text-purple {
  color: var(--color-purple);
}

.text-light-blue {
  color: var(--color-light-blue);
}

.text-yellow {
  color: var(--color-yellow);
}

body {
  font-family: "Lato", sans-serif;
  background-color: #eef3f6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Axiforma", sans-serif;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
}

.bg-blue-gradient {
  background: rgb(71, 79, 162);
  background: linear-gradient(
    0deg,
    rgba(71, 79, 162, 1) 0%,
    rgba(90, 160, 215, 1) 100%
  ) !important;
}

.quick-actions {
  background: rgb(71, 79, 162);
  background: linear-gradient(
    0deg,
    rgba(71, 79, 162, 1) 0%,
    rgba(90, 160, 215, 1) 100%
  ) !important;
  padding: 0.6rem 0.4rem 0.6rem 0.2rem;
  border-radius: 0px 20px 20px 0px;
  z-index: 9999;
  position: fixed;
  start: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.quick-actions img:hover {
  transform: scale(1.04);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.swiper-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

/* Ajuste para as imagens */
.swiper-slide img {
  width: 100%;
  border-radius: 5px;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-purple); /* ou #fff se o fundo for escuro */
  display: block;
}

.swiper-pagination {
  bottom: 10px;
}

.swiper-pagination-bullet {
  background: var(--color-purple); /* ou branco se o fundo for escuro */
  opacity: 1;
}


/* Estilização das miniaturas */
.thumbnail-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumbnail-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #474fa2;
  border-radius: 5px;
}

header {
  background: #ffffff;
  /* background: url(../img/hero_background.webp) no-repeat center center/cover; */
  /* background-attachment: fixed; */
}
.navbar {
  background-color: #ffffff00;
  padding: 30px 0px;
}
.navbar-brand img {
  height: 64px;
}
.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: #414042 !important;
  margin: 0 14px;
  position: relative;
}
.nav-link:hover {
  color: #474fa2 !important;
}
.nav-link.active {
  color: #474fa2 !important;
  font-weight: 800;
}
.nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #474fa2;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 40px;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
.btn-demo {
  background-color: #5aa0d7;
  background: linear-gradient(to right, #5aa0d7, #474fa2);
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.95rem;
  transition: 0.3s;
  margin-left: 26px;
}
.btn-demo:hover {
  background: linear-gradient(to right, #4f8ec2, #3e4095);
  color: white;
}
.btn-primary {
  background-color: #ffc537;
  border-color: #ffc537;
  color: #414042;
  font-size: large;
  padding: 0.75rem 2.5rem;
}
.btn-primary:hover {
  background-color: #ffb400;
  color: #fff;
}
.btn-info {
  font-size: large;
}
.highlight-section {
  background-color: #474fa2;
  color: #ffffff;
}
.pricing-card {
  border: 2px solid #5aa0d7;
  border-radius: 10px;
  height: 100%;
}
.section-dark {
  background-color: #414042;
  color: #ffffff;
}

.pricing-card {
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
  padding: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #ddd;
  transition: 0.3s;
}
.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
.popular {
  border: 4px solid rgb(71, 79, 162);
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  /* margin-top: -12px; */
}
.popular-badge {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #474fa2;
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 0px;
  font-weight: bold;
  font-size: 17px;
  text-transform: uppercase;
  width: 103%;
}

.btn-contratar {
  background-color: #ffc537;
  color: #000;
  width: 100%;
  font-weight: bold;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  transition: 0.3s;
}
.btn-contratar:hover {
  background-color: #ffb400;
}
.pricing-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #474fa2;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin: 15px 0;
}
.price small {
  display: block;
  font-size: 14px;
  color: #333;
}
.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.feature-list li {
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.feature-list li::before {
  content: "✔";
  color: #474fa2;
  font-weight: bold;
  margin-right: 8px;
}
.link-comparacao {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #474fa2;
  text-decoration: none;
}
.link-comparacao:hover {
  text-decoration: underline;
}

.section-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}
.faq-title {
  color: var(--color-light-blue);
  font-size: 2rem;
}

.faq-accordion .accordion-item {
  border: none;
  background: transparent;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 15px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px; /* Espaço entre a seta e o texto */
}

.faq-accordion .accordion-button::after {
  display: none; /* Esconde a seta padrão do Bootstrap */
}

.faq-accordion .accordion-button::before {
  content: "▶";
  font-size: 1rem;
  color: var(--color-light-blue);
  transition: transform 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}

.faq-accordion .accordion-body {
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc537;
}

.btn-submit {
  background-color: white;
  color: #474fa2;
  font-weight: bold;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: 0.3s;
}
.btn-submit:hover {
  background-color: #ddd;
}
/* Container para os alertas flutuantes */
.alert-container {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 300px;
  z-index: 1050;
}

/* Centraliza o alerta no topo em telas pequenas */
@media (max-width: 768px) {
  .alert-container {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    right: auto;
  }
}

/* Animação para exibir/esconder alertas */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 10px;
  }
  .nav-link {
    margin: 0 10px;
  }
  .btn-demo {
    margin-left: 0;
  }
  .pricing-card {
    margin-bottom: 20px;
  }
  .contact-form .form-group {
    flex-direction: column;
  }
  .contact-form .form-group input {
    width: 100%;
  }
  .quick-actions {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    border-radius: 0;
    padding: 0.2rem;
  }
}
