@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A0A0A;
    margin-left: 0;
    min-width: unset;
    width: 100%;
    padding-bottom: 80px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;

    z-index: 998;

    border-bottom: 1px solid #27272A;
    width: 100%;
    background-color: #0A0A0A;
}

.logo {
    top: 13px;
    height: 46px;
    width: auto;
}

.TextLogo {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.menu {
    position: fixed;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);

    height: 42px;
    padding: 0 8px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;

    z-index: 999;
}

.menu button {
    width: 116px;
    height: 42px;

    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
}

.menu button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #0084FF;
    transition: 0.5s ease;
}

.menu button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #0084FF;
    transition: 0.4s ease;
    z-index: -1;
}

.menu button:hover::before {
    width: 100%;
}

.menu button:hover::after {
    height: 100%;
    transition-delay: 0.2s;
}

.menu button.active::before {
    width: 100%;
    box-shadow: 0 0 10px #0084FF;
}

.menu button.active::after {
    height: 100%;
    opacity: 0.15;
    filter: blur(8px);
}

.page {
    display: none;
    padding-top: 88px;
    color: #fff;
}

.page.active {
    display: block;
}

/* 
====================
== Discord button ==
====================
*/

.link-discord {
    position: absolute;
    left: calc(1658vw / 19.2);
    top: calc(13vh / 10.8);
    text-decoration: none;
    display: inline-block;
}

.buttonLoginDiscord {
    background: transparent;
    position: relative;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(88, 101, 242, 1);
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: rgba(88, 101, 242, 1);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.buttonLoginDiscord span {
    margin: 10px;
}

.buttonLoginDiscord::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.buttonLoginDiscord:hover {
    color: #fff;
    border: 1px solid rgba(88, 101, 242, 1);
}

.buttonLoginDiscord:hover::before {
    box-shadow: inset 0 0 0 10em rgba(88, 101, 242, 1);
}

.buttonLogout {
    border-color: rgba(220, 38, 38, 0.7);
    color: rgba(220, 38, 38, 0.9);
}

.buttonLogout:hover {
    color: #fff;
    border-color: rgba(220, 38, 38, 1);
}

.buttonLogout:hover::before {
    box-shadow: inset 0 0 0 10em rgba(220, 38, 38, 1);
}

/* 
====================
==   Login.php     ==
====================
*/

.bg {
    position: absolute;
    left: calc(746vw / 19.2);
    top: calc(172vh / 10.8);
    width: calc(420vw / 19.2);
    height: calc(560vh / 10.8);
    background: #141414;

    border: 2px solid #27272A;

    border-radius: 16px;
}

.dclogo {
    position: absolute;

    left: calc(170vw / 19.2);
    top: calc(60vh / 10.8);
}

.bemvindodevolta {
    position: absolute;
    left: calc(83vw / 19.2);
    top: calc(152vh / 10.8);
    width: calc(255vw / 19.2);
    height: calc(39vh / 10.8);

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}

.bemvindodevoltaDesc {
    position: absolute;

    left: calc(65vw / 19.2);
    top: calc(210vh / 10.8);
    width: calc(300vw / 19.2);
    height: calc(23vh / 10.8);

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    opacity: 50%;
}

.termos {
    position: absolute;

    left: calc(58vw / 19.2);
    top: calc(415vh / 10.8);
    width: calc(303vw / 19.2);
    height: calc(39vh / 10.8);

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    opacity: 50%;
}

.ou {
    position: absolute;

    left: calc(49vw / 19.2);
    top: calc(390vh / 10.8);
}

.divisorLogin {
    position: absolute;
    left: calc(0vw / 19.2);
    top: calc(479vh / 10.8);
    width: calc(420vw / 19.2);
    height: calc(1vh / 10.8);
    background: #27272A;
}

/* Buttons Voltar */

.login-back-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 445px;

    width: 200px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: transparent;
    border: none;

    color: #A1A1AA;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
    transition: all .25s ease;
}

.login-back-icon {
    width: 22px;
    height: 22px;
    color: #A1A1AA;
    transition: all .25s ease;
}

.login-back-btn:hover {
    color: #ffffff;
}

.login-back-btn:hover .login-back-icon {
    color: #ffffff;
    transform: translateX(-4px);
}


/* Hover Button Discord */

.discordButton {
    position: absolute;
    left: 49px;
    top: 268px;
    width: 322px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #5865F2;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;

    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;

    transition: all .3s ease;
}

.discordButton span {
    transition: all .4s ease;
}

.svg-wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .4s ease;
}

.discordButton svg {
    display: block;
    transition: all .4s ease;
}

.discordButton:hover {
    background: #5865F2;
}

.discordButton:hover span {
    opacity: 0;
    transform: translateX(-20px);
}

.discordButton:hover .svg-wrapper {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.25);
}

.discordButton:hover svg {
    transform: scale(1.1);
}

.discordButton:active {
    transform: scale(0.95);
}

.discordButton span {
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}

.discordButton:hover span {
    opacity: 0;
    transform: translateX(-30px);
}

.discordButton svg {
    width: 28px;
    height: 28px;
    display: block;
    transition: all .4s ease;
}

.suaFonte {
    position: absolute;

    left: calc(618vw / 19.2);
    top: calc(243vh / 10.8);

    width: calc(660vw / 19.2);
    height: calc(141vh / 10.8);

    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* User and avatar */

.user-info {
    position: absolute;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #5865F2;
    object-fit: cover;
}

.user-name {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.user-info a:has(.user-avatar):hover .user-avatar {
    border-color: #0084FF;
    transition: border-color 0.2s ease;
}

.user-info a:has(.user-avatar):hover .user-name {
    color: #a0c4ff;
    transition: color 0.2s ease;
}

.temporeal {
    position: absolute;
    left: calc(873vw / 19.2);
    top: calc(181vh / 10.8);

    width: calc(152vw / 19.2);
    height: calc(35vh / 10.8);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #0084FF;
    background-color: rgba(0, 132, 255, 0.2);
    border-radius: 18px;

    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.circle {
    position: absolute;
    left: calc(886vw / 19.2);
    top: calc(195vh / 10.8);

    width: calc(6vw / 19.2);
    height: calc(6vh / 10.8);

    background-color: rgba(0, 132, 255, 1);
    border-radius: 3px;
}

.suaFonte {
    position: absolute;
    left: calc(618vw / 19.2);
    top: calc(243vh / 10.8);

    width: calc(660vw / 19.2);
    height: calc(141vh / 10.8);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: 'Space Grotesk', sans-serif;
    font-size: calc(58vw / 19.2);
    font-weight: 700;
}

.suaFonteDesc {
    position: absolute;
    left: calc(618vw / 19.2);
    top: calc(360vh / 10.8);

    width: calc(660vw / 19.2);
    height: calc(141vh / 10.8);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    font-family: 'Space Grotesk', sans-serif;
    font-size: calc(18vw / 19.2);
    font-weight: 400;

    opacity: 50%;
}

.verNoticias {
    position: absolute;
    left: calc(769vw / 19.2);
    top: calc(492vh / 10.8);

    width: calc(145vw / 19.2);
    height: calc(57vh / 10.8);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #0084FF;
    background-color: #1A1A1A;

    border: none;
    border-bottom: 1px solid #27272A;
    border-radius: 4px;

    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;

    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.verNoticias::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #0084FF;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.verNoticias:hover {
    box-shadow: 1px 1px 200px #252525;
    color: #fff;
    border-color: transparent;
}

.verNoticias:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

/* Explorar Categorias */

.explorarCategorias {
    position: absolute;
    left: calc(930vw / 19.2);
    top: calc(492vh / 10.8);

    width: calc(199vw / 19.2);
    height: calc(57vh / 10.8);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #0084FF;
    background-color: #1A1A1A;

    border: none;
    border-bottom: 1px solid #27272A;
    border-radius: 4px;

    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;

    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.explorarCategorias::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #0084FF;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.explorarCategorias:hover {
    box-shadow: 1px 1px 200px #252525;
    color: #fff;
    border-color: transparent;
}

.explorarCategorias:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

/* CATEGORIAS */

.categorias-section {
    position: absolute;
    left: 21%;
    max-width: 1100px;
    width: 100%;
    margin: 435px auto 90px auto;
    padding: 0 24px;
    text-align: center;
}

.categorias-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.categorias-subtitle {
    font-size: 0.92rem;
    color: #777;
    margin-bottom: 40px;
}

.categorias-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
}

.categoria-card {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 22px 20px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categoria-card:hover {
    transform: translateY(-4px);
    border-color: #3a3a3a;
}

.categoria-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ic-confronto {
    background: rgba(220, 55, 55, 0.20);
    color: #e05555;
}

.ic-fofocas {
    background: rgba(200, 140, 30, 0.22);
    color: #d4962a;
}

.ic-fraude {
    background: rgba(50, 110, 230, 0.22);
    color: #4d88e8;
}

.ic-golpes {
    background: rgba(130, 65, 210, 0.22);
    color: #9e6ee0;
}

.categoria-nome {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.categoria-desc {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.45;
    margin: 0;
}

.categoria-count {
    font-size: 0.77rem;
    color: #555;
    margin-top: auto;
    padding-top: 6px;
}

@media (max-width: 768px) {
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categorias-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin.php */

.menuLateral {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;

    background-color: #0A0A0A;
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    z-index: 100;

    border-right: 1px solid #1F1F22;
    overflow: hidden;
}

body {
    margin-left: 260px;
}

.headerSidebarADM {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
}

.logoADM {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.TextLogoADM {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.divisorADM {

    left: 5%;
    width: 200%;
    height: 1px;
    background-color: #1F1F22;
    margin: 20px 0;
}

.menuADM {
    width: 200%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menuADM button {
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: transparent;
    border: none;
    color: #52525B;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: all 0.2s ease;
}

.menuADM button svg {
    flex-shrink: 0;
    fill: #52525B;
    transition: all 0.2s ease;
}

.menuADM button:hover,
.menuADM button.activeadm {
    background-color: #091424;
    color: #fff;
}

.menuADM button:hover svg,
.menuADM button.activeadm svg {
    fill: #0084FF;
}

.user-infoadm {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #1F1F22;
}

.user-profile-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
}

.user-avataradm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-textadm {
    display: flex;
    flex-direction: column;
}

.user-nameadm {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.user-roleadm {
    color: #52525B;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
}

.logout-link-adm {
    width: 100%;
    text-decoration: none;
}

.buttonLogoutADM {
    width: 100%;
    padding: 12px;
    background-color: #141416;
    border: 1px solid #27272A;
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.buttonLogoutADM:hover {
    background-color: #1C1C1E;
}

.pageadm {
    display: none;
    padding: 40px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.pageadm.activeadm {
    display: block;
}

/*
======================
== Pagina Dashboard ==
======================
*/

.page-title {
    position: absolute;
    left: 284px;
    top: 0px;
    width: 196px;
    height: 64px;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorTitle {
    position: absolute;
    left: 0px;
    width: 200%;
    height: 1px;
    background-color: #1F1F22;
    margin: 16px 0;
}

.card-totalNoticias {
    position: absolute;

    left: 284px;
    top: 104px;

    width: 382px;
    height: 103px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;

}

.ttnoticiasimg {
    position: absolute;

    left: 11px;
    top: 27px;
}

.totalNoticiasCount {
    position: absolute;

    left: 74px;
    top: 27px;
    width: 138px;
    height: 34px;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.totalNoticiasDesc {
    position: absolute;

    left: 74px;
    top: 61px;
    width: 138px;
    height: 14px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    opacity: 50%;
}

/* Total Visu */

.card-totalVisu {
    position: absolute;

    left: 679px;
    top: 104px;

    width: 382px;
    height: 103px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;

}

.visuimg {
    position: absolute;

    left: 11px;
    top: 27px;
}

.visuCount {
    position: absolute;

    left: 74px;
    top: 27px;
    width: 138px;
    height: 34px;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.visuDesc {
    position: absolute;

    left: 74px;
    top: 61px;
    width: 138px;
    height: 14px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    opacity: 50%;
}

/* Total users */

.card-totalUsers {
    position: absolute;

    left: 1074px;
    top: 104px;

    width: 382px;
    height: 103px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;

}

.Usersimg {
    position: absolute;

    left: 11px;
    top: 27px;
}

.UsersCount {
    position: absolute;

    left: 74px;
    top: 27px;
    width: 138px;
    height: 34px;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.UsersDesc {
    position: absolute;

    left: 74px;
    top: 61px;
    width: 138px;
    height: 14px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    opacity: 50%;
}

/* Noticias Hoje */

.card-totalnthj {
    position: absolute;

    left: 1469px;
    top: 104px;

    width: 382px;
    height: 103px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;

}

.nthjimg {
    position: absolute;

    left: 11px;
    top: 27px;
}

.nthjCount {
    position: absolute;

    left: 74px;
    top: 27px;
    width: 138px;
    height: 34px;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.nthjDesc {
    position: absolute;

    left: 74px;
    top: 61px;
    width: 138px;
    height: 14px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    opacity: 50%;
}

/* Noticias postadas */

.noticias-postadas {
    position: absolute;

    left: 284px;
    top: 241px;

    width: 1567px;
    height: 657px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;
}

.titleNoticias {
    position: absolute;
    left: 24px;
    top: -5px;
    width: 538px;
    height: 53px;
    color: #fff;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.noticias-postadas {
    position: absolute;
    left: 284px;
    top: 241px;
    width: 1567px;

    min-height: 400px;
    max-height: 657px;
    overflow-y: auto;
    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;
    padding: 24px;
}

.titleNoticias {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
}

.news-table th,
.news-table td {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #1F1F22;
}

.news-table th {
    opacity: 0.5;
    font-weight: 500;
    padding-bottom: 12px;
}

.news-table th.Titulo,
.news-table td.news-title-td {
    text-align: left;
    width: 35%;
}

.actions-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-action {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.btn-action svg path {
    transition: fill 0.2s ease, fill-opacity 0.2s ease;
}

.btn-action:hover svg path {
    fill: #0084FF;
    fill-opacity: 1;
}

.btn-action:hover {
    transform: scale(1.1);
}



/* Criar Nova Materia */


.CriarNovaNoticia {
    position: absolute;
    left: 284px;
    top: 0px;
    width: 196px;
    height: 64px;
    color: #fff;


    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorTitleNewNotice {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 16px 0;
}

.Conteudo {
    position: absolute;

    left: 284px;
    top: 91px;

    width: 1027px;
    height: 428px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;
}

.conteudoDivisor {
    position: absolute;
    top: 35px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 25px 0;
}

.ConteudoPagina {
    position: absolute;
    left: 24px;
    top: 19px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tituloConteudo {
    position: absolute;
    left: 24px;
    top: 94px;

    width: 211px;
    height: 31px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inputTitulo {
    position: absolute;
    left: 24px;
    top: 125px;
    width: 979px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid #27272A;
    background: #181818;
    color: white;

    padding-left: 24px;
    box-sizing: border-box;
    font-size: 18px;
}

.inputTitulo::placeholder {
    color: #71717A;
    font-size: 16px;

    padding-left: 2px;
}

.tituloConteudoDesc {
    position: absolute;
    left: 24px;
    top: 185px;

    width: 311px;
    height: 25px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    opacity: 50%;
}

/* Descrição */

.DescConteudo {
    position: absolute;
    left: 24px;
    top: 226px;

    width: 211px;
    height: 31px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inputDesc {
    position: absolute;
    left: 24px;
    top: 260px;
    width: 979px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid #27272A;
    background: #181818;
    color: white;

    padding: 16px 24px;
    box-sizing: border-box;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;

    resize: none;
}

.inputDesc::placeholder {
    color: #71717A;
    font-size: 16px;
}

.DescConteudoDesc {
    position: absolute;
    left: 24px;
    top: 380px;

    width: 311px;
    height: 25px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    opacity: 50%;
}

/* Midia */


.midia {
    position: absolute;

    left: 284px;
    top: 544px;

    width: 1027px;
    height: 759px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;
}

.midiaTitulo {
    position: absolute;
    left: 24px;
    top: 15px;

    width: 217px;
    height: 44px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorMidiaTitle {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 74px 0;
}

.images-videos {
    position: absolute;
    left: 24px;
    top: 94px;

    width: 979px;
    height: 31px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.URL {
    position: absolute;
    left: 24px;
    top: 511px;

    width: 979px;
    height: 31px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.URLdesc {
    position: absolute;
    left: 24px;
    top: 596px;

    width: 979px;
    height: 31px;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 50%;
}

.inputURL {
    position: absolute;
    left: 24px;
    top: 542px;
    width: 979px;
    height: 47px;
    border-radius: 8px;
    border: 2px solid #27272A;
    background: #181818;
    color: white;

    padding-left: 24px;
    box-sizing: border-box;
    font-size: 18px;
}

.inputURL::placeholder {
    color: #71717A;
    font-size: 16px;

    padding-left: 2px;
}




.drop-zone {
    position: relative;

    left: 24px;
    top: 125px;

    width: 979px;
    height: 225px;

    background-color: #1a1a1a;
    padding: 25px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.drop-zone--over {
    border-color: #555555;
    background-color: #222222;
}

.drop-zone__icon {
    color: #555555;
    margin-bottom: 15px;
}

.drop-zone__text {
    color: #888888;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.drop-zone__support {
    color: #555555;
    font-size: 13px;
    margin: 0;
}

.drop-zone__preview {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.drop-zone__media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 235px);
    gap: 15px;
    width: 100%;
    margin-top: 135px;
    margin-bottom: 10px;
    margin-left: 24px;
}

.preview-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.preview-item__thumbnail {
    width: 235px;
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #121212;
    border-radius: 4px;
}

.preview-item__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item__info {
    width: 235px;
    margin-top: 8px;
    text-align: center;
}

.preview-item__name {
    display: block;
    font-size: 11px;
    color: #aaaaaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.preview-item__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: background 0.2s;
}

.preview-item__remove:hover {
    background-color: #c0392b;
}

.continue-application {
    position: absolute;

    left: 24px;
    top: 650px;

    --color: #fff;
    --background: #181818;
    --background-hover: #181818;
    --background-left: #232325;
    --folder: #F3E9CB;
    --folder-inner: #BEB393;
    --paper: #FFFFFF;
    --paper-lines: #BBC1E1;
    --paper-behind: #E1E6F9;
    --pencil-cap: #fff;
    --pencil-top: #275EFE;
    --pencil-middle: #fff;
    --pencil-bottom: #5C86FF;
    --shadow: rgba(13, 15, 25, .2);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    border-radius: 1px solid #232325;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 17px 29px 17px 69px;
    transition: background 0.3s;
    color: var(--color);
    background: var(--bg, var(--background));
}

.continue-application>div {
    top: 0;
    left: 0;
    bottom: 0;
    width: 53px;
    position: absolute;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
    background: var(--background-left);
}

.continue-application>div .folder {
    width: 23px;
    height: 27px;
    position: absolute;
    left: 15px;
    top: 13px;
}

.continue-application>div .folder .top {
    left: 0;
    top: 0;
    z-index: 2;
    position: absolute;
    transform: translateX(var(--fx, 0));
    transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application>div .folder .top svg {
    width: 24px;
    height: 27px;
    display: block;
    fill: var(--folder);
    transform-origin: 0 50%;
    transition: transform 0.3s ease var(--fds, 0.45s);
    transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application>div .folder:before,
.continue-application>div .folder:after,
.continue-application>div .folder .paper {
    content: "";
    position: absolute;
    left: var(--l, 0);
    top: var(--t, 0);
    width: var(--w, 100%);
    height: var(--h, 100%);
    border-radius: 1px;
    background: var(--b, var(--folder-inner));
}

.continue-application>div .folder:before {
    box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow), 0 3.5px 7px var(--shadow);
    transform: translateX(var(--fx, 0));
    transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application>div .folder:after,
.continue-application>div .folder .paper {
    --l: 1px;
    --t: 1px;
    --w: 21px;
    --h: 25px;
    --b: var(--paper-behind);
}

.continue-application>div .folder:after {
    transform: translate(var(--pbx, 0), var(--pby, 0));
    transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application>div .folder .paper {
    z-index: 1;
    --b: var(--paper);
}

.continue-application>div .folder .paper:before,
.continue-application>div .folder .paper:after {
    content: "";
    width: var(--wp, 14px);
    height: 2px;
    border-radius: 1px;
    transform: scaleY(0.5);
    left: 3px;
    top: var(--tp, 3px);
    position: absolute;
    background: var(--paper-lines);
    box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application>div .folder .paper:after {
    --tp: 6px;
    --wp: 10px;
}

.continue-application>div .pencil {
    height: 2px;
    width: 3px;
    border-radius: 1px 1px 0 0;
    top: 8px;
    left: 105%;
    position: absolute;
    z-index: 3;
    transform-origin: 50% 19px;
    background: var(--pencil-cap);
    transform: translateX(var(--pex, 0)) rotate(35deg);
    transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application>div .pencil:before,
.continue-application>div .pencil:after {
    content: "";
    position: absolute;
    display: block;
    background: var(--b, linear-gradient(var(--pencil-top) 55%, var(--pencil-middle) 55.1%, var(--pencil-middle) 60%, var(--pencil-bottom) 60.1%));
    width: var(--w, 5px);
    height: var(--h, 20px);
    border-radius: var(--br, 2px 2px 0 0);
    top: var(--t, 2px);
    left: var(--l, -1px);
}

.continue-application>div .pencil:before {
    -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
    clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application>div .pencil:after {
    --b: none;
    --w: 3px;
    --h: 6px;
    --br: 0 2px 1px 0;
    --t: 3px;
    --l: 3px;
    border-top: 1px solid var(--pencil-top);
    border-right: 1px solid var(--pencil-top);
}

.continue-application:before,
.continue-application:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: var(--color);
    transform-origin: 9px 1px;
    transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
    top: 26px;
    right: 16px;
    transition: transform 0.3s;
}

.continue-application:after {
    --r: 45deg;
}

.continue-application:hover {
    --cx: 2px;
    --bg: var(--background-hover);
    --fx: -40px;
    --fr: -60deg;
    --fd: .15s;
    --fds: 0s;
    --pbx: 3px;
    --pby: -3px;
    --pbd: .15s;
    --pex: -24px;
}

.selectCategory {
    position: absolute;

    left: 1350px;
    top: 91px;

    width: 513px;
    height: 276px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #27272A;
}

.category {
    position: absolute;
    left: 24px;
    top: 24px;

    width: 139px;
    height: 26px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorTagTitle {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 74px 0;
}

.tag {
    position: absolute;
    left: 24px;
    top: 90px;

    width: 139px;
    height: 26px;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.confronto {
    position: absolute;

    left: 25px;
    top: 130px;

    width: 228px;
    height: 57px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.golpes {
    position: absolute;

    left: 260px;
    top: 130px;

    width: 228px;
    height: 57px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.fofocas {
    position: absolute;

    left: 25px;
    top: 194px;

    width: 228px;
    height: 57px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.fraudes {
    position: absolute;

    left: 260px;
    top: 194px;

    width: 228px;
    height: 57px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.confrontopng {
    position: absolute;

    left: 9px;
    top: 10px;

    width: 36px;
    height: 36px;
}

.golpespng {
    position: absolute;

    left: 9px;
    top: 10px;

    width: 36px;
    height: 36px;
}

.fofocaspng {
    position: absolute;

    left: 9px;
    top: 10px;

    width: 36px;
    height: 36px;
}

.fraudespng {
    position: absolute;

    left: 9px;
    top: 10px;

    width: 36px;
    height: 36px;
}

.tag-confronto {
    position: absolute;
    left: 55px;
    top: 10px;

    width: 98px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tag-fofocas {
    position: absolute;
    left: 55px;
    top: 10px;

    width: 98px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tag-fraudes {
    position: absolute;
    left: 55px;
    top: 10px;

    width: 98px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tag-golpes {
    position: absolute;
    left: 55px;
    top: 10px;

    width: 98px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.selectCategory div[data-tag] {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 6px;
}

.selectCategory div[data-tag]:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.selectCategory div[data-tag].tag-selecionada {
    border-color: #00bcd4;
    background-color: rgba(0, 188, 212, 0.1);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.25);
}

.autor {
    position: absolute;

    left: 1351px;
    top: 379px;

    width: 514px;
    height: 168px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.Author {
    position: absolute;
    left: 24px;
    top: 10px;

    width: 98px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorAuthorTitle {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 55px 0;
}

.InputAutor {
    position: absolute;
    left: 24px;
    top: 86px;
    width: 464px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid #27272A;
    background: #181818;
    color: white;

    padding-left: 24px;
    box-sizing: border-box;
    font-size: 18px;
}

.InputAutor::placeholder {
    color: #71717A;
    font-size: 16px;

    padding-left: 2px;
}

.opAdicionais {
    position: absolute;

    left: 1351px;
    top: 559px;

    width: 514px;
    height: 211px;

    background-color: #141414;
    border-radius: 8px;
    border: 1px solid #262629;
}

.opAdicionaisTitle {
    position: absolute;
    left: 24px;
    top: 10px;

    width: 150px;
    height: 36px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.divisorOpAdicionaisTitle {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #1F1F22;
    margin: 55px 0;
}

.MarcarComoDestaque {
    position: absolute;

    left: 25px;
    top: 80px;
    width: 200px;
    height: 18px;

    color: #fff;
}

.NoticiaUrgente {
    position: absolute;

    left: 25px;
    top: 110px;
    width: 200px;
    height: 18px;

    color: #fff;
}

.PermitirComentarios {
    position: absolute;

    left: 25px;
    top: 140px;
    width: 200px;
    height: 18px;

    color: #fff;
}

.noticias-grid-section {
    margin-top: 750px;
    margin-left: calc(21vw - 260px);
    max-width: 1100px;
    padding: 0 0 100px;
}
.noticias-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #1f1f22;
}

.noticias-grid-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.titulo-live-dot {
    width: 8px;
    height: 8px;
    background: #0084FF;
    border-radius: 50%;
    flex-shrink: 0;
    animation: liveDotsPin 1.8s ease-in-out infinite;
}

@keyframes liveDotsPin {
    0%,  100% { box-shadow: 0 0 0 0 rgba(0, 132, 255, 0.6); }
    55%        { box-shadow: 0 0 0 7px rgba(0, 132, 255, 0); }
}

.noticias-grid-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.ver-todas-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #252528;
    border-radius: 8px;
    color: #0084FF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ver-todas-btn:hover {
    background: rgba(0, 132, 255, 0.08);
    border-color: rgba(0, 132, 255, 0.45);
    color: #3aa0ff;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
}

.noticia-card {
    background: #0f0f0f;
    border: 1px solid #1d1d20;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition:
        transform    0.28s cubic-bezier(.22,.68,0,1.2),
        border-color 0.22s ease,
        box-shadow   0.28s ease;
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.noticia-card__thumb {
    position: relative;
    width: 100%;
    height: 182px;
    overflow: hidden;
    background: #161618;
    flex-shrink: 0;
}

.noticia-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.noticia-card:hover .noticia-card__thumb img {
    transform: scale(1.06);
}

.noticia-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.14) 0%,
        transparent      40%,
        rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
}

.noticia-card__no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #131315 0%, #1c1c1f 100%);
    color: #2e2e32;
}

.noticia-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 3px 9px;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.badge-confronto {
    background: rgba(220, 55, 55, 0.20);
    color: #e85b5b;
    border: 1px solid rgba(220, 55, 55, 0.35);
}
.badge-fofocas {
    background: rgba(200, 140, 30, 0.20);
    color: #d89c30;
    border: 1px solid rgba(200, 140, 30, 0.35);
}
.badge-fraudes {
    background: rgba(50, 110, 230, 0.20);
    color: #5390ee;
    border: 1px solid rgba(50, 110, 230, 0.35);
}
.badge-golpes {
    background: rgba(130, 65, 210, 0.20);
    color: #a270e8;
    border: 1px solid rgba(130, 65, 210, 0.35);
}

.noticia-card__urgente {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #dc2626;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 5px;
    animation: urgenteBlink 1.4s step-end infinite;
}

@keyframes urgenteBlink {
    0%, 100% { opacity: 1;    }
    50%       { opacity: 0.35; }
}

.noticia-card__destaque {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(255, 200, 0, 0.15);
    color: #f5c200;
    border: 1px solid rgba(255, 200, 0, 0.3);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 5px;
}

.noticia-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.noticia-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-card__excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #1a1a1d;
}

.noticia-card__author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #48484f;
}

.noticia-card__author svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.noticia-card__date {
    font-family: 'Inter', sans-serif;
    font-size: 0.69rem;
    color: #38383e;
}

.noticia-card.cat-confronto:hover {
    border-color: rgba(220, 55, 55, 0.35);
    box-shadow: 0 16px 40px rgba(220, 55, 55, 0.07);
}
.noticia-card.cat-fofocas:hover {
    border-color: rgba(200, 140, 30, 0.35);
    box-shadow: 0 16px 40px rgba(200, 140, 30, 0.07);
}
.noticia-card.cat-fraudes:hover {
    border-color: rgba(50, 110, 230, 0.35);
    box-shadow: 0 16px 40px rgba(50, 110, 230, 0.07);
}
.noticia-card.cat-golpes:hover {
    border-color: rgba(130, 65, 210, 0.35);
    box-shadow: 0 16px 40px rgba(130, 65, 210, 0.07);
}

.noticias-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 72px 24px;
    color: #2e2e34;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    text-align: center;
    border: 1px dashed #1e1e22;
    border-radius: 14px;
}

body {
    min-height: 1600px;
}

/* 
======================
======= Footer =======
======================
*/

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 120px;
    background-color: #0A0A0A;
    display: flex;
    justify-content: flex-start;
    z-index: 997;

    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;

    border-top: 1px solid #27272A;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.up {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.down {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.card1 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: #181818;
  border-radius: 90px 5px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.action {
  margin-top: 1em;
  margin-left: 1em;
}

.card2 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: #181818;
  border-radius: 5px 90px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.logoa {
  margin-top: 1.2em;
  margin-left: -.9em;
  fill: #8c9eff;
}

.card2:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #8c9eff;
}

.card3 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: #181818;
  border-radius: 5px 5px 5px 90px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.transfender {
    margin-top: -.9em;
    margin-left: 1.2em;
}

.card3:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card4 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: #181818;
  border-radius: 5px 5px 90px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.action2 {
  margin-top: -.9em;
  margin-left: -.85em;
  fill: #8c9eff;
}

.card1:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card1:hover .instagram {
  fill: white;
}

.card2:hover .twitter {
  fill: white;
}

.card3:hover .github {
  fill: white;
}

.card4:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card4:hover .discord {
  fill: white;
}

.main a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1600px){
    html{
        zoom:.92;
    }
}

@media (max-width:1366px){
    html{
        zoom:.82;
    }
}

@media (max-width:1280px){
    html{
        zoom:.76;
    }
}

@media (max-width:1024px){
    html{
        zoom:.68;
    }
}