body {
  margin: 0;
  padding: 0;
  width: 100vw;   
  height: 100vh; 
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow-x: hidden; 
}


.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12vh;
  background: #FFFFFF;
}

.h1 {
  position: absolute;
  top: 4vh;
  left: 5vw;
  font-weight: 500;
  font-size: 1.4vw;  
  line-height: 1.6vw;
  color: #2E7D32;
}

.boton-equipo {
  position: absolute;
  top: 3.5vh;
  right: 5vw;
  padding: 1vh 2vw;

  color: #FFFFFF;
  font-size: 1vw;
  font-weight: bold;
  cursor: pointer;

background:  #2E7D32;
border: 1px solid rgba(197, 196, 196, 0.82);

box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
border-radius: 10px;


}


.container {
  position: absolute;
  top: 20vh;
  left: 5vw;
  width: 60vw;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.container h2 {
  font-weight: 700;
  font-size: 4vw;   
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2E7D32;
  margin: 0;
}


.hipervinculo p {
  font-weight:700;
  font-size: 1.5vw;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.75);
}

.hipervinculo a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  margin-right: 1vw;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hipervinculo a:hover {
  color: #000000;      
  background: #f0f0f0; 
  border-radius: 5px;
  padding: 0.2em 0.4em;
}


.image {
  position: absolute;
  top: 55vh;
  left: 5vw;
  width: 40vw;
  height: 35vh;
  background: url('image.png') no-repeat center/cover;
  border-radius: 8px;
}


.text{
  text-align: justify; 

}

