:root {
    --cdf-gold: #cba146;
    --cdf-gold-hover: #d7b35f;
    --cdf-teal: #064847;
    --cdf-black: #020303;
    --cdf-line-light: #a8a9a7;
    --cdf-line-dark: rgba(255, 255, 255, 0.2);
    --cdf-label-light: #878787;
    --cdf-noise: url("https://lirp.cdn-website.com/fbdaa466/dms3rep/multi/opt/noise-1920w.jpg");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: transparent;
}

body {
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cdf {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.cdf-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cdf-title {
    margin: 0;
    font-size: 32px;
    line-height: 48px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.cdf-note {
    margin: 0;
    padding: 4px 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.cdf-note strong {
    font-weight: 700;
}

.cdf-badge {
    margin: 0;
    padding: 2px 8px;
    border-radius: 3px;
    background-color: var(--cdf-gold);
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.cdf-form {
    display: flow-root;
}

.cdf-fields {
    border: 1px solid transparent;
}

.cdf-field {
    display: flow-root;
    margin-top: 20px;
    text-align: left;
}

.cdf-field > label:not(.cdf-consent) {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cdf-field input,
.cdf-field textarea {
    display: block;
    width: 100%;
    height: 30px;
    margin: 3px 0;
    padding: 0 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--cdf-line-light);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    color: inherit;
    outline: none;
}

.cdf-field textarea {
    height: 50px;
    min-height: 50px;
    padding: 10px;
    resize: vertical;
}

.cdf-field input:focus,
.cdf-field textarea:focus {
    border-bottom-width: 2px;
    margin-bottom: 2px;
}

.cdf-consent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    overflow: visible;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
}

.cdf-consent input[type="checkbox"] {
    display: initial;
    flex: none;
    width: 1em;
    height: 1em;
    margin: 8px 0.3em 8px 0;
    padding: 0;
    font-size: 13.3333px;
    background: none;
    border: initial;
    -webkit-appearance: checkbox;
    appearance: checkbox;
    cursor: pointer;
}

.cdf-consent-text {
    flex: 1 1 auto;
    min-width: 0;
}

.cdf a {
    color: var(--cdf-gold);
    text-decoration: underline;
}

.cdf-error {
    display: none;
    margin-top: 4px;
    font-size: 13px;
    line-height: 18px;
}

.cdf-field.is-invalid .cdf-error {
    display: block;
}

.cdf-submit-wrap {
    width: 223px;
    max-width: 100%;
    margin: 28px auto 0;
    border: 1px solid transparent;
    border-radius: 3px;
    text-align: center;
    background-color: var(--cdf-gold);
    transition: background-color 0.2s ease;
}

.cdf-submit {
    display: block;
    width: 100%;
    padding: 10px;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.cdf-submit:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.cdf.is-busy .cdf-submit-wrap {
    opacity: 0.75;
}

.cdf.is-busy .cdf-submit {
    cursor: default;
}

.cdf-message {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.cdf-message p {
    margin: 0 0 6px;
}

.cdf-message p:last-child {
    margin-bottom: 0;
}

.cdf-alert {
    margin-top: 20px;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}

.cdf-hp {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.cdf--lateral {
    color: #fff;
}

.cdf--lateral .cdf-title {
    color: #fff;
}

.cdf--lateral .cdf-note {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.cdf--lateral .cdf-fields {
    margin: 0;
}

.cdf--lateral .cdf-field {
    padding: 0;
}

.cdf--lateral .cdf-field > label:not(.cdf-consent) {
    color: #fff;
}

.cdf--lateral .cdf-field input,
.cdf--lateral .cdf-field textarea {
    color: #fff;
    border-bottom-color: var(--cdf-line-dark);
}

.cdf--lateral .cdf-consent {
    color: #fff;
}

.cdf--lateral .cdf-error {
    color: #ffc4b4;
}

.cdf--lateral .cdf-field.is-invalid input,
.cdf--lateral .cdf-field.is-invalid textarea {
    border-bottom-color: #ffc4b4;
}

.cdf--lateral .cdf-submit-wrap:hover {
    background-color: var(--cdf-gold-hover);
}

.cdf--lateral .cdf-message {
    color: #fff;
}

.cdf--lateral .cdf-alert {
    color: #ffc4b4;
}

.cdf--rodape {
    color: #000;
}

.cdf--rodape .cdf-title {
    color: var(--cdf-teal);
}

.cdf--rodape .cdf-note {
    color: var(--cdf-black);
}

.cdf--rodape .cdf-fields {
    margin: 0;
}

.cdf--rodape .cdf-field {
    padding: 7.5px 0;
}

.cdf--rodape .cdf-field > label:not(.cdf-consent) {
    color: var(--cdf-label-light);
}

.cdf--rodape .cdf-field input,
.cdf--rodape .cdf-field textarea {
    color: #000;
    border-bottom-color: var(--cdf-line-light);
}

.cdf--rodape .cdf-consent {
    color: #000;
}

.cdf--rodape .cdf-error {
    color: #b02a1c;
}

.cdf--rodape .cdf-field.is-invalid input,
.cdf--rodape .cdf-field.is-invalid textarea {
    border-bottom-color: #b02a1c;
}

.cdf--rodape .cdf-submit-wrap {
    margin-top: 20px;
    background-color: var(--cdf-teal);
}

.cdf--rodape .cdf-message {
    color: var(--cdf-teal);
}

.cdf--rodape .cdf-alert {
    color: #b02a1c;
}

.cdf--card {
    padding: 40px 50px;
}

.cdf--lateral.cdf--card {
    background-color: var(--cdf-teal);
}

.cdf--rodape.cdf--card {
    padding: 40px 80px;
    background-color: #f7f5f0;
    background-image: var(--cdf-noise);
    background-size: cover;
}

@media (max-width: 767px) {
    .cdf-title {
        font-size: 26px;
        line-height: 36px;
    }

    .cdf--card,
    .cdf--rodape.cdf--card {
        padding: 32px 20px;
    }
}
