/* Estilos para conteúdo principal sem caixas opacas */
main {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    min-height: calc(100vh - 140px);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Estilos para seções de conteúdo */
section {
    margin-bottom: 3rem;
}

/* Títulos de seção */
.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

/* Estilos para texto sobre fundo escuro */
.text-content {
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Estilos para imagens */
.image-container {
    width: 100%;
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilos para a página inicial */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background-image: url('../images/site_banner_offline.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1, .hero p {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Estilos para a página About */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Estilos para a página Donate */
.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.donate-option {
    padding: 1.5rem;
    border: 1px solid #333;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.donate-option:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
}

/* Estilos para a página Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #111;
    border: 1px solid #333;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #9370db;
}

/* Responsividade */
@media (max-width: 768px) {
    main {
        padding: 1.5rem 0;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem 0;
    }
    
    .content-container {
        padding: 0 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0.8rem;
        min-height: 40vh;
    }
}
