/* Estilos base */
body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.contenedor {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    color: #222;
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 1em;
}

p {
    margin-bottom: 1.2em;
}

.imagen-ajustada {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

.titulo_horario {
    font-size: 1.2em;
    color: #e3931c;
}

.precios {
    background-color: #e3931c;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.precios_titulo {
    font-size: 1.5rem;
    color: #fff;
}

.precios_subtitulo {
    font-size: 1.2rem;
    color: #fff;
}

.precios_texto {
    font-size: 1rem;
    color: #fff;
}

/* [Mantén tus estilos existentes...] */

/* Estilos para el botón de WhatsApp */

.boton-container {
    text-align: center;
    width: 100%;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Color verde de WhatsApp */
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px; /* Bordes redondeados */
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Color más oscuro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 10px;
}

/* Responsive para móviles */
@media (max-width: 600px) {
    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
}

/* Estilos para la lista sin viñetas */
.lista-sin-estilo {
    list-style-type: none; /* Elimina las viñetas */
    padding-left: 0; /* Elimina el padding izquierdo */
    margin: 15px 0; /* Ajusta los márgenes superior/inferior según necesites */
    line-height: 0.8rem;
}

.lista-sin-estilo li {
    padding: 5px 0; /* Espaciado entre items */
    border-bottom: 1px solid #eee; /* Opcional: línea divisora sutil */
}

/* Versión responsive para móviles */
@media (max-width: 600px) {
    .lista-sin-estilo li {
        padding: 8px 0; /* Más espacio en móviles */
    }
}


/* Media Queries para smartphones */
@media only screen and (max-width: 600px) {
    body {
        padding: 10px;
        font-size: 18px;
    }
    
    .contenedor {
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    h1 {
        font-size: 1.5em;
        margin-top: 0.5em;
    }
    
    .imagen-ajustada {
        margin: 15px auto;
    }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media only screen and (max-width: 400px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 1.3em;
    }
}