/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: none;
    font-weight: 300;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Cores */
:root {
    --azul-escuro: #010151;
    --azul-medio: #05009a;
    --azul-claro: #00183b;
    --dourado: gold;
    --branco: #fff;
    --fundo: #fffbf5;
}

/* SCROLLBAR STYLE APPLE/GLASS */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: 
        linear-gradient(45deg, rgb(0, 4, 36) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(0, 4, 36) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(0, 4, 36) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 4, 36, 0.979) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgb(5, 0, 154);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(2px);
}

/* Para Firefox */
* {
    scrollbar-color: rgba(5, 0, 154, 0.688) rgba(255, 255, 255, 0.1);
}

/* Fontes Personalizadas */
@font-face {
    font-family: 'Lemon-Milk';
    src: url('../fonts/LEMONMILK-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bienale-medium';
    src: url('../fonts/Demo_Fonts/Fontspring-DEMO-biennale-medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bie-bold';
    src: url('../fonts/Demo_Fonts/Fontspring-DEMO-biennale-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Transições suaves em elementos durante o scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de parallax */
.parallax {
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* Indicador visual durante o scroll */
body.is-scrolling {
    cursor: grabbing;
}

/* Suavidade extra para elementos específicos */
.hero-content,
.info-txt,
.info-txt-3 {
    will-change: transform, opacity;
}

/* Easing personalizado para diferentes elementos */
.ease-out-cubic {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.ease-out-expo {
    transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

/* Estrutura Base */
html, body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--fundo);
}

#page-body {
    width: 100%;
    height: auto;
    background-color: rgb(232, 232, 232);
    animation: opacidade 2s ease-in;
    scroll-behavior: smooth;
}

@keyframes opacidade {
    0% { opacity: 0%; background-color: black; }
    50% { opacity: 50%; background-color: black; }
    100% { opacity: 100%; background-color: var(--fundo); }
}

/* Overlay de carregamento */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00183b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.5s ease;
}

#loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#loading-overlay #container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #00183b;
}

#loading-overlay #container img {
    width: 20%;
    height: auto;
    margin: auto;
    z-index: 3;
    position: relative;
    animation: logoAnimacao 5s ease-in-out forwards;
}

@keyframes logoAnimacao {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

#loading-overlay #container p {
    width: auto;
    height: auto;
    position: absolute;
    margin-left: 42%;
    font-size: 10rem;
    z-index: 1;
    color: gold;
    font-family: 'Lemon-Milk';
    background-color: transparent;
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    animation: revealText 2s ease-out 2s forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        clip-path: inset(0 0 0 100%);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Classe para bloquear scroll */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Header */
/* Header - VERSÃO CORRIGIDA E RESPONSIVA */
.header {
    width: 70%;
    height: auto;
    min-height: 80px;
    display: flex;
    gap: 20px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    
    /* EFEITO LIQUID GLASS APPLE */
    background: rgba(225, 225, 225, 0.045);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.057);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.366),
        inset 0 1px 0 rgba(255, 255, 255, 0.349),
        inset 0 -1px 0 rgba(0, 0, 0, 0.072);
    
    position: fixed;
    top: 4vh;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 999999;
    padding: 15px 30px;
    animation: slideDown 3s ease-in-out forwards;
    transition: all 0.5s ease;
}

.header:hover {
    background: rgba(255, 255, 255, 0.039);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.188),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

/* Container do logo - ajustado para responsividade */
.logo-container {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.logo1 {
    height: 35px;
    width: auto;
    display: block;
    filter: invert(1) brightness(10);
    transition: 0.5s;
}

.logo-container h1 {
    margin: 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: "Lemon-milk";
    color: gold;
    white-space: nowrap;
    transition: color 0.5s ease;
}

/* Navbar para desktop */
.navbar {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar li {
    position: relative;
}

.navbar li a {
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 12px;
}

.navbar li a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -5px;
    height: 2px;
    background-color: var(--dourado);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.navbar li a:hover::after {
    transform: scaleX(1);
}

#li-sidney {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 150px;
    height: 40px;
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    background: rgba(179, 179, 179, 0.056);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.057);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 1s ease;
}

#li-sidney:hover {
    background: rgba(255, 255, 255, 0.039);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.476),
        inset 0 1px 0 rgba(255, 255, 255, 0.286),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.txt-li {
    position: relative;
    color: white;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-family: 'Lemon-milk';
    text-align: center;
    z-index: 1;
    transition: color 0.5s ease;
}

/* Menu Mobile - OCULTO NO DESKTOP */
.mobile-menu {
    display: none;
}

.close-menu {
    display: none;
}

.logo-no-menu {
    display: none;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */

/* Tablets */
@media (max-width: 1190px) {
    .header {
        width: 80%;
        min-height: 70px;
        padding: 12px 25px;
        gap: 15px;
    }
    
    .logo1 {
        height: 30px;
    }
    
    .logo-container h1 {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    
    .navbar {
        gap: 15px;
    }
    
    .navbar li a {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
        padding: 6px 10px;
    }
    
    #li-sidney {
        min-width: 130px;
        height: 35px;
        padding: 8px 16px;
    }
    
    .txt-li {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
    }
}

/* Tablets Pequenos e Mobile Grande */
@media (max-width: 768px) {
    .header {
        width: 96%;
        min-height: 65px;
        padding: 10px 20px;
        gap: 12px;
    }
    
    .logo1 {
        height: 28px;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-container h1 {
        font-size: 1.2rem;
    }
    
    .navbar {
        gap: 12px;
    }
    
    .navbar li a {
        font-size: 0.85rem;
        padding: 5px 8px;
    }
    
    #li-sidney {
        min-width: 120px;
        height: 32px;
        padding: 6px 14px;
    }
    
    .txt-li {
        font-size: 0.85rem;
    }
}

/* Mobile - Menu Hamburguer */
@media (max-width: 640px) {
    .header {
        width: 98%;
        min-height: 60px;
        padding: 8px 15px;
        justify-content: space-between;
    }
    
    /* Esconde navbar normal no mobile */
    .navbar {
        display: none;
    }
    
    /* Mostra botão do menu mobile */
    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        padding: 8px;
        z-index: 1000000;
        transition: color 0.3s ease;
    }
    
    .mobile-menu:hover {
        color: gold;
    }
    
    /* Ajusta logo para mobile */
    .logo-container h1 {
        font-size: 1.1rem;
    }
    
    .logo1 {
        height: 25px;
    }
    
    /* Menu mobile expandido */
    .navbar.mobile-active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999998;
        padding: 20px;
    }
    
    .navbar.mobile-active li {
        width: 80%;
        text-align: center;
    }
    
    .navbar.mobile-active li a {
        font-size: 1.3rem;
        padding: 15px;
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .navbar.mobile-active li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .navbar.mobile-active #li-sidney {
        width: 80%;
        height: 50px;
        margin-top: 20px;
    }
    
    .navbar.mobile-active .txt-li {
        font-size: 1.2rem;
    }
    
    /* Botão fechar no menu mobile */
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        z-index: 999999;
        background: none;
        border: none;
        padding: 10px;
    }
    
    .close-menu:hover {
        color: gold;
    }
    
    /* Logo no menu mobile */
    .logo-no-menu {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    .logo-no-menu img {
        height: 35px;
        filter: invert(1) brightness(10);
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .header {
        width: 99%;
        min-height: 55px;
        padding: 6px 12px;
    }
    
    .logo-container h1 {
        font-size: 1rem;
    }
    
    .logo1 {
        height: 22px;
    }
    
    .mobile-menu {
        font-size: 1.3rem;
        padding: 6px;
    }
    
    .navbar.mobile-active li {
        width: 90%;
    }
    
    .navbar.mobile-active li a {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .navbar.mobile-active #li-sidney {
        width: 90%;
        height: 45px;
    }
    
    .navbar.mobile-active .txt-li {
        font-size: 1.1rem;
    }
}

/* Mobile Muito Pequeno */
@media (max-width: 360px) {
    .header {
        min-height: 50px;
        padding: 5px 10px;
    }
    
    .logo-container {
        gap: 5px;
    }
    
    .logo-container h1 {
        font-size: 0.9rem;
    }
    
    .logo1 {
        height: 20px;
    }
    
    .mobile-menu {
        font-size: 1.2rem;
    }
}

/* Garantir que o header sempre tenha padding suficiente */
@media (min-width: 1920px) {
    .header {
        width: 80%;
        max-width: 1400px;
        padding: 20px 40px;
    }
}

/* Animações */
@keyframes slideDown {
    0% { 
        transform: translateX(-50%) translateY(-100%); 
    }
    100% { 
        transform: translateX(-50%) translateY(0); 
    }
}

/* Suporte para navegadores sem backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .header {
        background: rgba(0, 4, 36, 0.9);
    }
}

#li-sidney {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    position: relative;
    padding: 10px;
    border-radius: 10px;
    color: white;
    background: rgba(179, 179, 179, 0.056);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.057);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 1s ease;
}

#li-sidney:hover {
    background: rgba(255, 255, 255, 0.039);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.476),
        inset 0 1px 0 rgba(255, 255, 255, 0.286),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.txt-li {
    position: relative;
    color: white;
    font-size: 0.2px;
    font-family: 'Lemon-milk';
    text-align: center;
    z-index: 1;
    transition: color 0.5s ease;
}

#li-sidney:hover .txt-li {
    color: var(--branco);
}

.logo-no-menu{
    display: none;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
}

.close-menu {
    display: none;
}

.divap {
    display: none;
    width: 100%;
    height: 5vh;
    top: 10%;
    padding: 0.5%;
    position: absolute;
    text-align: center;
    justify-content: center;
    align-content: center;
    transition: 2s;
    cursor: pointer;
    animation: slideDown 3s ease forwards;
    background-color: #178ba4;
    z-index: 5;
}

.divap:hover {
    background-color: #0a0174;
}

.divap h2 {
    color: var(--branco);
    text-decoration: none;
    font-size: 1.2rem;
    align-content: center;
    justify-content: center;
}

/* Banner Hero */
.hero-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
    border: solid gold 10px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}

.hero-img-2 {
    display: none;
}

.hero-imgmobile{
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    text-align: center !important;
    flex-direction: column;
    justify-content: center;
    margin-top: 18%;
    align-items: center;
    padding: 0 5%;
    color: white;
}

.hero-cel {
    display: none;
}

#buttons {
    width: auto;
    height: auto;
    display: flex;
    margin: 0;
    gap: 30px;
    text-align: center;
    align-content: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    display: flex;
    color: white;
    text-transform: uppercase;
    margin-top: -5%;
    text-align: center !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
    justify-content: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
    margin-top: 2vh;
    text-align: center;
}

.hero-subtitle strong {
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* BOTÕES COM EFEITO LIQUID GLASS */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin: 0px;
    
    /* EFEITO LIQUID GLASS */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: var(--branco);
    font-size: 1.2rem;
    font-family: 'Bienale-medium';
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1;
    padding: 0px 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-button p {
    position: relative;
    z-index: 2;
    margin: 0;
    transition: color 0.3s ease;
}

.em-breve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin: 0px;
    padding: 0px 50px;

    
    /* EFEITO LIQUID GLASS */
    background: rgba(61, 61, 61, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: var(--branco);
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
}

.em-breve:hover {
    background: rgba(61, 61, 61, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* EFEITO LIQUID GLASS */
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: white;
    border: none;
    cursor: pointer;
    padding: 16px;
    font-size: 24px;
    z-index: 3;
    transition: all 0.5s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.antes {
    left: 10px;
    border-radius: 0 5px 5px 0;
}

.proximo {
    right: 10px;
    border-radius: 5px 0 0 5px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: white;
}

/* Seta de Rolagem */
#arrow {
    width: 40px;
    height: 40px;
    border-left: 6px solid white;
    border-bottom: 6px solid white;
    transform: rotate(-45deg);
    animation: bounce-vertical 1.5s infinite;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    z-index: 9999;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

@keyframes bounce-vertical {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-45deg); }
    50% { transform: translateX(-50%) translateY(10px) rotate(-45deg); }
}

#scroll-arrow.hidden #arrow {
    opacity: 0;
    pointer-events: none;
}

/* CORREÇÃO DO PLAYER DE RÁDIO - PARTE CRÍTICA */
.radio-player {
    position: fixed;
    top: 30vh;
    right: -250px; /* Escondido por padrão */
    width: 250px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.182),
        inset 0 1px 0 rgba(255, 255, 255, 0.361),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);   
    border-radius: 10px;
    padding: 20px 15px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: right 0.5s ease;
}

.radio-player.active {
    right: 20px; /* Aparece quando ativo */
}

/* Botão de toggle CORRIGIDO */
.radio-toggle-btn {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 80px;
    
    /* EFEITO LIQUID GLASS */
    background: rgba(255, 255, 255, 0.231);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.114);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.347),
        inset 0 1px 0 rgba(255, 255, 255, 0.217),
        inset 0 -1px 0 rgba(0, 0, 0, 0.206);
    
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    border: none;
}

.radio-toggle-btn:hover {
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.radio-toggle-btn img {
    width: 40px;
    height: 50px;
    filter: invert(1);
    transition: transform 0.5s ease;
}

/* Rotação da seta quando o player está ativo */
.radio-player.active ~ .radio-toggle-btn img,
.radio-toggle-btn img.rotated {
    transform: rotate(180deg);
}

/* Título do rádio */
.radio-player .title-radio {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.radio-player .title-radio h2 {
    font-size: 1.3rem;
    color: #ffffff91;
    margin: 0;
    font-family: 'Lemon-Milk', sans-serif;
}

/* Conteúdo do player */
#titulo-musica {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #333;
}

.controles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.controles button {
    background: rgba(5, 0, 154, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: var(--branco);
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controles button:hover {
    background: rgba(0, 72, 255, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.controles button img {
    width: 15px;
    height: 15px;
    filter: invert(1);
}

.controles #prev img{
    transform: scaleX(-1);
}

/* Seção 3 - Projetos */
#sec-3 {
    width: 100%;
    height: auto;
    margin-top: 0%;
    background: linear-gradient(to right, #000424, #05009a);
    padding: 10px;
    position: relative;
}

/* ESTILOS ESPECÍFICOS DO CARROSSEL DE VÍDEOS */
.video-showcase-wrapper {
    position: relative;
    max-width: 1400px;
    width: 95%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.video-showcase-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.video-showcase-item {
    min-width: 100%;
    display: none;
    position: relative;
}

.video-showcase-item.video-showcase-active {
    display: block;
}

.video-showcase-element {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 1400/620;
    object-fit: cover;
}

.video-container-custom {
    position: relative;
    width: 100%;
    padding-bottom: 77.14%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container-custom .video-showcase-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botões de navegação do carrossel */
.video-showcase-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.5s ease;
    z-index: 10;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-showcase-nav-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.video-showcase-prev-btn {
    left: 15px;
}

.video-showcase-next-btn {
    right: 15px;
}

/* Indicadores de posição */
.video-showcase-position-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.video-showcase-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-showcase-indicator.video-showcase-indicator-active {
    background-color: white;
    transform: scale(1.2);
    border-color: white;
}

.container-img-2 {
    width: auto;
    height: auto;
    position: relative;
    padding: 0% 0% 2%;
    background-color: transparent;
}

.btn-ver-todos {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffffb4 !important;
    border: none !important;
    text-decoration: none;
    background: #ffffff09 !important;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ver-todos:hover {
    background: #ffffff00 !important;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: none !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.188),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.info-txt {
    width: 100%;
    height: auto;
    display: flex;
    padding: 0 2%;
    flex-direction: column;
}

.info-txt h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: white;
    text-align: center;
    font-family: 'Bienale-medium';
    margin-bottom: 20px;
    margin: 50px;
}

.info-txt span, .info-txt b {
    color: #1688da;
    font-family: 'Bie-bold';
}

.info-txt .valor {
    color: gold;
    position: relative;
    top: 3vh;
    left: 2vh;
    display: inline-block;
    overflow: hidden;
}

.info-txt .valor::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    bottom: -5px;
    height: 20px;
    width: 0;
    background-color: white;
    animation: underlineGrow 3s ease forwards 3s infinite;
}

@keyframes underlineGrow {
    0% { width: 0%; }
    30% { width: 100%; }
    70% { width: 100%; }
    100% { width: 0%; }
}

#pro-container {
    width: 100%;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 2%;
    margin: auto;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    background-color: #f0f0f0;
    color: #00183b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.filter-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--azul-claro), var(--azul-medio));
    color: white;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 80%;
    margin: 0 auto !important;
    padding: 0;
}

.project-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    width: auto;
    height: 320px;
    border: none;
    margin: 0;
}

.project-card:hover {
    z-index: 10;
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border: none;
}

.project-card:hover .project-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: left;
    border: none;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

.overlay-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.project-title {
    display: none;
}

.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    width: 70%;
    position: relative;
    animation: modalFadeIn 0.4s ease;
    margin: 2% auto;
    max-height: 90vh;
    overflow-y: auto;
    border: none;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.close-modal:hover {
    background: #333;
    color: white;
    transform: rotate(90deg);
}

.file-viewer {
    width: 100%;
    height: 500px;
    border: none;
    margin: 1rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.btn-mais {
    text-align: center;
    margin: 20px 0;
}

.btn-ver-todos {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: #000424;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.5s ease;
    cursor: pointer;
}

.btn-ver-todos:hover {
    background: rgba(6, 2, 110, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border: solid white 1px;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Seção 4 - Sobre */
#sec-4 {
    width: 100%;
    height: auto;
    background-color: rgb(232, 232, 232);
    position: relative;
}

.container-img-3 {
    width: auto;
    height: auto;
    position: relative;
    padding:0%;
    background-color: transparent;
}

.info-txt-3 {
    width: 100%;
    height: auto;
    display: flex;
    padding: 0 2%;
    flex-direction: column;
}

.info-txt-3 h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--azul-claro);
    text-align: center;
    font-family: 'Bienale-medium';
    margin-bottom: 20px;
    margin: 50px;
}

.info-txt-3 span, .info-txt-3 b {
    color: var(--azul-escuro);
    font-family: 'Bie-bold';
}

.info-txt-3 .valor-3 {
    color: var(--azul-escuro);
    position: relative;
    top: 3vh;
    left: 2vh;
    display: inline-block;
    overflow: hidden;
}

.info-txt-3 .valor-3::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    bottom: -5px;
    height: 20px;
    width: 0;
    background-color: var(--dourado);
    animation: underlineGrow 3s ease forwards 3s infinite;
}

.container-contato {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #0900b5, #000748);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: auto;
}

.secao-contato {
    padding: 40px 0;
}

.titulo-contato {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.descricao-contato {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgb(196, 194, 248);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.conteudo-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.info-contato {
    width: 100%;
    max-width: 600px;
}

.info-contato h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgb(228, 231, 255);
    position: relative;
    padding-bottom: 10px;
}

.info-contato h3:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: gold;
    border-radius: 3px;
}

.item-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.item-info:hover {
    transform: translateY(-5px);
}

.icone-contato {
    width: 50px;
    height: 50px;
    background-color: gold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icone-contato i{
    color: #000748;
}

.detalhes-contato h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.detalhes-contato p {
    color: #d0d1fc;
}

.redes-sociais-contato {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

.link-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(85, 85, 85, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.link-social:hover {
    background: rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.conteiner-principal {
    width: 90%;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0% 0%;
    margin: auto;
}

.cabecalho-sobre {
    text-align: center;
    margin-bottom: 60px;
}

.cabecalho-sobre h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    font-family: 'Lemon Milk', sans-serif;
    display: inline-block;
    animation: afastaesq 2s ease-in-out infinite;
}

@keyframes afastaesq {
    0% {
        transform: translateX(0);
        letter-spacing: normal;
    }
    50% {
        transform: translateX(-30px);
        letter-spacing: 2px;
    }
    100% {
        transform: translateX(0);
        letter-spacing: normal;
    }
}

@keyframes afastadir {
    0% {
        transform: translateX(0);
        letter-spacing: normal;
    }
    50% {
        transform: translateX(30px);
        letter-spacing: 2px;
    }
    100% {
        transform: translateX(0);
        letter-spacing: normal;
    }
}

.cabecalho-sobre h1 span {
    color: var(--azul-medio);
    font-family: 'Lemon Milk', sans-serif;
    animation: afastadir 2s ease-in-out infinite;
    display: inline-block;
}

.detalhe-linha-dourada {
    height: 3px;
    width: 100px;
    background: var(--dourado);
    margin: 0 auto 20px;
    position: relative;
}

.detalhe-linha-dourada:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--dourado);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cabecalho-sobre h2 {
    font-size: 1.5rem;
    color: var(--azul-medio);
    font-weight: 400;
    letter-spacing: 2px;
}

.btn-cur {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(5, 0, 154, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.5s ease;
}

.btn-cur:hover {
    background: rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-cur p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: "Lemon-milk";
    font-style: normal;
    color: white;
    transition: color 0.3s ease;
}

.btn-cur:hover p {
    color: var(--azul-medio);
}

#card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.card {
    position: relative;
    width: 1000px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 25px;
    box-sizing: border-box;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    color: white;
    transition: all 0.4s ease;
}

.card:hover .card-content {
    background: rgba(0, 0, 0, 0.85);
    padding-top: 15px;
}

.card-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.card-description {
    font-size: 1em;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-bottom 0.4s ease;
}

.card:hover .card-description {
    max-height: 100px;
    margin-bottom: 20px;
}

.card-button {
    background: linear-gradient(to right, gold, rgb(255, 119, 0));
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card:hover .card-button {
    opacity: 1;
    transform: translateY(0);
}

.card-button:hover {
    background: linear-gradient(to right,  gold, rgb(255, 183, 0));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
}

/* Seção 5 - Contato */
#sec-5 {
    width: 100%;
    height: auto;
    padding: none;
    margin: auto;
}

.contato-container {
    max-width: 800px;
    margin: 0 auto;
}

.contato-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.contato-container p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.contato-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contato-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: background 0.3s ease;
}

.contato-links a img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.contato-links .email {
    background: #D44638;
}

.contato-links .email:hover {
    background: #bb3c2f;
}

/* Rodapé */
.footer {
    background-color: #01003f;
    color: white;
    padding: 70px 300px 0;
    border: none;
    border-left: none;
    border-right: none;
    border-top: solid gold 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: gold;
}

.footer-logo p {
    color: #aaa;
}

#links-sociais {
    display: flex;
    gap: 200px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: gold;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: gold;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(51, 51, 51, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: white;
    text-decoration: none;
    transition: all 0.5s ease;
}

.social-icons a:hover {
    background: rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #00183b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

footer .copy {
    color: rgba(255, 255, 255, 0.728);
    text-decoration: none;
    transition: 1.2s;
}

footer .copy:hover {
    color: #FFEB3B;
}

/* Media Queries para Responsividade */
@media (max-width: 1431px) {
    .hero-subtitle{
        display: none;
    }
}
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    
    #arrow {
        display: none;
    }
    
    .header {
        width: 90%;
        justify-content: space-between;
        height: 100px;
        padding: 0 20px;
        border: none;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    
    .overlay {
        position: fixed;
        top: -10vh;
        left: -10vh;
        width: 100vh;
        height: 120vh;
        background-color: rgba(0, 0, 0, 0.711);
        z-index: 999998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -120%;
        width: 100%;
        height: 90vh;
        border-radius: 20px;
        border: solid rgba(255, 255, 255, 0.162) 2px ;
        background-color: rgba(40, 62, 189, 0.261);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 0px;
        transition: right 0.5s ease;
        z-index: 999999;
    }

    .navbar.active {
        right: 0;
    }

    .navbar li{
        width: 90%;
        display: flex;
        text-align: center;
        top: -5%;
        border-radius: 10px;
        align-items: center;
        align-content: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.815) !important;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgb(255, 179, 0);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.145),
            inset 0 1px 0 rgba(255, 255, 255, 0.158),
            inset 0 -1px 0 rgba(0, 0, 0, 0.175);
        
        padding: 10px;
    }
    
    .navbar li a {
        display: flex;
        font-size: 2rem;
        text-align:center;
        text-transform: capitalize;
        color: var(--azul-medio);
        cursor: pointer;
    }

    .txt-li {
        position: relative;
        color: #000748;
        font-size: 0.2px;
        font-family: 'Lemon-milk';
        text-align: center;
        z-index: 1;
        transition: color 0.5s ease;
    }
    
    .mobile-menu {
        display: block;
        transition: color 0.3s ease !important;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
    }
    
    .close-menu {
        display: flex;
        margin-right: 20px;
        justify-content: flex-end;
        width: 10% !important;
        margin-top: 10px !important;
        padding: 20px;
        background: none !important;
        border: 2px solid rgb(255, 179, 0) !important;
        box-shadow: none !important;
        margin-left: auto;
        align-self: flex-end;
    }

    .close-menu i {
        font-size: 2rem !important;
        color: rgb(176, 0, 0) !important;
        cursor: pointer;
        background: none !important;
    }
    
    .divap {
        width: 100%;
        height: 5vh;
        top: 9.6vh;
        position: absolute;
        text-align: center;
        align-content: center;
        transition: 2s;
        cursor: pointer;
        transform: translateY(-100%);
        animation: slideDown 3s ease forwards;
        background-color: #178ba4;
        z-index: 5;
    }
    
    .hero-banner {
        width: 100%;
        height: 100vh !important;
        position: relative;
        overflow: hidden;
        background-color: #000;
        border: solid gold 10px;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    
    .hero-img {
        display: block;
    }
    
    .hero-img-2 {
        display:none;
        position: absolute;
        top: 0;
        left: 0;
        justify-content: center;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        z-index: 1;
    }
    
    .hero-title {
        display: none;
    }
 
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 600px;
        margin-bottom: 40px;
        line-height: 1.4;
        margin-top: 2vh;
        text-align: center;
    }

    .hero-subtitle strong {
        font-weight: bold;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }

    .hero-cel {
        display: block;
    }
    
    .hero-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38%;
        height: 40px;
        margin:  0% !important;
        margin-top: 20vh !important;
        font-size: 1rem;
        font-family: 'Bienale-medium';
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: color 0.5s ease-in-out, transform 1s ease;
        z-index: 1;
    }
    
    .em-breve {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        margin-top: 20vh !important;
        height: 42px;
        color: var(--branco);
        font-size: 0.2rem;
        font-family: 'Bienale-medium';
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: color 0.5s ease-in-out, transform 1s ease;
        z-index: 1;
    }


    /* CORREÇÃO DO PLAYER DE RÁDIO - PARTE CRÍTICA */
.radio-player {
    position: fixed;
    top: 20vh;
    right: -250px; /* Escondido por padrão */
    width: 250px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.182),
        inset 0 1px 0 rgba(255, 255, 255, 0.361),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);   
    border-radius: 10px;
    padding: 20px 15px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: right 0.5s ease;
}

.radio-player.active {
    right: 20px; /* Aparece quando ativo */
}

/* Botão de toggle CORRIGIDO */
.radio-toggle-btn {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 80px;
    
    /* EFEITO LIQUID GLASS */
    background: rgba(255, 255, 255, 0.231);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.114);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.347),
        inset 0 1px 0 rgba(255, 255, 255, 0.217),
        inset 0 -1px 0 rgba(0, 0, 0, 0.206);
    
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    border: none;
}

.radio-toggle-btn:hover {
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.radio-toggle-btn img {
    width: 40px;
    height: 50px;
    filter: invert(1);
    transition: transform 0.5s ease;
}

/* Rotação da seta quando o player está ativo */
.radio-player.active ~ .radio-toggle-btn img,
.radio-toggle-btn img.rotated {
    transform: rotate(180deg);
}

/* Título do rádio */
.radio-player .title-radio {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.radio-player .title-radio h2 {
    font-size: 1.3rem;
    color: #ffffff91;
    margin: 0;
    font-family: 'Lemon-Milk', sans-serif;
}

/* Conteúdo do player */
#titulo-musica {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #333;
}

.controles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.controles button {
    background: rgba(5, 0, 154, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    color: var(--branco);
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controles button:hover {
    background: rgba(0, 72, 255, 0.25);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.controles button img {
    width: 15px;
    height: 15px;
    filter: invert(1);
}

.controles #prev img{
    transform: scaleX(-1);
}

    

    #sec-4 {
        width: 100%;
        height: auto;
        background-color: rgb(232, 232, 232);
        position: relative;
    }
    
    .info-txt .valor {
        color: gold;
        position: relative;
        top: 0vh !important;
        left: 0vh;
        font-size: 3rem;
        display: inline-block;
        overflow: hidden;
    }
    
    .info-txt h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-left: 2.5rem !important;
    }

    .info-txt h2 span{
        display: none;
    }
    
    .info-txt h2 br{
        display: none;
    }

    .info-txt-3 h2 {
        text-align: center;
        font-size: 2rem;
        margin-left: 2.5rem !important;
    }
    
    .info-txt-3 .valor-3 {
        margin-left: -1.5rem !important;
    }
    
    .info-txt .valor::after {
        content: "";
        top: 7vh;
        position: absolute;
        bottom: 12vh !important;
        left: 0;
        height: 20px;
        width: 0;
        background-color: white;
        animation: underlineGrow 3s ease forwards 3s infinite;
    }

    .conteiner-principal {
        width: 90%;
        align-items: center;
        align-content: center;
        text-align: center;
        justify-content: center;
        border-radius: 8px;
        padding: 0% 0%;
        margin: auto;
    }

    .cabecalho-sobre {
        text-align: center;
        margin-bottom: 60px;
    }

    .cabecalho-sobre h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--azul-escuro);
        margin-bottom: 15px;
        font-family: 'Lemon-Milk', sans-serif;
    }

    .cabecalho-sobre h1 span {
        color: var(--azul-medio);
        font-family: 'Lemon-Milk', sans-serif;
    }

    .detalhe-linha-dourada {
        height: 3px;
        width: 100px;
        background: var(--dourado);
        margin: 0 auto 20px;
        position: relative;
    }

    .detalhe-linha-dourada:after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--dourado);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .cabecalho-sobre h2 {
        font-size: 1rem;
        color: var(--azul-medio);
        font-weight: 400;
        letter-spacing: 2px;
    }

    .btn-cur {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--azul-medio);
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        margin-top: 20px;
        transition: color 0.5s ease-in-out, transform 1s ease;
        transition: 0.8s;
    }

    .btn-cur::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: var(--dourado);
        transition: width 0.5s ease-in-out;
        z-index: 0;
    }

    .btn-cur:hover::before {
        width: 100%;
    }

    .btn-cur p {
        position: relative;
        z-index: 2;
        margin: 0;
        font-family: "Lemon-milk";
        font-style: normal;
        color: white;
        transition: color 0.3s ease;
    }

    .btn-cur:hover p {
        color: var(--azul-medio);
    }

    #card-container {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
    }

    .card {
        position: relative;
        width: 320px;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
    }

    .card-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        padding: 25px;
        box-sizing: border-box;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
        color: white;
        transition: all 0.4s ease;
    }

    .card:hover .card-content {
        background: rgba(0, 0, 0, 0.85);
        padding-top: 35px;
    }

    .card-title {
        font-size: 1.4em;
        font-weight: bold;
        margin-bottom: 10px;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .card-description {
        font-size: 1em;
        margin-bottom: 25px;
        line-height: 1.5;
        opacity: 0.9;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin-bottom 0.4s ease;
    }

    .card:hover .card-description {
        max-height: 100px;
        margin-bottom: 20px;
    }

    .card-button {
        background: linear-gradient(to right, #FF416C, #FF4B2B);
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;
        border-radius: 30px;
        transition: all 0.3s ease;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .card:hover .card-button {
        opacity: 1;
        transform: translateY(0);
    }

    .card-button:hover {
        background: linear-gradient(to right, #FF4B2B, #FF416C);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
    }

    #sec-3 {
        width: 100%;
        height: auto;
        background: linear-gradient(to right, #000424, #05009a);
        padding: 10px;
        position: relative;
    }

    #pro-container {
        width: 100%;
        align-items: center;
        align-content: center;
        text-align: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        padding: 0%;
        margin: auto;
    }
    
    .project-card {
        background: transparent;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        width: 100%;
        height:340px;
        aspect-ratio: 1/1;
        border: none;
        margin: 0;
    }
    
    .info-txt-3 .valor-3 {
        color: var(--azul-escuro);
        position: relative;
        top: 2vh !important;
        left: 2vh;
        font-size: 4rem;
        display: inline-block;
        overflow: hidden;
    }
    
    .info-txt-3 .valor-3::after {
        content: "";
        top: 10vh;
        position: absolute;
        bottom: 2vh !important;
        left: 0;
        height: 20px;
        width: 0;
        background-color: var(--dourado);
        animation: underlineGrow 3s ease forwards 3s infinite;
    }
    
    .conteiner-principal {
        width: 100%;
    }
    
    .footer {
        background-color: var(--azul-claro);
        color: var(--branco);
        padding: 50px 5%;
        border-top: solid var(--dourado) 10px;
        margin-top: 0 !important;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--dourado);
    }
    
    .footer-logo p {
        color: #aaa;
    }
    
    #links-sociais {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links h4, .footer-social h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--dourado);
        text-align: center;
    }
    
    .footer-links ul {
        list-style: none;
        text-align: center;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-links ul li a:hover {
        color: var(--dourado);
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #333;
        border-radius: 50%;
        color: var(--branco);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background-color: var(--dourado);
        color: var(--azul-claro);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #333;
        color: #aaa;
        font-size: 0.9rem;
    }
    
    .copy {
        color: rgba(255, 255, 255, 0.728);
        text-decoration: none;
        transition: 1.2s;
    }
    
    .copy:hover {
        color: var(--dourado);
    }
}

/* Estilo para dispositivos móveis */
@media (max-width: 840px) {

    .close-menu {
        display: flex;
        margin-right: 0px;
        justify-content: flex-end;
        width: 20% !important;
        margin-top: 0px !important;
        padding: 20px;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        margin-left: auto;
        align-self: flex-end;
    }

    .close-menu i {
        font-size: 2.5rem;
        color: var(--azul-medio);
        cursor: pointer;
        background: none !important;
        border: none !important;
    }

    .logo-container {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.logo1 {
    height:40px;
    width: auto;
    display: block;
    filter: invert(1) brightness(10);
    transition: 0.5s;
}

.logo-container h1 {
    margin: 0;
    font-size: clamp(1.2rem, 7vw, 1.8rem);
    font-family: "Lemon-milk";
    color: gold;
    white-space: nowrap;
    transition: color 0.5s ease;
}
    #loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00183b;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999999;
        opacity: 1;
        transition: opacity 1.5s ease;
    }

    #loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

    #loading-overlay #container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background-color: #00183b;
    }

    #loading-overlay #container img {
        width: 20%;
        height: auto;
        margin: auto;
        z-index: 3;
        position: relative;
        animation: logoAnimacaoMobile 4.5s ease-in-out forwards;
    }
    
    @keyframes logoAnimacaoMobile {
        0% {
            transform: scale(0.5);
            opacity: 0;
        }
        40% {
            transform: scale(3);
            opacity: 1;
        }
        100% {
            transform: scale(2);
            opacity: 1;
        }
    }
    
    #loading-overlay #container p {
        margin-left: 40% !important;
        font-size: 5rem !important;
        clip-path: inset(0 0 0 100%);
    }

    

    .hero-img {
        width: 100% !important;
        display: none !important;
    }
    
    .hero-img-2 {
        display: none !important;
        position: absolute;
        top: 0;
        left: 0;
        justify-content: center;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        z-index: 1;
    }
    .hero-imgmobile{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}


        #buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        margin-top: 60%;
    }

    .hero-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60px;
        margin: 0 !important; /* Remove todas as margens */
        
        /* EFEITO LIQUID GLASS */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        
        color: var(--branco);
        font-size: 1.2rem;
        font-family: 'Bienale-medium';
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.5s ease;
        z-index: 1;
        padding: 0px 20px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .hero-button:hover {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(25px) saturate(200%);
        -webkit-backdrop-filter: blur(25px) saturate(200%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .hero-button p {
        position: relative;
        z-index: 2;
        margin: 0;
        transition: color 0.3s ease;
    }

    .em-breve {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60px;
        margin: 0 !important; /* Remove todas as margens */
        padding: 0px 20px;

        
        /* EFEITO LIQUID GLASS */
        background: rgba(61, 61, 61, 0.15);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        
        color: var(--branco);
        font-size: 1.2rem;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .em-breve:hover {
        background: rgba(61, 61, 61, 0.25);
        backdrop-filter: blur(25px) saturate(200%);
        -webkit-backdrop-filter: blur(25px) saturate(200%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    
    
    .footer {
        background-color: var(--azul-claro);
        color: var(--branco);
        padding: 50px 5%;
        border-top: solid var(--dourado) 10px;
        margin-top: 5vh;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--dourado);
    }
    
    .footer-logo p {
        color: #aaa;
    }
    
    #links-sociais {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links h4, .footer-social h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--dourado);
        text-align: center;
    }
    
    .footer-links ul {
        list-style: none;
        text-align: center;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-links ul li a:hover {
        color: var(--dourado);
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #333;
        border-radius: 50%;
        color: var(--branco);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background-color: var(--dourado);
        color: var(--azul-claro);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid #333;
        color: #aaa;
        font-size: 0.9rem;
    }
    
    .copy {
        color: rgba(255, 255, 255, 0.728);
        text-decoration: none;
        transition: 1.2s;
    }
    
    .copy:hover {
        color: var(--dourado);
    }
}