/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: none;
    font-weight: 300;
    scroll-behavior: smooth;
    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;
}

/* 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;
}

/* Estrutura Base */
html, body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    background-color: var(--fundo);
}

#page-body {
    width: 100%;
    height: auto;
    background-color: rgb(232, 232, 232);
    animation: opacidade 2s ease-in;
}

@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 3s ease-in-out forwards;
}

@keyframes logoAnimacao {
    0% {
        transform: scale(0.5);
        left: 0;
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 1;
        left: 0;
    }
    100% {
        transform: scale(0.8);
        left: -350px;
        opacity: 1;
    }
}

#loading-overlay #container p {
    width: auto;
    height: auto;
    position: absolute;
    margin-left: 45%;
    font-size: 10rem;
    z-index: 1;
    color: gold;
    font-family: 'Lemon-Milk';
    background-color: transparent;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: revealText 2s ease-out 2s forwards;
}

@keyframes revealText {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Estilo para dispositivos móveis */
@media (max-width: 700px) {
    #loading-overlay #container img {
        animation: logoAnimacaoMobile 3s ease-in-out forwards;
    }
    
    @keyframes logoAnimacaoMobile {
        0% {
            transform: scale(0.5);
            left: 0;
            opacity: 0;
        }
        40% {
            transform: scale(1);
            opacity: 1;
            left: 0;
        }
        100% {
            transform: scale(0.8);
            left: -100px;
            opacity: 1;
        }
    }
    
    #loading-overlay #container p {
        margin-left: 40%;
        font-size: 2.5rem;
    }
}

/* Classe para bloquear scroll */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Header */
.header {
    width: 100%;
    height: 10vh;
    max-height: 15vh;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    position: fixed;
    z-index: 999999;
    background-color: rgba(0, 10, 54, 0.835);
    padding: 0 5%;
    transform: translateY(-100%);
    animation: slideDown 3s ease forwards;
    transition: background-color 0.5s ease;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

.logo-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
}

.logo1 {
    height: 5vh;
    min-height: 40px;
    width: auto;
    display: block;
    filter: invert(1) brightness(10);
    transition: 0.5s;
}

.logo-container h1 {
    margin: 0;
    font-size: 2rem;
    font-family: "Lemon-milk";
    color: gold;
    white-space: nowrap;
    transition: color 0.5s ease;
}

.logo1:hover {
    filter: drop-shadow(0px 0px 6px var(--dourado));
}

.navbar {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: 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: 1.2rem;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--dourado);
    transform: scaleX(0);
    transform-origin: left;
    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: 170px;
    height: 40px;
    position: relative;
    padding: 10px;
    border-radius: 50px;
    background-color: var(--branco);
    overflow: hidden;
    transition: all 1s ease;
}

#li-sidney::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--azul-escuro), var(--azul-medio), #060039);
    transition: left 0.5s ease-in-out;
    z-index: 0;
}

#li-sidney:hover {
    border: solid var(--dourado) 2px;
    box-shadow: var(--dourado) 0px 0px 20px;
}

#li-sidney:hover::before {
    left: 0;
}

.txt-li {
    position: relative;
    color: var(--azul-medio);
    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);
}

/* Menu Mobile */
.mobile-menu {
    display: none;
}

.close-menu {
    display: none;
}

.divap {
    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-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    margin-top: 20rem;
    flex-direction: column;
    justify-content: 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;
}

.hero-title {
    font-size: 3rem;
    display: flex;
    color: white;
    text-transform: uppercase;
    margin-top: -5%;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-subtitle strong {
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 60px;
    margin: 0px;
    background-color: var(--azul-medio);
    color: var(--branco);
    font-size: 1.2rem;
    border: solid 2px white;
    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;
}

.hero-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--dourado);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    z-index: 0;
}

.hero-button:hover::before {
    width: 100%;
}

.hero-button p {
    position: relative;
    z-index: 2;
    margin: 0;
    transition: color 0.3s ease;
}

.hero-button:hover p {
    color: var(--azul-medio);
}

.em-breve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    height: 60px;
    margin: 0px;
    background-color: #3d3d3d;
    color: var(--branco);
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease-in-out, transform 1s ease;
    z-index: 1;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 16px;
    font-size: 24px;
    z-index: 3;
    transition: 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.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;
}

/* Responsividade para mobile */
@media (max-width: 768px) {

    .hero-banner {
    width: 100%;
    height: 70vh !important;
    position: relative;
    overflow: hidden;
    background-color: #000;
    border: solid gold 10px;
    border-top: none;
    border-left: none;
    border-right: none;
}
    .hero-img {
        display: none;
    }
    
    .hero-img-2 {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
        z-index: 1;
    }
    
    .hero-content {
        margin-top: 10rem;
    }
    
    .carousel-btn {
        padding: 12px;
        font-size: 18px;
    }
}

/* 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;
}



#musica-atual {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #333;
}

#progresso {
    width: 100%;
    margin: 8px 0;
    appearance: none;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    outline: none;
}

#progresso::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--dourado);
    border-radius: 50%;
    cursor: pointer;
}


/* Rádio Player - PARA DESKTOP E MOBILE */
.radio-player {
    position: fixed;
    top: 30vh;
    right: -250px; /* Escondido por padrão */
    width: 250px;
    height: auto;
    background: var(--branco);
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: right 0.5s ease;
}

.radio-player.active {
    right: 5%; /* Mostrado quando ativo */
}

/* Botão de toggle DENTRO do player */
.radio-toggle-btn {
    position: absolute;
    left: -70px; /* Posiciona à esquerda do player */
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 80px;
    background-color: #00183b;
    border: solid white 2px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 10px rgba(0,0,0,0.2);
}

.radio-toggle-btn img {
    width:40px;
    height: 50px;
    margin-left: 10%;
    filter: invert(1);
}


/* Título do rádio */
.radio-player .title-radio {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00183b;
}

.radio-player .title-radio h2 {
    font-size: 1.3rem;
    color: #00183b;
    font-weight: bold;
    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: var(--azul-medio);
    color: var(--branco);
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controles button:hover {
    background: var(--dourado);
    color: var(--azul-medio);
}

.controles button img {
    width: 15px;
    height: 15px;
    filter: invert(1);
}
.controles #prev img{
    transform: scaleX(-1);

}

/* Estilos específicos para mobile */
@media (max-width: 1024px) {
    .radio-player {
        top: 13vh !important;
        right: -100%; /* Escondido para mobile */
        width: 80%;
        max-width: 300px;
        border-radius: 0 10px 10px 0;
    }
    
    .radio-player.active {
        right: 0; /* Mostrado quando ativo no mobile */
    }
    
    .radio-toggle-btn {
        left: auto;
        right: -40px; /* Para mobile, fica à direita */
        border-radius: 0 10px 10px 0;
    }
}

@media (max-width: 480px) {
    .radio-player {
        top: 20%;
        right: -100%;
        width: 80%;
        max-width: 300px;
        padding: 15px 10px;
    }
    
    .radio-toggle-btn {
        width: 35px;
        height: 70px;
        right: -35px;
    }
    
    .radio-player .title-radio h2 {
        font-size: 1rem;
    }
    
    #titulo-musica {
        font-size: 12px;
        padding: 8px;
    }
}

/* Seção 3 - Projetos */
#sec-3 {
    width: 100% ;
    height: auto;
    margin-top: 0%;
    background: linear-gradient(to right, #000424, #05009a);
    padding: 10px;
    position: relative;
}

.container-img-2 {
    width: auto;
    height: auto;
    position: relative;
    padding: 0% 0% 2%;
    background-color: transparent;
}

.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;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.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;
}

/* GRADE ESTILO LIGHTFARM */
.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 80%;
    margin: 0 auto !important; /* Centraliza horizontalmente */
    padding: 0;
}

.project-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    width: auto;
    height: 320px;
    border: none; /* SEM BORDAS */
    margin: 0; /* SEM MARGEM */
}

/* Efeito hover igual ao Lightfarm */
.project-card:hover {
    z-index: 10; /* Eleva o card no hover */
}

/* Container da imagem - SEM BORDAS REDONDAS */
.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none; /* SEM BORDAS */
    border-radius: 0; /* SEM BORDAS REDONDAS */
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Preenche todo o espaço */
    transition: all 0.4s ease;
    border: none; /* SEM BORDAS */
}

/* Efeito hover na imagem - estilo Lightfarm */
.project-card:hover .project-image {
    transform: scale(1.1); /* Zoom suave */
    filter: brightness(0.9); /* Leve escurecimento */
}

/* Overlay minimalista estilo Lightfarm */
.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; /* Título na parte inferior */
    align-items: flex-start; /* Alinhado à esquerda */
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: left;
    border: none;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

/* Título estilo Lightfarm */
.overlay-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase; /* Como no Lightfarm */
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Remove completamente qualquer título abaixo */
.project-title {
    display: none;
}

/* MODAL (mantido) */
.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; /* Modal também sem bordas redondas */
    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;
}

/* RESPONSIVIDADE estilo Lightfarm */
@media (max-width: 1200px) {
    .projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 colunas fixas */
    gap: 0; /* SEM GAP - imagens se tocam */
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
}

@media (max-width: 900px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .projects-container {
        grid-template-columns: 1fr; /* 1 coluna em mobile */
    }
    
    .modal-content {
        width: 95%;
        padding: 1rem;
        margin: 1% auto;
    }
}

/* Animações suaves */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de loading para imagens */
.project-image {
    background: #f5f5f5; /* Cor de fundo enquanto carrega */
}

/* Estilo para quando não há projetos */
.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-color: gold;
    color: #000424;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ver-todos:hover {
    background-color: #06026e;
    color: white;
    border: solid white 1px;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 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-color: #555;
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .container-contato {
        width: 100%;
        padding: 30px 20px;
    }
    
    .titulo-contato {
        font-size: 2rem;
    }
    
    .descricao-contato {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .item-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .icone-contato {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .redes-sociais-contato {
        flex-wrap: wrap;
    }
    
    .link-social {
        margin: 5px;
    }
}


.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-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;
}

/* Estilo de cada card */
.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;
}

/* Estilo do vídeo para preencher o card */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Conteúdo do card posicionado na parte inferior */
.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;
}

/* Efeito de reveal no hover */
.card:hover .card-content {
    background: rgba(0, 0, 0, 0.85);
    padding-top: 15px;
}

/* Estilo do título */
.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);
}

/* Estilo da descrição */
.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;
}

/* Revela a descrição no hover */
.card:hover .card-description {
    max-height: 100px;
    margin-bottom: 20px;
}

/* Estilo do botão */
.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;
}

/* Revela o botão no hover */
.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-color: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: gold;
    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: 1024px) {
    body {
        overflow-x: hidden;
    }
    
    #arrow {
        display: none;
    }
    
    .header {
        justify-content: space-between;
        height: 70px;
        padding: 0 20px;
        border: solid 5px  gold;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .header h1{
        display: none;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 15px;
        transition: right 0.5s ease;
        z-index: 999999;
    }
    
    .navbar.active {
        right: 0;
    }
    
    .navbar li a {
        display: block;
        font-size: 2rem;
        text-align: left;
        top: -10vh;
        text-transform: capitalize;
        text-decoration: none;
        color: var(--azul-medio);
        cursor: pointer;
    }
    
    .mobile-menu {
        display: block;
        transition: color 0.3s ease !important;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
    }
    
    .close-menu {
        display: block;
        position: absolute;
        top: -17%;
        right: 0px;
        left: 42%;
        font-size: 2.5rem;
        color: var(--azul-medio);
        cursor: pointer;
        z-index: 1000001;
    }
    
    .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-img {
        display: none;
    }
    
    .hero-img-2 {
        display: block;
        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 {
        display: none;
    }
    
    .hero-cel {
        display: block;
    }
    
    .hero-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 40px;
        margin:  0% !important;
        background-color: var(--azul-medio);
        color: var(--branco);
        font-size: 1.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;
    }
    
    .em-breve {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 42px;
        background-color: #3d3d3d;
        color: var(--branco);
        font-size: 0.8rem;
        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;
    }
    
    .radio-player {
    position: fixed;
    top: 20% !important;
    right: 0;
    width: 80% !important;
    max-width: 300px;
    transform: translateX(calc(100% - 93%)) !important; /* Move para a direita + 45vh extra */
    transition: transform 0.5s ease;
    border-right: none;
    border-radius: 10px 0 0 10px;
    z-index: 5;
}

.radio-player.active {
    transform: translateX(0); /* Volta à posição normal quando ativo */
}

.radio-toggle-btn {
    display: flex;
    position: fixed;
    right: 0;
    margin-left: 7%;
    top: 12.5vh !important;
    width: 50px !important;
    height:40px !important;
    background-color: #00183b;
    border: solid white 2px !important;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 6;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 10px rgba(0,0,0,0.2);
    transform: translateX(calc(100% + 45vh)); /* Mesmo deslocamento do player */
    transition: transform 0.5s ease;
}

.radio-player.active ~ .radio-toggle-btn,
.radio-player.active + .radio-toggle-btn {
    transform: translateX(0); /* Botão volta à posição normal quando player está ativo */
}

.radio-toggle-btn img {
    width: 20px !important;
    height: 20px !important;
    filter: invert(1);
    margin-right: 30%;
    transition: transform 0.3s ease;
}

.radio-player.active ~ .radio-toggle-btn img,
.radio-player.active + .radio-toggle-btn img {
    transform: rotate(180deg);
}


#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;
}

/* Estilo de cada card */
.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;
}

/* Estilo do vídeo para preencher o card */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Conteúdo do card posicionado na parte inferior */
.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;
}

/* Efeito de reveal no hover */
.card:hover .card-content {
    background: rgba(0, 0, 0, 0.85);
    padding-top: 35px;
}

/* Estilo do título */
.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);
}

/* Estilo da descrição */
.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;
}

/* Revela a descrição no hover */
.card:hover .card-description {
    max-height: 100px;
    margin-bottom: 20px;
}

/* Estilo do botão */
.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;
}

/* Revela o botão no hover */
.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;
    margin-top: 10vh;
    background: linear-gradient(to right, #000424, #05009a);
    padding: 0px;
    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; /* Quadrado perfeito como o Lightfarm */
    border: none; /* SEM BORDAS */
    margin: 0; /* SEM MARGEM */
}
    
    .project-preview {
        height: 180px; /* Altura reduzida da área de imagem */
    }
    
    .project-info {
        padding: 0.8rem; /* Reduzir padding interno */
    }
    
    .project-info h3 {
        font-size: 0.9rem; /* Fonte menor para título */
        margin-bottom: 0.3rem;
    }
    
    .project-info p {
        font-size: 0.75rem; /* Fonte menor para descrição */
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .project-tags {
        margin-top: 0.5rem;
    }
    
    .tag {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
    

    .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: 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);
    }
}

@media (max-width: 480px) {
    .radio-player {
        top: 20%;
        right: -72%;
        transform: translateX(0) translateY(-50%);
        width: 80%;
        max-width: 300px;
        background: var(--branco);
        border: 2px solid #ccc;
        border-left: none;
        border-radius: 0 0 0 10px;
        padding: 15px;
        margin-top: -9%;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: right 0.4s ease;
    }
    
    .radio-toggle-btn {
        position: absolute;
        left: -70px;
        top: 50%;
        transform: translateY(-50%);
        width: 70px;
        height: 80px;
        background-color: #00183b;
        border: none;
        border-radius: 5px 0 0 5px;
        cursor: pointer;
        box-shadow: 0px 0px 10px white;
        z-index: 1000;
        transition: 1.5s ease;
    }
    
    .radio-toggle-btn:hover {
        background: linear-gradient(to right, #292687 0%, #07094c 50%, #56c9e0 100%);
    }
    
    .radio-toggle-btn img {
        display: block;
        width: 40px;
        height: auto;
        align-content: center;
        text-align: center;
        margin-left: 17px;
        filter: invert(1);
    }
    
    .radio-player.active {
        right: 0;
    }
    
    .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);
    }
}