/* ===========================
   NAVBAR
=========================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E3A8A; /* Azul deportivo */
    padding: 15px 30px;
}

.navbar .logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar .menu {
    list-style-type: none;
}

.navbar .menu li {
    display: inline-block;
    margin-left: 20px;
}

.navbar .menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar .menu li a:hover {
    text-decoration: underline;
}
/* CONTENEDOR DEL CARRUSEL */
.carousel {
    max-width: 1000px;
    margin: 30px auto;
}

/* IMÁGENES */
.carousel-item {
    overflow: hidden;
}
/* ===========================
   PRODUCTOS
=========================== */
.productos {
    padding: 40px 20px;
    text-align: center;
}

.productos h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #1E3A8A;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #f7f7f7;
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1E3A8A;
}

.card p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
}

.card .precio {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #E63946; /* Rojo para precio */
    margin-bottom: 10px;
}

.card button {
    background-color: #1E3A8A;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.card button:hover {
    background-color: #2748B3;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background-color: #1E3A8A;
    color: white;
    padding: 30px 20px 15px 20px;
    margin-top: 50px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copy {
    text-align: center;
    font-size: 0.8rem;
}
