/* Apresentação */

.contact-page-hero {
    padding-top: 155px;
    padding-bottom: 85px;
    background:
        radial-gradient(circle at 85% 12%, rgba(32, 63, 112, 0.42), transparent 40%),
        linear-gradient(135deg, #06101e 0%, #091529 48%, #11264a 100%);
}

.contact-page-hero h1 {
    max-width: 850px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.contact-main {
    background: var(--zuriel-background-alt);
}

.contact-hero-description {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Cards e formulário */

.contact-card {
        padding: 30px;
        height: 100%;
        border: 1px solid var(--zuriel-border);
        border-radius: 14px;
        background: #fff;
        text-align: center;
        box-shadow: 0 2px 5px rgba(7, 20, 38, 0.02);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
        border-color: rgba(195, 164, 81, 0.4);
        transform: translateY(-4px);
        box-shadow: var(--zuriel-shadow);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        border-radius: 50%;
        background: rgba(195, 164, 81, 0.15);
        color: var(--zuriel-gold);
        font-size: 1.5rem;
    }

    .contact-card h4 {
        color: var(--zuriel-navy);
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .contact-link {
        color: var(--zuriel-gold);
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .contact-link:hover {
        color: var(--zuriel-navy);
    }

    .contact-text {
        color: var(--zuriel-muted);
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.6;
    }

    .company-address {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin: 0;
        color: var(--zuriel-muted);
        font-size: 0.9rem;
        font-style: normal;
        line-height: 1.5;
    }

    .company-address-street {
        color: var(--zuriel-navy);
        font-weight: 700;
    }

    .company-address-complement {
        font-size: 0.82rem;
    }

    .company-address-location {
        font-size: 0.82rem;
    }

    .company-address-zip {
        font-size: 0.82rem;
    }

    .contact-divider {
        height: 1px;
        background: var(--zuriel-border);
        margin: 55px 0;
    }

    .contact-form-wrapper {
        max-width: 760px;
        padding: 45px;
        border: 1px solid var(--zuriel-border);
        border-radius: var(--zuriel-radius);
        background: #fff;
        box-shadow: 0 8px 30px rgba(7, 20, 38, 0.04);
    }

    .contact-form-wrapper h3 {
        color: var(--zuriel-navy);
        font-size: 1.4rem;
    }

    .contact-form-eyebrow {
        color: var(--zuriel-gold);
    }

    .contact-form-description {
        max-width: 560px;
        margin: 0 auto;
        color: var(--zuriel-muted);
        line-height: 1.7;
    }

    .form-label {
        color: #4d5966;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
    }

    .form-control,
    .form-select {
        background: #fff;
        border: 1px solid #dcd9d0;
        color: var(--zuriel-text);
        font-family: 'Manrope', sans-serif;
        border-radius: 8px;
        padding: 12px 14px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        background: #fff;
        border-color: var(--zuriel-gold);
        box-shadow: 0 0 0 3px rgba(195, 164, 81, 0.1);
        color: var(--zuriel-text);
    }

    .form-control::placeholder {
        color: #9aa1a8;
    }

    .form-control.is-invalid,
    .form-select.is-invalid {
        border-color: #ff6b6b;
    }

    .form-control.is-invalid:focus,
    .form-select.is-invalid:focus {
        box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    }

    .invalid-feedback {
        color: #c74747;
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .field-validation-error {
        display: block;
        margin-top: 5px;
        color: #c74747;
        font-size: 0.8rem;
    }

    .contact-phone-switch {
        min-width: 92px;
    }

    .contact-phone-switch .form-check-input:checked {
        border-color: var(--zuriel-gold);
        background-color: var(--zuriel-gold);
    }

    .contact-phone-switch .form-check-input:focus {
        border-color: var(--zuriel-gold);
        box-shadow: 0 0 0 3px rgba(195, 164, 81, 0.1);
    }

    .btn-zuriel-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 40px;
        border: none;
        border-radius: 999px;
        background: linear-gradient(135deg, #c3a451, #d6bb72);
        color: #071426;
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-zuriel-large:hover {
        color: #071426;
        transform: translateY(-2px);
        filter: brightness(1.08);
        box-shadow: 0 10px 28px rgba(195, 164, 81, 0.25);
    }

    .btn-contact-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 40px;
        border: 1px solid var(--zuriel-gold);
        border-radius: 999px;
        background: #fff;
        color: var(--zuriel-navy);
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-contact-secondary:hover {
        color: var(--zuriel-gold);
        transform: translateY(-2px);
    }

    .alert {
        margin: -95px 0 40px;
        padding: 16px 20px;
        border: none;
        border-radius: 8px;
        background: rgba(40, 167, 69, 0.1);
        border-left: 3px solid #28a745;
        color: #fff;
    }

    .alert-dismiss {
        color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 767.98px) {
        .contact-page-hero {
            padding-top: 105px;
        }

        .contact-form-wrapper {
            padding: 28px 22px;
        }

        .btn-contact-secondary,
        .btn-zuriel-large {
            width: 100%;
        }
    }
