* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background-color: #fdf6ec;
  color: #4a3728;
}

/* ===== NAVBAR ===== */
nav {
  background-color: #7a4f2e;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  color: #f5deb3;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #f5deb3;
  text-decoration: none;
  font-size: 15px;
}

nav ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== SECCIÓN INICIO / HERO ===== */
#inicio {
  background-color: #c8956c;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#inicio h1 {
  font-size: 44px;
  margin-bottom: 18px;
}

#inicio p {
  font-size: 19px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

#servicios {
  background-color: #fff8f0;
  padding: 60px 40px;
}
 
.servicios-contenedor {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
 
/* IZQUIERDA */
.servicios-info {
  flex: 1;
}
 
.servicios-info h2 {
  font-size: 28px;
  color: #7a4f2e;
  margin-bottom: 15px;
  border-bottom: 2px solid #c8956c;
  padding-bottom: 8px;
}
 
.dia {
  font-size: 20px;
  font-weight: bold;
  color: #c8956c;
  margin-bottom: 20px;
}
 
.horario-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
 
.hora {
  font-size: 18px;
  font-weight: bold;
  color: #7a4f2e;
  min-width: 80px;
}
 
.lugar {
  font-size: 15px;
  color: #4a3728;
}
 
.servicios-imagen {
  flex: 1;
}
 
.servicios-imagen img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid #c8956c;
}

footer {
  background-color: #7a4f2e;
  color: #f5deb3;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
}

#sobre {
  background-color: #fdf6ec;
  padding: 60px 20px;
  text-align: center;
}

#sobre h2 {
  font-size: 28px;
  color: #7a4f2e;
  margin-bottom: 25px;
}

.sobre-caja {
  background-color: #c8956c;
  color: white;
  max-width: 650px;
  margin: 0 auto;
  padding: 35px 40px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

#galeria {
  background-color: #fdf6ec;
  padding: 60px 40px;
  text-align: center;
}

#galeria h2 {
  font-size: 28px;
  color: #7a4f2e;
  margin-bottom: 30px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.galeria-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 4px solid #c8956c;
}

/* ===== CONTACTO ===== */
#contacto {
  background-color: #fdf6ec;
  padding: 60px 40px;
  text-align: center;
}

#contacto h2 {
  font-size: 28px;
  color: #7a4f2e;
  margin-bottom: 30px;
}

.contacto-contenedor {
  display: flex;
  gap: 50px;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.contacto-form,
.contacto-redes {
  flex: 1;
}

.contacto-form h3,
.contacto-redes h3 {
  font-size: 20px;
  color: #7a4f2e;
  margin-bottom: 15px;
  border-bottom: 2px solid #c8956c;
  padding-bottom: 6px;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacto-form input,
.contacto-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #c8956c;
  border-radius: 4px;
  background-color: #fff8f0;
  font-family: Georgia, serif;
}

.contacto-form textarea {
  height: 110px;
  resize: vertical;
}

.contacto-form button {
  background-color: #7a4f2e;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  font-family: Georgia, serif;
}

.contacto-form button:hover {
  background-color: #5c3720;
}

.contacto-redes p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.contacto-redes a {
  color: #7a4f2e;
  text-decoration: none;
  font-weight: bold;
}

.contacto-redes a:hover {
  text-decoration: underline;
}