 /* CSS from style.css */
 .parallax {
  background-image: url('../../images/shutterstock_825168912.jpg');
  height: 80vh;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

@media (max-width: 768px) {
  .parallax {
      background-attachment: scroll;
      height: 50vh;
  }
  .parallax h1 {
      font-size: 2.5rem;
  }
  .parallax p {
      font-size: 1rem;
  }
  .parallax .btn {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
  }
}

#nosotros {
  background-color: #f8f9fa;
}

#nosotros p {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  color: #000000;
}

footer h5 {
  font-weight: bold;
  border-bottom: 2px solid #bd1b1b;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

footer a{
  text-decoration: none;
}

footer a:hover {
  color: #d35858 !important;
}

.nav-tabs .nav-link {
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-tabs {
      overflow-x: auto;
      flex-wrap: nowrap;
  }
}

/* Custom Hover Effects */
.card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn-primary {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #bd1b1b;
  transform: translateY(-2px);
}

.navbar-nav .nav-link {
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #bd1b1b !important;
}

.navbar-nav .nav-link {
  text-decoration: none !important;
  position: relative;
  color: inherit;
  transition: color 0.3s ease;
}

/* LÃ­nea roja al hacer hover */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #bd1b1b;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}
strong {
  color: #bd1b1b;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    color: #bd1b1b !important;
}
.nav-tabs button {
  color: #919397 !important;
}
#contacto .btn,
#consultas .btn {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  background-color: #bd1b1b !important;
  color: white;
}

#consultas .btn{
text-align: center !important;
justify-content: center;
margin-top: 15px;
margin-bottom: 15px;
display: flex;
}

.accordion-button {
  color: #bd1b1b;
}


.accordion-button:not(.collapsed) {
  background-color: #ffe0e0;
  color: #bd1b1b;
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(18%) sepia(84%) saturate(1302%) hue-rotate(193deg) brightness(92%) contrast(98%);
}
/* Estilo para el botÃ³n de SweetAlert */
.swal-button--confirm {
  background-color: #bd1b1b !important; /* Rojo */
  color: white !important; /* Texto blanco */
  border: none !important; /* Sin borde */
  box-shadow: none !important; /* Sin sombra */
  font-weight: bold; /* Hacer el texto en negrita */
}

/* Cambiar el color al hacer hover */
.swal-button--confirm:hover {
  background-color: #9e1616 !important; /* Rojo mÃ¡s oscuro */
  transform: translateY(-2px); /* Ligera elevaciÃ³n al pasar el mouse */
}

/* Cambiar el texto cuando el botÃ³n se presiona */
.swal-button--confirm:active {
  background-color: #8e1313 !important; /* Rojo mÃ¡s oscuro al hacer clic */
  transform: translateY(1px); /* Efecto de presiÃ³n */
}
.swal2-confirm {
  background-color: #bd1b1b !important;
  color: white !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
 /* CSS from style.css */
#ubicanos .container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 31%);
  text-align: center;
}

#ubicanos .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

#ubicanos .button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

#ubicanos .buttons button {
  padding: 12px 20px;
  font-size: 15px;
  background: transparent;
  border: 1.5px solid #bd1b1b;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#ubicanos .buttons button:hover {
  background-color: #e0cfcf;
  transform: translateY(-2px);
}

#ubicanos .buttons button:active {
  transform: scale(0.97);
}

#ubicanos .buttons button.activo {
  background: #bd1b1b;
    border: 1.5px solid #bd1b1b;
  color: #ffffff;
}

#ubicanos .mapa {
  display: none;
  margin-top: 20px;
  animation: fadeIn 0.6s ease forwards;
}

#ubicanos iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border: 0;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#ubicanos .info-sucursal {
  margin-top: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 5px solid #bd1b1b;
  border-radius: 8px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.5;
}
#ubicanos a{
  text-decoration:none;
  color: black;
  transform:all cubic-bezier(0, 0, 1, 0.38);
} 
#ubicanos a:hover{
  text-decoration: 1px underline;
  text-decoration-color: #bd1b1b;
} 
#consultas a{
  text-decoration: none; 
  color: #bd1b1b; 
}
#consultas a:hover{
  text-decoration: none; 
  color: #510000;
}
