#bodyCentral {
    background-color: #bec9d4;
    font-family: "Urbanist", sans-serif;
}
#navUp{
    background-color: #7f96aa;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}
#navA{
    color:aliceblue;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
    font-size: xx-large;
}

.section-title{
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}


.card {
    display: flex;
    flex-direction: column; /* Alinea los elementos en una columna */
    justify-content: space-between; /* Asegura que haya espacio entre los elementos */
    height: 100%; /* Asegura que la tarjeta ocupe todo el espacio disponible */
    border-radius: 5px;
    overflow: hidden;
    padding: 20px; 
    background-color: #dee4e9;
    margin: 10px; /* Añadir un margen de 10px alrededor de cada tarjeta */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
}

.card-body {
    flex-grow: 1; /* Permite que el contenido crezca para ocupar el espacio disponible */
    display: flex;
    flex-direction: column;
    
}

.button-primary {
    margin-top: auto; /* Empuja el botón hacia la parte inferior de la tarjeta */
    background-color:  #7f96aa;
    border: none;
    color: var(--text-light);
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: var(--button-hover-color);
}

.nav-link{
    color:aliceblue;
    font-size: larger;
}

.form-container {
    background-color: #ffffff;
    padding: 30px;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-group label {
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.alert {
    margin-top: 20px;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100px;
    border-radius: 10px;
}

.product-title {
    font-size: 20px;
    margin: 10px 0;
}

.product-description {
    font-size: 14px;
    color: #555;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #e67e22;
    margin: 10px 0;
}

.buy-now-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #2980b9;
}
.product-card {
    max-width: 300px; 
    max-height: 450px;
    margin: 15px auto; 
    text-align: center; 
}

.card-img-top {
    width: 100%;
    height: 150px;  /* height should be more than the width to make it responsive */
    object-position: center;  /* center the image */
    object-fit: cover;  /* maintain the aspect ratio */
    transition: transform 0.3s ease;
    border-radius: 5px;

}

.card-img-top:hover {
    transform: scale(1.1);
}

.carousel-item {
    position: relative; /* Posiciona el contenido dentro del item */
    max-width: 1900px;
    height: 500px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0);
}

.carousel-item img {
    width: 100%;
    height: 100%; /* Ajustamos la altura al 100% para que ocupe todo el espacio del carrusel */
    object-fit: cover; /* Esto asegura que la imagen se ajuste sin distorsionarse */
    border-radius: 10px;
}


.carousel-inner {
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.carousel-caption {
    position: absolute;
    transform: translate(-50%, -50%); /* Ajusta la posición de manera precisa */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    padding: 0 20px; /* Añadir algo de padding para evitar que el texto se pegue a los bordes */
}

.carousel-item.active {
    display: flex; /* Asegura que el contenido del item se mantenga visible */
    justify-content: center;
    align-items: center;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-footer {
    background-color: transparent;
    border-top: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
}