
:root {
    --bordo: #80151E; /* */
    --dourado: #B89C5D; /* */
    --areia: #f4f1ea;
    --coral: rgb(234, 230, 223);
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}
a{color: var(--bordo); text-decoration: none;}
a:hover{filter: brightness(0.95); text-decoration: none;}
/* Navbar */
/* Ajuste para Navbar Transparente sobre o Slider */
.navbar {
    transition: background 0.5s ease;
}

/* Classe para o link ativo na Navbar */
.nav-link.active {
    color: var(--bordo) !important;
    font-weight: 500;
}
.navbar-brand img { height: 60px; }
.nav-link { font-weight: 500; color: #333; }
.nav-link:hover { color: var(--bordo); }

.bg-dourado {
  --bs-bg-opacity: 1;
  background-color: var(--dourado) !important;
}

.bg-coral {
  --bs-bg-opacity: 1;
  background-color: rgb(234, 230, 223) !important;
}

.bg-bordo {
  --bs-bg-opacity: 1;
  background-color: var(--bordo) !important;
}

/* Estilização do Hero Slider */
.carousel-item {
    height: 55vh; /* Altura do slider (85% da tela) */
    min-height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
}
.margin-slide-top-text{margin-top: 100px;}
.carousel-caption {
    bottom: 30%;
    text-align: left;
    background: rgba(0, 0, 0, 0.4); /* Fundo escuro leve para leitura */
    padding: 40px;
    border-radius: 15px;
    border-left: 8px solid var(--bordo);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* Hero Section */
.hero {
padding: 100px 0;
background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('https://via.placeholder.com/1920x1080'); /* Substituir por foto de escritório */
background-size: cover;
background-position: center;
}

/* Cores Customizadas */
.bg-bordo { background-color: var(--bordo) !important; }
.text-bordo { color: var(--bordo) !important; }
.text-coral { color: var(--coral) !important; }
.btn-bordo { background-color: var(--bordo); color: white; border: none; }
.btn-bordo:hover { background-color: #601016; color: white; }

.bg-areia { background-color: var(--areia); }
.text-dourado { color: var(--dourado); }

/* Coluna Esquerda - Imagem */
.split-left-image {
    /* Substitua pela imagem bonita e grande de ambiente corporativo */
    background-image: url('../img/abertura-site.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* Coluna Direita - Conteúdo */
.split-right-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative; /* Necessário para o mascote */
    background-color: #fff;
}

.content-wrapper {
    max-width: 600px;
    text-align: center;
    z-index: 2;
}

.logo-main {
    max-width: 350px;
    margin-bottom: 30px;
}

.selection-container {
    display: flex;
    flex-direction: column; /* Empilhado na vertical nesta coluna */
    gap: 20px;
    width: 100%;
}

/* Cards de Soluções */
.card-solucao {
border: none;
border-bottom: 5px solid var(--dourado);
transition: transform 0.3s;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.card-solucao:hover { transform: translateY(-10px); }
.icon-box { font-size: 3rem; color: var(--dourado); }

.option-card {
    background: #fff7f7;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid #eee;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    text-align: left; /* Alinhado à esquerda para leitura */
    display: flex;
    align-items: center;
    gap: 20px;
}
.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 156, 93, 0.2);
    border: 2px solid var(--dourado);
}

.option-card-solucoes {
    background: #fdfdfd;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid #eee;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    text-align: left; /* Alinhado à esquerda para leitura */
    display: flex;
    align-items: center;
    gap: 20px;
}

.option-card-solucoes:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 156, 93, 0.2);
    border: 2px solid var(--dourado);
}

.card-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.option-card h2 {
    font-weight: 700;
    color: var(--bordo);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.option-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.option-card-solucoes h2 {
    font-weight: 700;
    color: var(--bordo);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.option-card-solucoes p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}
/* faq */
.accordion-button:not(.collapsed) {
    background-color: var(--areia);
    color: var(--bordo);
}

.accordion-button:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 0.25rem rgba(184, 156, 93, 0.25);
}

.accordion-button {
    color: var(--bordo);
}

/* Mascote Posicionado na coluna da direita */
.mascote-container {
    position: absolute;
    bottom: 0px;
    right: 20px;
    max-width: 180px;
    z-index: 1;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .split-left-image {
        display: none; /* Esconde a imagem lateral em telas menores/celular */
    }
    .split-right-content {
        padding: 20px;
    }
    .mascote-container {
        max-width: 120px; /* Mascote menor no mobile */
    }
}

/* Adicionar no head do HTML */
/* <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"> */

/* Cores baseadas na imagem */
.bg-bordo-footer {
    background-color: var(--bordo) !important; /* Tom exato do fundo */
}

.bg-bordo-darker {
    background-color: var(--bordo) !important; /* Tom levemente mais escuro para a base */
}

.text-dourado-footer {
    color: var(--dourado) !important; /* Tom dourado dos ícones e links */
}

.linetop {border-top: 1px solid #833428;}

/* Marca d'água (Logo à direita) */
.footer-watermark {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1; /* Bem suave como na imagem */
    height: 120%;
    pointer-events: none;
}

.footer-rt h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .footer-rt h2 {
        font-size: 1.8rem;
    }
}

/* //////// NICIO CSS MAPA*/

#mapa {
  height:400px;
  width:100%;
}

.bgmapa{
  background:#f7f7f7;
  padding-top:100px;
  padding-bottom: 100px;
}
/* MAPA */
.box-mapa {
  position: relative;
  z-index: 1;
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
}

#map {
  display: none;
  transform: scale(1.2);
  transform: scale(1);
  display: table !important;
  margin: 0 auto;
  float: left;
}

#state_ba .shape,
#state_se .shape,
#state_pe .shape,
#state_al .shape,
#state_am .shape,
#state_pa .shape,
#state_mt .shape,
#state_ro .shape,
#state_ac .shape,
#state_ap .shape,
#state_ms .shape,
#state_es .shape,
#state_pi .shape,
#state_ce .shape,
#state_rr .shape,
#state_to .shape,
#state_ma .shape,
#state_rn .shape,
#state_pb .shape,
#state_mg .shape,
#state_rj .shape,
#state_rs .shape,
#state_df .shape,
#state_sc .shape,
#icon_df .shape{
  fill: #dddddd !important;
}

#map .state {
  cursor: pointer;
}

#map .state .shape {
  cursor: pointer;
  -width: 0;
}

#map .state .label_icon_state {
  fill: #b09552;
  font-family: Arial;
  font-size: 11px;
  line-height: 12px;
  font-weight: normal;
}

#map .state .label_state {
  display: none;
  font-family: Arial;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}

#map .state:hover .label_state {
  display: none;
  fill: #FFF !important;
}

#map .state .shape {
  fill: #b09552;
}

#map .state:hover .shape {
  fill: #751715 !important;
}

#map .state .icon_state {
  fill: #284779;
}

#map .state:hover .icon_state {
  fill: #751715;
}

#map .state .icon_state + .label_icon_state {
  fill: #FFF;
}

#map .state .label_icon_state {
  fill: #FFF;
}

#map .state:hover .label_icon_state {
  fill: #FFF;
}

#map .state .label_state {
  fill: #666;
  display: none;
}

#map .state .shape {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#map .state:hover .shape {
  fill: #0288d1;
}

.parca {
  position: relative;
  float: left;
  padding: 0 0 0 0;
  margin-bottom: 40px;
}

.parca select {
  display: none;
  margin: 0 auto;
  width: 230px;
  border: 1px solid #999;
  height: 40px;
  padding: 9px;
  border-radius: 0;
}

.parca .estado {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #DDD;
  position: absolute;
  margin-top: 45px;
  opacity: 0;
  border-radius: 5px;
  visibility: visible;
  padding: 10px;
  left: 0;
  right: 0;
  min-width: 250px;
  display: table;
  margin: 0px 0 0 0px;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
}

.parca .estado h3 {
  font-size: 18px;
  margin-top: 0;
  display: block;
  background-color: #751715;
  padding: 6px;
  color: #FFF;
}

.parca .estado h4 {
  font-size: 16px;
}

.parca .estado p {
  font-size: 11px;
  padding: 0px !important;
  line-height: 18px !important;
}

.parca .estado ul {
  padding-left: 0px;
}

.parca .estado ul li {
  line-height: 24px;
}

.parca #box_mg.estado {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1920px) {

}

@media (max-width: 1199px) {
  #map {
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .parceiros .two .parca .estado {
    display: block;
    margin: 45px auto;
    float: none;
    position: absolute;
    left: 0;
    right: 0;
    min-width: 160px;
    max-width: 306px;
  }
  
  #map {
    transform: scale(0.8);
  }

  .box-mapa {
    position: relative;
    top: 0;
    left: initial;
    display: table;
    margin: 0 auto;
  }
}
@media (max-width: 799px) {
  .unidades{
    min-height: ;
  }
  
  .parca {
  padding: 0 0 0 0;
    clear: both;
}
  .box-mapa {
    display: none;
  }

  .parca select {
    display: block;
  }
}
