.hp-contacto {
    max-width: 880px;
    margin: 0 auto;
}

.hp-contacto__intro {
    margin-bottom: 32px;
}

.hp-contacto__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #008b45;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.hp-contacto__intro h1 {
    margin: 0 0 14px;
    line-height: 1.1;
}

.hp-contacto__intro p {
    margin: 0;
    max-width: 720px;
}

.hp-contacto__form {
    display: grid;
    gap: 20px;
}

.hp-contacto__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hp-contacto__field {
    display: grid;
    gap: 8px;
}

.hp-contacto__field label {
    font-weight: 700;
}

.hp-contacto__field input,
.hp-contacto__field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5ded9;
    border-radius: 12px;
    background: #fff;
    padding: 13px 14px;
    color: inherit;
    font: inherit;
}

.hp-contacto__field input:focus,
.hp-contacto__field textarea:focus {
    outline: 3px solid rgba(0, 139, 69, .12);
    border-color: #008b45;
}

.hp-contacto__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.hp-contacto__privacy input {
    margin-top: 4px;
}

.hp-contacto__submit {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: #008b45;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.hp-contacto__submit:hover,
.hp-contacto__submit:focus-visible {
    filter: brightness(.92);
}

.hp-contacto__required {
    margin: -8px 0 0;
    font-size: 13px;
    opacity: .7;
}

.hp-contacto__notice {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.hp-contacto__notice--success {
    background: #eaf8f0;
    border: 1px solid #bfe6cf;
}

.hp-contacto__notice--error {
    background: #fff1f1;
    border: 1px solid #efc6c6;
}

.hp-contacto__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

@media (max-width: 680px) {
    .hp-contacto__grid {
        grid-template-columns: 1fr;
    }

    .hp-contacto__submit {
        width: 100%;
        justify-self: stretch;
    }
}
