@charset "utf-8";

/* Fondo azul para el header únicamente en esta página */
body#aviso-page .site-header {
    position: relative;
    background-color: #09013A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.aviso-section {
    background-color: #fffbf0;
    padding-top: 60px;
    padding-bottom: 80px;
}

.aviso-container {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    padding: 0 20px;
}

.aviso-header {
    margin-bottom: 35px;
}

.aviso-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #09013A;
    display: block !important;
    margin-bottom: 10px;
}

.aviso-line {
    width: 80px;
    height: 4px;
    background-color: #00BF6F;
    border-radius: 2px;
}

.aviso-content {
    color: #09013A;
    font-size: 17px;
    line-height: 1.4;
}

.aviso-content p {
    margin-bottom: 24px;
    text-align: justify;
}

.aviso-box {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 25px 30px;
    border-left: 4px solid #D0A344;
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
}

.aviso-box p {
    text-align: justify;
}

.aviso-box p:not(:last-child) {
    margin-bottom: 16px;
}

.aviso-box p:last-child {
    margin-bottom: 0;
}

.aviso-link {
    color: #00BF6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.aviso-link:hover {
    color: #09013A;
    text-decoration: underline;
}

.aviso-signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #EADCB9;
    text-align: right;
    font-weight: 700;
    color: #09013A;
    font-size: 18px;
}

@media (max-width: 768px) {
    .aviso-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .aviso-header h1 {
        font-size: 32px;
    }
    
    .aviso-content {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .aviso-box {
        padding: 18px 20px;
    }
}
