:root {
    --cor-primaria: #cbfca2;
    --cor-secundaria: #ecf0f1;
    --cor-destaque: #126e00;
    --cor-sucesso: #2ecc71;
}

body {
   background: #000 url('../../assets/img/dc-20-bg.png');
}

.div-principal {
    line-height: 1.6;
    color: #dbffd4;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #030c01;
}

header {
    border-bottom: 3px solid var(--cor-destaque);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

nav a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-weight: 500;
}

nav a:hover {
    color: var(--cor-destaque);
}

h1 {
    color: var(--cor-primaria);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.contact-info {
    background: url('../../assets/img/30white-fade-short.png') repeat-x;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form {
    background: url('../../assets/img/30white-fade-short.png') repeat-x;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background-color: var(--cor-destaque);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 500;
}

.success-message {
    display: none;
    background-color: var(--cor-sucesso);
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

footer {
    text-align: center;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}


#alert-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.success { background-color: #4CAF50; }
.error { background-color: #F44336; }