body {
  margin: 0;
  padding: 0;
  background: #a67c52;
  font-family: sans-serif;
}

header {
  padding: 15px 0;
  background-color: #832c2cba;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
  font-family: "Ethnocentric";
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d63c2e;
  transform: scale(1.05);
}

.nav-link {
  font-weight: bold;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link.active {
  border-bottom: 2px solid #000000;
}

.slider {
  position: relative;
  width: 100vw;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 400%;
  animation: deslizar 20s infinite ease-in-out;
}

.slide {
  width: 100vw;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@keyframes deslizar {
  0%, 20%   { transform: translateX(0); }        
  25%, 45%  { transform: translateX(-100vw); }   
  50%, 70%  { transform: translateX(-200vw); }    
  75%, 95%  { transform: translateX(-300vw); }    
  100%      { transform: translateX(0); }         
}

.titulo {
  font-family: "Ethnocentric";
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.descripcion {
  background: white;
  color: #333;
  padding: 50px 60px;
  border-radius: 2px;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 50px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.descripcion h1 {
  font-size: 2.5rem;
  color: #7b241c;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.descripcion h2 {
  font-size: 1.1rem;
  color: #444;
  font-weight: normal;
  margin-bottom: 15px;
}

.descripcion p {
  font-size: 1rem;
  color: #555;
}

.titulo-salas {
  font-family: "Ethnocentric";
  text-align: center;
  font-size: 2.2rem;
  color: #f6eceb;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

h3 {
  text-align: justify;
  margin: 30px;
  font-size: 25px;
  color:#f6eceb ;
  text-shadow: 3px 3px 4px #7b241c;
}

.contenedor-salas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.salas {
  background: white;
  color: #333;
  padding: 30px 40px;
  border-radius: 2px;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 30px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salas:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.salas ul {
  text-align: left;
  margin-left: 20px;
}

.sala1 img, .sala2 img {
  width: 400px;
  height: 400px;
  border-radius: 2px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.sala1 img:hover, .sala2 img:hover {
  transform: scale(1.05);
}

.salas h2 {
  text-shadow: 2px 2px 3px #7b241c;
  margin-bottom: 10px;
}

.sala2 p, .sala1 p {
  text-align: justify;
  margin-bottom: 10px;
}

.titulo-patri {
  font-family: "Ethnocentric";
  text-align: center;
  font-size: 2.2rem;
  color: #f6eceb;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.contenedor-especial {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
}

.relevante {
  background: white;
  padding: 30px 20px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  width: 45%;
  min-width: 300px;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.relevante:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.relevante h2 {
  text-align: center;
  color: #7b241c;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.relevante img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.relevante img:hover {
  transform: scale(1.05);
}

.titulo-res {
  text-align: center;
  font-size: 2.2rem;
  color: #f6eceb;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  font-family: "Ethnocentric";
}

.contenedor-venta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
}

.venta {
  background: white;
  padding: 30px 20px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  width: 45%;
  min-width: 300px;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venta:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.venta h2 {
  text-align: center;
  color: #7b241c;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.venta img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.venta img:hover {
  transform: scale(1.05);
}


.atras
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.btnatras
{
  background-color: #8B4513;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 2px;

}

.btnatras:hover
{
  transform: translateY(-5px);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  background-color: #7b241c;
}