/* Color Variables */
:root {
  --red-primary: #e1262a;
  --blue-primary: #2c356c;
  --text-dark: #000000;
  --text-white: #ffffff;
}

/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

.header-container {
  width: 100%;
  padding: 0 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Top Row Styles */

.top-row {
  border-bottom: 1px solid #f0f0f0;
  min-height: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
}


.nav-link-top {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 0 18px;
  font-family: "Manrope", "Manrope Placeholder", sans-serif;

}

.nav-link-top:hover {
  color: var(--red-primary);
  text-decoration: none;
}


.btn-red {
  background-color: var(--red-primary);
  border: none;
  color: var(--text-white);
  font-weight: 400;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-family: "Manrope", "Manrope Placeholder", sans-serif;
}

.btn-red:hover {
  background-color: #c41e22;
  color: var(--text-white);
  transform: translateY(-1px);
}


.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--red-primary);
  font-size: 28px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  color: var(--red-primary);
}


/* Bottom Row Styles */

.bottom-row {
  border-top: 1px solid #f0f0f0;
  min-height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.school-logo {
  display: flex;
  align-items: center;
}


.flags-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 10px;
}


.flag-icon {
  width: auto;
  height: 85px;
  object-fit: cover;
  border-radius: 2px;
}


.school-text {
  line-height: 1.1;
}


.school-name {
  font-weight: bold;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}


.school-location {
  font-weight: bold;
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

/* Navigation Icons */

.nav-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease;
  min-width: 90px;
}

.nav-icon-item:hover {
  transform: translateY(-2px);
  color: var(--text-dark);
  text-decoration: none;
}


.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: white;
  font-size: 19px;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.05);
}

.bg-red {
  background-color: var(--red-primary);
}

.bg-blue {
  background-color: var(--blue-primary);
}


.icon-label {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  margin-top: 2px;
  font-family: "Manrope", "Manrope Placeholder", sans-serif;
}


/* Responsive Design */
@media (max-width: 1200px) {

  .nav-icon-item {
    margin: 0 10px;
  }

  .btn-red {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .top-row .row {
    flex-direction: column;
    gap: 15px;
  }

  .bottom-row .row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-icon-item {
    margin: 0 8px;
  }

  .school-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .d-flex.gap-4 {
    flex-wrap: wrap;
    gap: 15px !important;
  }

  .nav-icon-item {
    margin: 0 5px;
  }

  .icon-circle {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .icon-label {
    font-size: 11px;
  }

  .btn-red {
    padding: 8px 16px;
    font-size: 12px;
  }

  .school-name {
    font-size: 14px;
  }

  .school-location {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-row .d-flex.gap-3 {
    flex-direction: column;
    gap: 10px !important;
  }

  .bottom-row .d-flex.gap-4 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px !important;
  }

  .nav-icon-item {
    margin: 5px;
  }
}

/* Centrar y colorear 'Nuestros Pilares' */
.empowering-you-on {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}

.empowering-you-on .heading .text-wrapper {
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 52px;
  font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}



