@import url(https://fonts.bunny.net/css?family=raleway:400,700);

@font-face {
    font-family: 'Telegraf';
    src: url(../fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.otf);
}

@font-face {
    font-family: 'Ultra Telegraf';
    src: url('../fonts/Telegraf UltraBold 800.otf');
    font-weight: 800;
}

@font-face {
    font-family: 'Neulie';
    src: url(../fonts/fonnts.com-Neulis_Sans_Regular.otf);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --black: #191818;
    --white: #FAFAFA;
    --roxoClaro: #9B20ED;
    --roxoHover: #661B99;
    --roxoEscuro: #3A0C57;
    --verdeClaro: #06A576;
    --verdeEscuro: #017369;
    --verdeHover: #003840;
    --vermelho: #FF0901;
    --vermelhoEscuro: #A40000;
    --LaranjaEscuro: #B92700;
    --amarelo: #FFAA08;
    --azul: #2D34EB;
    --azulEscuro: #161869;
    --laranja: #FF5C05;
}

body {
    font-family: 'Telegraf';
    color: var(--white);
    overflow-x: hidden;
}

.no-scroll-x {
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

/* reforço para o hover dos pills caso esteja no outro css */
.nav-pill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.nav-item.has-dropdown:nth-child(1) .nav-pill::before,
.nav-group.left .nav-item:first-child .nav-pill::before {
    background: linear-gradient(135deg, var(--roxoClaro), var(--roxoEscuro));
}

.nav-group.left .nav-item:nth-child(2) .nav-pill::before,
.nav-item > .nav-pill[href="/sobrenos"]::before {
    background: linear-gradient(135deg, #ff6a3d, var(--LaranjaEscuro));
}

.nav-item > .nav-pill[href="/areas"]::before {
    background: linear-gradient(135deg, var(--azul), var(--azulEscuro));
}

.nav-item > .nav-pill[href="/blog"]::before {
    background: linear-gradient(135deg, var(--verdeClaro), var(--verdeEscuro));
}

.nav-pill:hover::before {
    opacity: 1;
}

.nav-pill:hover {
    color: var(--white);
}

/* ────────────────────────────────────────
   HERO
   ──────────────────────────────────────── */
.Hero {
    width: 100%;
    min-height: 100vh;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
}

.Hero-photo-clip {
    position: absolute;            
    top: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    border-radius: 44px 0 44px 0;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 32px 70px rgba(0,0,0,0.22), 0 10px 22px rgba(0,0,0,0.16);
}

/* Hero-photo-img: passa a preencher a clip absolutamente */
.Hero-photo-img {
    position: absolute;            
    inset: 0;                   
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.Hero-inner {
    position: relative; 
    min-height: calc(100vh - 2.4rem);   /* garante altura mínima */
    z-index: 2;
    width: min(94%, 1240px);
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
    padding: 8.4rem 1.2rem 3.2rem;
}

.Hero-photo-clip::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.74) 0%,
            rgba(0, 0, 0, 0.54) 28%,
            rgba(0, 0, 0, 0.28) 60%,
            rgba(0, 0, 0, 0.10) 100%
        );
    pointer-events: none;
}

.Hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    max-width: 455px;
}

.Hero-title {
    font-size: clamp(2.6rem, 5.4vw, 4.8rem);
    font-family: 'Ultra Telegraf';
    color: var(--white);
    line-height: 0.97;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.50);
}

.Hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    color: var(--white);
    line-height: 1.42;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    max-width: 430px;
}

.Hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 285px;
    min-height: 58px;
    background: linear-gradient(180deg, #11c78f 0%, var(--verdeClaro) 100%);
    color: var(--white);
    font-family: 'Ultra Telegraf';
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    padding: 0.95rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 14px 28px rgba(6, 165, 118, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.Hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(6, 165, 118, 0.33);
    filter: brightness(1.04);
}

.Hero-form-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 42px 0 42px 0;
    padding: 1.9rem 1.45rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 405px;
    flex-shrink: 0;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.Form-title {
    font-size: clamp(1.9rem, 2.2vw, 2.8rem);
    font-family: 'Ultra Telegraf';
    font-weight: 800;
    color: var(--black);
    text-align: center;
    line-height: 1.02;
    margin-bottom: 0.15rem;
}

.Form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.Form-fields input,
.Form-fields select,
.Form-fields textarea {
    background: rgba(72, 72, 72, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 0.82rem 0.95rem;
    color: var(--white);
    font-family: 'Telegraf';
    font-size: 0.93rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.Form-fields input:focus,
.Form-fields select:focus,
.Form-fields textarea:focus {
    border-color: rgba(255, 170, 8, 0.75);
    background: rgba(58, 58, 58, 0.84);
    transform: translateY(-1px);
}

.Form-fields input::placeholder,
.Form-fields textarea::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.Form-fields select {
    color: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #ffffff 50%),
        linear-gradient(135deg, #ffffff 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.Form-fields select option {
    background: #2d2d2d;
    color: var(--white);
}

.Form-fields textarea {
    resize: none;
    min-height: 82px;
}

.Form-submit {
    background: linear-gradient(180deg, #ffc21d 0%, var(--amarelo) 100%);
    color: var(--black);
    font-family: 'Ultra Telegraf';
    font-weight: 800;
    font-size: 0.98rem;
    border: none;
    border-radius: 14px;
    padding: 0.92rem 1.4rem;
    cursor: pointer;
    width: 68%;
    margin: 0.55rem auto 0;
    box-shadow: 0 12px 24px rgba(255, 170, 8, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.Form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 170, 8, 0.30);
    filter: brightness(1.03);
}

/* ────────────────────────────────────────
   ACTIVECAMPAIGN FORM (form_10) - Home
   ──────────────────────────────────────── */
#form_10 {
    font-size: 14px;
    line-height: 1.6;
    font-family: arial, helvetica, sans-serif;
    margin: 0;
    box-shadow: none;
}

._form_hide { display: none; visibility: hidden; }
._form_show { display: block; visibility: visible; }

#form_10 input[type="text"],
#form_10 input[type="tel"],
#form_10 input[type="date"],
#form_10 select,
#form_10 textarea {
    padding: 10px 12px;
    height: auto;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    color: #000 !important;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#form_10 textarea { resize: none; }
#form_10 input::placeholder { color: #142341; }

#form_10 ._submit {
    cursor: pointer;
    font-family: 'Ultra Telegraf', arial, sans-serif;
    font-size: 15px;
    text-align: center;
    background: linear-gradient(180deg, #ffc21d 0%, #FFAA08 100%) !important;
    border: none !important;
    -moz-border-radius: 14px !important;
    -webkit-border-radius: 14px !important;
    border-radius: 14px !important;
    color: #191818 !important;
    padding: 14px 20px !important;
    font-weight: 800;
}

#form_10 ._submit:disabled { cursor: not-allowed; opacity: 0.4; }

#form_10 ._submit.processing { position: relative; }

#form_10 ._submit.processing::before {
    content: "";
    width: 1em;
    height: 1em;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    border: double 3px transparent;
    border-radius: 50%;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), conic-gradient(#FFFFFF, #E09900);
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: 1200ms ease 0s infinite normal none running _spin;
}

#form_10 ._submit.processing::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
}

@keyframes _spin {
    0%   { transform: translate(-50%, -50%) rotate(90deg); }
    100% { transform: translate(-50%, -50%) rotate(450deg); }
}

#form_10 ._close-icon {
    cursor: pointer;
    background-image: url("https://d226aj4ao1t61q.cloudfront.net/esfkyjh1u_forms-close-dark.png");
    background-repeat: no-repeat;
    background-size: 14.2px 14.2px;
    position: absolute;
    display: block;
    top: 11px;
    right: 9px;
    overflow: hidden;
    width: 16.2px;
    height: 16.2px;
}

#form_10 ._form-body {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    color: black;
    margin-bottom: 30px;
}

#form_10 ._form-branding {
    color: #fff;
    font-size: 10px;
    clear: both;
    text-align: left;
    margin-top: 30px;
    font-weight: 100;
}

#form_10 ._form-branding ._logo {
    display: block;
    width: 130px;
    height: 14px;
    margin-top: 6px;
    background-image: url("https://d226aj4ao1t61q.cloudfront.net/hh9ujqgv5_aclogo_li.png");
    background-size: 130px auto;
    background-repeat: no-repeat;
}

#form_10 .form-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#form_10 ._form-label,
#form_10 ._form_element ._form-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#form_10 ._form_element {
    position: relative;
    margin-bottom: 10px;
    max-width: 100%;
}

#form_10 ._form_element * { font-size: 14px; }

#form_10 ._form_element._clear { clear: both; width: 100%; float: none; }
#form_10 ._form_element._clear:after { clear: left; }

#form_10 ._form_element :is(textarea, select, input[type="text"], input[type="date"], input[type="phone"], input[type="email"]) {
    color: #142341 !important;
    border-radius: 10px;
}

#form_10 ._form_element input[type="text"],
#form_10 ._form_element input[type="date"],
#form_10 ._form_element select,
#form_10 ._form_element textarea:not(.g-recaptcha-response) {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
}

#form_10 ._field-wrapper { position: relative; }
#form_10 ._inline-style { float: left; }
#form_10 ._inline-style input[type="text"] { width: 150px; }
#form_10 ._inline-style:not(._clear) { margin-right: 20px; }
#form_10 ._form_element img._form-image { max-width: 100%; }
#form_10 ._form_element ._form-fieldset { border: 0; padding: 0.01em 0 0 0; margin: 0; min-width: 0; }
#form_10 ._clear-element { clear: left; }
#form_10 ._full_width { width: 100%; }
#form_10 ._form_full_field { display: block; width: 100%; margin-bottom: 10px; }

#form_10 input[type="text"]._has_error,
#form_10 textarea._has_error { border: #F37C7B 1px solid; }

#form_10 input[type="checkbox"]._has_error { outline: #F37C7B 1px solid; }

#form_10 ._show_be_error { float: left; }

#form_10 ._error {
    display: block;
    position: absolute;
    font-size: 14px;
    z-index: 10000001;
}

#form_10 ._error._above { padding-bottom: 4px; bottom: 39px; right: 0; }
#form_10 ._error._below { padding-top: 8px; top: 100%; right: 0; }

#form_10 ._error._above ._error-arrow {
    bottom: -4px; right: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFDDDD;
}

#form_10 ._error._below ._error-arrow {
    top: 0; right: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFDDDD;
}

#form_10 ._error-inner {
    padding: 12px 12px 12px 36px;
    background-color: #FFDDDD;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM9 3V9H7V3H9ZM9 13V11H7V13H9Z' fill='%23CA0000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    font-size: 14px;
    font-family: arial, sans-serif;
    font-weight: 600;
    line-height: 16px;
    color: #000;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(31, 33, 41, 0.298295);
}

@media only screen and (max-width: 319px) {
    #form_10 ._error-inner {
        padding: 7px 7px 7px 25px;
        font-size: 12px;
        line-height: 12px;
        background-position: 4px center;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

#form_10 ._error-inner._form_error { margin-bottom: 5px; text-align: left; }
#form_10 ._button-wrapper ._error-inner._form_error { position: static; }
#form_10 ._error-inner._no_arrow { margin-bottom: 10px; }
#form_10 ._error-arrow { position: absolute; width: 0; height: 0; }
#form_10 ._error-html { margin-bottom: 10px; }

#form_10 input[type="text"].datetime_date { width: 69%; display: inline; }
#form_10 select.datetime_time { width: 29%; display: inline; height: 32px; }
#form_10 input[type="date"].datetime_date { width: 69%; display: inline-flex; }
#form_10 input[type="time"].datetime_time { width: 29%; display: inline-flex; }

#form_10 ._form-title,
#form_10 ._html-code :is(h1, h2, h3, h4, h5, h6) {
    font-family: Raleway;
    font-size: 21px;
    font-weight: 700;
    color: black;
}

@media (min-width: 320px) and (max-width: 667px) {
    #form_10 {
        margin: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    #form_10 * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 1em;
    }
    #form_10 ._form-content { margin: 0; width: 100%; }
    #form_10 ._form-inner { display: block; min-width: 100%; }
    #form_10 ._form-title, #form_10 ._inline-style { margin-top: 0; margin-right: 0; margin-left: 0; }
    #form_10 ._form-title { font-size: 1.2em; }
    #form_10 ._form_element { margin: 0 0 20px; padding: 0; width: 100%; }
    #form_10 ._form-element,
    #form_10 ._inline-style,
    #form_10 input[type="text"],
    #form_10 label,
    #form_10 p,
    #form_10 textarea:not(.g-recaptcha-response) {
        float: none;
        display: block;
        width: 100%;
    }
    #form_10 ._row._checkbox-radio label { display: inline; }
    #form_10 ._row, #form_10 p, #form_10 label { margin-bottom: 0.7em; width: 100%; }
    #form_10 ._row input[type="checkbox"],
    #form_10 ._row input[type="radio"] { margin: 0 !important; vertical-align: middle !important; }
    #form_10 ._row input[type="checkbox"] + span label { display: inline; }
    #form_10 ._row span label { margin: 0 !important; width: initial !important; vertical-align: middle !important; }
    #form_10 ._form-image { max-width: 100%; height: auto !important; }
    #form_10 input[type="text"] { padding-left: 10px; padding-right: 10px; font-size: 16px; line-height: 1.3em; }
    #form_10 input[type="radio"],
    #form_10 input[type="checkbox"] { display: inline-block; width: 1.3em; height: 1.3em; font-size: 1em; margin: 0 0.3em 0 0; vertical-align: baseline; }
    #form_10 button[type="submit"] { padding: 20px; font-size: 1.5em; }
    #form_10 ._inline-style { margin: 20px 0 0 !important; }
    #form_10 ._inline-style input[type="text"] { width: 100%; }
}

#form_10 .sms_consent_checkbox {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
}
#form_10 .sms_consent_checkbox input[type="checkbox"] { float: left; margin: 5px 10px 10px 0; }
#form_10 .sms_consent_checkbox .sms_consent_message {
    display: inline;
    float: left;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
    color: #7D8799;
}
#form_10 .sms_consent_checkbox .sms_consent_message.sms_consent_mini { width: 90%; }
#form_10 .sms_consent_checkbox ._error._above { right: auto; bottom: 0; }
#form_10 .sms_consent_checkbox ._error._above ._error-arrow { right: auto; left: 5px; }

@media (min-width: 320px) and (max-width: 667px) {
    #form_10 .sms_consent_checkbox ._error._above { top: -30px; left: 0; bottom: auto; }
}

#form_10 .field-required { color: #FF0000; }

#form_10 {
    position: relative;
    text-align: left;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    max-width: 100%;
    width: 100%;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    color: #000000;
}

#form_10 ._show_be_error { min-width: 100%; }

#form_10._inline-form,
#form_10._inline-form ._form-content {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
}

#form_10._inline-form ._row span:not(.field-required),
#form_10._inline-form ._row label {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    color: black;
}

#form_10._inline-form ._html-code,
#form_10._inline-form .sms_consent_message,
#form_10._inline-form ._form-thank-you {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    color: black;
}

#form_10._inline-form ._form-label,
#form_10._inline-form ._form-emailidentifier,
#form_10._inline-form ._form-checkbox-option-label {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6em;
    color: black;
}

#form_10._inline-form ._submit {
    margin-top: 8px;
    font-family: 'Ultra Telegraf', Raleway, sans-serif;
    font-size: 15px;
    font-weight: 800;
}

#form_10._inline-form ._html-code h1,
#form_10._inline-form ._html-code h2,
#form_10._inline-form ._html-code h3,
#form_10._inline-form ._html-code h4,
#form_10._inline-form ._html-code h5,
#form_10._inline-form ._html-code h6,
#form_10._inline-form ._form-title {
    margin-bottom: 0;
    display: block;
}

#form_10._inline-form ._form-branding {
    font-family: "IBM Plex Sans", Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
}

#form_10:before, #form_10:after { content: ""; display: table; }
#form_10:after { clear: both; }

#form_10._inline-style { width: auto; display: inline-block; }
#form_10._inline-style input[type="text"],
#form_10._inline-style input[type="date"] { padding: 10px 12px; }
#form_10._inline-style button._inline-style { position: relative; top: 27px; }
#form_10._inline-style p { margin: 0; }
#form_10._inline-style ._button-wrapper { position: relative; margin: 16px 12.5px 0 20px; }
#form_10._inline-style ._button-wrapper:not(._clear) { margin-left: 0; }

#form_10 ._form-thank-you {
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
}

#form_10 ._form-pc-confirmation ._submit { margin-top: 16px; }

@media (min-width: 320px) and (max-width: 667px) {
    #form_10._inline-form._inline-style ._inline-style._button-wrapper {
        margin-top: 20px !important;
        margin-left: 0 !important;
    }
}

#form_10 .iti { width: 100%; }
#form_10 .iti.iti--allow-dropdown.iti--separate-dial-code { width: 100%; }
#form_10 .iti input { width: 100%; border: #979797 1px solid; border-radius: 4px; }
#form_10 .iti--separate-dial-code .iti__selected-flag { background-color: #FFFFFF; border-radius: 4px; }
#form_10 .iti--separate-dial-code .iti__selected-flag:hover { background-color: rgba(0, 0, 0, 0.05); }
#form_10 .iti__country-list { border-radius: 4px; margin-top: 4px; min-width: 460px; }
#form_10 .iti__country-list--dropup { margin-bottom: 4px; }
#form_10 .phone-error-hidden { display: none; }
#form_10 .phone-error { color: #E40E49; }
#form_10 .phone-input-error { border: 1px solid #E40E49 !important; }

#form_10 ._x41197490 ._form-title { text-align: center; }

#form_10 ._submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68%;
    min-height: 48px;
    font-size: 15px;
    font-weight: 800;
    margin: 0.55rem auto 0;
}

#form_10._form_10 {
    transform: none;
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 600px) {
    #form_10._form_10 {
        transform: none;
        max-width: 100%;
        margin: 0;
    }
    #form_10._form_10 input,
    #form_10._form_10 select,
    #form_10._form_10 textarea {
        font-size: 16px;
        padding: 12px;
    }
    #form_10._form_10 ._submit {
        font-size: 15px !important;
        padding: 14px 12px !important;
        width: 100%;
        min-height: 48px;
        margin: 16px 0 0;
    }
}

/* ────────────────────────────────────────
   STATS / SOBRE NÓS
   ──────────────────────────────────────── */
.Stats-sobre {
    background-color: #111212;
    padding: 5rem 0 5rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.Stats-left {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    align-items: flex-start;
}

.Stats-left .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
    min-width: 130px;
}

.Stats-left .stat img { width: 5rem; }

.Stats-left .stat span {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.4;
}

.Stats-left .stat span strong {
    color: var(--amarelo);
    font-family: 'Ultra Telegraf';
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.15rem;
}

.Sobre-nos-bloco {
    flex: 1;
    padding: 4rem clamp(2rem, 5vw, 5rem) 4rem 3rem;
    background: #111212;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Sobre-nos-bloco h2 {
    font-family: 'Ultra Telegraf';
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.2rem;
}

.Sobre-nos-bloco p {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    color: var(--white);
    opacity: 0.85;
    line-height: 1.8;
}

/* ────────────────────────────────────────
   CASES
   ──────────────────────────────────────── */
.Cases-section-title {
    font-family: 'Ultra Telegraf';
    font-size: 2.8rem;
    color: var(--black);
    text-align: center;
    padding: 3rem 0 0;
    background: var(--white);
}

.Cases-carousel {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
    background-color: var(--white);
}

@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.Cases-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: ticker 30s linear infinite;
}

.Cases-track img {
    width: 160px;
    height: 140px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 0 1em;
}

#Smaller {
    width: 120px;
    height: 100px;
}

/* ────────────────────────────────────────
   NAV CARDS
   ──────────────────────────────────────── */
.Nav-cards {
    background: #f0f0f0;
    padding: 4rem clamp(2rem, 6vw, 6rem);
    overflow: hidden;
}

.Nav-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.Nav-card-areas  { grid-column: 1; grid-row: 1; }
.Nav-card-como   { grid-column: 1; grid-row: 2; }
.Nav-card-sobre  { grid-column: 2; grid-row: 1 / span 2; }
.Nav-card-blog   { grid-column: 3; grid-row: 1 / span 2; }

.Nav-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.Nav-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.Nav-card-areas .Nav-card-bg  { background-image: url('/src/frontend/static/images/areas.png'); }
.Nav-card-como  .Nav-card-bg  { background-image: url('/src/frontend/static/images/comofunciona.png'); }
.Nav-card-sobre .Nav-card-bg  { background-image: url('/src/frontend/static/images/Sobrenos.png'); }
.Nav-card-blog  .Nav-card-bg  { background-image: url('/src/frontend/static/images/blog.png'); }

.Nav-card-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.Nav-card-areas .Nav-card-overlay  { background: rgba(45,52,235,0.72); }
.Nav-card-como .Nav-card-overlay   { background: rgba(255,170,8,0.78); }
.Nav-card-sobre .Nav-card-overlay  { background: rgba(200,50,10,0.75); }
.Nav-card-blog .Nav-card-overlay   { background: rgba(6,165,118,0.75); }

.Nav-card-inner {
    position: absolute;
    inset: 0;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Nav-card-dot {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: rotate(45deg);
    flex-shrink: 0;
    align-self: flex-end;
    transition: opacity 0.3s ease;
}

.Nav-card-areas .Nav-card-dot { background: var(--azul); }
.Nav-card-como .Nav-card-dot  { background: var(--amarelo); }
.Nav-card-sobre .Nav-card-dot { background: var(--verdeClaro); }
.Nav-card-blog .Nav-card-dot  { background: var(--verdeClaro); }

.Nav-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.Nav-card h3 {
    font-family: 'Ultra Telegraf';
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.1;
    transition: color 0.3s ease;
}

.Nav-card-areas h3 { color: var(--azul); }
.Nav-card-como h3  { color: var(--amarelo); }
.Nav-card-sobre h3 { color: var(--vermelho); }
.Nav-card-blog h3  { color: var(--verdeClaro); }

.Nav-card-btn {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 8px 0 8px 0;
    width: fit-content;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.Nav-card:hover .Nav-card-bg      { opacity: 1; transform: scale(1); }
.Nav-card:hover .Nav-card-overlay { opacity: 1; }
.Nav-card:hover .Nav-card-dot     { opacity: 0; }
.Nav-card:hover h3                { color: var(--white); }
.Nav-card:hover .Nav-card-btn     { opacity: 1; transform: translateY(0); }
.Nav-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.Nav-card:hover .Nav-card-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* ────────────────────────────────────────
   SERVIÇOS
   ──────────────────────────────────────── */
.Servicos {
    background: #f0f0f0;
    padding: 1rem clamp(1rem, 3vw, 2.5rem) 5rem;
}

.Servicos-title {
    font-family: 'Ultra Telegraf';
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--roxoClaro);
    text-align: center;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1.4rem 2rem;
    border-radius: 16px;
    width: calc(100% - 2rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.Servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.Servico-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.25s ease;
    overflow: hidden;
    position: relative;
}

.Servico-card:hover {
    border-color: var(--roxoClaro);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(155,32,237,0.15);
}

.Servico-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Servico-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--roxoClaro);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.Servico-card h3 {
    font-family: 'Ultra Telegraf';
    font-size: 1.5rem;
    color: var(--roxoClaro);
    line-height: 1.3;
}

.Servico-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.Servico-card:hover .Servico-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 0.2rem;
}

.Servico-btn {
    display: inline-block;
    background: var(--roxoClaro);
    color: var(--white);
    font-family: 'Telegraf';
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.55rem 1.6rem;
    border-radius: 8px 0 8px 0;
    text-decoration: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, background 0.2s ease;
}

.Servico-card:hover .Servico-btn {
    max-height: 50px;
    opacity: 1;
}

.Servico-btn:hover { background: var(--roxoHover); }

/* ────────────────────────────────────────
   FEEDBACKS
   ──────────────────────────────────────── */
.Feedbacks {
    background: var(--white);
    padding: 5rem clamp(1rem, 4vw, 3rem) 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    overflow: hidden;
}

.Feedbacks-title {
    font-family: 'Ultra Telegraf';
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--black);
    text-align: center;
}

.Feedbacks-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    position: relative;
}

.Feedbacks-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 420px;
}

.Feedback-card {
    position: absolute;
    width: 400px;
    height: 420px;
    background: var(--vermelho);
    border-radius: 16px 0 16px 0;
    padding: 1.8rem 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--white);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity   0.55s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.55s ease;
    cursor: pointer;
    user-select: none;
    will-change: transform, opacity;
}

.Feedback-card[data-pos="center"] {
    transform: translateX(0) scale(1);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.Feedback-card[data-pos="left"] {
    transform: translateX(-72%) scale(0.84);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.Feedback-card[data-pos="right"] {
    transform: translateX(72%) scale(0.84);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.Feedback-card[data-pos="far-left"],
.Feedback-card[data-pos="far-right"] {
    transform: translateX(0) scale(0.65);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.Feedback-quote {
    font-size: 3.5rem;
    line-height: 0.6;
    color: var(--white);
    font-family: 'Neulie';
    font-weight: 900;
}

.Feedback-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--white);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.Feedback-card::after {
    content: '"';
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 2%;
    color: var(--white);
    font-family: 'Neulie';
    font-weight: 900;
    align-self: flex-end;
}

.Feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.4rem;
}

.Feedback-author {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.Feedback-bar {
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    flex-shrink: 0;
}

.Feedback-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.Feedback-name {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
}

.Feedback-company {
    font-family: 'Ultra Telegraf';
    font-size: 1rem;
    color: var(--white);
}

.Feedback-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    flex-shrink: 0;
}

.Feedback-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.Feedback-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 20;
    transition: transform 0.2s ease;
}

.Feedback-nav:hover { transform: scale(1.2); }

.Feedback-nav img { width: 4em; filter: invert(0); }

.nav-arrow-left  { transform: rotate(180deg); }
.nav-arrow-right { transform: rotate(0deg); }

.Feedbacks-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 440px;
}

.Feedback-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.Feedback-dot {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Ultra Telegraf';
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.Feedback-dot.active {
    color: var(--vermelho);
    transform: scale(1.3);
}

.footer-logo {
    display: block;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

/* ────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .Hero-inner { gap: 2.2rem; padding-top: 7.8rem; }
    .Hero-left { max-width: 420px; }
    .Hero-form-card { max-width: 390px; }
    .Hero-cta { min-width: 260px; }
}


/* ============================================================
   RESPONSIVE — substitui os dois @media no final do home2.css
   ============================================================ */

@media (max-width: 900px) {

    /* ── Hero: muda para layout em coluna (não mais absoluto) ── */
    .Hero {
        padding: 0;
        background: #0d0d0d;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* Foto: agora no fluxo normal, ocupa topo da tela */
    .Hero-photo-clip {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        width: 100%;
        height: 58vh;
        min-height: 320px;
        max-height: 520px;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        flex-shrink: 0;
        z-index: 1;
    }

    /* Gradiente forte na base para fundir com o texto */
    .Hero-photo-clip::after {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.0)  0%,
            rgba(0,0,0,0.08) 35%,
            rgba(13,13,13,0.80) 72%,
            rgba(13,13,13,1.0)  100%
        );
    }

    /* Conteúdo sobe sobre a foto com margem negativa */
    .Hero-inner {
        position: relative;
        min-height: auto;
        z-index: 3;
        width: 100%;
        max-width: 100%;
        margin-top: -100px;
        padding: 0 1.4rem 2.8rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .Hero-left {
        max-width: 100%;
        gap: 1.1rem;
    }

    .Hero-title {
        font-size: clamp(2.6rem, 11.5vw, 4.2rem);
        color: #fff;
        line-height: 0.95;
        text-shadow: 0 2px 24px rgba(0,0,0,0.55);
    }

    .Hero-subtitle {
        max-width: 100%;
        font-size: 1.02rem;
        line-height: 1.52;
        color: rgba(255,255,255,0.88);
        text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    }

    .Hero-cta {
        min-width: 100%;
        width: 100%;
        font-size: 0.95rem;
        min-height: 54px;
    }

    /* Card do formulário — branco limpo sobre fundo escuro */
    .Hero-form-card {
        max-width: 100%;
        width: 100%;
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 28px 0 28px 0;
        padding: 1.8rem 1.3rem 1.5rem;
        box-shadow: 0 8px 40px rgba(0,0,0,0.30);
    }

    /* Stats */
    .Stats-sobre {
        flex-direction: column;
        align-items: center;
        padding: 4rem 1.5rem;
        gap: 2.5rem;
    }

    .Stats-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .Sobre-nos-bloco {
        padding: 1.8rem 1rem;
        align-self: auto;
    }

    /* Nav cards: 2 colunas */
    .Nav-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
        gap: 1.2rem;
    }

    .Nav-card-areas  { grid-column: 1; grid-row: 1; }
    .Nav-card-como   { grid-column: 1; grid-row: 2; }
    .Nav-card-sobre  { grid-column: 2; grid-row: 1; }
    .Nav-card-blog   { grid-column: 2; grid-row: 2; }

    .Servicos-grid   { grid-template-columns: repeat(2, 1fr); }
    .Servicos-title  { width: 100%; }

    .Feedbacks-track { height: 380px; }
    .Feedback-card   { width: 300px; height: 380px; }
    .Feedback-card[data-pos="left"]  { transform: translateX(-62%) scale(0.82); }
    .Feedback-card[data-pos="right"] { transform: translateX(62%) scale(0.82); }
}


@media (max-width: 600px) {

    /* Hero foto: um pouco maior no mobile pequeno */
    .Hero-photo-clip {
        height: 52vh;
        min-height: 290px;
        max-height: 420px;
    }

    .Hero-inner {
        margin-top: -90px;
        padding: 0 1.2rem 2.4rem;
        gap: 1.6rem;
    }

    .Hero-title    { font-size: 2.3rem; }
    .Hero-subtitle { font-size: 0.97rem; }

    .Hero-cta {
        font-size: 0.88rem;
        padding: 0.85rem 1.1rem;
        min-height: 52px;
    }

    .Hero-form-card {
        border-radius: 22px 0 22px 0;
        padding: 1.5rem 1.1rem 1.3rem;
    }

    /* Stats compactos */
    .Stats-left     { gap: 0.8rem; }
    .Stats-left .stat {
        min-width: 100px;
        padding: 1.1rem 0.8rem;
    }
    .Stats-left .stat img   { width: 3rem; }
    .Stats-left .stat span  { font-size: 0.85rem; }
    .Stats-left .stat span strong { font-size: 1.2rem; }

    .Sobre-nos-bloco    { padding: 1.4rem 1rem; }
    .Sobre-nos-bloco h2 { font-size: 1.9rem; margin-bottom: 0.8rem; }
    .Sobre-nos-bloco p  { font-size: 0.97rem; }

    /* Nav cards: coluna única */
    .Nav-cards { padding: 2.5rem 1rem; }
    .Nav-cards-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .Nav-card-areas,
    .Nav-card-como,
    .Nav-card-sobre,
    .Nav-card-blog { grid-column: 1; grid-row: auto; }

    /* Serviços: coluna única */
    .Servicos       { padding: 1rem 1rem 4rem; }
    .Servicos-grid  { grid-template-columns: 1fr; }
    .Servico-card   { padding: 1.8rem 1.4rem; }

    /* Feedbacks */
    .Feedbacks-track { height: 360px; }
    .Feedback-card   { width: 270px; height: 360px; }
    .Feedback-card[data-pos="left"]  {
        transform: translateX(-54%) scale(0.76);
        opacity: 0.6;
    }
    .Feedback-card[data-pos="right"] {
        transform: translateX(54%) scale(0.76);
        opacity: 0.6;
    }
    .Feedback-nav img { width: 28px; }
}