
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #CC0000;
  color: white;
}

.logo {
  height: 100px;
}

.redes a {
  color: white;
  margin-left: 15px;
  font-size: 1.5em;
  text-decoration: none;
}

.intro {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.restaurantes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2 {
  margin-top: 0;
  color: #c00000;
}

.botones {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
}

.btn.whatsapp { background-color: #25d366; }
.btn.google { background-color: #4285F4; }
.btn.waze { background-color: #33CCFF; }
.btn.youtube { background-color: #FF0000; }

footer {
  text-align: center;
  padding: 20px;
  background-color: #c00000;
  color: white;
  margin-top: 40px;
}

/* Responsive ajustes */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f9f9f9;
}
.slider {
  width: 1220px;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.slides {
  display: flex;
  width: 300%;
  animation: slide 12s infinite ease-in-out;
}
.slides img {
  width: 1220px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes slide {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(0%); }
  36%  { transform: translateX(-100%); }
  66%  { transform: translateX(-100%); }
  69%  { transform: translateX(-200%); }
  99%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

button {
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  background: #c4002b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #a00024;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-contenido {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  button {
    width: 100%;
  }
}