/* ==========================================================================
   STYLE CSS - EPCCS UNA-PUNO (Premium/Coffee-Tech Inspired)
   ========================================================================== */

:root {
    /* EPCCS Brand Colors */
    --primary: #1d8b82;
    --primary-dark: #146960;
    --accent: #FFB81C;
    
    /* Neutral Palette -> Now Deep Jade Palette */
    --black: #0d3531; /* Darkest Jade (Replaces Black) */
    --dark-grey: #124340; /* Darker Jade (Replaces Dark Grey) */
    --light-grey: #f4f7f6;
    --white: #ffffff;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1300px;
}

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

html { scroll-behavior: smooth; }

body.ct-theme {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================== UTILS ================== */
.ct-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.ct-section {
    padding: 120px 0;
    position: relative;
}

.light-bg {
    background-color: var(--light-grey);
    color: var(--black);
}

.dark-teal-bg {
    background-color: var(--primary-dark);
    color: var(--white);
}

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.7) !important; }

/* ================== TYPOGRAPHY ================== */
.mega-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
    color: inherit;
    opacity: 0.8;
}

/* ================== BUTTONS (Premium Hover Effects) ================== */
.ct-btn-primary, .ct-btn-secondary, .ct-btn-outline {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ct-btn-primary::before, .ct-btn-secondary::before, .ct-btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.ct-btn-primary:hover::before, .ct-btn-secondary:hover::before, .ct-btn-outline:hover::before {
    height: 100%;
}

.ct-btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}
.ct-btn-primary::before { background: var(--white); }
.ct-btn-primary:hover { color: var(--primary); border-color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(29, 139, 130, 0.3); }

.ct-btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.ct-btn-secondary::before { background: var(--accent); }
.ct-btn-secondary:hover { color: var(--black); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 184, 28, 0.2); }

.ct-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.ct-btn-outline::before { background: var(--white); }
.ct-btn-outline:hover { color: var(--black); border-color: var(--white); transform: translateY(-3px); }

.ct-link-btn {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 5px;
}
.ct-link-btn::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0%; height: 2px; background: var(--primary);
    transition: width 0.4s ease;
}
.ct-link-btn:hover { gap: 15px; }
.ct-link-btn:hover::after { width: 100%; }

/* ================== SPLASH SCREEN ================== */
#splashScreen {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splashScreen.hide {
    opacity: 0;
    visibility: hidden;
}
.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Tech ring around logo */
.splash-inner::before {
    content: '';
    position: absolute;
    top: 85px; left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255,255,255,0.15);
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    border-radius: 50%;
    animation: techSpin 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    z-index: 1;
}
@keyframes techSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.splash-logo {
    width: 170px;
    margin-bottom: 25px;
    animation: splashFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15));
}
@keyframes splashFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.splash-name {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.splash-bar-wrap {
    width: 260px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}
.splash-bar {
    height: 100%;
    width: 0%;
    background: var(--white);
    box-shadow: 0 0 15px var(--white);
    animation: loadBar 2.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    border-radius: 4px;
}
@keyframes loadBar { 
    0% { width: 0%; }
    40% { width: 50%; }
    100% { width: 100%; } 
}

.splash-credit {
    position: absolute;
    bottom: 35px;
    right: 40px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================== HEADER ================== */
.ct-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 90px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
}
.ct-header.scrolled {
    background: rgba(13, 53, 49, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.logo-img { height: 40px; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
    display: inline-block;
    padding: 10px 0;
}
.nav-link:hover, .nav-link.active, .nav-item-dropdown:hover .nav-link { 
    opacity: 1; 
    color: var(--accent); 
}

.nav-item-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 1000;
}
/* Triángulo apuntando hacia el menú padre */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: -1;
}
/* Invisible bridge to keep hover state active */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}
.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    position: relative;
    z-index: 2;
}
.dropdown-item:hover {
    background: rgba(13, 53, 49, 0.05);
    color: var(--primary);
    padding-left: 28px;
}

@media (max-width: 992px) {
    .main-nav { display: none; }
    .header-action { display: none; }
}

/* ================== HERO ================== */
.ct-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}
.ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.ct-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,67,64,0.92) 0%, rgba(18,67,64,0.4) 100%);
}
.ct-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding-top: 50px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-actions { flex-direction: column; }
}

/* ================== TICKER ================== */
.ct-ticker {
    background: var(--accent);
    color: var(--black);
    padding: 15px 0;
    overflow: hidden;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}
.ticker-track span { margin: 0 20px; }
.ticker-track .dot { color: var(--primary); }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================== SPLIT LAYOUT ================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.align-center { align-items: center; }
.align-start { align-items: start; }

.parallax-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s;
    filter: grayscale(30%);
}

.split-image { 
    position: relative;
    overflow: hidden; 
    border-radius: 12px; 
}

.split-image:hover .parallax-img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* Marco Exterior Decorativo (Estilo Vintage) para las Historias */
.stories-outer-wrapper {
    position: relative;
    padding: 25px; /* Espacio para que el marco exterior respire */
    z-index: 1;
}

/* Doble borde clásico */
.stories-outer-wrapper::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid #b0812c;
    pointer-events: none;
    z-index: 10;
}

.stories-outer-wrapper::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid #b0812c;
    pointer-events: none;
    z-index: 10;
}

/* Esquinas Ornamentales */
.vintage-corner {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url('assets/imagenes/esquina-dorada.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 15;
    pointer-events: none;
}

.vintage-corner.top-right {
    top: -5px;
    right: -5px;
    transform: scaleX(-1);
}

.vintage-corner.bottom-left {
    bottom: -5px;
    left: -5px;
    transform: scaleY(-1);
}

/* ================== STORIES CAROUSEL ================== */
/* ================== STORIES CAROUSEL ================== */
.stories-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px; /* Regresado a un borde más suave */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: #000;
    border: 4px solid var(--white); /* Borde blanco que separa la foto del marco dorado exterior */
}

.story-images-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.story-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; }
    .parallax-img, .stories-container { height: 350px; }
}

/* ================== FLYER SHOWCASE ================== */
.flyer-showcase {
    max-width: 800px;
    margin: 0 auto;
}
.flyer-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.flyer-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.6);
}
.flyer-wrapper img {
    width: 100%;
    display: block;
}
.ct-admin-btn {
    position: absolute;
    bottom: 20px; right: 20px;
    background: rgba(18,67,64,0.85);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}
.ct-admin-btn:hover { background: var(--primary); }

/* ================== AGENDA & FEED ================== */
.column-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.fb-modern-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.agenda-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.agenda-item:hover { transform: translateX(10px); }
.agenda-date {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    text-align: center;
    border-right: 2px solid #eee;
    padding-right: 25px;
}
.agenda-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.agenda-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================== FOOTER ================== */
.ct-footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: var(--text-muted); margin-bottom: 10px; }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}
.social-icons a:hover { background: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================== ANIMATIONS (REVEAL) ================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
    opacity: 1;
    transform: translate(0);
}
.stagger-delay.in-view { transition-delay: 0.2s; }

/* ================== FLOATING UI (AI & SPEED DIAL) ================== */
.ai-online-indicator {
    position: fixed; bottom: 35px; left: 50%; transform: translateX(-50%);
    background: var(--dark-grey); color: var(--white);
    padding: 10px 20px; border-radius: 30px;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; z-index: 9000;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--success); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.speed-dial { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.speed-dial-main {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--primary); color: white; border: none;
    font-size: 1.4rem; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.speed-dial.open .speed-dial-main { transform: rotate(45deg); background: var(--danger); }
.speed-dial-options { display: flex; flex-direction: column; gap: 10px; opacity: 0; pointer-events: none; transform: translateY(20px); transition: all 0.3s; }
.speed-dial.open .speed-dial-options { opacity: 1; pointer-events: all; transform: translateY(0); }
.dial-item { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.dial-label { background: rgba(18,67,64,0.9); color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.dial-btn { width: 45px; height: 45px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* Chat Window */
.ct-chat-window {
    position: fixed; bottom: 100px; right: 30px; width: 340px;
    background: var(--dark-grey); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 9999; display: none; flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); overflow: hidden;
}
.ct-chat-window.open { display: flex; animation: fadeInUp 0.3s; }
.chat-header { background: var(--primary-dark); padding: 15px 20px; color: white; font-weight: 700; display: flex; justify-content: space-between; }
.close-chat { 
    background: none; 
    border: none; 
    color: white; 
    cursor: pointer; 
    font-size: 1.2rem; 
    padding: 5px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: transform 0.3s;
}
.close-chat:hover { transform: scale(1.2); }
.chat-body { height: 350px; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.msg-bot { background: rgba(255,255,255,0.05); color: white; padding: 12px 15px; border-radius: 12px 12px 12px 0; align-self: flex-start; max-width: 85%; font-size: 0.9rem; }
.msg-user { background: var(--primary); color: white; padding: 12px 15px; border-radius: 12px 12px 0 12px; align-self: flex-end; max-width: 85%; font-size: 0.9rem; }
.chat-input-area { display: flex; padding: 15px; border-top: 1px solid rgba(255,255,255,0.05); gap: 10px; }
.chat-input-area input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 10px 15px; border-radius: 20px; outline: none; }
.chat-input-area button { background: var(--primary); color: white; border: none; width: 40px; border-radius: 50%; cursor: pointer; }

/* Admin Modal */
.admin-modal { position: fixed; inset: 0; background: rgba(18,67,64,0.85); z-index: 10000; display: none; align-items: center; justify-content: center; }
.modal-content { background: var(--dark-grey); padding: 40px; border-radius: 12px; width: 350px; border: 1px solid rgba(255,255,255,0.1); }
.modal-content h4 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
.modal-content input { width: 100%; padding: 12px; margin-bottom: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 6px; }
.w-100 { width: 100%; }
.modal-cancel { color: var(--text-muted); text-align: center; margin-top: 15px; cursor: pointer; font-size: 0.9rem; }
.modal-cancel:hover { color: white; }

/* =========================================
   DOCENTES PREMIUM GRID
   ========================================= */
.dark-bg {
    background-color: var(--black);
}
.docentes-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.docente-card-premium {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px 22px;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.docente-card-premium::before {
    content: attr(data-inicial);
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.docente-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    border-color: rgba(29,139,130,0.2);
}

.docente-card-premium:hover::before {
    background: linear-gradient(135deg, var(--accent), #e6a000);
    color: var(--black);
}

.docente-card-premium span {
    font-size: 0.92rem;
    line-height: 1.4;
    color: #2a2a2a;
    font-weight: 600;
}


/* ================== FUTURISTIC CURSOR ================== */
@media (pointer: fine) {
    body, a, button, input, textarea, select {
        cursor: none !important;
    }
    
    .cursor-dot {
        position: fixed;
        top: 0; left: 0;
        pointer-events: none;
        z-index: 9999999;
        color: var(--primary); /* Verde Jade */
        font-size: 24px;
        -webkit-text-stroke: 0.6px var(--white); /* Borde blanco mas delgado */
        filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
        transition: color 0.3s;
    }
    
    .cursor-dot i {
        display: block;
        transform: rotate(105deg); /* Apunta hacia arriba a la izquierda (mouse normal) */
        transform-origin: 10% 10%; /* Eje exacto en la punta */
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .cursor-outline {
        position: fixed;
        top: 0; left: 0;
        width: 40px; height: 40px;
        border: 2px dashed rgba(255, 255, 255, 0.5); /* Adorno tipo vector de diseño */
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999998;
        transition: width 0.3s, height 0.3s, border-color 0.3s, border-radius 0.3s, transform 0.1s;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    
    /* Hover states */
    .cursor-dot.cursor-hover {
        color: var(--accent); /* Dorado al hacer hover */
    }
    
    .cursor-dot.cursor-hover i {
        transform: rotate(105deg) scale(1.3);
    }

    .cursor-outline.cursor-hover {
        width: 50px;
        height: 50px;
        margin-top: -5px;
        margin-left: -5px;
        border-color: var(--accent);
        border-style: solid;
        border-radius: 8px; /* Cambia a cuadrado tipo nodo de diseño */
        background: rgba(255, 184, 28, 0.1);
        box-shadow: 0 0 20px rgba(255, 184, 28, 0.4);
    }
}
