<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reseteo bÃ¡sico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Estilo del Header */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    float: left;
    margin-left: 20px;
}

header nav {
    float: right;
    margin-right: 20px;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Estilo del Banner */
#banner {
    background: url('img/banner.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#banner h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.btn {
    background: #e67e22;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Estilo del MenÃº */
#menu {
    margin: 40px 0;
}

.menu-grid {
    display: flex;
    justify-content: space-around;
}

.menu-item {
    text-align: center;
    margin: 20px;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.price {
    color: #e67e22;
    font-weight: bold;
}

/* Estilo del Mapa */
#map {
    width: 100%;
    height: 300px;
    background-color: #ccc;
}

/* Estilo del Formulario de Contacto */
form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Estilo del Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

#reviews {
    margin: 50px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#reviews h2 {
    text-align: center;
}

#review-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

#review-form label {
    margin-top: 10px;
}

#review-form input, #review-form textarea, #review-form select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#review-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#review-form button:hover {
    background-color: #45a049;
}

#reviews-list {
    margin-top: 30px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

#reviews-list h3 {
    text-align: center;
}

.review-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.review-item:last-child {
    border-bottom: none;
}
</pre></body></html>