/* --- NOSOTROS PAGE STYLES --- */

.nosotros-wrapper {
  overflow-x: hidden;
  color: var(--foreground);
  background: var(--background);
}

/* 1. Hero Section */
.nosotros-hero {
  position: relative;
  padding: 8rem 2rem 6rem 2rem;
  background: radial-gradient(circle at 80% 20%, rgba(26, 54, 93, 0.15) 0%, transparent 50%),
              linear-gradient(180deg, rgba(26, 54, 93, 0.05) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
}

@media (prefers-color-scheme: dark) {
  .nosotros-hero {
    background: radial-gradient(circle at 80% 20%, rgba(42, 82, 136, 0.25) 0%, transparent 50%),
                linear-gradient(180deg, #0d131f 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--neutral-100);
  }
}

.nosotros-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 54, 93, 0.08);
  border: 1px solid rgba(26, 54, 93, 0.15);
  color: var(--primary-marlan);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.03);
}

@media (prefers-color-scheme: dark) {
  .nosotros-hero-badge {
    background: rgba(42, 82, 136, 0.15);
    border: 1px solid rgba(42, 82, 136, 0.3);
    color: #a5c2eb;
  }
}

.nosotros-hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: var(--primary-marlan);
  letter-spacing: -0.02em;
}

@media (prefers-color-scheme: dark) {
  .nosotros-hero-title {
    color: #ffffff;
  }
}

.nosotros-hero-title span {
  background: linear-gradient(135deg, var(--primary-marlan) 0%, var(--secondary-marlan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (prefers-color-scheme: dark) {
  .nosotros-hero-title span {
    background: linear-gradient(135deg, #4f83c3 0%, #e6202c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.nosotros-hero-desc {
  font-size: 1.15rem;
  color: var(--neutral-800);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  .nosotros-hero-desc {
    color: #b0b0b0;
  }
}

/* 2. Stats Section */
.nosotros-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .nosotros-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nosotros-stat-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  .nosotros-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
}

.nosotros-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-marlan);
}

@media (prefers-color-scheme: dark) {
  .nosotros-stat-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #4f83c3;
  }
}

.nosotros-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-marlan);
  margin-bottom: 0.25rem;
}

@media (prefers-color-scheme: dark) {
  .nosotros-stat-number {
    color: #e6202c;
  }
}

.nosotros-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-marlan);
}

@media (prefers-color-scheme: dark) {
  .nosotros-stat-label {
    color: #ededed;
  }
}

/* 3. Quiénes Somos Section */
.nosotros-section {
  padding: 5rem 2rem;
}

.container-nosotros {
  max-width: 1200px;
  margin: 0 auto;
}

.nosotros-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .nosotros-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.nosotros-intro-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-marlan);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (prefers-color-scheme: dark) {
  .nosotros-intro-text h2 {
    color: #ffffff;
  }
}

.nosotros-intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--neutral-800);
  margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  .nosotros-intro-text p {
    color: #b0b0b0;
  }
}

.nosotros-intro-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nosotros-intro-badge {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-marlan);
}

@media (prefers-color-scheme: dark) {
  .nosotros-intro-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ededed;
  }
}

/* Credenciales Box */
.nosotros-credenciales-box {
  background: linear-gradient(135deg, var(--primary-marlan) 0%, #11223c 100%);
  color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
  position: relative;
  overflow: hidden;
}

.nosotros-credenciales-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(209, 18, 29, 0.1);
  border-radius: 50%;
  filter: blur(30px);
}

.credenciales-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.credenciales-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  color: #fff;
}

.credenciales-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.nosotros-credenciales-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.credenciales-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(209, 18, 29, 0.2);
  border: 1px solid rgba(209, 18, 29, 0.3);
  color: #ff8e94;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* 4. Misión, Visión, Valores */
.nosotros-mvv-section {
  background: var(--neutral-100);
  padding: 5rem 2rem;
}

@media (prefers-color-scheme: dark) {
  .nosotros-mvv-section {
    background: #0f121a;
  }
}

.nosotros-mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nosotros-mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nosotros-mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nosotros-mvv-card {
  background: var(--background);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 2.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

@media (prefers-color-scheme: dark) {
  .nosotros-mvv-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.nosotros-mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-marlan);
}

@media (prefers-color-scheme: dark) {
  .nosotros-mvv-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-marlan);
  }
}

.mvv-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 54, 93, 0.06);
  color: var(--primary-marlan);
  margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  .mvv-icon-box {
    background: rgba(42, 82, 136, 0.15);
    color: #4f83c3;
  }
}

.nosotros-mvv-card:hover .mvv-icon-box {
  background: var(--secondary-marlan);
  color: white;
}

.mvv-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-marlan);
  margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
  .mvv-title {
    color: #ffffff;
  }
}

.mvv-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--neutral-800);
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .mvv-desc {
    color: #b0b0b0;
  }
}

/* Valores Bullet List */
.valores-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valores-list li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .valores-list li {
    color: #b0b0b0;
  }
}

.valores-list li::before {
  content: "•";
  color: var(--secondary-marlan);
  font-weight: bold;
  font-size: 1.2rem;
}

/* 5. Oferta Académica Section */
.nosotros-oferta-section {
  padding: 5rem 2rem;
}

.section-header-nosotros {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-nosotros h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-marlan);
  margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
  .section-header-nosotros h2 {
    color: #ffffff;
  }
}

.section-header-nosotros p {
  font-size: 1.1rem;
  color: var(--neutral-800);
  max-width: 600px;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  .section-header-nosotros p {
    color: #b0b0b0;
  }
}

.nosotros-oferta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nosotros-oferta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nosotros-oferta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.oferta-card {
  background: var(--background);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (prefers-color-scheme: dark) {
  .oferta-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.oferta-card:hover {
  border-color: var(--primary-marlan);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

@media (prefers-color-scheme: dark) {
  .oferta-card:hover {
    border-color: #4f83c3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}

.oferta-icon-wrapper {
  color: var(--secondary-marlan);
  margin-bottom: 1.25rem;
}

.oferta-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-marlan);
  margin-bottom: 0.75rem;
}

@media (prefers-color-scheme: dark) {
  .oferta-title {
    color: #ffffff;
  }
}

.oferta-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--neutral-800);
  margin: 0;
  flex-grow: 1;
}

@media (prefers-color-scheme: dark) {
  .oferta-desc {
    color: #b0b0b0;
  }
}

/* 6. Presencia Digital Section */
.nosotros-presencia-section {
  background: var(--neutral-100);
  padding: 5rem 2rem;
}

@media (prefers-color-scheme: dark) {
  .nosotros-presencia-section {
    background: #0f121a;
  }
}

.presencia-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .presencia-container {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.presencia-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-marlan);
  margin-bottom: 1.25rem;
}

@media (prefers-color-scheme: dark) {
  .presencia-content h3 {
    color: #ffffff;
  }
}

.presencia-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--neutral-800);
  margin-bottom: 2rem;
}

@media (prefers-color-scheme: dark) {
  .presencia-content p {
    color: #b0b0b0;
  }
}

.campus-card-link {
  background: var(--background);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .campus-card-link {
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.campus-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-marlan);
}

@media (prefers-color-scheme: dark) {
  .campus-card-link:hover {
    border-color: #4f83c3;
  }
}

.campus-logo-wrapper {
  background: var(--primary-marlan);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
}

.campus-link-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-marlan);
}

@media (prefers-color-scheme: dark) {
  .campus-link-info h4 {
    color: #ffffff;
  }
}

.campus-link-info span {
  font-size: 0.88rem;
  color: var(--neutral-800);
}

@media (prefers-color-scheme: dark) {
  .campus-link-info span {
    color: #a5c2eb;
  }
}

/* Redes Sociales Grid */
.redes-sociales-panel {
  background: var(--background);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

@media (prefers-color-scheme: dark) {
  .redes-sociales-panel {
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.redes-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-marlan);
  margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  .redes-header {
    color: #ffffff;
  }
}

.social-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.social-button-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: var(--neutral-100);
  font-weight: 600;
  color: var(--primary-marlan);
  transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .social-button-item {
    background: rgba(255, 255, 255, 0.02);
    color: #ededed;
  }
}

.social-button-item:hover {
  transform: translateY(-2px);
  color: white;
}

.social-button-item.facebook:hover {
  background: #1877f2;
}

.social-button-item.tiktok:hover {
  background: #000000;
}

.social-button-item.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button-item.email-social:hover {
  background: var(--primary-marlan);
}

.social-handle {
  display: flex;
  flex-direction: column;
}

.social-handle span {
  font-size: 0.72rem;
  color: var(--neutral-800);
  font-weight: normal;
}

.social-button-item:hover .social-handle span {
  color: rgba(255, 255, 255, 0.8);
}

/* 7. CTA / Contact Section */
.nosotros-cta-section {
  padding: 5rem 2rem;
}

.cta-banner-nosotros {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a365d 100%);
  color: white;
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.2);
}

@media (min-width: 768px) {
  .cta-banner-nosotros {
    padding: 5rem 4rem;
  }
}

.cta-banner-nosotros::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(209, 18, 29, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-badge {
  background: rgba(209, 18, 29, 0.2);
  color: #ff8e94;
  border: 1px solid rgba(209, 18, 29, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cta-banner-nosotros h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-nosotros p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cta-nosotros-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .cta-nosotros-buttons {
    flex-direction: row;
  }
}

.btn-cta-whatsapp {
  background: #25d366;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-cta-outline:hover {
  background: white;
  color: var(--primary-marlan);
  transform: translateY(-2px);
}
