@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap");@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

:root {
  /* PUCPR Colors (Nuevos: Azul cielo, blanco, gris claro, acentos sobrios) */
  --color-primary: #0077c8; /* Azul cielo oscuro / Institucional */
  --color-primary-light: #4da4e0; /* Azul cielo claro */
  --color-primary-dark: #005696;

  --color-secondary: #0033a0; /* Acento sobrio / Azul profundo */
  --color-secondary-light: #1a49b8;
  --color-royal-dark: #002266; /* Azul royal oscuro para top bar y footer */

  --color-accent: #facc15; /* Acento dorado/amarillo sutil */

  --color-background: #ffffff;
  --color-surface: #f8fafc; /* Gris extra claro */
  --color-surface-hover: #f1f5f9;
  --color-surface-alt: #e2e8f0; /* Gris claro */

  --color-text: #1e293b;
  --color-text-muted: #475569;
  --color-text-light: #f8fafc;

  --color-navbar-bg: rgba(248, 250, 252, 0.92); /* Gris pálido tipo cristal */
  --color-highlight-card: rgba(255, 255, 255, 0.95);

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --color-primary: #4da4e0;
  --color-primary-light: #7ec1ef;
  --color-primary-dark: #0077c8;

  --color-secondary: #60a5fa;
  --color-secondary-light: #93c5fd;
  --color-royal-dark: #001233; /* Aún más oscuro para modo nocturno */

  --color-accent: #fde047;

  --color-background: #0f172a;
  --color-surface: #1e293b;
  --color-surface-hover: #334155;
  --color-surface-alt: #475569;

  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-light: #f8fafc;

  --color-navbar-bg: rgba(15, 23, 42, 0.85);
  --color-highlight-card: rgba(30, 41, 59, 0.95);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.5);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility classes */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.text-center {
  text-align: center;
}

/* Motif Arco Institucional Sutil */

.arch-bg {
  position: relative;
  overflow: hidden;
}

.arch-bg::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: var(--color-surface);
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  z-index: -1;
  opacity: 0.5;
}

/* Typography classes */

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

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

.text-muted {
  color: var(--color-text-muted);
}

.text-light {
  color: var(--color-text-light);
}

/* Spacing classes */

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Botones base */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Micro-animations */

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Divider */

.section-divider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  background-color: var(--color-background);
}

.section-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-primary-light) 50%,
    transparent 100%
  );
  border-radius: 10px;
  opacity: 0.6;
}


/* Navbar.css */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
[data-theme="dark"] .navbar {
  background-color: rgba(17, 24, 39, 0.9);
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .navbar.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
}
@media (min-width: 640px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}
.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-logo {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.navbar-logo-img {
  display: block;
  height: 120px !important; /* Altura forzada */
  width: auto !important;
  max-height: none !important; 
  max-width: none !important;
  flex-shrink: 0; /* IMPIDE que flexbox lo encoja */
  object-fit: contain;
  margin-top: 2px; /* Reducido para subirlo un poquito más */
  z-index: 100;
}
.navbar-links-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem; /* gap-1 */
}
@media (min-width: 1024px) {
  .navbar-links-desktop {
    display: flex;
    align-items: center;
  }
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7); /* text-foreground/70 */
  padding: 0.5rem 0.75rem; /* px-3 py-2 */
  border-radius: 0.375rem; /* rounded-md */
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
[data-theme="dark"] .nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.nav-link:hover {
  color: #1F5FA0; /* text-primary */
  background-color: rgba(31, 95, 160, 0.05); /* hover:bg-primary/5 */
}
[data-theme="dark"] .nav-link:hover {
  color: #4da3ff;
  background-color: rgba(77, 163, 255, 0.1);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
}
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem; /* p-2 */
  border-radius: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-text);
  transition: background-color 0.2s ease;
}
.theme-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.05); /* hover:bg-muted */
}
[data-theme="dark"] .theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-solicita-desktop {
  display: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  background-color: #1F5FA0; /* bg-primary */
  color: white;
  padding: 0.5rem 1.25rem; /* slightly wider padding */
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  height: 36px;
  align-items: center;
  white-space: nowrap; /* keep text on one line */
}
@media (min-width: 640px) {
  .btn-solicita-desktop {
    display: inline-flex;
  }
}
.btn-solicita-desktop:hover {
  background-color: rgba(31, 95, 160, 0.9);
}
.navbar-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (min-width: 1024px) {
  .navbar-mobile-toggle {
    display: none;
  }
}
.navbar-mobile-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .navbar-mobile-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar-mobile-menu {
  position: absolute;
  top: 64px; /* Justo debajo del navbar */
  left: 0;
  right: 0;
  background-color: var(--color-navbar-bg);
  border-top: 1px solid var(--color-surface-alt);
  padding: 0.5rem 0 1rem 0; /* pt-2 pb-4 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.navbar-links-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-link-mobile {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px; /* text-sm */
  color: var(--color-text);
  padding: 0.75rem 1rem; /* px-4 py-3 */
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link-mobile:hover {
  color: #1F5FA0;
  background-color: rgba(31, 95, 160, 0.05);
}
[data-theme="dark"] .nav-link-mobile:hover {
  color: #4da3ff;
  background-color: rgba(77, 163, 255, 0.1);
}
.mobile-action-li {
  padding: 0.5rem 1rem 0 1rem; /* px-4 pt-2 */
}
.btn-solicita-mobile {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background-color: #1F5FA0;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.btn-solicita-mobile:hover {
  background-color: rgba(31, 95, 160, 0.9);
}
.footer {
  background-color: var(--color-royal-dark);
  color: var(--color-text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-logo {
  margin-top: -80px;
  margin-bottom: -40px;
}

.footer-logo-img {
  height: 250px;
  width: auto;
  border-radius: var(--radius-md);
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-links-group h3 {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-group li,
.footer-links-group a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.chatbot-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-toggle-btn {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-normal);
  z-index: 2001;
}

.chatbot-toggle-btn:hover {
  transform: scale(1.05);
  background-color: var(--color-primary-dark);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  max-height: 600px;
  height: calc(100vh - 120px);
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-surface-alt);
  transform-origin: bottom right;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background-color: var(--color-primary);
  color: white;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background-color: white;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.chatbot-header-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.chatbot-header-info p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.chatbot-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.chatbot-close-btn:hover {
  opacity: 1;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-surface);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease-out;
}

.chat-bubble.bot {
  align-self: flex-start;
  background-color: white;
  color: var(--color-text);
  border: 1px solid var(--color-surface-alt);
  border-bottom-left-radius: 0;
}

.chat-bubble.user {
  align-self: flex-end;
  background-color: var(--color-primary-light);
  color: white;
  border-bottom-right-radius: 0;
}

[data-theme="dark"] .chat-bubble.bot {
  background-color: var(--color-background);
  color: var(--color-text);
}

[data-theme="dark"] .chat-bubble.user {
  background-color: var(--color-primary);
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chat-option-btn {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.chat-option-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.chatbot-footer {
  padding: 1rem;
  background-color: var(--color-background);
  border-top: 1px solid var(--color-surface-alt);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Formulario interno del chat */
.chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.chat-form input,
.chat-form select {
  padding: 0.6rem;
  border: 1px solid var(--color-surface-alt);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: var(--color-background);
  color: var(--color-text);
}

.chat-form button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 2rem);
    right: -1rem;
    bottom: 75px;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 100px; /* Above the chatbot */
  right: 2rem;
  z-index: 1000;
}

.scroll-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  animation: fadeIn 0.3s ease-in-out;
}

.scroll-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 90px;
    right: 1.5rem;
  }
  .scroll-btn {
    width: 50px;
    height: 50px;
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

iframe.hero-video-bg {
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 51, 160, 0.6) 0%,
    rgba(0, 119, 200, 0.4) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-content {
  max-width: 1100px;
  color: var(--color-text-light);
  margin: -8vh auto 0;
  text-align: center;
}

.hero-pre-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ECAB13;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 72px;
  }
}

.text-accent {
  color: #ECAB13;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-accent {
  background-color: #ECAB13;
  color: #4169E1;
  font-weight: 700;
}

.btn-accent:hover {
  background-color: #d6980e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.hero-highlights-wrapper {
  margin-top: 2rem;
}

/* Glassmorphism Cards */

.hero-glass-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.glass-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.glass-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.glass-text strong a,
.glass-card a,
.glass-text a,
a.glass-card {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.glass-text strong a:hover,
.glass-card a:hover,
.glass-text a:hover {
  color: var(--color-accent);
}

a.glass-card:hover,
a.glass-card:hover strong,
a.glass-card:hover span {
  color: var(--color-accent);
}

.glass-text span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero-motto {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin-top: 2.5rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.highlight-card {
  background-color: var(--color-highlight-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 1.75rem;
  background-color: var(--color-surface);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
}

@media (min-width: 992px) {
  .hero-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-glass-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .hero-glass-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Play button pulse effect */

.play-btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #ECAB13;
  color: #ECAB13;
  border-radius: 50%;
  margin-left: 15px;
  cursor: pointer;
  vertical-align: middle;
  animation: pulse-animation 2s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn-pulse:hover {
  transform: scale(1.1);
  background-color: rgba(236, 171, 19, 0.15);
}

.play-btn-pulse svg {
  width: 28px;
  height: 28px;
  margin-left: 4px; /* visually center play icon */
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 171, 19, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(236, 171, 19, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 171, 19, 0);
  }
}

/* Video Modal Styles */

.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-modal-close:hover {
  background: #ECAB13;
  color: #000;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.path-selection {
  background-color: var(--color-surface);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.path-card {
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  border-bottom: 4px solid var(--color-primary); /* Movimos el borde al bottom para no interferir con la imagen */
  overflow: hidden; /* Importante para que la imagen respete el border-radius */
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.path-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.path-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.path-card:hover .path-image {
  transform: scale(1.05);
}

.path-content-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.path-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.path-icon-container {
  width: 36px;
  height: 36px;
  background-color: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.path-card:hover .path-icon-container {
  background-color: var(--color-primary);
  color: white;
}

.path-title {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 0;
  line-height: 1.2;
}

.path-content {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.path-content li {
  font-size: 0.95rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.path-check-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.path-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  background-color: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-surface-alt);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-outline-small:hover {
  background-color: var(--color-surface-hover);
  color: var(--color-primary);
  border-color: var(--color-primary-light);
}

@media (min-width: 1024px) {
  .paths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .path-card:nth-child(4),
  .path-card:nth-child(5) {
    grid-column: span 1;
  }
}
.voc-workshop {
  background-color: var(--color-background);
  overflow: hidden;
}

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

.voc-image-panel {
  width: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.voc-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.voc-image-panel:hover .voc-img {
  transform: scale(1.02);
}

.voc-badge {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voc-content-panel .section-title {
  margin-bottom: 1rem;
}

.voc-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.voc-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.voc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.voc-check {
  font-size: 1.5rem;
  background-color: var(--color-surface);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .voc-check {
  background-color: var(--color-surface-hover);
}

.voc-benefits h4 {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.voc-benefits p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (min-width: 992px) {
  .voc-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.appointments {
  background-color: var(--color-surface);
}

.appt-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.appt-card {
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-surface-alt);
}

.appt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--color-primary-light);
}

.appt-card-title {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.appt-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.appt-card-ideal {
  background-color: var(--color-surface);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.appt-card .btn-outline {
  width: 100%;
}

.appt-form-container {
  background-color: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  border-top: 5px solid var(--color-secondary);
}

.form-title {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--color-surface-alt);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-surface);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-background);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-submit {
  margin-top: 1rem;
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .appt-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .full-width {
    grid-column: span 2;
  }
}
.parents-info {
  background-color: var(--color-background);
}

.parents-main-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-surface-alt);
}

.parents-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.parents-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.6;
}

.parents-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.parents-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.parent-topic-card {
  background-color: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.parent-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.parent-topic-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.topic-icon {
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.topic-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.parent-topic-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.parent-topic-content p strong {
  color: white;
}

.parent-topic-content a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.parent-topic-content a:hover {
  color: white;
}

.parent-topic-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.parent-topic-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.parent-topic-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-info {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .parents-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.more-services-link {
  color: var(--color-text-muted);
}
.more-services-link a {
  text-decoration: underline;
  transition: color 0.3s ease;
}
.more-services-link a:hover {
  color: var(--color-primary-dark);
}
.campus-tour {
  background-color: var(--color-surface);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tour-image-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tour-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image-box img {
  transform: scale(1.05);
}

.tour-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-content h3 {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.tour-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.tour-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.visit-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  transition: transform 0.3s ease;
}

.tour-card:hover .visit-link {
  transform: translateX(5px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.financial-aid-details {
  background-color: var(--color-surface);
}

.fa-details-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.fafsa-box,
.fa-options-box {
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--color-secondary);
}

.fafsa-box {
  border-top-color: var(--color-primary);
}

.fafsa-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fafsa-header h3,
.fa-options-box h3 {
  font-size: 2rem;
  color: var(--color-primary-dark);
}

.fafsa-code {
  background-color: var(--color-surface-hover);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  flex-direction: column;
  border-left: 4px solid var(--color-accent);
}

.fafsa-code span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.fafsa-code strong {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: 2px;
}

.fafsa-desc {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.fafsa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fafsa-note {
  background-color: rgba(250, 204, 21, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.95rem;
}

.fa-options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.fa-options-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.fa-check {
  color: var(--color-text-light);
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.flex-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 992px) {
  .fa-details-layout {
    grid-template-columns: 1fr 1fr;
  }
  .fafsa-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Directorio de Asistencia Económica */
.fa-directory {
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 75, 147, 0.1);
}

.directory-title {
  font-size: 1.75rem;
  color: var(--color-primary-dark);
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.25rem;
}

.directory-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dir-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  line-height: 1.4;
  height: 100%;
}

.dir-item:hover {
  background: white;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dir-item.highlight {
  background: rgba(0, 75, 147, 0.05);
  border-color: var(--color-primary);
  font-weight: 700;
  color: var(--color-primary);
}

.dir-item.highlight-alt {
  background: rgba(232, 180, 0, 0.1);
  border-color: var(--color-secondary);
  font-weight: 700;
  color: #a67c00;
}

@media (max-width: 768px) {
  .fa-directory {
    padding: 2.5rem 1.5rem;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-title {
    font-size: 1.5rem;
  }
}
.admission-steps {
  background-color: var(--color-background);
}

.steps-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.steps-column {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.column-header {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 2rem;
  text-align: center;
}

.column-header.alt {
  background-color: var(--color-secondary);
}

.column-header h3 {
  font-size: 1.75rem;
  margin: 0;
  color: var(--color-text-light);
}

.steps-list-wrapper {
  padding: 2rem;
  flex-grow: 1;
}

.custom-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.custom-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  background-color: var(--color-primary-light);
  color: var(--color-text-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-number.alt-num {
  background-color: var(--color-secondary-light);
}

.step-text {
  font-size: 1.05rem;
  color: var(--color-text);
}

.column-actions {
  padding: 2rem;
  background-color: var(--color-background);
  border-top: 1px solid var(--color-surface-alt);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.column-actions .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .steps-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.admitted-checklist {
  background-color: var(--color-surface);
}

.checklist-container {
  background-color: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.checklist-progress-box {
  margin-bottom: 2rem;
  text-align: center;
}

.checklist-progress-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.progress-bar-bg {
  width: 100%;
  height: 12px;
  background-color: var(--color-surface-alt);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--color-secondary);
  transition: width 0.3s ease-out;
}

.checklist-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-surface-alt);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.check-item:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-primary-light);
}

.check-item.done {
  background-color: rgba(0, 119, 200, 0.05);
  border-color: var(--color-primary);
}

.check-item input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.check-text {
  font-size: 1.05rem;
  transition: color var(--transition-fast);
}

.check-item.done .check-text {
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.checklist-actions-simplified {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--color-surface-alt);
  padding-top: 2.5rem;
  text-align: center;
}

.checklist-actions-simplified p {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
}

.checklist-actions-simplified .btn {
  padding: 0.875rem 2.5rem;
}

@media (max-width: 768px) {
  .checklist-container {
    padding: 1.5rem;
  }
}

.inline-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.inline-link:hover {
  opacity: 0.7;
}

.check-item.done .inline-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/* Print specific styles for "Descargar progreso en PDF" */
@media print {
  @page {
    margin: 1cm;
  }
  
  /* Esconder Navbar, Footer, Chatbot, etc. */
  .app > *:not(main) {
    display: none !important;
  }
  
  /* Esconder todas las demás secciones del Landing Page */
  main > *:not(#admitidos) {
    display: none !important;
  }
  
  /* Asegurar que el checklist se vea y fluya naturalmente al inicio */
  #admitidos {
    display: block !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  
  .checklist-actions-simplified,
  .inline-link {
    display: none !important;
  }
  .checklist-container {
    box-shadow: none;
    padding: 0 !important;
    margin: 0 !important;
  }
  .mb-12 {
    margin-bottom: 0.5rem !important;
  }
  .checklist-progress-box {
    margin-bottom: 0.5rem !important;
  }
  .check-item {
    padding: 0.5rem !important;
    gap: 0.5rem !important;
  }
  .checklist-items {
    margin-bottom: 0 !important;
    gap: 0.5rem !important;
  }
}
.student-life {
  background-color: var(--color-background);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

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

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

@media (min-width: 1200px) {
  .life-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.life-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-surface-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.life-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
  background-color: var(--color-background);
}

.life-icon {
  font-size: 2.5rem;
  background-color: rgba(0, 119, 200, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.life-title {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.life-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.life-card .btn {
  width: 100%;
}
/* Directory.css */
.directory-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top right, rgba(0, 75, 147, 0.05), transparent),
              radial-gradient(circle at bottom left, rgba(232, 180, 0, 0.05), transparent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.directory-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pucpr-blue, #004b93);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.directory-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Filter Styles */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: transparent;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  white-space: nowrap;
}

.category-btn:hover {
  background: rgba(0, 75, 147, 0.05);
  color: var(--pucpr-blue, #004b93);
}

.category-btn.active {
  background: var(--pucpr-blue, #004b93);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 75, 147, 0.2);
}

/* Grid Layout */
.associations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  perspective: 1000px;
}

.association-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.association-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--pucpr-gold, #e8b400);
}

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

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pucpr-blue, #004b93), #0066cc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 15px rgba(0, 75, 147, 0.2);
}

.association-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.association-college {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pucpr-gold, #e8b400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.association-contact {
  margin-top: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--pucpr-blue, #004b93);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #003d7a;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 75, 147, 0.3);
}

.no-email {
  font-style: italic;
  color: #888;
  font-size: 0.85rem;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .directory-title {
    font-size: 2rem;
  }
  
  .category-filter {
    border-radius: 20px;
    padding: 15px;
  }
  
  .associations-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  background-color: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-surface-alt);
  opacity: 0.5;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--color-surface-alt);
  padding-top: 1.5rem;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-light);
}

.author-info h4 {
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.faq-section {
  background-color: var(--color-background);
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
}

.faq-item {
  border: 1px solid var(--color-surface-alt);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-surface-hover);
}

.faq-item.open .faq-question {
  color: var(--color-primary-dark);
  background-color: var(--color-background);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: normal;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background-color: var(--color-background);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0;
}
.final-contact {
  background-color: var(--color-surface);
  padding: 6rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background-color: var(--color-primary-dark);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-info-panel {
  padding: 3rem;
  color: var(--color-text-light);
}

.contact-info-panel h2 {
  font-size: 2.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 1.125rem;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-form-panel {
  background-color: var(--color-background);
  padding: 3rem;
}

.final-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
  }
  .contact-info-panel {
    padding: 4rem;
  }
  .contact-form-panel {
    padding: 4rem;
  }
  .final-form .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.program-explorer {
  background-color: var(--color-background);
}

.programs-page .program-explorer {
  padding-top: 6rem; /* Añadir espacio para que no se superponga con el navbar fijo (64px) */
}

.advanced-filters-panel {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border: 1px solid var(--color-surface-alt);
}

.search-bar-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.program-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.1rem;
  border: 2px solid var(--color-surface-alt);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.program-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1);
}

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

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 0.75rem;
  border: 1px solid var(--color-surface-alt);
  border-radius: var(--radius-md);
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%22%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230033A0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position:
    right 0.7em top 50%,
    0 0;
  background-size:
    0.65em auto,
    100%;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-surface-alt);
}

.no-results h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-count {
  margin: 0;
  color: var(--color-text-muted);
}

.view-toggle {
  display: flex;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-surface-alt);
  overflow: hidden;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-toggle-btn:hover {
  background-color: rgba(0, 51, 160, 0.05);
  color: var(--color-primary);
}

.view-toggle-btn.active {
  background-color: var(--color-primary);
  color: white;
}

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

/* List View Styles */
.programs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-list-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--color-surface-alt);
  transition: all var(--transition-normal);
  gap: 1rem;
}

.program-list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.program-list-info {
  flex: 1;
}

.program-list-name {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.program-list-campuses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.program-list-actions {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .program-list-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .program-list-info {
    flex: 2;
  }
  
  .program-list-campuses {
    flex: 1;
    justify-content: flex-start;
  }
  
  .program-list-actions {
    flex-shrink: 0;
  }
  
  .program-list-name {
    margin-bottom: 0.25rem;
  }
}

.program-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-surface-alt);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.program-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.program-level {
  color: var(--color-primary);
}

.program-campus {
  color: var(--color-text-muted);
}

.program-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  flex-grow: 1;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background-color: var(--color-background);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-surface-alt);
}

.program-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  flex: 1;
  text-align: center;
}

.btn-outline-small {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-outline-small:hover {
  background-color: var(--color-primary);
  color: white;
}

.indeciso-banner {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.indeciso-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.indeciso-content p {
  opacity: 0.9;
}

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

@media (min-width: 992px) {
  .filters-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .indeciso-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem;
  }
}

[data-theme="dark"] .filter-group select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%22%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}

/* Quick Links Buttons */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quick-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.quick-link-btn:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .quick-link-btn {
  background-color: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

[data-theme="dark"] .quick-link-btn:hover {
  background-color: var(--color-primary);
  color: white;
}
