.dc-contact-page {
    padding: 90px 0;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.dc-contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .10);
}

.dc-contact-info {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.dc-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eef2ff;
    color: #000ecf;
    font-weight: 800;
    margin-bottom: 18px;
}

.dc-contact-info h1 {
    font-size: 40px;
    font-weight: 900;
    color: #07142e;
    margin-bottom: 18px;
}

.dc-contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #667085;
}

/* label */
.dc-contact-form label {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    color: #07142e;
    margin-bottom: 10px;
}

.dc-contact-form input,
.dc-contact-form select,
.dc-contact-form textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid #dfe5f0;
    border-radius: 16px;
    padding: 0 18px;
    color: #07142e;
    background: #f8faff;
    outline: none;
    transition: all .3s ease;
}

/* CAMPO DEPARTAMENTO PREMIUM */
.dc-contact-form select {
    width: 100% !important;
    min-height: 62px !important;
    padding: 0 52px 0 18px !important;
    border: 1px solid #d9e2f2 !important;
    border-radius: 16px !important;
    background-color: #f8faff !important;
    color: #07142e !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all .30s ease !important;
    /* remove estilo nativo */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    /* seta personalizada */
    background-image:
        linear-gradient(45deg, transparent 50%, #6a25eb 50%),
        linear-gradient(135deg, #6a25eb 50%, transparent 50%) !important;
    background-position:
        calc(100% - 24px) 28px,
        calc(100% - 16px) 28px !important;
    background-size: 8px 8px, 8px 8px !important;
    background-repeat: no-repeat !important;
}

/* hover */
.dc-contact-form select:hover {
    border-color: #b9c7e8 !important;
    background-color: #ffffff !important;
}

/* focus */
.dc-contact-form select:focus {
    border-color: #6a25eb !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(106, 37, 235, .12) !important;
}

/* options */
.dc-contact-form select option {
    color: #07142e;
    background: #ffffff;
    font-weight: 500;
    padding: 12px;
}

.dc-contact-form textarea {
    padding-top: 18px;
    resize: vertical;
}

.dc-contact-form input:focus,
.dc-contact-form select:focus,
.dc-contact-form textarea:focus {
    border-color: #0f0099;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(57, 37, 235, 0.1);
}

.dc-contact-btn {
    min-height: 58px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #000980, #1600da);
    color: #ffffff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(37, 40, 235, 0.3);
    transition: all .35s ease;
}

.dc-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(37, 40, 235, 0.3);
}

@media(max-width: 767px) {
    .dc-contact-wrapper {
        padding: 35px 22px;
        border-radius: 26px;
    }

    .dc-contact-btn {
        width: 100%;
    }

    .dc-contact-form select {
        min-height: 58px;
        font-size: .95rem;
        background-position:
            calc(100% - 22px) 26px,
            calc(100% - 14px) 26px;
    }
}