/* --- ESTILOS ESPECÍFICOS DE LA PÁGINA NOSOTROS --- */

/* === HEADER PÁGINAS INTERNAS (CORRECCIÓN DE ESPACIO) === */
.nexcore-header.static-header {
  position: relative; /* Ya no flota sobre el contenido */
  top: 0;
  background-color: #eaf6fb;
  padding: 15px 5%; /* AQUÍ ESTÁ EL ESPACIO EXTRA ARRIBA Y ABAJO */
}

/* Ajustes Generales */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange {
  color: var(--color-primary);
}

/* === HERO SECTION === */
.about-hero {
  background-color: #eaf6fb;
  padding: 80px 0 60px;
  text-align: center;
}

.about-title {
  color: var(--color-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-subtitle {
  color: var(--color-secondary);
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* === MVP (Misión, Visión, Políticas) === */
.mvp-section {
  background-color: #eaf6fb;
  padding-bottom: 80px;
}

.mvp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mvp-card {
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mvp-card:hover {
  transform: translateY(-10px);
}

/* Estilos Tarjetas */
.card-white {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.card-white .mvp-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.card-white h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.card-white p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-orange-bg {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.card-orange-bg .mvp-icon {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-orange-bg h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.card-orange-bg p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-line-blue {
  width: 50px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.card-line-white {
  width: 50px;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 2px;
}

/* === SECCIÓN ADN (Somos NexCore) === */
.dna-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.dna-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.dna-content {
  flex: 1;
}

.section-label {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dna-content h2 {
  font-size: 3rem;
  color: var(--color-secondary);
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
}

.dna-tagline {
  text-align: center;
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.dna-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.dna-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.dna-item i {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-top: 3px;
}

.dna-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-dna {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.btn-dna:hover {
  background-color: var(--color-primary);
}

.dna-image {
  flex: 0.8;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}

.dna-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* === VALORES CORPORATIVOS === */
.values-section {
  padding: 60px 0 100px;
  background-color: var(--color-white);
  text-align: center;
}

.values-title {
  font-size: 2.5rem;
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 60px;
}

.values-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.value-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.circle-icon {
  width: 120px;
  height: 120px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #00a1de;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-circle-item:hover .circle-icon {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-5px);
}

.value-circle-item h4 {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* === ESTILO MENÚ ACTIVO (Extra) === */
.menu-bar a.active-link {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .dna-container {
    flex-direction: column;
  }
  .dna-list {
    grid-template-columns: 1fr;
  }
  .values-grid {
    gap: 30px;
  }
  .about-title {
    font-size: 2.5rem;
  }
}

/* 
BLOQUE DE LA IMAGEN LOGO
*/

/* Caja del Logo (Blanca y con sombra) */
/* --- CAJA DEL LOGO (ACTUALIZADO: Grande, Redondeada y Segura) --- */
.logo-box {
  background-color: var(--color-white);
  padding: 10px 30px; /* Padding equilibrado */

  /* BORDES REDONDEADOS */
  border-radius: 35px;

  /* CLAVE: Esto recorta cualquier esquina cuadrada de la imagen interna */
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;

  /* Dimensiones flexibles para logo grande */
  min-height: 110px;
  min-width: 230px;

  transition: transform 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-2px);
}

.logo-img {
  /* TAMAÑO GRANDE */
  max-height: 120px;
  width: auto;
  display: block;

  /* OPCIONAL: Redondea la propia imagen (útil si tiene fondo) */
  border-radius: 15px;

  /* Asegura que la imagen se ajuste bien */
  object-fit: contain;
}
