@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-image: url("imagenes/textura.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: top left;
}

.main-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
}

.content-container {
  display: flex;
  padding-left: 30px;
  padding-top: 30px;
  gap: 30px;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(224, 124, 9, 0.8);
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
}

.image-container img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

.text-container {
  flex: 1;
  margin-right: 30px;
}

.text-container h1 {
  font-size: 1.72vw;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0.8vw;
}

.text-container p {
  font-size: 0.86vw;
  text-align: justify;
  text-indent: 1.2vw;
  line-height: 1.5;
  margin-bottom: 0.4vw;
}

.decorativas {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 11vh;
}

.decorativas img {
  max-height: 19vh;
  height: auto;
  flex-grow: 1;
  max-width: calc((100% - 60px) / 3);
  object-fit: contain;
  cursor: default;
}

footer {
  padding: 0 0 20px 0;
  text-align: center;
}

footer p {
  font-size: 16px;
  color: #2e2b2b;
}

button {
  position: fixed;
  bottom: 20px;
  right: 25px;
  padding: 8px 18px;
  background-color: #0d865f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 2.0);
  cursor: pointer;
}
