body {
    background-color: #222222;
    margin: 0;
    max-width: 100%;
    height: auto;
}
/*conteiner equipo*/

.conteiner {
    display: flex;
    justify-content: space-around; 
    flex-wrap: wrap; 
    margin: 20px auto;
    max-width: 1200px;
    width: 100%;
  }
  
  .column {
    width: calc(50% - 20px); 
    margin: 20px auto;
    text-align: center;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .column {
      width: calc(20% - 5px); 
    }
  }
  
  
  .circle-img {
    border-radius: 50%; 
    overflow: hidden;
    margin: 20px auto; 
    border: 4px solid #a138bb; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    background-color: #ffffff;
    align-items: center;
  }
  
  .circle-img {
    width: 120px; 
    height: 120px;
  }
  
  
  @media (min-width: 992px) and (max-width: 1200px) {
    .circle-img {
      width: 150px; 
      height: 150px;
      margin: 20px auto;
    }
  }
  
  
  @media (min-width: 1200px) {
    .circle-img {
      width: 200px; 
      height: 200px;
      margin: 10px;
    }
  }
  
  
  .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%; 
    text-align: center;
    
  }
  
  .column h3 {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
    align-items: center;
  }
  
  .column p {
    font-size: 14px;
    color: #666;
    text-align: center;
    align-items: center;
  }

h4{
    color: #ffffff;
    font-size: 25px;
    font-family: "Pathway Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 576px) { h4 { font-size: 20px; } }

.column a {
    font-size: 20px;
    color: #ebebeb;
    text-align: center;
    align-items: center;
    font-family: "Pathway Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*************************************************************/
.cont-2 {
  width: 100%;
}

.inner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  max-width: 1200px; 
  margin: 0 auto;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 200px;
}

.titulo {
  flex: 1;
  text-align: center;
  padding: 10px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-style: normal; 
  font-weight: 500; 
}

.titulo:hover{
  color: #ffffff;

}

@media (max-width: 600px) {
  .inner-container {
    flex-direction: column; 
    align-items: center; 
  }

  .logo {
    order: 1;
    margin-bottom: 10px; 
  }

  .logo img {
    max-width: 100%;
    height: auto;
    width: 150px;
  }


  .titulo {
    order: 2;
    width: 100%; 
    font-size: 14px; 
    gap: 0;
    flex-direction: row;
  }
}