/* Estilos modernos para la sección Sobre Nosotros */
.about-section {
  position: relative;
  padding: 80px 0;
  background-color: #f9f9f9;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.2) 25%, transparent 25%, 
                    transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, 
                    transparent 75%, transparent);
  background-size: 80px 80px;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5,54,121,0.03) 0%, rgba(5,54,121,0.07) 100%);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-section .about-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.about-info {
  display: flex;
  flex-direction: column;
}

.about-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.about-info .intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.about-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.about-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(5, 54, 121, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.about-card-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.about-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.about-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.about-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.about-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.about-link:hover {
  color: #004a9f;
}

.about-link:hover i {
  transform: translateX(5px);
}

.about-image-container {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.about-stats .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.about-stats .text {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 5px;
}

.about-values {
  margin-top: 30px;
}

.values-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.value-item {
  display: flex;
  align-items: center;
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(5, 54, 121, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.value-icon i {
  font-size: 16px;
  color: var(--primary-color);
}

.value-text {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-container {
    order: -1;
  }
  
  .about-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }
  
  .about-image-wrapper {
    height: 350px;
    margin-bottom: 50px;
  }
}
