/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Volkhov:wght@400;700&display=swap');

.nota-principal-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #000;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    max-width: none !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    font-style: normal !important;
}

.nota-principal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nota-principal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.nota-principal-content {
    position: relative;
    z-index: 2;
    width: 90%; /* Using 90% as requested */
    text-align: center;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 7px 6px 1px #252325;
    transition: color 0.3s ease;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.nota-principal-volanta {
    font-family: 'Volkhov', serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff !important;
}

.nota-principal-title {
    margin: 0 !important;
    padding: 0 !important;
}

.nota-principal-autores {
    font-family: 'Volkhov', serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff !important;
}

.nota-principal-autores a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nota-principal-autores a:hover {
    color: #ffe900 !important;
}

.nota-principal-container:hover .nota-principal-content {
    color: #ffe900;
}

/* Desktop */
@media (min-width: 768px) {
    .nota-principal-container {
        height: 100vh !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    .nota-principal-content {
        width: 90%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .nota-principal-container {
        height: 300px;
    }
    .nota-principal-content {
        width: 90%;
    }
    .nota-principal-volanta {
        font-size: 14px;
    }
    .nota-principal-autores {
        font-size: 12px;
    }
}