:root {
    --wd-purple: #8b1399;
    --wd-lav: #d7b4de;
    --wd-lav-2: #cfa7d7;
}

/* section */
.wd-contact {
    padding: clamp(48px, 6vw, 90px) 0;
    /* background: #fff; */
}

.wd-contact__wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(26px, 4vw, 56px);
    align-items: start;
}

/* left */
.wd-contact__left h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--wd-purple);
}

.wd-contact__left p {
    margin: 0 0 34px;
    color: #6b6b6b;
    max-width: 540px;
    line-height: 1.6;
    font-size: 15px;
}

.wd-contact__info {
    display: grid;
    gap: 22px;
    padding-top: 6px;
}

.wd-contact__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
}

.wd-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--wd-purple);
    color: #fff;
    display: grid;
    place-items: center;
}

.wd-contact__label {
    font-size: 22px;
    color: #ff7ae6;
    font-weight: 500;
    line-height: 1.1;
}

.wd-contact__value {
    margin-top: 4px;
    color: #2c2c2c;
    font-size: 15px;
}

.wd-contact__value a {
    color: inherit;
    text-decoration: none;
}

.wd-contact__value a:hover {
    text-decoration: underline;
}

/* card */
.wd-contact__card {
    border-radius: 28px;
    background: linear-gradient(180deg, var(--wd-lav), var(--wd-lav-2));
    border: 2px solid rgba(162, 26, 179, .75);
    padding: clamp(22px, 3.2vw, 34px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* form grid */
.wd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 16px;
}

.wd-field label {
    display: block;
    color: var(--wd-purple);
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 500;
}

.wd-field input,
.wd-field textarea {
    width: 100%;
    background: var(--wd-purple);
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    padding: 14px 18px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

.wd-field textarea {
    border-radius: 22px;
    min-height: 150px;
    resize: vertical;
    padding-top: 16px;
}

.wd-field input::placeholder,
.wd-field textarea::placeholder {
    color: rgba(255, 255, 255, .65);
}

.wd-field input:focus,
.wd-field textarea:focus {
    border-color: rgba(255, 255, 255, .45);
}

/* icons inside inputs */
.wd-field--icon {
    position: relative;
}

.wd-field--icon input {
    padding-right: 46px;
}

.wd-field__icon {
    position: absolute;
    right: 16px;
    top: 40px;
    color: rgba(255, 255, 255, .9);
    pointer-events: none;
}

/* button */
.wd-btn {
    margin-top: 12px;
    width: 230px;
    max-width: 100%;
    height: 46px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: var(--wd-purple);
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wd-btn:disabled {
    opacity: .75;
    cursor: not-allowed;
}

.wd-btn__spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: rgba(255, 255, 255, .95);
    display: none;
    animation: wdspin .8s linear infinite;
}

.wd-btn.is-loading .wd-btn__spinner {
    display: inline-block;
}

.wd-btn.is-loading .wd-btn__text {
    opacity: .9;
}

@keyframes wdspin {
    to {
        transform: rotate(360deg);
    }
}

.wd-form-status {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, .75);
}

/* responsive */
@media (max-width: 980px) {
    .wd-contact__wrap {
        grid-template-columns: 1fr;
    }

    .wd-contact__left p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .wd-grid {
        grid-template-columns: 1fr;
    }

    .wd-btn {
        width: 100%;
    }
}

/* ---- Date/Time: manter só o SVG e garantir clique ---- */

/* O tema às vezes mete ícone por background-image */
.wd-contact .wd-field--icon input[type="date"],
.wd-contact .wd-field--icon input[type="time"]{
  background-image: none !important;
  background-repeat: no-repeat !important;
}

/* Esconder o ícone nativo do browser (Chrome/Edge/Safari) */
.wd-contact .wd-field--icon input[type="date"]::-webkit-calendar-picker-indicator,
.wd-contact .wd-field--icon input[type="time"]::-webkit-calendar-picker-indicator{
  opacity: 0 !important;
}

/* O TEU PROBLEMA: estavas a bloquear o clique no SVG */
.wd-contact .wd-field__icon{
  pointer-events: auto !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

