/* General */
.us-header, .us-features {
  width: 80%;
  margin: 0 auto;
  padding: 60px 20px;
  
}

/* Encabezado */
.us-header-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.us-header-img {
  width: 200px;
  height: 200px;
  
}

.us-header-text {
  max-width: 600px;
}

.us-title {
  font-size: 2.8rem;
  margin: 0;
  color: #25476a;
}

.us-description {
  font-size: 1.2rem;
  color: #151515;
  margin-top: 10px;
}

.us-divider {
  margin: 30px auto;
    width: 80px;
    height: 4px;
    background-color: #25476a;
    border: none;
}

.us-subtitle {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 50px;
  color: black;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Características (apartados) */
.us-features {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  margin-top: 10px;
}

.feature {
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: start;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  padding: 20px;
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}


.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

.feature-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
      
}


.feature-title {
  font-size: 1.5rem;
  margin: 0;
  color: #25476a;
}

.feature-description {
  font-size: 1rem;
  color: #151515;
  margin-top: 8px;
  
}

.feature-text {
  max-width: 600px;
}
/** Programs Section */
.program-object {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.program-object:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

.programs-object-title {
  margin: 0 0 10px 0; 
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.programs-object-description {
  color: #888888; 
  text-align: center;
  font-size: 16px;
}

.title-span {
  color: #25476a;
}

/* Responsive*/
@media screen and (max-width: 1279px) {


  .us-header-content {
    flex-direction: column;
    align-items: center;
  }

  .us-features {
    align-items: center;
    max-width: 90%;
  }
}

/* Responsive: tarjetas con imagen centrada en vertical */
@media screen and (max-width: 1024px) {
  .us-header-content {
    flex-direction: column;
    align-items: center;
  }

  .us-features {
    align-items: center;
    max-width: 80%;
  }
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}



