/* FONTES */
@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';
@import 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap';
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

div[class^='pagina-'] {
    position: relative;
}

/* PRELOADER ESTILO */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff8c00;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.loading-container {
    text-align: center;
}

/* EFEITO DE PULSAR NO LOGO */
.pulse-logo {
    width: 120px;
    animation: pulse 2s infinite ease-in-out;
    margin-bottom: 30px;
    filter: 
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 15px rgba(255, 140, 0, 0.5));
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* SPINNER CIRCULAR COM PROGRESSO */
.spinner-progress {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.spinner-track {
    width: 100%;
    height: 100%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.spinner-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-top: 5px solid #ff8c00;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
}

.loading-text {
    color: white;
    font-family: 'Roboto', sans-serif;
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



@font-face {
    font-family: "72 Condensed";
    src: url("fontes/72-Condensed.ttf") format("truetype"),
         url("fontes/72-Condensed-full.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

/* RESET E ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    flex-shrink: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

/* LAYOUT PRINCIPAL */
.container {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    width: 100vw;
    position: relative;
}

header{
    background-color: #ebeff7;
    min-height: 80px;
    height: 80px auto;
}

/* MAIN CONTENT */
main {
    box-sizing: border-box;
    display: flex;
    background-color: #ebeff7;
    padding: 0;
    padding-top: 70px;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    flex-direction: column;
    margin-top: 0;
}

.conteudo-principal {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    padding-top: 0;
    overflow-y: auto;
}

/* FOOTER */
.footer {
    z-index: 100;
    display: flex;
    background-color: white;
    color: white;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding: 0;
    letter-spacing: 1px;
    height: 50px;
    contain: content;
    flex-shrink: 0;
}

.footer-esq {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 0;
    padding-left: 10px;
    width: 40%;
    background-color: #022157;
    height: 100%;
    border-radius: 0 10px 10px 0;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.footer-dir {
    white-space: nowrap;
    font-size: 12px;
    display: flex;
    justify-content: right;
    padding-left: 10px;
    padding-right: 10px;
    width: 40%;
    background-color: #022157;
    height: 100%;
    gap: 10px;
    align-items: center;
    border-radius: 10px 0 0 10px;
    box-shadow: -4px 4px 5px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.footer-sponsors-container {
    width: 20%;
    overflow: hidden;
    position: relative;
}

.footer-sponsors {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    left: 0;
}

.footer-sponsors img {
    max-height: 40px;
    width: auto;
    flex-shrink: 0;
}

/* POSTS */
.conteiner-post-botaomais {
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.post-grid {
    padding-top: 5px;
    padding-bottom: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
    overflow-y: auto;
    padding-right: 10px;
    padding-left: 10px;
}

.post-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    min-height: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid #022157;
}

.post-box:hover {
    box-shadow: 0 4px 6px rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-container {
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    display: flex;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.post-content {
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    padding-top: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    margin-top: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #333;
}

.post-description {
    margin-top: 7px;
    font-family: "Roboto";
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-height: calc(1.3em * 4);
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.post-tags {

    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tag {
    background-color: #022157;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* RESULTADOS */
.post_result_grid {
    display: grid;
    grid-template-rows: auto;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 10px;
    overflow: hidden;
}

.resultados-grid {
    padding-top: 10px;
    padding-bottom: 5px;
    display: flex;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-auto-flow: column;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    gap: 10px;
    padding-right: 10px;
    padding-left: 10px;
    scrollbar-width: thin;
}

.box_resul_esc {
    flex: 0 0 330px;
    border: 2px solid #022157;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding-top: 0;
    font-family: "72 Condensed", sans-serif;
    paint-order: stroke fill;
    align-items: center;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.textoesc {
    font-family: "72 Condensed", sans-serif;
    font-size: 3.6rem;
    letter-spacing: -2px;
    font-weight: 800;
}

.textoescver {
    font-family: "72 Condensed", sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.box_esc {
    background-color: white;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
}

.box-resultados {
    background-image: url(../Imagens/fundonovoresultados.png);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.resultadoscentro {
    padding-top: 7px;
    padding-bottom: 5px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.resultadosfundo1 {
    height: auto;
    width: 100%;
    display: flex;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: rgba(255, 233, 233, 0.7);
    color: black;
    padding: 3px;
    margin-top: auto;
    justify-content: center;
}

.resultadosfundo2 {
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    padding: 3px;
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #022157;
}

.conteinerequipa {
    padding-top: 10px;
    border-radius: 10px;
    width: auto;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Roboto";
    font-size: 0.7rem;
    letter-spacing: 0.4px;
    color: white;
    filter: drop-shadow(0 0 5px black);
}

.vs {
    font-family: "72 Condensed", sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    color: white;
    filter: drop-shadow(0 0 5px black);
    -webkit-text-stroke: 1px black;
    paint-order: stroke fill;
    white-space: nowrap;
    margin: 0;
}

.logoequipa {
    filter: 
        drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
    display: flex;
    width: auto;
    height: 40px;
    padding-bottom: 5px;
    align-content: center;
    justify-content: center;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 20px auto;
    border: 1px solid #888;
    width: fit-content;
    max-width: 800px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    min-height: min-content;
    height: auto;
    max-height: none;
    overflow: visible;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1101;
    background: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #000;
}

.modal .post-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: min-content;
    height: auto;
}

.modal .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    height: auto;
    max-height: none;
}

.modal .post-image {
    max-width: 100%;
    max-height: 40vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal .post-content {
    width: 100%;
    min-height: min-content;
    height: auto;
}

.modal .post-description {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 16px;
    max-height: none;
    height: auto;
    overflow: visible;
}

.modal .post-tags {
    margin-top: 20px;
    flex-wrap: wrap;
    display: flex;
    gap: 8px;
}

/* MODAL POST */
.modal-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.modal .image-container {
    position: relative;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.modal .post-image {
    max-width: 100%;
    max-height: 40vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal .post-content {
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal .post-title {
    font-size: 1.4rem;
    color: #022157;
    margin-bottom: 5px;
}

.modal .post-description {
    white-space: pre-line;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    font-family: 'Roboto', sans-serif;
}

.modal .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.close-modal-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #022157;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.close-modal-button:hover {
    background-color: #ff8c00;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-button .play-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #022157 !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.video-play-button .play-link:hover {
    background-color: white;
    transform: scale(1.05);
}

/* BOTÕES */
.btn-areareservada {
    align-items: center;
    justify-content: center;
    font-weight: bold;
    white-space: nowrap;
    height: auto;
    width: 150px;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.load-more-button, .retry-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 150px;
    height: 40px;
}

.load-more-button:hover, .retry-button:hover {
    background-color: #022157;
}

.back-button {
    position: fixed;
    right: 20px;
    bottom: 70px;
    background: #022157;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #ff8c00;
    transform: scale(1.1);
}

/* MENSAGENS */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #d32f2f;
}

.all-loaded-msg {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
}

/* LOADER */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.global-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #022157;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* INSTAGRAM FEED */
.instagram-feed {
    width: 80%;
    height: 100%;
    overflow: hidden;
}

.lightwidget-widget {
    width: auto; 
    height: 100%; 
}

/* RESPONSIVIDADE */
@media (max-width: 767px) {

    .footer-sponsors-container {
        width: 100% !important;
    }
    
    .footer-dir {
        width: fit-content;
        justify-content: space-between;
    }
    
    .footer-esq {
        display: none;
    }


    .back-button {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px 15px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .instagram-link, .close-modal-button {
        width: 100%;
        justify-content: center;
    }
    
    .modal .post-image {
        max-height: 50vh;
    }
}

/* ============ MENU HAMBURGUER ATUALIZADO ============ */
.hamburger-menu {
    display: flex;
    position: fixed;
    top: 20px !important;
    left: 20px !important;
    z-index: 999;
}

.hamburger-btn {
    width: 44px;
    height: 44px;
    background-color: #022157;
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    gap: 6px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-line:nth-child(2) {
    width: 70%;
}
.hamburger-btn.active {
    background-color: #ff8c00;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu {
    display: none;
    position: fixed;
    top: 80px !important;
    left: 20px !important;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 280px;
    z-index: 1000;
    overflow: hidden;
    transform-origin: top left;
    animation: fadeInMenu 0.3s ease-out;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.btn {
    padding: 14px 20px;
    color: #022157;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #f5f7ff;
    color: #ff8c00;
}

.dropdown {
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown.active {
    max-height: 1000px;
}

.dropdown li a {
    padding: 12px 20px 12px 40px;
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown li a:hover {
    background-color: #f0f0f0;
    color: #022157;
}

.menu-toggle::after, .submenu-toggle::after {
    content: '›';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.menu-item.active > .menu-toggle::after {
    transform: rotate(90deg);
    color: #ff8c00;
}

.menu-item1 .btn {
    background-color: #022157;
    color: white !important;
    text-decoration: none !important;
    font-weight: 700;
}

.menu-item1 .btn:hover {
    background-color: #e67e00;
}

@media (max-width: 767px) {


    .menu {
        top: 80px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: 100%;
    }

    .hamburger-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    main{
        padding-top: 20px;
    }
}

/* BANNER */
.hero-banner {
    width: 100%;
    height: 200px; 
    background-image: url('../imagens/textura.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(21, 57, 126, 0.5);
}

.triangulo {
      position: absolute;
      width: 150px;
      height: 200px;
      overflow: hidden;
    }

.triangulo img {
      width: 170%;
      height: 170%;
      object-fit:fill;
    }

.triangulo.esquerdo img {
  transform: scaleX(-1); /* Espelha horizontalmente */
}

.esquerdo {
      bottom: 0;
      left: 0;
      clip-path: polygon(0 100%, 100% 100%, 0 0);
    }

    /* Triângulo inferior direito */
.direito {
      bottom: 0;
      right: 0;
      clip-path: polygon(100% 100%, 100% 0, 0 100%);
    }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    text-shadow:
        /* sombra interna leve */
        -1px   -1px 1px rgba(0, 0, 0, 0.8),

        /* contorno fino laranja */
        -1.5px -1.5px 0 #f77f00,
         1.5px -1.5px 0 #f77f00,
        -1.5px  1.5px 0 #f77f00,
         1.5px  1.5px 0 #f77f00,


        /* rebordo 3D  (efeito volume) */
        1px 1px 0 #023986,
        3px 2px 0 #023986,
        5px 3px 0 #023986,
        
        1px 1px 0 #023986,
        2px 3px 0 #023986,
        3px 5px 0 #023986,
        
        /* sombra preta profunda */
         7px 7px 8px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.5s ease-in-out;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF8C00;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #E67E00;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*scroll personalisado*/
#dynamic-content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

#dynamic-content::-webkit-scrollbar-track {
    background: transparent;
}

#dynamic-content::-webkit-scrollbar-thumb {
    background: rgba(2, 33, 87, 0.3);
    border-radius: 4px;
}

#dynamic-content::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 33, 87, 0.5);
}

#dynamic-content {
    overflow-anchor: none;
    scroll-margin-top: 0 !important;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 33, 87, 0.3) transparent;
}

/* MODAL INSCRIÇÃO */
.modal.inscricao-modal {
    align-items: flex-start;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.85);
}

.inscricao-modal-content {
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    margin: 20px auto;
    overflow-y: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    position: relative;
}

#inscricaoModal .modal-scrollable {
    padding: 25px;
    max-height: calc(90vh - 50px);
    overflow-y: auto;
}

#inscricaoModalContent {
    padding-bottom: 20px;
}

#inscricaoModalContent .club5basket-container {
    padding-bottom: 0;
    margin: 0 auto;
    box-shadow: none;
}

.inscricao-modal-content .close-modal {
    color: #022157;
    font-size: 32px;
    font-weight: bold;
    top: 5px;
    right: 15px;
    transition: color 0.3s;
}

.inscricao-modal-content .close-modal:hover {
    color: #ff8c00;
}

@media (max-width: 767px) {
    .modal.inscricao-modal {
        padding: 10px 0;
        align-items: center;
    }
    
    .inscricao-modal-content {
        width: 98%;
        margin: 10px auto;
        max-height: 95vh;
    }
    
    #inscricaoModal .modal-scrollable {
        padding: 15px;
        max-height: calc(95vh - 30px);
    }
    
    #inscricaoModalContent {
        padding-bottom: 15px;
    }
}

.redessociais {
    position:fixed;
    top: 20px;
    right: 20px; 
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 1000;
}

.box-icone {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #ffffff;
    border: 2px solid #002B5B;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        rgba(0, 0, 0, 0.5) 2px 2px 6px,
        rgba(255, 255, 255, 0.2) -2px -2px 6px;
}

@media (max-width: 767px) {
    .box-icone {
        padding-left: 0;
        padding-right: 0;
        min-width: 30px;
        height: 30px;
        border-radius: 7px;
    }
                
    .redessociais {
        position:fixed;
        top: 7px;
        right: 7px; 
        display: flex;
        flex-direction: row;
        gap: 2px;
        z-index: 1000;
    }
    
    .hamburger-menu {
        top: 7px !important;
        left: 7px !important;
    }
}

.box-icone:hover {
    background-color: #002B5B;
}

.box-icone:hover .icone-redes {
    color: #ffffff;
}

.icone-redes {
    font-size: 1.2rem;
    color: #002B5B;
    transition: color 0.3s ease;
}

.logo {
    z-index: 1000;
    display: flex;
    justify-content: center; 
    align-items: center;     
    width: 120px;
    height: fit-content;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin: 0;
    padding-top: 20px;
}

.logo img{
    padding: 0;
    margin: 0;
    display:flex;
    width: 110px;
    height: auto;
    z-index: 999;  
    filter: 
        brightness(10000%)
        drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
}

.logo1 {
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: fit-content;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin: 0;
    padding-top: 20px;
}

.logo1 img{
    padding-top: 5px;
    margin: 0;
    display:flex;
    width: 100px;
    height: auto;
    z-index: 1000;  
}

.redessociais > :nth-child(1){
    margin-right: 40px;
}

.tagredessociais {
    text-transform: uppercase;
    padding-right: 5px;
    font-size: 0.8rem;
    align-content: center;
    font-weight: bold;
}



/* DIMINUIÇÃO DO LOGO */

/* Imagem reduzida */

.logo.scrolled{
    width: 60px;
    padding-top: 10px;

}

.logo.scrolled img {
    width: 60px;
}

.logo1.scrolled {
    width: 55px;
    padding-top: 7.5px;
}

.logo1.scrolled img {
    width: 55px;
}


.logo img, .logo1 img {
    transition: all 0.5s ease; /* Transição para a imagem */
}

.logo, .logo1 {
    transition: all 0.5s ease;
}

@media (max-width: 767px) {
    
    
    header {
        min-height: 55px;
        height: 55px auto;
    }
    
    .redessociais > :nth-child(1) {
        margin-right: 10px;
    }
    
    .logo {
        width: 55px;
        padding-top: 7px;
    }

    .logo img {
        width: 55px;
    }
    
    .logo1 {
        width: 50px;
        padding-top: 7px;
    }
    
    .logo1 img {
        width: 50px;
        padding-top: 2.5px;
    }
    
    .logo.scrolled{
    width: 42px;
    padding-top: 5px;

}

.logo.scrolled img {
    width: 42px;
}

.logo1.scrolled {
    width: 38px;
    padding-top: 4.5px;
}

.logo1.scrolled img {
    width: 38px;
}


.logo img, .logo1 img {
    transition: all 0.5s ease; /* Transição para a imagem */
}

.logo, .logo1 {
    transition: all 0.5s ease;
}
}

@media (max-width: 900px) {
    .tagredessociais {
        display: none;
    }
}