

.documento-section {
    padding: 4rem 1rem 3rem;
    margin-top: 70px;
    background: linear-gradient(180deg, #e8f4f8 0%, #d4e8f0 100%);
    min-height: calc(100vh - 70px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.documento-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
    color: #1e4a5f;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.documento-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4a9bc4, transparent);
}

.documento-fecha {
    text-align: center;
    color: #2d6a8f;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.documento-content {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    border: 2px solid #d4e8f0;
}

.documento-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #1e4a5f;
    border-left: 4px solid #4a9bc4;
    padding-left: 1rem;
}

.documento-content h2:first-of-type {
    margin-top: 0;
}

.documento-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #2d6a8f;
}

.documento-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2d6a8f;
}

.documento-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.documento-content li {
    margin-bottom: 0.5rem;
    color: #2d6a8f;
}

.documento-content a {
    color: #1e4a5f;
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 500;
}

.documento-content a:hover {
    color: #4a9bc4;
}


@media (min-width: 768px) {
    .documento-section {
        padding: 6rem 2rem 4rem;
    }

    .documento-title {
        font-size: 3.5rem;
    }

    .documento-content {
        padding: 3rem;
    }
}


@media (min-width: 1024px) {
    .documento-section {
        padding: 8rem 2rem 5rem;
    }

    .documento-content {
        padding: 4rem;
    }
}
