/*-- Use For Custom Styling --*/
.btn-pill {
    border-radius: 50rem; /* Bordas arredondadas completamente */
    padding: 10px 20px; /* Padding de 10px para top e bottom, e 20px para left e right */
}

.sub-heading .fas {
    margin-right: 5px; /* Ajusta o espaço à direita do ícone */
}

.button {
    width: 340px;
    height: 45px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #fff;
    background-color: #F36B19;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    }
  
  .button:hover {
    background-color: #fff;
    
    color: #000;
    transform: translateY(-2px);
  }

  .ratings{
    margin: 0;
    padding: 0;
    padding-top: 5px;
    display: block;
}

.ratings > li{
    display: inline-block;
    font-size: 13px;
    color: #ffce22;
    line-height: 1;
}


.parallax-box{
  text-align: center;
}

.parallax-box h2{
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.parallax-box h5{
  font-weight: normal;
  font-size: 16px;
}


/* overlay */
.bg-overlay{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}

.opacity-7{opacity: .7;}


/* expand-btn-inner */
.expand-btn-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Ajustado para alinhar no final da navegação */
}

.expand-btn-inner ul {
  list-style-type: none; /* Remove os marcadores de lista */
  padding: 0; /* Remove o padding padrão das listas */
  margin: 0; /* Remove a margem padrão das listas */
  display: flex;
  align-items: center;
}

.expand-btn-inner ul li {
  margin-right: 10px; /* Adiciona espaçamento entre os itens da lista */
}

.expand-btn-inner ul li:last-child {
  margin-right: 0; /* Remove margem direita do último item para um alinhamento correto */
}

.expand-btn-inner ul .btn-signin .signin-button,
.expand-btn-inner ul .btn-quote a {
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  display: inline-block;
  position: relative;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none; /* Remove o sublinhado dos links */
}

.expand-btn-inner ul .btn-signin .signin-button {
  padding: 0 37px;
  line-height: 62px;
  height: 60px;
  border: 1px solid transparent;
  display: block;
}

.expand-btn-inner ul .btn-signin .signin-button .sign-text i,
.expand-btn-inner ul .btn-quote a .btn-text i {
  font-weight: 400;
  margin-right: 5px;
  font-family: 'remixicon' !important;
}

.expand-btn-inner ul .btn-signin .signin-button:hover {
  color: #DBD6D6;
  border-color: #fff;
  
}

.expand-btn-inner ul .btn-quote a {
  padding: 13px 27px;  
  background-color: #F36B19;
}

.expand-btn-inner ul .btn-quote a:hover {
  color: #DBD6D6; 
  background-color: #033A61;
}

/* Esconde os links de navegação padrão, se necessário */
.expand-btn-inner ul .nav-link {
  display: none;
}

.cookie-banner {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0c0000db; /* Cor de fundo sólido */
  padding: 10px;
  text-align: center;
  box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  color: #fff;
}

.cookie-content {
  display: inline-block;
  max-width: 600px;
  text-align: left;
}

.cookie-btn {
  background-color: #25aee3;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}

.cookie-btn-decline {
  background-color: #f44336;
}

.text-center {
  text-align: center;
}