/* Fundo específico para a página de contato */
.contact-page {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.contact-main {
    padding: 120px 5% 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.contact-container {
    background: rgba(15, 15, 15, 0.95);
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Coluna de Informações */
.contact-info {
    padding: 50px;
    background: #1a1a1a;
    border-right: 1px solid #333;
}

.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 20px;
}

.info-details {
    margin: 40px 0;
}

.info-box {
    margin-bottom: 25px;
}

.info-box strong {
    display: block;
    font-size: 0.8rem;
    color: #ff6600;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 1rem;
    color: #ccc;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 20px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 3px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff6600;
}

/* Coluna do Formulário */
.contact-form-wrapper {
    padding: 50px;
}

.btn-send {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    border: none;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

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

    .contact-info, .contact-form-wrapper {
        padding: 30px;
    }

    .contact-info h1 {
        font-size: 2rem;
    }
}

