/* comunidad.css */

/* Estilos específicos para comunidad.html */

/*.header {
    background-color: var(--blanco);
  }*/
  
  .nav__item a {
    color: var(--gris-oscuro);
  }

  .principal {
    margin-top: 4rem;
  }
  
  .nav__item a::after {
    background-color: var(--verde-fupese);
  }
  
  .nav__item--active a {
    color: var(--verde-fupese);
  }
  
  /* Galería tipo card con contenido */
  .comunidad__galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .comunidad__card {
    background-color: var(--blanco);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1rem;
  }
  
  .comunidad__card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .comunidad__card h4 {
    margin-top: 1rem;
    color: var(--verde-fupese);
    font-size: 1.2rem;
  }
  
  .comunidad__card p {
    font-size: 0.95rem;
    color: var(--gris-oscuro);
    padding: 0 1rem;
  }
  
  /* Texto descriptivo */
  .comunidad__textos {
    text-align: center;
    margin: 2rem 0;
  }
  
  .comunidad__textos h3 {
    color: var(--verde-fupese);
    margin-bottom: 1rem;
  }
  
  /* Equipo */
  .equipo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
  }
  
  .equipo__miembro img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto .2rem;
    border-color: #b5bbb6;
    border-style:outset;
    padding: .4rem;
  }

 
  .equipo__miembro h4 {
    margin: 0.5rem 0;
    color: var(--gris-oscuro);
  }

/*   .equipo__miembro{
    width: 100%;
    height: 200px;
  } */
  
  /* Apoyo */
  .apoyo {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--gris-claro);
  
  }
  
  .apoyo__botones {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .btn--dorado {
    background-color: var(--dorado-suave);
    color: var(--blanco);
  }
  
  .btn--dorado:hover {
    background-color: #b1912b;
  }
  
  .btn--verde {
    background-color: var(--verde-fupese);
    color: var(--blanco);
  }
  
  .btn--verde:hover {
    background-color: #0e6e24;
  }

  .comunidad__card li:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  
  .comunidad__card {
    text-decoration: none;
    color: inherit;
  }
  
  
  
  
  
 
 
 
 
 
 
 
 .fupese-main {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
}

/* General titles */
h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #007a33;
  margin-bottom: 15px;
}

.seccion-blanca {
  background: #ffffff;
  padding: 80px 20px;
}

.seccion-overlay {
  color: white;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  position: relative;
}

/* Alternando imágenes de fondo */
.fupese-vision {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/assets/EstudiantesBecados/3.jpg');
}

.fupese-resena {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/assets/EstudiantesBecados/3.jpg');
}

.fupese-legal {
  background-image: linear-gradient(rgba(20,40,20,0.7), rgba(20,40,20,0.7)), url('../img/assets/EstudiantesBecados/3.jpg');
}

.contenido {
  max-width: 1000px;
  margin: auto;
}

.lista-principios {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.lista-principios li::before {
  content: '✦ ';
  color: #FFD700;
}

.resaltado {
  margin-top: 20px;
  font-weight: bold;
      background: rgba(0, 0, 0, 0.65);
  padding: 12px;
  border-left: 4px solid #007a33;
}

.timeline {
  border-left: 4px solid #007a33;
  margin-top: 30px;
}

.timeline-item {
  margin-bottom: 25px;
  padding-left: 20px;
}

.timeline-item h3 {
  color: #007a33;
}

.subtitle {
    color: #ffffff;
}

.parrafos {
    font-size: 1.2rem;
}


