.navbar-nav .nav-link {
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #007bff; /* Azul do Bootstrap */
  }

  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }

  /* carrosel feedbacks */

  .carousel-inner {
      transition: transform 1s ease-in-out;
  }


  /* video seção */

  .video-highlight-section {
      background: url('assets/bolhas.png') no-repeat center center/cover;
      height: 100vh;
      background-attachment: fixed;
      padding: 2rem;
  }

  .video-container {
      background-color: rgba(0, 0, 0, 0.6);
      max-width: 700px;
      width: 100%;
      border-radius: 16px;
  }

  .video-box {
      width: 100%;
      height: auto;
      border-radius: 12px;
  }

/* Nossos Números */

.counter {
font-size: 2.5rem;
color: #06364d;
}

/* unidades */

#nossas-lojas h2 {
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
color: #06364d;
}

.card img {
filter: drop-shadow(1px 1px 2px black);
}

.card:hover {
transform: scale(1.02);
transition: 0.3s;
}

/*maps*/

.mapa-section {
background-color: #3372B7;
background-image: url('https://www.transparenttextures.com/patterns/white-wall.png'); /* textura leve */
background-repeat: repeat;
background-size: auto;
color: white;
}

.mapa-container {
max-width: 900px;
margin: 0 auto;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
border-radius: 8px;
overflow: hidden;
}

.container-localizacao{

display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* ou o tamanho da div pai */


}

#btnLocalizar{
background-color: var(--amarelo-sol);
margin-top: 10px;
border: 1px solid yellow;
color: rgb(0, 0, 0);
padding: 12px 20px;
font-size: 1rem;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
box-shadow: 0 4px 10px var(--sombra);

}


/* footer */

footer {
    background-color: #06364d;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-social a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: #810069;
  }
  /* Melhorias gerais */
.card {
transition: transform 0.3s ease;
}

.card:hover {
transform: scale(1.03);
}

img {
max-width: 100%;
height: auto;
display: block;
}

/* Video responsivo */
.video-container {
width: 100%;
max-width: 700px;
margin: auto;
padding: 1rem;
border-radius: 16px;
background-color: rgba(0, 0, 0, 0.6);
}

.video-box {
width: 100%;
border-radius: 12px;
aspect-ratio: 16 / 9; /* Mantém proporção em telas menores */
object-fit: cover;
}

/* Ajustes no footer */
footer {
flex-wrap: wrap;
gap: 1rem;
text-align: center;
}

.footer-social {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}

/* Seção mapa responsiva */
.container-localizacao {
height: auto;
padding: 2rem 1rem;
}

/* Botão responsivo */
#btnLocalizar {
width: 100%;
max-width: 250px;
margin: 1rem auto;
display: block;
}

/* Mobile First - Serviços */
@media (max-width: 768px) {
#nossos-servicos .row {
  flex-direction: column;
}

.navbar-brand {
  font-size: 1.2rem;
}
}


/* Para Chrome, Safari e Edge (WebKit) */
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider {
display: none !important;
}

/* Para Firefox */
video::-moz-volume-control {
display: none !important;
}

/**************************************/

/* CSS adicional */
.container-localizacao {
max-width: 515px;      /* não ultrapassa 515px */
width: 90%;            /* mas encolhe em telas pequenas */
background: rgb(0, 143, 214);
/* altura automática conforme conteúdo */
}

/* Opcional: ajuste de texto em telas muito estreitas */
@media (max-width: 400px) {
.container-localizacao h1 {
  font-size: 1.2rem;   /* título um pouco menor */
}
#btnLocalizar {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
}

@media (max-width: 576px) {
    /* Em telas ≤576px, só mostramos o primeiro card de cada slide */
    #feedbackCarousel .carousel-item .row > .col-md-4:nth-child(n+2) {
      display: none;
    }
  }
  