:root {
    /* ORIGINAL */
    /* --bg: #0b0d12;
    --bg-menu: #7484ac;
    --bg-text: #cfd6ea;
    --card: #11151d;
    --muted: #9096a6;
    --text: #f3f5fb;
    --accent: #7c9cff;
    --accent-2: #60d394;
    --danger: #ff6b6b;
    --ring: 0 0 0 3px rgba(124, 156, 255, .25); */


    /* TEST */
    --bg: #f3f5fb;
    --bg-card: #dbe2f7;
    --bg-menu: #939bb6;
    --bg-header: rgba(16, 38, 93, 0.7);
    --bg-text: #cfd6ea;
    --cta: #ea881e;
    --card: #dcdcdc;
    --muted: #3569a0;
    --text: #0d1b2a;
    --text-gray: #5f5f5f;
    --accent: #7c9cff;
    --accent-2: #60d394;
    --danger: #ff6b6b;
    --ring: 0 0 0 3px rgba(124, 156, 255, .25);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(1200px 800px at 90% -10%, rgba(124, 156, 255, .15), transparent 60%), radial-gradient(900px 700px at -10% 110%, rgba(96, 211, 148, .12), transparent 60%), var(--bg);
    color: var(--text);
    max-width: 1247px;
    width: 98%;
    margin: 0 auto;
}

[hidden] {
    display: none !important;
}

a {
    color: var(--bg)
}

.container {
    width: 95%; margin: 0 auto;
}

header {
    margin-top: 8px;
    position: sticky;
    top: 8px;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 18px;
    border-radius: 16px;
}

header.is-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo {
    width: 120px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white
}

.logo-text {
    color: #fff;
    font-size: 14px;
}

.sections a {
    opacity: .9;
    margin-left: 16px;
    text-decoration: none;
    color: var(--bg);
}

.nav-cta,
.sections {
    display: flex;
    gap: 16px;
}

.cta-corresp,
.cta-adv {
    background-color: transparent;
    color: var(--bg);
    border: none;
}

.nav-cta button:hover {
    background-color: var(--muted);
    color: var(--bg);
}

.nav-cta button {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 16px;
}


@media (max-width: 820px) {

    .sections,
    .nav-cta {
        display: none;
    }
}

/* botão hamburguer */
.hamburger {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: var(--bg-menu);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: sticky;
    top: calc(18px + 61px + 18px);
    z-index: 999;
    text-align: end;
    margin: 8px auto 0;
    width: min(1247px, 100%);
    padding: 12px;
    background: var(--bg-menu);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    display: grid;
    gap: 10px;
}

.mobile-menu .mobile-link {
    color: var(--bg);
    letter-spacing: 0.4px;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    display: block;
}

.mobile-menu .mobile-link:hover {
    background: rgba(255, 255, 255, .06);
}

.mobile-menu .mobile-sep {
    border: none;
    height: 3px;
    background: rgba(255, 255, 255, .08);
    margin: 4px 0;
}

.mobile-menu .full {
    width: fit-content;
    display: flex;
    justify-self: end;
    padding: 10px 14px;
    border-radius: 10px;
}

.mobile-menu button {
    background-color: transparent;
    color: var(--bg);
    letter-spacing: 0.4px;
    font-size: 16px;
}

.mobile-menu button:hover {
    background-color: var(--muted);
}

/* responsivo: esconde navegação desktop e mostra hambúrguer */
@media (max-width: 1020px) {
    .sections {
        display: none;
    }
}

@media (max-width: 820px) {
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }
}


/* HERO///////////////////////////////////////////////////////////////////////// */

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-section {
    align-self: flex-start;
    grid-row: 1;
    grid-column: 1;
}

.hero-section-kpis {
    align-self: flex-start;
    grid-row: 2;
    grid-column: 1;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    margin: 0 0 12px
}

.badge {
    display: inline-flex;
    margin-bottom: 16px;
    align-items: start;
    gap: 8px;
    background: var(--muted);
    color: #cfe0ff;
    padding: 8px 12px;
    border: 1px solid rgba(124, 156, 255, .3);
    border-radius: 999px;
    font-size: 13px;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    padding: 0 20px 0 0;
}


.hero-title .v {
    font-weight: 700;
    color: #7c9cff;
}

.hero-subtitle {
    width: 100%;
    font-size: 18px;
    color: var(--text);
    padding: 20px 20px 20px 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    grid-column: 2;
    grid-row: 1/3;
    overflow: hidden;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 100%;
}

.kpis {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px
}

.kpi {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 12px 14px;
    border-radius: 12px
}

.kpi .v,
.section-subtitle .v {
    font-weight: 700;
    color: #5479ff;
}

@media (max-width: 820px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-section {
        grid-row: 1;
        grid-column: 1/2;
    }

    .hero-section-kpis {
        grid-row: 3;
        grid-column: 1/2;
    }

    .hero-image {
        grid-row: 2;
        grid-column: 1/2;
    }


    .kpi {
        font-size: 14px;
        max-width: 40%;
        text-align: center;
        align-content: center;
        margin: 0 auto;
    }
}


/* /////////////////////////////////////////////////////////////// */

#steps-workflow {
    scroll-margin-top: 180px;
    margin: 60px 0;
    grid-column: 1/4;
}

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 26px 30px;
    margin-top: 26px;
}

/* Card do step reaproveitando sua estética */
.wf-step {
    padding: 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, .15);
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.wf-step .n {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: .2px;
    color: var(--muted);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.wf-step .step-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--muted);
}

.wf-step .step-text {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 0.4px;
    line-height: 140%;
    color: var(--text);
}

.wf-step .step-quote {
    margin-top: 30px;
    margin-left: 80px;
    text-align: end;
    font-size: 24px;
    font-weight: 100;
    font-style: italic;
    letter-spacing: 0.4px;
    line-height: 140%;
    color: var(--muted);
}

/* Mock de imagem: bloco visual com gradiente + label */
.wf-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    /* placeholder visual (troque por background-image:url(...)) */
    background:
        linear-gradient(135deg, rgba(124, 156, 255, .18), rgba(96, 211, 148, .16)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 10px, rgba(255, 255, 255, .03) 10px 20px),
        #0c1119;
    border: 1px solid rgba(255, 255, 255, .08);
    /* razão de aspecto agradável para “imagem” */
    aspect-ratio: 16 / 10;
}

.wf-img img {
    height: 100%;
    width: 100%;
    position: relative;
    scale: 1.2;
    object-position: center;
    object-fit: cover;
}

.card-1 {
    grid-column: 1;
    grid-row: 1;
}

.card-2 {
    grid-column: 2;
    grid-row: 2;
}

.card-3 {
    grid-column: 1;
    grid-row: 3;
}

.card-4 {
    grid-column: 2;
    grid-row: 4;
}

.img-1 {
    grid-column: 2;
    grid-row: 1;
}

.img-2 {
    grid-column: 1;
    grid-row: 2;
}

.img-3 {
    grid-column: 2;
    grid-row: 3;
}

.img-4 {
    grid-column: 1;
    grid-row: 4;
}

/* Responsivo: empilha em 1 coluna e mantém a ordem zigue-zague */
@media (max-width: 820px) {
    .wf-grid {
        display: block;
        gap: 18px;
    }

    /* Espaçamento extra entre pares step/imagem ao empilhar */
    .wf-grid>* {
        margin: 14px 0;
    }

    .wf-step {
        width: 100%;
        padding: 40px;
        margin-bottom: 30px;
        background-color: transparent;
        border: none;
        border-bottom: var(--muted) 1px solid;
    }

    .step-quote {
        scale: 0.8;
    }

    .wf-img {
        height: 300px;
        width: 100%;
        aspect-ratio: 2/5;
    }
}

/* FORM////////////////////////////////////////////////////////////////////////////// */

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.form-card {
    padding: 20px;
    width: 100%;
}

.section-title {
    font-weight: 700;
    margin: 6px 0 8px;
    font-size: 30px;
}

.subtle {
    color: var(--muted);
    font-size: 16px;
    letter-spacing: 0.2px;
}

.subtle a {
    color: var(--accent);
}

#success .subtle {
    margin: 0;
    padding: 8px 0;
}

.form-desc {
    font-size: 16px;
}

section .form-card {
    scroll-margin-top: 200px;
    margin-top: 40px;
}

.is-hidden {
    display: none !important;
}

form {
    margin-top: 40px;
    ;
}

form .choice {
    /* display: grid; */
    margin-bottom: 40px;
    margin-top: 4px;

}

#form {
    scroll-margin-top: 180px;
    width: 100%;
}



.form-line {
    display: flex;
    flex-direction: row;
    gap: 40px
}

#form-title {
    margin: 0 0 5px;
}

#urgency,
#offer,
#location,
#id-type {
    display: flex;
    flex-direction: row;
}



.form-nav {
    width: 300px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin: 8px auto;
}

.form-nav .btn {
    padding: 10px 14px;
}

.choice.error,
.form-max.error {
    outline: 2px solid rgba(255, 120, 80, .25);
    background: rgba(255, 120, 80, .06);
    border-radius: 12px;
}

.form-line {
    /* flex-direction: column; */
    gap: 40px
}

label,
.title-form {
    font-size: 14px;
    color: var(--text);
}

.form-max {
    width: 100%;
}

#area,
#valor {
    max-width: 500px;
}

#consent {
    width: 20px;
}

select,
input,
textarea {
    width: 100%;
    border: 1px solid #202634;
    border-radius: 12px;
    color: var(--text-gray);
    background: var(--bg);
    padding: 12px 14px;
    outline: none;
    font-size: 16px;
}

textarea {
    overflow-y: hidden;
    resize: vertical;
    font-family: Arial, Helvetica, sans-serif;
}

select:focus,
input:focus,
textarea:focus {
    border-color: #3a57ff;
    box-shadow: var(--ring)
}

select {
    --arrow-size: 14px;
    --arrow-right: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background-color: var(--bg);
    border: 1px solid #202634;
    border-radius: 12px;
    color: var(--text-gray);
    padding: 12px 14px;
    background-image: url(/files/asset-1.png);
    background-repeat: no-repeat;
    background-size: var(--arrow-size) auto;
    background-position: right var(--arrow-right) center;
    padding-right: calc(var(--arrow-right) + var(--arrow-size) + 10px);
}

select::-ms-expand {
    display: none;
}

.radio-card :hover,
select :hover {
    cursor: pointer;
}

.choice {
    display: grid;
    gap: 10px
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px
}

.radio-card {
    width: 200px;
    position: relative;
    border: 1px solid #202634;
    background: var(--muted);
    color: var(--bg);
    font-size: 500;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer
}

.radio-card input {
    position: absolute;
    opacity: 0
}

.radio-card span {
    display: block;
    font-size: 14px
}

.radio-card:has(input:checked) {
    border-color: #4a69ff;
    background: linear-gradient(0deg, rgba(74, 105, 255, .10), rgba(74, 105, 255, .10)), #0c1119
}

.cta {
    display: flex;
    justify-content: right;
    gap: 10px;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    min-width: 100px;
}

.cta .btn {
    padding: 10px 26px;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
}

.btn-primary:focus {
    box-shadow: var(--ring)
}

.btn-muted {
    background: var(--bg);
    color: var(--text);
    border: 1px solid #232a3b
}

#btn-prev {
    font-size: 16px;
}

#btn-next {
    font-size: 16px;
}

#btn-voltar {

    margin: 20px auto 0px;
}

.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #0c1119;
    border: 1px solid #1e2636;
    color: #dfe6ff;
    border-radius: 14px;
    padding: 12px 14px;
    display: none
}

.error {
    border-color: var(--danger) !important
}

.hint {
    font-size: 12px;
    color: #9aa3b8;
    margin-top: 6px
}

.success-screen {
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center
}

.success-screen.is-visible {
    display: grid !important;
}

.success-screen h2 {
    margin: 0
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0  auto;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgb(42, 202, 114);
    border: 1px solid rgba(96, 211, 148, .35);
    color: var(--bg);
    font-size: 16px;
    font-weight: 700;
      margin-bottom: 6px;
}

@media (max-width: 820px) {
    #urgency,
#offer,
#location
 {
    flex-direction: column;
}

#id-type .radio-card {
    width: 40%;

}

    #form-section {
        margin-top: 150px
    }

    .form-line {
        flex-direction: column;
        gap: 0px;
    }

    form .choice {
        margin-bottom: 20px;
        
    }

}

/* VERIFICATION/////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.verification {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    margin: 100px auto 0;
}

.verification .section-title {
    margin-bottom: 20px;
}

.verification-text {
    grid-column: 1;
}

.verification-img {
    grid-column: 2;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;

}

.verification-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;

}

.section-subtitle {
    width: 80%;
    padding-left: 12px;
    margin: 16px 0;
    font-size: 20px;
    color: var(--muted);
}



@media (max-width: 820px) {
    .verification {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .verification-text {
        grid-row: 2;
        grid-column: 1;
    }

    .section-subtitle,
    .section-title {
        width: 100%;
    }

    .verification-img {
        margin: 0 auto 20px;
        width: 100%;
        align-self: center;
        grid-row: 1;
        grid-column: 1;
        aspect-ratio: 5/2;
    }


}

/* FAQ//////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.faq {
    margin-top: 120px;
}

.faq-header {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-header);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 32px 16px;
    border-radius: 25px;
}

.faq-title {
    margin: 0 0 6px;
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 800;
    color: var(--bg);
}

.faq-subtitle {
    margin: 0;
    color: var(--bg-text);
    font-size: 18px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    overflow: hidden;
}

.faq-q {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 18px;
    width: 100%;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

.faq-q:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: 14px;
}

.faq-q .faq-icon {
    display: inline-grid;
    place-items: center;
    padding-right: 50px;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    line-height: 1;
    font-weight: 700;
    font-size: 18px;
    color: var(--ring);
}

.faq-q .faq-icon::before {
    content: "+";
    transition: transform .4s ease, opacity .2s ease;
}

.faq-q[aria-expanded="true"] .faq-icon::before {
    content: "×";
    transform: rotate(180deg);
    scale: 1.5;
    font-weight: 200;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 16px;
    margin-bottom: 20px;
}

.faq-a p {

    color: var(--bg-header);
}



/* FOOTNONTE */
/* FOOTNONTE */
/* FOOTNONTE */
/* FOOTNONTE */

.footnote {
    margin-top: 120px;
    color: #66768a;
}

.footnote-title {
    font-size: 24px;
    color: #FFF;
}

.footnote-block {
    background-color: #0F2031;
    border-radius: 50px;
    overflow: hidden;
}

.footnote-logo {
    display: flex;
    justify-content: center;
    width: 120px;
    margin: 80px;
}

.footnote-logo img {
    width: 100%;
}

.footnote-note {
    display: flex;
    justify-content: flex-end;
    text-align: end;
}

.footnote a {
    text-decoration: none;
    color: #66768a;
    margin: 10px 0;
}

.footnote-block-section {
    margin: 80px;

}

.footnote-block-section-2 {
    margin: 120px 80px;
    display: flex;
}

.sb {
    display: flex;
    justify-content: space-between;
}

.footnote-block-left {
    gap: 80px;
}

.footnote-block-right {
    width: 340px;
}

.footnote-block-nav,
.footnote-block-redirect,
.footnote-block-product,
.footnote-block-contact,
.footnote-block-social {
    display: flex;
    flex-direction: column;
}

.footnote-block-section-2 .footnote-block-left {
    display: flex;
    gap: 16px;
    font-size: 18px;
    color: #FFF;
}

.footnote-block-section-2 .footnote-block-left div {
    display: flex;
    align-items: end;
    line-height: 120%;
}

.footnote-block-section-2 .footnote-block-right {
    justify-items: right;
    align-content: end;
}

.contact-item-block {
    gap: 10px;
    display: flex;
    flex-direction: row;
}

.contact-items {
    display: flex;
    flex-direction: column;
    margin: 40px 0 0;
    gap: 8px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.contact-detail {
    color: #FFF;
    font-weight: 200;
    font-size: 112x;
    letter-spacing: 0.2%;
}

.footnote-signature-left {
    width: 100%;
    /* display: flex; */
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: #FFF;
}

.footnote-signature-left img {
    width: 240px;
}

.footnote-signature-right {
    width: 100%;
    gap: 16px;
    margin: auto 0;
}

.footnote-block-social {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.social-items {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media (max-width:1247px) {
    .footnote-block {
        border-radius: 36px;
        padding: 0;
    }

    .footnote-block-section, .footnote-logo {
        margin: 48px 48px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .footnote-block-left {
        gap: 32px;
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-start;
        gap: 180px;
    }

    .footnote-block-right {
        width: 100%;
    }

    .footnote-block-nav,
    .footnote-block-product,
    .footnote-block-redirect {
        gap: 8px;
    }

    .contact-items {
        gap: 12px;
    }

    .footnote-block-social {
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .footnote-logo img {
        max-width: 98%;
        height: auto;
    }
}

@media (max-width:820px) {
    .footnote {
        margin-top: 80px;
    }

    .footnote-block {
        border-radius: 28px;
        padding: 0 0 64px 0;
    }

    .footnote-block-section, .footnote-logo {
        margin: 32px 48px;
        gap: 24px;
    }

    .footnote-block-left {
        gap: 120px;
    }

    .footnote-title {
        font-size: 20px;
    }

    .contact-items {
        gap: 10px;
    }

    .contact-item-block {
        align-items: center;
    }

    .footnote-block-social {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .social-items {
        gap: 12px;
    }

    .footnote-block-section-2 {
        margin: 48px 12px 0;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footnote-signature-left,
    .footnote-signature-right {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .footnote-note {
        justify-content: center;
    }
}

@media (max-width:620px) {
    .footnote-block {
        padding: 0 0 32PX 0;
        border-radius: 22px;
        padding-bottom: 80px;
    }


    .footnote-block-left {
        flex-direction: column;
    }

    .footnote-logo img {
        max-width: 95%S;
    }

    .footnote a {
        padding: 4px 0;
    }

    .footnote-block-left {
        gap: 16px;
    }

    .footnote-block-nav,
    .footnote-block-product,
    .footnote-block-redirect {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 6px;
    }

    .contact-item-block img {
        width: 20px;
        height: 20px;
    }

    .footnote-title {
        font-size: 18px;
    }

    .footnote-block-section, .footnote-logo {
        margin: 24px 42px;
    }

    .footnote-block-section-2 {
        margin: 40px 8px 0;
    }
}