 
/* Estilos para el layout fijo */
body {
  padding-top: 70px; /* Ajuste para el header fijo */
  padding-bottom: 60px; /* Ajuste para el footer fijo */
  min-height: 100vh;
  position: relative;
    overflow-x: hidden; /* Previene scroll horizontal no deseado */
  margin: 0;
}
 
header.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
    height: 70px; /* Altura fija para el header */
}
 
.main-content {
  min-height: calc(100vh - 130px);
  padding-top: 1rem;
   background-color: #e6f7ff; /* rgba(190, 222, 250, 0.05);   solo para prueba */
}
/* Footer compacto */
.footer {
    position: fixed;
	  height: 60px; /* no estaba definido, agrégalo para ser explícito */
    bottom: 0;
    width: 100%;
    z-index: 1030;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    font-size: 0.85rem;
}


/* Iconos más pequeños */
.social-icons i {
    font-size: 0.9rem;
    padding: 0.3rem;
}

/* Ajustes para el contenido del menú */
.card {
  transition: transform 0.3s;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* Ajustes responsivos */
@media (max-width: 768px) {
    .footer {
        padding: 0.5rem 0 !important;
    }
    
    .main-content {
        min-height: calc(100vh - 140px); /* Un poco más en móviles */
    }
    
    .footer .row > div {
        text-align: center !important;
        margin-bottom: 0.3rem;
    }
    
    .social-icons {
        justify-content: center !important;
        margin-top: 0.5rem;
    }
}
/* Ajustes responsivos */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
    padding-bottom: 200px; /* Más espacio para footer en móviles */
  }
}

/* Estilos para el carrusel */
#mainCarousel {
	 margin-bottom: 1rem;
    max-height: 400px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 400px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    #mainCarousel, .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
}
