/* Required height of parents of the Full Page Intro and Intro itself */
html,
body,
.view {
  height: 100%;
}

@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: grid;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 1fr max-content;
  text-align: center;
}

.header__logo {
  fill: white;
  width: 3rem;
  padding: 1rem;
  cursor: pointer;
}

.header__bg {
  width: 100%;
  height: 105%;
  background-image: url("../img_2025/identidadutp.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.header__title {
  grid-area: 2 / 1 / 2 / 3;
  align-self: center;
  justify-self: center;
  color: #28a745;
  text-transform: uppercase;
  font-size: 4rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
  margin-top: -5rem;
  animation: fadeInUp 1s ease-in-out;
}

.about {
  width: 100%;
  padding: 5rem 0;
  text-align: center;
}

.about__title {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-transform: uppercase;
  color: #28a745;
}

.about__text {
  width: 80%;
  margin: auto;
  font-size: 1.1rem;
  text-align: justify;
  color: #232323;
  line-height: 1.6;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about__text--content {
  animation: fadeInLeft 1s ease-in-out;
}

.politica {
  text-align: center;
  font-size: 2rem;
  color: #28a745;
  font-weight: bold;
  margin-top: 3rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
