.aviso-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.aviso-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    z-index: -1;
}

.aviso-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aviso-container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.aviso-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.aviso-badge {
    position: absolute;
    top: 20px;
    left: 30px;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.aviso-content {
    padding: 50px 30px 20px 30px;
    position: relative;
}

.aviso-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 183, 77, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aviso-icon span {
    font-size: 24px;
    font-weight: bold;
}

.aviso-header {
    margin-bottom: 15px;
    padding-top: 10px;
}

.aviso-title {
    font-size: 40px;
    font-weight: 600;
    color: #434A54;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.aviso-date {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.aviso-date::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(119, 119, 119, 0.2);
    border-radius: 50%;
    position: relative;
}

.aviso-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.aviso-text p:last-child {
    margin-bottom: 0;
}

.btn-action {
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-action:hover {
    background-color: #006969;
    transform: translateY(-2px);
    color: white;
}

.btn-action:hover::after {
    transform: translateX(3px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 183, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0);
    }
}

@media (max-width: 830px) {
    .aviso-container {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .aviso-wrapper {
        padding: 30px 10px;
    }
    
    .aviso-content {
        padding: 40px 20px;
    }
    
    .aviso-icon {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .aviso-title {
        font-size: 22px;
        margin-top: 10px;
    }
    
    .aviso-badge {
        left: 20%;
        transform: translateX(-50%);
    }
}