
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #0d47a1;
    --accent: #4285f4;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-300: #dadce0;
    --gray-600: #5f6368;
    --gray-800: #202124;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(26, 115, 232, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --iesitblue: #1417f3;
    --iesitblue-dark: #0e1079;
    
        /*galeria*/
        --primary-blue: #0076a8;
        --bg-light: #f8f9fa;
        --text-dark: #222222;
        --text-muted: #666666;
        --border-radius: 12px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.licenciatura-title {
    text-align: center;
    padding: 4rem 2rem;
}


 /* ============================================================
       ESTILOS GENÉRICOS PARA LICENCIATURAS
       Todas las clases tienen prefijo "lic-"
 ============================================================ */

    /* ===== CONTENEDOR PRINCIPAL ===== */
    .lic-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem 4rem;
        font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    }

    /* ===== ENCABEZADO ===== */
    .lic-header {
        text-align: center;
        margin-bottom: 3.5rem;
        position: relative;
    }

 

    .lic-header h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--iesitblue);
        margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--iesitblue), var(--iesitblue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .lic-header p {
        font-size: 1.2rem;
        color: #546e7a;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

  

    /* ===== TARJETAS DE CONTENIDO ===== */
    .lic-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem 2.8rem;
        margin-bottom: 2.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 
                    0 1px 4px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(26, 35, 126, 0.06);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .lic-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 
                    0 4px 12px rgba(26, 35, 126, 0.04);
        transform: translateY(-2px);
    }


    .lic-card p {
        color: #37474f;
        line-height: 1.8;
        font-size: 1.05rem;
        text-align: justify;
    }

    /* ===== GRID DE PERFIL (3 columnas) ===== */
    .lic-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        margin-top: 0.5rem;
    }

    .lic-item {
        background: #f8f9fe;
        border-radius: 16px;
        padding: 1.8rem 1.8rem 1.8rem 2rem;
        border-left: 5px solid #1a237e;
        transition: all 0.3s ease;
    }

    .lic-item:hover {
        background: #f0f2fe;
        transform: translateX(4px);
        border-left-color: #42a5f5;
    }

    .lic-item h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a237e;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .lic-item h3 .lic-mini-icon {
        font-size: 1.2rem;
    }

    .lic-item ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lic-item ul li {
        padding: 0.4rem 0 0.4rem 1.8rem;
        position: relative;
        color: #455a64;
        font-size: 0.98rem;
        line-height: 1.5;
        border-bottom: 1px solid rgba(26, 35, 126, 0.04);
    }

    .lic-item ul li:last-child {
        border-bottom: none;
    }

    .lic-item ul li::before {
        content: '▹';
        position: absolute;
        left: 0;
        color: #1a237e;
        font-weight: 700;
        font-size: 1.1rem;
    }

    /* ===== VARIANTES DE COLOR PARA CADA SECCIÓN ===== */
    /* Conocimientos - Azul profundo */
    .lic-item.conocimientos {
        border-left-color: #1a237e;
    }
    .lic-item.conocimientos:hover {
        border-left-color: #1a237e;
    }

    /* Habilidades - Azul medio */
    .lic-item.habilidades {
        border-left-color: #0d47a1;
    }
    .lic-item.habilidades:hover {
        border-left-color: #1565c0;
    }

    /* Actitudes - Azul claro */
    .lic-item.actitudes {
        border-left-color: #42a5f5;
    }
    .lic-item.actitudes:hover {
        border-left-color: #64b5f6;
    }

    /* ===== VARIANTES DE COLOR PARA LICENCIATURAS ===== */
    /* Puedes cambiar el color principal de cada licenciatura */
    .lic-wrapper.ingenieria {
        --color-primary: #1a237e;
        --color-secondary: #0d47a1;
        --color-accent: #42a5f5;
    }

    .lic-wrapper.administracion {
        --color-primary: #2e7d32;
        --color-secondary: #1b5e20;
        --color-accent: #66bb6a;
    }

    .lic-wrapper.derecho {
        --color-primary: #b71c1c;
        --color-secondary: #880e4f;
        --color-accent: #e57373;
    }

    .lic-wrapper.arquitectura {
        --color-primary: #e65100;
        --color-secondary: #bf360c;
        --color-accent: #ffa726;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .lic-header h1 {
            font-size: 2.2rem;
        }

        .lic-card {
            padding: 2rem 1.8rem;
        }

        .lic-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .lic-wrapper {
            padding: 1.5rem 1rem 3rem;
        }

        .lic-header h1 {
            font-size: 1.8rem;
        }

        .lic-header p {
            font-size: 1rem;
        }

        .lic-card {
            padding: 1.5rem 1.2rem;
            border-radius: 16px;
        }

        .lic-card h2 {
            font-size: 1.3rem;
        }

        .lic-card h2 .lic-icon {
            width: 34px;
            height: 34px;
            font-size: 1rem;
        }

        .lic-card p {
            font-size: 0.98rem;
        }

        .lic-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .lic-item {
            padding: 1.2rem 1.2rem 1.2rem 1.5rem;
        }

        .lic-item ul li {
            font-size: 0.93rem;
        }
    }

    @media (max-width: 480px) {
        .lic-header h1 {
            font-size: 1.5rem;
        }


        .lic-card {
            padding: 1.2rem 1rem;
        }

        .lic-card h2 {
            font-size: 1.1rem;
        }

        .lic-card h2 .lic-icon {
            width: 30px;
            height: 30px;
            font-size: 0.85rem;
            border-radius: 8px;
        }
    }














/* ===== ================================= ===== */
/* ===== SLIDER DE ALUMNOS - CLASES ÚNICAS ===== */
/* ===== ================================= ===== */
/* Contenedor principal del slider */
.alumnos-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

.alumnos-slider-container {
    overflow: hidden;
    border-radius: 12px;
    padding: 5px;
}

.alumnos-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 5px;
}

/* Cada slide de alumno */
.alumno-slide {
    min-width: calc(200% / 6 - 16px);
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.alumno-slide:hover {
    transform: translateY(-5px);

}

.alumno-slide img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8eaf6;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
}

.alumno-slide:hover img {
    border-color: #d1d1d8;
}



/* Botones de navegación */
.alumnos-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #1a237e;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumnos-slider-btn:hover {
    background: #1a237e;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.alumnos-prev-btn {
    left: -20px;
}

.alumnos-next-btn {
    right: -20px;
}

/* Indicadores (puntos) */
.alumnos-slider-indicators {
    text-align: center;
    margin-top: 20px;
}

.alumno-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #cfd8dc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alumno-dot.active {
    background: #1a237e;
    transform: scale(1.3);
}

.alumno-dot:hover {
    background: #7986cb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .alumno-slide {
        min-width: calc(100% / 2 - 5px);
    }
    
    .alumno-slide img {
        width: 100px;
        height: 100px;
    }
    
    .alumnos-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .alumnos-prev-btn {
        left: -10px;
    }
    
    .alumnos-next-btn {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .alumno-slide {
        min-width: calc(100% - 5px);
        padding: 10px;
    }
    
    .alumno-slide img {
        width: 130px;
        height: 130px;
    }
    
    .alumnos-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}