body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.font-dominie {
    font-family: "Domine", serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(rgb(232, 232, 232) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: -10px -10px;
    /* Aplica um degradê vertical: transparente no topo, opaco no meio e transparente embaixo */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 50%, transparent);
    z-index: -1;
}


.font-domine {
    font-family: "Domine", serif;
}

@font-face {
    font-family: MontBold;
    src: url(font/montserrat/Montserrat-Bold.otf);
}

@font-face {
    font-family: IntegralCF;
    src: url(font/integral-cf/IntegralCF-Regular.woff);
}

@font-face {
    font-family: "RobotoLight";
    src: url(font/roboto-slab/RobotoSlab-Light.ttf);
}

@font-face {
    font-family: "RobotoRegular";
    src: url(font/roboto-slab/RobotoSlab-Regular.ttf);
}

.font-roboto {
    font-family: RobotoRegular;
}

.font-roboto-light {
    font-family: RobotoLight;
}

.font-montbold {
    font-family: MontBold;
}

.font-integralcf {
    font-family: IntegralCF;
}

.bg-light,
.bg-yellow,
.font-montlight,
.menu-top {
    font-family: MontLight;
}

.maxrender-logo {
    width: 14rem;
    max-width: 30rem;
    min-width: 10rem;
    margin-left: 7%
}

.maxrender-logo-2 {
    overflow: visible;
    position: absolute;
    margin-top: -27px;
    width: 12.5rem;
    max-width: 30rem;
    min-width: 1rem;
}

.m-logo {
    overflow: visible;
    position: absolute;
    margin-top: -17px;
    width: 4rem;
}


.all-blogs-button {
    font-size: 16px;
    font-weight: 500;
    color: #e9e9e9;
    background-color: #2a2a2a;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* mantém o ícone em linha */
.all-blogs-button .material-symbols-outlined{
    display:inline-block;   /* derruba o display:block padrão */
    line-height:1;
    vertical-align:middle;
}
.all-blogs-button:hover {
    background-color: #474747;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #e9e9e9 !important;
    text-decoration: none;
}

.mb-5 {
    margin-bottom: 4rem;
}

.mt-5 {
    margin-top: 4rem;
}

.text-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
}

.all-blogs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    gap: 10px;
    max-width: 100%;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
    border: none;
}

.align-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.zilla-slab-regular {
    font-family: "Zilla Slab", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
}

.f-21 {
    font-size: 21px !important;
}

.f-18 {
    font-size: 18px !important;
}

.text-soft {
    color: #979797;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    padding: 10px 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}


.download-button img {
    width: 200px;
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-button img:hover {
    transform: scale(1.03);
}


@media (max-width: 768px) {
    .download-buttons {
        gap: 10px;

    }

    .download-button img {
        max-width: 152px;
    }
}


.swal2-close {
    outline: none !important;
    box-shadow: none !important;
}

.capa-md {
    width: 13rem;
}


/*Navbar*/
.bg-red {
    background-color: #ff0000 !important;
}

.bg-black {
    background-color: black;
}

.frente {
    position: relative;
}

.btn-custom {
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 22px;
    padding: 7px 14px !important;
}

html {
    scroll-behavior: smooth;
}

.active .nav-link {
    background-color: #E83131 !important;
}

.active,
.side {
    text-decoration: none;
    color: #E83131;
}

a:hover {
    text-decoration: none !important;
    color: #a9a9a9;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #E83131;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #E83131;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.soft {
    color: #737578;
}

a:hover {
    color: #1C1C1C !important;
}

.soft2 {
    color: #a9a9a9;
}

.soft3 {
    color: #2e2f2f;
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.02);
}

.font-14 {
    font-size: 14px !important;
}

.font-12 {
    font-size: 12px !important;
}

/* Pagination - paginação customizada */
.custom-pagination .pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.custom-pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.custom-pagination .page-item a,
.custom-pagination .page-item span {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.custom-pagination .page-item.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.custom-pagination .page-item.active span {
    color: #fff;
}

.custom-pagination .page-item:hover {
    background: #f3f3f3;
}

.custom-pagination .page-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border: none;
}

.custom-pagination .page-item.disabled span {
    color: #aaa;
}

/* Remove o estilo padrão do Bootstrap apenas para nossa paginação */
.custom-pagination .page-link {
    all: unset;
    /* Reseta todas as propriedades herdadas */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

/* Ajusta os botões ativos */
.custom-pagination .page-item.active .page-link {
    background: #111;
    color: #fff;
    border-radius: 50%;
}

/* Ajusta o hover */
.custom-pagination .page-item:hover .page-link {
    background: #f3f3f3;
    border-radius: 50%;

}

.background-red {
    background-color: #E83131 !important;
}

.text-red {
    color: #E83131;
}

.text-dark {
    color: #000000 !important;
}

.none {
    all: unset;
    text-decoration: none !important;
    color: #2a2a2a;
}

.streaming-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #e10404;
}

.text-light {
    color: #fff;
}

.background-dark {
    margin-top: 11px !important;
    background-color: #0c0c0c !important;
    color: #fff !important;
    z-index: -1;
    box-shadow: rgb(40 40 40) 0px 4px 15px -3px;
}


.dropdown-link:hover {
    background-color: #000 !important;
}

.menu-fonts {
    font-weight: 400px;
    font-size: 19px;
}

.dropdown-menu {
    top: 90% !important;
}

.title-medio {
    font-size: 27px;
}

.w-600 {
    font-weight: 600;
}

.bg-title {
    padding: 15px;
    color: #fff;
    border-radius: 5px 32px 32px 32px;
    background-color: #000;
    max-width: 13.666667%;
    -webkit-box-flex: 0;
}

@media (max-width: 768px) {
    .bg-title {
        max-width: 34.666667%;
    }
}

.star {
    margin-top: -4px;
    width: 17px;
}

.icon-play {
    width: 24px !important;
    margin-top: 4px;
}

.sidebar-container-dark {
    background-color: #000000;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-rounded-light {
    background-color: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.btn-rounded-light:hover {
    background-color: #f3f3f3;
}

.close:focus {
    outline: none;
    box-shadow: none;
}

.conteudo-container {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.btn-rounded-dark {
    background-color: #000;
    color: #fff;
    padding: 3%;
    padding-left: 7%;
    padding-right: 7%;
    border-radius: 22px;
    font-size: 14px;
}

.btn-rounded-dark:hover {
    color: #c0c0c0 !important;
}


.community-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.community-member {
    flex: 1 1 calc(50% - 15px);
    /* 2 colunas com espaçamento */
    display: flex;
    gap: 11px;
    align-items: center;
    background: #f8f8f8;
    padding: 13px;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .community-member {
        flex: 1 1 100%;
    }
}

.comunidade-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-wrapper {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

/* REFATORAR isso tem em membros.css*/

/* Estilização de cada membro */
/*.community-member {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    background: #fff;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}*/

.community-member:hover {
    background-color: #f9f9f9;
}

/* Foto do membro */
.member-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    /* Evita distorção */
}

/* Nome e Profissão */
.member-info h3 {
    font-size: 1rem;
    margin: 0;
    color: #222;
}



/* Foto em preto e branco por padrão */
.member-photo {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Quando passar o mouse na foto OU no texto, a imagem volta à cor original */
.community-member:hover .member-photo,
.member-info:hover+.member-photo,
.member-photo:hover {
    filter: grayscale(0%);
}

.sidebar-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;

}

.badge-edicoes{
    
    padding: 3px;
    background: #000000;
    color: white;
    border-radius: 3px 14px;
    padding-left: 12px;
    padding-right: 12px;

}

.spinner-border-white {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
    color: #fff !important;
}
.spinner-border-dark {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid #000;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.login-with-google-btn {
    transition: background-color .3s, box-shadow .3s;

    /* padding: 12px 16px 12px 42px; */
    padding: 10px 12px 10px 42px;
    border-color: #c6c6c6 !important;
    border: solid 1px;
    border-radius: 7px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);

    color: #3b3b3b;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;

    &:hover {
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
    }

    &:active {
        background-color: #eeeeee;
    }

    &:focus {
        outline: none;
        box-shadow:
            0 -1px 0 rgba(0, 0, 0, .04),
            0 2px 4px rgba(0, 0, 0, .25),
            0 0 0 3px #c8dafc;
    }

    &:disabled {
        filter: grayscale(100%);
        background-color: #ebebeb;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
        cursor: not-allowed;
    }
}

.edit-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
}

.btn-icon-outline {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-icon-outline:hover {
    background: #f0f0f0;
}
