/* AÑADIR ESTILOS DE OPTIMIZACIÓN DEL CARRUSEL */

.carousel-inner .carousel-item img {
    height: 450px;
    /* Altura fija para el carrusel en escritorio */
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item img {
        height: 250px;
        /* Altura más pequeña en móvil */
    }
}


/* AÑADIR ESTILOS DEL BOTÓN CTA */

.btn-success {
    font-size: 1.25rem;
    padding: 15px 30px;
}

.btn-success:hover {
    background-color: #a73c1c !important;
    border-color: #a73c1c !important;
}


/* ESTILOS ORIGINALES */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    /* Fondo gris claro */
    color: #333;
}

.container {
    width: 90%;
    /* Aumentado a 90% para mejor visualización en pantallas grandes */
    max-width: 1100px;
    margin: 20px auto;
    overflow: hidden;
}

header {
    background-color: #e7e40f;
    /* Amarillo */
    padding: 20px 0;
    text-align: center;
    color: #333;
    border-bottom: 5px solid #eb5325;
    /* Línea decorativa inferior */
}

header h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 2.5em;
}

header nav a {
    text-decoration: none;
    color: #eb2525;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #333;
}

section {
    padding: 30px;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #eb5325;
    /* Color principal para títulos */
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e7e40f;
    padding-bottom: 10px;
}

#menu p {
    font-style: italic;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.menu-item {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.menu-item:last-of-type {
    border-bottom: none;
}

.precio {
    color: #28a745;
    /* Precio en verde */
}

#nosotros p {
    line-height: 1.6;
    text-align: justify;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9em;
}