/* Required height of parents of the Full Page Intro and Intro itself */
html,
body,
.view {
  height: 100%;
  margin: 0;
  padding: 0;
}

@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e4e9ed;
  font-family: Raleway, sans-serif;
}

br {
  margin-bottom: 2%;
}

.header {
  width: 100%;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header__logo {
  fill: white;
  width: 3rem;
  padding: 1rem;
  cursor: pointer;
}

.header__bg {
  width: 100%;
  height: 100%;
  background-image: url("../img_2025/25.jpg");
  background-size: cover;
  background-position: center top 5%;
  filter: brightness(50%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  position: absolute;
  top: 5%;
  left: 0;
  z-index: -1;
}

.header__title {
  color: #28a745;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 5vw, 4rem); /* Texto responsivo */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
  margin-top: -2rem;
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  width: 100%;
  height: auto;
  padding: 4rem 2rem;
  background-image: url("https://cdn.20m.es/img2/recortes/2018/07/13/745087-600-338.jpg?v=20180914080044");
  background-size: cover;
  background-position: center;
}

.about__title {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2rem); /* Texto responsivo */
  color: #28a745;
}

/* Responsive image styles */
.view img {
  max-width: 80%;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}

.hm-gradient {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0.096), rgba(0, 0, 0, 0.192));
  border-radius: 15px;
}

.btn.btn-lily {
  background: #28a745;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: clamp(0.8rem, 2vw, 1rem); /* Texto responsivo */
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn.btn-lily:hover {
  background: #218838;
  transform: scale(1.1);
}

.heading {
  margin: 0 6rem;
  font-weight: 700;
  color: #28a745;
  font-size: clamp(1rem, 3vw, 2rem); /* Texto responsivo */
}

.subheading {
  margin: 2.5rem 6rem;
  color: #6c757d;
  font-size: clamp(0.8rem, 2.5vw, 1.5rem); /* Texto responsivo */
}

.politica {
  text-align: center;
  padding: 2rem;
  font-size: clamp(0.8rem, 2vw, 1.2rem); /* Texto responsivo */
}

@media (max-width: 1024px) {
  .view img {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60vh;
  }
  .view img {
    max-width: 60%;
  }
}

@media (max-width: 480px) {
  .header {
    height: 50vh;
  }
  .view img {
    max-width: 50%;
  }
}
