* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #2b2b2b;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  padding: 30px 0;
  background-color: #2b2b2b;
  color: white;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
}

.wrapper {
  display: flex;
  width: 100%;
  max-width: 1300px;
}

.sidebar {
  width: 15%;
  padding: 20px;
  text-align: center;
  background-color: #f0d0ba;
}

.decoracion img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.decoracion p {
  font-weight: bold;
  color: #8b4513;
  font-size: 1.1rem;
}

.content {
  width: 70%;
  padding: 20px;
}

.galeria {
  margin: 30px auto;
}

.fila {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fila a {
  width: 30%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fila a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.fila img {
  width: 100%;
  display: block;
  border-radius: 8px;
  user-select: none;
}

.detalles {
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detalles img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.detalles h2 {
  color: #0288d1;
  margin-bottom: 10px;
}

.detalles p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
  max-width: 500px;
}

.botones {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.botones a {
  text-decoration: none;
  background-color: #0288d1;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.botones a:hover {
  background-color: #0272b3;
}
