
body {
    background-color: #f0f1f3;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.page-header {
    background-color: #0b0d0d;
    padding: 20px 0;
}

    .page-header .logo-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

        .page-header .logo-wrapper img {
            height: 70px;
            width: 70px;
        }

        .page-header .logo-wrapper h1 {
            color: #fff;
            margin: 0;
            font-family: 'Space Grotesk', sans-serif;
        }

.contato-wrapper {
    max-width: 1100px;
    margin: 40px auto 48px;
    padding: 0 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555;
    text-decoration: none;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

    .back-link:hover {
        color: #0b0d0d;
    }

.contato-intro {
    text-align: center;
    margin-bottom: 36px;
}

    .contato-intro h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        color: #0b0d0d;
        margin-bottom: 10px;
    }

    .contato-intro p {
        color: #666;
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.7;
    }

.contato-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 36px;
    height: 100%;
}

    .contato-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.25rem;
        color: #0b0d0d;
        margin-bottom: 24px;
    }

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 14px;
}

    .form-control:focus, .form-select:focus {
        border-color: #e6d639;
        box-shadow: 0 0 0 0.2rem rgba(230, 214, 57, 0.25);
    }

.btn-enviar {
    background: #e6d639;
    color: #0b0d0d;
    border: none;
    border-radius: 32px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.15s;
}

    .btn-enviar:hover {
        background: #d4c42e;
        color: #0b0d0d;
        transform: translateY(-1px);
    }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #0b0d0d;
    color: #e6d639;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-item h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #0b0d0d;
    margin: 0 0 4px;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-item a {
    color: #0b0d0d;
    text-decoration: none;
    font-weight: 600;
}

    .info-item a:hover {
        color: #e6d639;
    }

.alert-contato {
    border-radius: 10px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #0b0d0d;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

        .social-links a:hover {
            background: #e6d639;
            color: #0b0d0d;
        }

footer {
    background-color: #0b0d0d;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}
