@import url("global.css");

.banner {
    position: relative;
    width: 100%;
    height: 435px;
    background: url("../img/bannerNosotros.jpg") no-repeat center center/cover; /* Reemplaza con tu imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ====== SECCIÓN QUIÉNES SOMOS ====== */
.about-section {
    background: #f9f9f9; /* Fondo claro elegante */
    padding: 20px 20px;
    border-radius: 12px;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título principal */
.about-section h2 {
    text-align: center;
    font-size: 32px;
    color: #21A59A; /* Tu color principal */
    margin-bottom: 40px;
    font-weight: bold;
}

/* Contenedor de tarjetas */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Cada tarjeta */
.about-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Íconos */
.about-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Subtítulos */
.about-card h3 {
    font-size: 26px;
    color: #009688;
    margin-bottom: 12px;
}

/* Texto */
.about-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Sección del equipo */
.equipo {
    margin-top: 50px;
    text-align: center;
}

.equipo h3 {
    font-size: 24px;
    color: #21A59A;
    margin-bottom: 15px;
}

.equipo p {
    font-size: 23px;
    color: #444;
    margin-bottom: 30px;
}
/* Sección general */
.team-section {
 background: linear-gradient(135deg, #21A59A, #0D1B2A);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 70px;
}

.team-header p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #cfd8dc;
  margin-bottom: 50px;
}

/* Contenedor */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Tarjetas */
.team-card {
  background: #ffffff;
  color: #333;
  border-radius: 20px;
  padding: 30px 20px 40px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Imagen */
.team-img {
  width: 120px;
  height: 120px;
  margin: -80px auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto */
.team-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f2c35;
}

.team-card .especialidad {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}
