/* ===== VARIABLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');

:root {
  --primary-color: #022A3E;
  --primary-dark: #056B8E;
  --primary-light: #0BBFCF;
  --secondary-color: #CAA050;
  --accent-color: #DBB86A;
  --bg-light: #E9E9E9;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* ===== NAVIGATION STYLES ===== */
#mainNav {
    background: rgba(2, 42, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--secondary-color);
}

#mainNav.scrolled {
    background: rgba(2, 42, 62, 1);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    font-family: 'Merriweather', serif;
}

.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown styles */
.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.navbar .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.navbar .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom, #e3f2fd, #e3f2fd);
    }

    .titulo-carrera {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      color: var(--primary-color);
    }

    .shiny-text {
      color: var(--secondary-color);
    }

    .subtexto {
      font-family: "Century Gothic", "CenturyGothic", "URW Gothic L", Arial, sans-serif;
      font-weight: 400;
      font-size: 1.2rem;
      color: #555;
    }

    .cta-button {
      background-color: var(--secondary-color);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .cta-button:hover {
      background-color: var(--accent-color);
    }

    .info-box {
      background-color: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-5px);
    }

    .glass-card {
      background-color: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
    }

    .study-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
    }

    .study-card {
      background-color: var(--primary-color);
      color: white;
      border-radius: 1rem;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: transform 0.3s ease;
    }

    .study-card:hover {
      transform: scale(1.02);
    }

    .study-icon svg {
      background-color: var(--accent-color);
      border-radius: 50%;
      padding: 0.5rem;
    }

    .study-content h4 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .study-content p {
      margin: 0;
      font-size: 0.95rem;
    }


.career-hero {
  position: relative;
  overflow: hidden;
}

.custom-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  line-height: 0;
}

.custom-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Botón de descarga de pensum */
.descarga-esquina {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #1f4c65;
}

.descarga-esquina:active {
  scale: 0.92;
}

.descarga-esquina:hover {
  background: linear-gradient(270deg, rgba(2, 42, 62, 0.68) 0%, rgba(11, 191, 207, 0.87) 60%);
  color: rgb(4, 4, 38);
}

.study-grid {
  padding-bottom: 4rem;
}
.descarga-esquina {
  display: inline-block;
  margin: 2rem auto 0 auto;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #1f4c65;
}

.descarga-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
/* From Uiverse.io by ShrinilDhorda */ 
.btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: none;
  outline: none;
  border-radius: 0.4rem;
  cursor: pointer;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #1f4c65;
}

.btn:active {
  scale: 0.92;
}

.btn:hover {
  background: linear-gradient(270deg, var(--primary-dark) 0%, var(--primary-light) 60%);
  color: rgb(4, 4, 38);
}

.career-hero img {
  object-fit: cover;
  height: 550px;
  margin-top: -30px;
}
