/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff4081;
}

.highlight-pink {
    color: #ff4081;
}

.highlight-yellow {
    color: #ffcc00;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0; /* Reduzido para a imagem menor */
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos para a nova navbar com imagem */
.logo-img-container {
    display: flex;
    align-items: center;
    height: 40px; /* Altura fixa do container */
}

.nav-logo-img {
    height: 200px; /* Tamanho menor para a navbar */
    width: auto; /* Mantém proporção */
    max-width: 400px; /*Largura máxima */
    object-fit: contain; /* Mantém proporção da imagem */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #ff4081;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff4081;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Reduzido porque a navbar é menor */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                radial-gradient(circle at 20% 50%, rgba(255, 64, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
}

.logo-container {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.main-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.home-description {
    max-width: 800px;
    font-size: 1.2rem;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffcc00;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Sobre Section */
.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-placeholder {
    background-color: #111;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder:hover {
    border-color: #ff4081;
    background-color: #1a1a1a;
}

.video-placeholder i {
    font-size: 4rem;
    color: #ff4081;
    margin-bottom: 20px;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Parceiros Section */
.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.parceiro-card {
    background-color: #111;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.parceiro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
}

.parceiro-logo i {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.parceiro-logo h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Projetos Section */
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.projeto-card {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.projeto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.2);
    border-color: #ff4081;
}

.projeto-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.projeto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projeto-card:hover .projeto-img {
    transform: scale(1.05);
}

.projeto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.em-producao {
    background-color: rgba(255, 64, 129, 0.9);
    color: white;
}

.lancado {
    background-color: rgba(0, 200, 83, 0.9);
    color: white;
}

.planejado {
    background-color: rgba(33, 150, 243, 0.9);
    color: white;
}

.projeto-content {
    padding: 20px;
}

.projeto-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.projeto-tipo {
    color: #ff4081;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.projeto-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Doações Section */
.doacoes-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.doacoes-text {
    flex: 1;
    min-width: 300px;
}

.doacoes-text > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.doacoes-opcoes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.opcao-doacao {
    background-color: #111;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.opcao-doacao:hover {
    border-color: #ffcc00;
    transform: translateY(-5px);
}

.opcao-doacao i {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.opcao-doacao h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.btn-doar {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn-doar:hover {
    background-color: #ffd633;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.doacoes-illustration {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.illustration {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ffcc00;
}

.illustration i {
    font-size: 5rem;
    color: #ffcc00;
}

/* Redes Sociais Section */
.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rede-card {
    background-color: #111;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.rede-card:hover {
    transform: translateY(-10px);
}

.rede-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rede-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rede-card p {
    color: #ccc;
    margin-bottom: 15px;
}

.rede-link {
    color: #ff4081;
    font-weight: bold;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.rede-card:hover .rede-link {
    border-bottom-color: #ff4081;
}

.instagram { border-top: 4px solid #E1306C; }
.youtube { border-top: 4px solid #FF0000; }
.email { border-top: 4px solid #EA4335; }

/* Footer */
.footer {
    background-color: #111;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4081;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 50px 0 0 50px;
    color: #fff;
    outline: none;
}

.btn-newsletter {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-newsletter:hover {
    background-color: #ff79a9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.footer-dev {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ff4081;
}

/* Botão Flutuante */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffcc00;
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.floating-btn.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.floating-btn-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #111;
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #ffcc00;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff4081;
}

.modal-title {
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

.modal-info p {
    margin-bottom: 20px;
    text-align: center;
}

.modal-opcoes {
    margin: 30px 0;
}

.modal-opcao {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ffcc00;
}

.modal-opcao h3 {
    color: #ffcc00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-agradecimento {
    text-align: center;
    font-size: 1.1rem;
    color: #ffcc00;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsividade */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px; /* Ajustado para a navbar menor */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.5s ease;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    /* Ajuste para menu responsivo */
    .nav-logo-img {
        height: 25px; /* Um pouco menor em dispositivos móveis */
        max-width: 120px;
    }
    
    .home-section {
        padding-top: 70px; /* Reduzido para a navbar menor */
    }
    
    .section {
        padding: 60px 0;
    }
    
    .sobre-content, .doacoes-content {
        flex-direction: column;
    }
    
    .floating-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 20px; /* Ainda menor em telas muito pequenas */
        max-width: 100px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .home-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 10px 0; /* Menor ainda em celulares */
    }
}