:root{
  --bs-primary: #00a1e6;
  --bs-secondary: #a1d400;
  --bs-primary-rgb: 0, 161, 230;
  --bs-secondary-rgb: 161,212, 0;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
}

p, li, span {
    font-family: 'Open Sans', sans-serif;
}

.header{
    background: url(../img/banner1.jpg) no-repeat center;
    background-size: cover;
    min-height: 100vh;
}
.navbar{
  position: fixed; /* Permite que el navbar quede fijo en la parte superior */
  width: 100%;
  background-color: transparent !important; /* Fondo transparente */
  transition: background-color 0.3s ease; /* Suaviza el cambio de color */
  z-index: 1000; /* Asegura que esté encima de otros elementos */
  color:#000;
}
/* Estilo para enlaces del navbar */
.navbar .nav-link {
  font-weight: 500; /* Peso del texto */
  padding: 3px;
  position: relative; /* Para el subrayado animado */
  transition: color 0.3s ease;
  font-size: 20px;
}

/* Efecto de hover con subrayado animado */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white; /* Color rosa para el subrayado */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.navbar .nav-link:hover {
  color: white; /* Color rosa en hover */
  font-size: 22px;
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.scrolled{
    background-color: #a1d400 !important;
    opacity: 85%;
}
.navbar.scrolled .nav-link {
  color: white !important; /* Cambia a color rosa cuando se desplaza */
  
}
.carousel-caption h1{
	font-size: 3rem;
	color: white;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.carousel-caption h4{
	font-size: 1.5rem;
	color: white;
	background-color: ;
	word-break: break-all;
	padding: 5px;
	max-width: 350px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 10px;
}
.carousel-caption h4 a{
	text-decoration: none;
	color: white;
}

section{
	margin-top: 20px;
}
.titles{
	color: #00a1e6;
	font-size: 3rem;
	margin: 10px;
	margin-bottom: 20px;
}
 .service-title{
	background-color: #a1d400;
	padding-inline: 15px;
	color: white;
	font-size: 1.5rem;
	margin: 5px;
	margin-bottom: 8px;
}
.Nosotros{
	color: white;
	padding: 40px;
	min-height: 400px;
}
.titles2{
	font-size: 3rem;
	margin: 10px;
	margin-bottom: 20px;
}
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.line {
    flex: 1;
    height: 2px;
    background-color: #ccc;
}

.icon {
    margin: 0 10px;
}

.icon img {
    width: 24px; /* Ajusta el tamaño del ícono */
    height: auto;
}
#mapa{
		width: 100%;
		height: 400px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;    /* Centra verticalmente si el contenedor tiene altura */
    height: 100%;           /* Asegúrate de que tenga suficiente altura */
}

 #datos a{
  text-decoration: none;
  color: black; 
}
footer{
	color: white;
	margin-top: 10px;
	background-color: #00a1e6;
	min-height: 200px;
	padding: 20px;
}
.iconfooter{
	font-size: 20px;
	margin-right: 4px;
	text-decoration: none;
  color: white !important; 
}
.card{
 border: none;
}