* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* body {
  background-color: var(--bs-gray-100);
} */

a {
  /* color: var(--cor-03); */
  text-decoration: none;
}

/*a:hover {
  color: var(--cor-02);
} */

:root {
  --cor-01: #1F4A6C;
  --cor-02: #CA48D8;
  --cor-03: #8852E4;
  --cor-04: #85D7C1;
  --cor-bg: #E5E5E5;
  --sidebar: #15312d;
}

.text-primary {
  color: var(--cor-02) !important;
}

.btn-primary {
  background-color: var(--cor-03) !important; 
  border: none;
}

.btn-primary:hover {
  background-color: var(--cor-01) !important; 
}


/* h2 {
  color: var(--cor-01);
  font-size: 45px;
  font-weight: 600;
  letter-spacing: .4rem;
  text-transform: uppercase;
}

h4 {
  color: var(--cor-02);
  letter-spacing: .05rem;
}

h5 {
  letter-spacing: .4rem;
  color: #fff;
} */

/* ---- CONFIG BOTÃO ---- */



/* ---- CONFIG NAVBAR ---- */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: #1F4A6C;
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: var(--cor-03);
  font-weight: 600;
}


/* ---- CONFIG HOME ---- */
.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.video-hidden {
  opacity: 0;
}


.cont-home h1 {
  font-weight: bold;
  font-size: 50px;
}

/* Sobreposição de cor */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(334deg, #6b97f76b, #7425e267, #f7137d65);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
  z-index: 2;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Conteúdo */
.cont-home {
  position: relative;
  z-index: 3;
  color: #fff;
}

/*--- CONFIG SOBRE ---- */

.about h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--cor-01);
  line-height: 55px;
}

/*--- CONFIG INFOMRAÇÕES ---- */

/* .informacao {
  overflow: hidden;
} */

.text-column {
  background-color: #6a1b9a;
  color: #fff;
  padding: 130px 30px;
}

.text-column h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.text-column p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.image-column {
  background-image: url('../img/capa-siclin.jpg');
  background-size: cover;
  background-position: center;
  padding: 400px 0;
}

/* ---- CONFIG SERVIÇOS ---- */
.color-logos {
  background: linear-gradient(334deg, #6b97f7, #7425e2, #f7137d);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
  z-index: 2;
}

.color-logos .btn {
  padding: 10px 45px;
  border: 1px solid #fff;
  border-radius: 25px;
}

.color-logos i {
  font-size: 40px;
}

.color-logos .btn-contato {
  text-align: center;
}

@media (max-width: 767px) {
  .color-logos .btn-contato {
    text-align: left;
  }

  .color-logos i {
    font-size: 20px;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





.logos .logo {
  max-width: 120px; /* Ajusta o tamanho máximo dos logos */
}

.logos .logo:hover {
  filter: grayscale(0%); /* Remove o tom de cinza ao passar o mouse */
}


/* -------------------------- */
.features-style-one .primary-btn-outline {
  border-color: var(--cor-01);
  color: var(--cor-01);
}
.features-style-one .active.primary-btn-outline, .features-style-one .primary-btn-outline:hover, .features-style-one .primary-btn-outline:focus {
  background: var(--cor-01);
  color: var(--cor-bg);
}
.features-style-one .deactive.primary-btn-outline {
  color: var(--cor-01);
  border-color: var(--cor-02);
  pointer-events: none;
}

.features-one {
  background-color: var(--cor-bg);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-one .section-title {
  padding-bottom: 10px;
}
.features-one .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--cor-01);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-one .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-one .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--cor-01);
  margin-top: 24px;
}

.features-style-one {
  background-color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  box-shadow: #000;
  border-radius: 4px;
  transition: all 0.3s;
}
.features-style-one:hover {
  box-shadow: var(--cor-03);
  transform: scale(1.03);
}
.features-style-one .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: var(--cor-03);
  border: 2px solid rgba(187, 187, 187, 0.116);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-one .features-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 35px;
  }
}
.features-style-one:hover .features-icon {
  border-color: transparent;
  color: var(--cor-bg);
  background-color: var(--cor-03);
}
.features-style-one .features-content {
  margin-top: 24px;
}
.features-style-one .features-title {
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  color: var(--cor-03);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .features-style-one .features-title {
    font-size: 22px;
  }
}
.features-style-one .text {
  /* color: ; */
  margin-top: 16px;
}
.features-style-one .features-btn {
  margin-top: 32px;
}

/* ---- FOOTER ----  */

footer {
  background-color: var(--cor-bg);
  color: var(--cor-03);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-07 .menu {
  margin-bottom: 30px;
}

.footer-07 .menu a {
  color: var(--cor-01);
  font-weight: bold;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftco-footer-social {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaço entre os ícones */
}

.ftco-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--cor-03);
  color: var(--cor-03);
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.ftco-footer-social a:hover {
  border: 1px solid var(--cor-03);
  color: var(--sidebar);
}

.whatsapp {
  width: auto;
  position: fixed;
  top: 85%;
  right: 1%;
  padding: 10px;
  z-index: 10000000;
}

/* Estilo geral do banner de cookies */
.cookies-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho do banner (inclui o ícone e a frase) */
.cookies-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.cookies-header i {
  font-size: 24px;
  color: #ff9800;
  margin-right: 10px;
}

.cookies-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Texto explicativo */
.cookies-container p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  text-align: center;
}

.cookies-options label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookies-options input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Estilo do botão de salvar */
.cookies-save {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cookies-save:hover {
  background-color: #0056b3;
}

/* Estilo responsivo */
@media (max-width: 600px) {
  .cookies-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
