body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    color: #333;
    scroll-behavior: smooth;
}

h1, h2 {
    color: rgb(89, 238, 195);
    font-weight: 600;
}

#carouselInicio .carousel-item img {
  height: 300px;         /* Ajusta la altura según prefieras */
  object-fit: cover;     /* Mantiene el aspecto bonito sin deformar */
}






.card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/*acordion*/
.custom-accordion {
  max-width: 700px;
  margin: auto;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  background-color: rgb(25, 182, 235);
  color: white;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .arrow {
  transition: transform 0.3s;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-body {
  background-color: #f0faff;
  padding: 15px 20px;
  display: none;
}

.accordion-body.show {
  display: block;
}

.accordion-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.accordion-header {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.accordion-body {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.accordion-item:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}


/* Footer Styles */
.footer {
    color: #fff;
    padding: 20px;
}

.footer .footer-links {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.footer .footer-section {
    width: 30%;
}

.footer .footer-section h4 {
    margin-bottom: 10px;
}

.footer .footer-section p {
    margin: 5px 0;
}
.footer h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
}

.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

button.btn {
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #0056b3;
}
.custom-navbar {
    background-color: rgb(25, 182, 235) !important;
}

.custom-footer {
    background-color: rgb(25, 182, 235);
    color: white;
}


/* Color sólido para los enlaces del navbar */
.navbar .nav-link {
    color: #ffffff !important;  /* Blanco puro */
    opacity: 1 !important;      /* Sin transparencia */
}

/* Efecto al pasar el mouse */
.navbar .nav-link:hover {
    color: #c5e8ff !important;  /* Amarillo */
    opacity: 1 !important;
}

/* Más grande en celulares */
@media (max-width: 768px) {
    .navbar.navbar-dark .nav-link {
        font-size: 1.2rem !important;
    }
}
