/*
 * Frases Motivadoras Diarias - Estilos
 * Colores Corporativos SEO METRIX
 * Azul Cian: #00A0DC
 * Azul Marino: #003B5C
 */

.frases-motivadoras-banner {
    position: relative;
    background: linear-gradient(135deg, #00A0DC 0%, #003B5C 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 59, 92, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frases-motivadoras-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 160, 220, 0.4);
}

.frase-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Icono */
.frase-icono {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.frase-icono svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Contenido */
.frase-contenido {
    flex: 1;
    color: #ffffff;
}

.frase-titulo {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.frase-texto {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-weight: 500;
    color: #ffffff;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: Georgia, "Times New Roman", serif;
}

.frase-fecha {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Decoración */
.frase-decoracion {
    flex-shrink: 0;
    position: relative;
    width: 80px;
    height: 80px;
}

.decoracion-circulo {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulso 3s ease-in-out infinite;
}

.decoracion-flecha {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.3);
    animation: flotacion 2s ease-in-out infinite;
}

@keyframes pulso {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes flotacion {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Estilo Minimal */
.frases-motivadoras-banner.estilo-minimal {
    background: #ffffff;
    border: 3px solid #00A0DC;
    padding: 30px;
}

.estilo-minimal .frase-icono {
    background: #00A0DC;
    border-color: #00A0DC;
}

.estilo-minimal .frase-contenido {
    color: #003B5C;
}

.estilo-minimal .frase-titulo {
    color: #00A0DC;
}

.estilo-minimal .frase-texto {
    color: #003B5C;
    text-shadow: none;
}

.estilo-minimal .frase-fecha {
    background: #00A0DC;
    color: #ffffff;
}

.estilo-minimal .decoracion-flecha {
    color: #00A0DC;
    opacity: 0.2;
}

/* Estilo Elegante */
.frases-motivadoras-banner.estilo-elegante {
    background: #003B5C;
    border-left: 6px solid #00A0DC;
    border-radius: 8px;
}

.estilo-elegante .frase-icono {
    background: #00A0DC;
    border: none;
}

.estilo-elegante .frase-texto {
    font-size: 22px;
    position: relative;
    padding-left: 20px;
}

.estilo-elegante .frase-texto::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: #00A0DC;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .frases-motivadoras-banner {
        padding: 30px 20px;
    }
    
    .frase-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .frase-icono {
        width: 50px;
        height: 50px;
    }
    
    .frase-icono svg {
        width: 30px;
        height: 30px;
    }
    
    .frase-texto {
        font-size: 20px;
    }
    
    .frase-decoracion {
        display: none;
    }
}

@media (max-width: 480px) {
    .frase-texto {
        font-size: 18px;
    }
    
    .frase-titulo {
        font-size: 14px;
    }
}

/* Accesibilidad */
.frases-motivadoras-banner:focus-within {
    outline: 3px solid #00A0DC;
    outline-offset: 3px;
}

/* Compatibilidad con temas dark */
@media (prefers-color-scheme: dark) {
    .frases-motivadoras-banner.estilo-minimal {
        background: #1a1a1a;
        border-color: #00A0DC;
    }
    
    .estilo-minimal .frase-contenido {
        color: #ffffff;
    }
    
    .estilo-minimal .frase-texto {
        color: #ffffff;
    }
}

/* Efecto de carga inicial */
.frases-motivadoras-banner {
    animation: aparicion 0.6s ease-out;
}

@keyframes aparicion {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
