/* Estilos para valores */
.about_values_section {
  background: #f8fafc;
  padding: 80px 0;
}

.values_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.value_box {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.value_box:hover {
  transform: translateY(-5px);
}

.value_icon {
  font-size: 28px;
  color: #3fa5e0;
  margin-right: 20px;
  margin-top: 5px;
}

.value_content h3 {
  color: #2c3e50;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.value_content p {
  color: #555;
  line-height: 1.6;
}

.mission_box {
  border-bottom: 4px solid #4CAF50;
}

.vision_box {
  border-bottom: 4px solid #2196F3;
}

@media (max-width: 768px) {
  .value_box {
    min-width: 100%;
  }
}
/*   
Seccion de Redes sociales y info */

/* Estilos generales */
.info_section {
  background: #18d3ff;
  padding: 40px 0;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.info_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Columnas */
.info_column {
  flex: 1;
  min-width: 250px;
}

/* Items de contacto - Íconos como en tu diseño original */
.item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* Estilo de íconos CIRCULARES como antes */
.item .img-box {
  width: 40px;          /* Tamaño reducido */
  height: 40px;
  margin-right: 15px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item .img-box i {
  font-size: 18px;
  color: #3a86ff;
}

.item p {
  margin: 0;
  color: #555;
  font-size: 15px;
  font-weight: 500;
}

/* Redes Sociales - Estilo anterior pero compacto */
.social_column {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.05) translateY(-3px);
}

/* Colores personalizados */
.social-icon:nth-child(1) { background: #00ccb1; } /* Doctoralia */
.social-icon:nth-child(2) { background: #d32398; } /* Instagram */
.social-icon:nth-child(3) { background: #25d366; } /* WhatsApp */

/* Responsive */
@media (max-width: 768px) {
  .social_column {
    margin-top: 15px;
    justify-content: flex-start;
  }
}