/* Estilos base del sitio */
body { 
    font-family: 'Montserrat', sans-serif; 
}

.section-title { 
    font-size: 2.25rem; 
    font-weight: 700; 
    color: #1e3a8a; 
}

/* Estilo para el nombre principal animado */
.animated-gradient-text {
    background-size: 200% 200%;
    background-image: linear-gradient(
        -45deg,
        #1e3a8a,
        #2563eb,
        #3b82f6,
        #60a5fa
    );
    animation: gradient-animation 10s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Estilos del Carrusel (Banner) */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border: 5px solid white; 
    box-sizing: border-box;
}

.hero-slide.active { 
    opacity: 1; 
}

.banner-evaluacion { 
    background-position: center 30%; 
}

/* Estilos para el encabezado de Tips Docentes */
.tips-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .05em;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

.tips-subtitle {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 80%;
    margin: 1rem auto 0;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 3.5s forwards;
}

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

.subtitle-line {
    display: block;
    margin-bottom: 0.5rem;
}
