/* Banner nuevo con degradé turquesa */
.banner-nuevo-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.banner-nuevo
{
    width: 100%;
    background: linear-gradient(180deg, #17a2b8 0%, #138496 50%, #0f7285 100%);
    padding: 16px 20px;
    margin-bottom: 20px;
    margin-top: 80px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
    transition: all 0.3s ease;
}

    .banner-nuevo:hover
    {
        background: linear-gradient(180deg, #138496 0%, #0f7285 50%, #0a5570 100%);
        box-shadow: 0 6px 16px rgba(23, 162, 184, 0.4);
        transform: translateY(-2px);
    }

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-estrella {
    /*width: 80px;*/
    height: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banner-text-container {
    flex-grow: 1;
    text-align: left;
}

.banner-title {
    color: white;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .banner-text-container {
        text-align: center;
    }
    
    .banner-estrella {
        /*width: 70px;*/
        height: 70px;
    }
    
    .banner-title {
        font-size: 16px;
    }
    
    .banner-subtitle {
        font-size: 12px;
    }
}
