* {
  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-02);
  text-decoration: none;
}

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

i {
  color: var(--cor-03);
}

:root {
  --cor-01: #042D29;
  --cor-02: #0A7E4D;
  --cor-03: #AFEB2B;
  --cor-04: #eef7e2;
  --cor-bg: #E5E5E5;
  --sidebar: #15312d;
}

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

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

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

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

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

.bg-success {
  background-color: var(--cor-01) !important;  
}

h2 {
  color: var(--cor-01);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: .2rem;
  text-transform: uppercase;
}

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

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



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

.navbar.scrolled {
  background-color: var(--sidebar);
}

.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: end;
}

.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 {
  color: #fff;
  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, #637e446b, #1c532367, #13f77a65); */
  background: linear-gradient(334deg, #4c6b2896, #103a168e, #0a7e3e91);
  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;
}

.typed {
  color: var(--cor-03);
  font-weight: 600;
  /* text-shadow: 0 0 3px rgb(255, 255, 255); */
}

.typed-cursor {
  color: #fff;
}

/* ---- SERVIÇO ---- */

.service h1.gradient-text {
  background: linear-gradient(90deg, var(--cor-02), var(--cor-03)); /* Altere as cores como quiser */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.icon-box {
  background-color: var(--cor-01);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

/* ---- SERVIÇO ---- */


.sobre {
  padding: 40px 0;
}

.sobre-img-wrapper {
  max-width: 320px;
}

/* .sobre-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
} */

.sobre-title {
  font-size: 1.8rem;
}

.sobre-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.sobre-btn {
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sobre-btn:hover {
  background-color: #000;
}




/* ---- SOBRE NÓS ---- */

.identidade-icons {
  background-color: var(--cor-01);
  position: relative;
  z-index: 1;
}

.identidade-info {
  margin-top: -100px;
}

.identidade-caixa-central {
  max-width: 900px; /* ajuste conforme desejar */
  width: 100%;
}

@media (max-width: 991px) {
  .identidade-caixa-central {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .border-end-md {
    border: none !important;
  }
  .pe-md-5, .ps-md-5 {
    padding: 0 !important;
  }
}


.outros-sistemas .card {
  transition: all 0.3s ease;
}

.outros-sistemas .card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.outros-sistemas i {
  font-size: 1.8rem;
  line-height: 1;
}


/* ---- SUPORTE ---- */
.card-feature-box {
  background-color: var(--cor-04);
  transition: all 0.3s ease;
}

.card-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.card-feature-icon {
  background-color: var(--cor-01);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.card-feature-title {
  font-size: 1.25rem;
  color: var(--cor-02);
}

.card-feature-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ---- INFORMAÇÃO ---- */

.info {
  padding: 40px 0;
}

.info-img-wrapper {
  max-width: 420px;
}

.info-img {
  width: 100%;
  border-radius: 16px;
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.05); */
}

.info-title {
  font-size: 1.8rem;
}

.info-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.info-btn {
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background-color: var(--cor-01);
}

/* ---- DUVIDAS ---- */

.pg-duvidas {
  text-align: center;
  margin-bottom: 3rem;
}

.pg-duvidas h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.pg-duvidas h4 {
  font-weight: 600;
  margin-top: 3rem;
  color: #28a745;
}

.pg-duvidas p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

#linha-horizontal {
  height: 3px;
  width: 60px;
  background-color: #28a745;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.pg-acordeon .accordion-item {
  border: none;
  border-bottom: 1px solid var(--cor-04);
  background-color: #fff;
  /* border-radius: 8px; */
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.pg-acordeon .accordion-button {
  background-color: var(--cor-01);
  font-weight: 600;
  color: var(--cor-03);
  padding: 1rem 1.25rem;
  transition: background-color 0.3s ease;
  border-radius: 0 !important;
}

.pg-acordeon .accordion-button.collapsed {
  background-color: #fff;
  color: #222;
}

.pg-acordeon .accordion-button:focus {
  box-shadow: none;
}

.pg-acordeon .accordion-body {
  background-color: #fefefe;
  color: #444;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  line-height: 1.6;
}

.pg-duvidas i.fa-chevron-down {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #28a745;
  animation: bounce 1.5s infinite;
}

/* Esconde o ícone padrão */
.accordion-button::after {
  display: none;
}

/* Gira o ícone quando aberto */
.accordion-button:not(.collapsed) .icon-toggle {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  color: var(--cor-03);
}

.accordion-button .icon-toggle {
  transition: transform 0.3s ease;
  color: var(--cor-02);
}


/* Cor padrão da seta */
.accordion-button::after {
  filter: invert(36%) sepia(91%) saturate(362%) hue-rotate(89deg) brightness(93%) contrast(91%);
}

/* Cor da seta quando aberto */
.accordion-button:not(.collapsed)::after {
  filter: invert(46%) sepia(94%) saturate(469%) hue-rotate(84deg) brightness(90%) contrast(87%);
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .pg-duvidas h2 {
    font-size: 1.5rem;
  }

  .pg-acordeon .accordion-button {
    font-size: 0.95rem;
  }
}


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

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

footer a:hover {
  color: #ffffff;
}

footer i {
  color: var(--cor-03);
}

footer h6, p {
  color: #aaaaaa;
}

footer img {
  max-width: 200px;
  padding-bottom: 30px;
}

.social-icons {
  display: inline-flex;
  list-style: none;
}

.social-icons a {
  position: relative;
  border:
1px solid var(--cor-03);
  border-radius:
50%;
  padding:
15px;
  margin:
10px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition:
all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mapinha {
  height: 55px;
  width: auto;
  margin-top: 33px;
}

.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;
  }
}
