/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    background: linear-gradient(136deg, #7F8A96 -13.59%, #121820 113.31%);
    font-family: Arial, sans-serif;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Cabeçalho */
header {
    height: 80px;
    background: #FFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 20px;
}

/* Container genérico */
.container {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    max-width: 150px;
    height: auto;
}

/* Botão no header */
.btn-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 8px;
    border: 1px solid #212933;
    color: #212933;
    background-color: white;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 1s ease, color 1s ease;
}

.btn-icon:hover {
    background-color: #212933;
    color: white;
}

/* Introdução */
.text-intro {
    flex: 0.5;
    padding-left: 100px;
    color: white;
    margin-top: 100px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Título e parágrafo da intro */
.text-intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-intro p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Botão da intro */
.btn-intro {
    display: inline-block;
    background-color: #2b71f5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-intro:hover {
    background-color: #1a5de0;
}

.img-intro {
    flex: 0.5;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

/* Mockup principal */
.mockup1 {
    width: 264px;
    height: 500px;
    position: relative;
    left: 90px;
    margin-right: 15%;
    z-index: 2;
}

.sombra1 {
    width: 533px;
    height: 660px;
    position: absolute;
    top: -5px;
    left: 10px;
    z-index: 1;
    filter: brightness(1.8);
    opacity: 0.4;
}

.blank-section {
    padding: 20px;
    background-color: white;
}

.img-mockup2 {
    flex: 0.5;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.mockup2 {
    width: 360px;
    height: 557px;
    position: relative;
    z-index: 2;
}

.sombra2 {
    width: 533px;
    height: 575px;
    position: absolute;
    top: 5px;
    z-index: 1;
}

.text-mockup2 h2 {
    color: var(--Modern-Ink, #212933);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding: 0 0 20px 0;
}

.text-mockup2 h3 {
    color: var(--Modern-Ink, #212933);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    padding: 0 0 20px 0;
    margin-top: 20px;
}

.text-mockup2 p {
    width: 456px;
    height: 126px;
    flex-shrink: 0;
    color: var(--Space-Grey, #5C656F);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.menor p {
    color: #5C656F;
    font-size: 12px;
    font-style: normal;
    margin-top: 10px;
    max-width: 300px;
}

.chaves {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.chaves li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #212933;
}

.chaves img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.negocios h2 {
    color: var(--Modern-Ink, #212933);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    margin-bottom: 2rem;
}

.caixa-carrossel {
    width: 350px;
    min-height: 250px;
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 2px solid var(--Light-grey, #DCDCDC);
    background: var(--White, #FFF);
}

.carousel-inner {
    padding: 2rem 4rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: none;
    width: 30px;
    height: 30px;
    border: solid 3px #5C656F;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
}

.carousel-control-prev-icon {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.carousel-control-next-icon {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.indicadores {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.indicadores button {
    width: 30px;
    height: 3px;
    background-color: #2B74D9;
    border: none;
    border-radius: 2px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.indicadores button.active,
.indicadores button:hover {
    opacity: 1;
}

.pix {
    width: 1440px;
    height: 640px;
    flex-shrink: 0;
    background: linear-gradient(97deg, #212933 3.18%, #121820 91.76%);
}

.pix h2 {
    color: var(--White, #FFF);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.pix h3 {
    color: var(--White, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.pix p {
    color: var(--Light-grey, #DCDCDC);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.colunas {
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
    flex: 1;
    max-width: 50%;
}

.colunas-why {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
}

.colunas li {
    padding: 1.5rem;
    text-align: left;
}

.colunas img {
    width: 24px;
    margin-bottom: 1rem;
}

.container-mockup3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 5px 0;
    padding-left: 50px;
    flex-wrap: wrap;
}

.colunas {
    flex: 0.6;
}

.img-mockup3 {
    flex: 0.4;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup3 {
    position: relative;
    z-index: 2;
    width: 360px;
    height: 500px;
    flex-shrink: 0;
    margin-right: 100%;
}

.sombra3 {
    width: 533px;
    height: 640px;
    position: absolute;
    z-index: 1;
    filter: brightness(1.8);
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: -5px;
    margin-left: -80%;
}

.tabela {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Título */
.tabela h2 {
    max-width: 717px;
    color: #212933;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    margin-top: 50px;
}

/* Parágrafo */
.tabela p {
    max-width: 622px;
    color: #212933;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.16px;
    margin-bottom: 50px;
}

.tabela img {
    width: 90%;
    margin-top: 30px;
}

.tabela-img {
    width: 1000px;
    height: 354px;
    flex-shrink: 0;
    border-radius: 30px;
    background: linear-gradient(97deg, #212933 3.18%, #121820 91.76%);
}

.btn-tabela {
    display: inline-block;
    background-color: #2b71f5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-top: 40px;
}

.question h2 {
    color: var(--Modern-Ink, #212933);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-left: 20%;
    margin-top: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
    border: none;
}

.accordion-item {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent;
    border-radius: 0;
}

.accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #212933;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212933' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-button.collapsed::after {
    transform: rotate(180deg);
    /* gira a seta quando abre */
}

.accordion-body {
    padding: 10px 0 20px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #444;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: #212933;
    box-shadow: none;
}

.footer-top {
    background: var(--Light-grey, #DCDCDC);
    width: 100%;
    height: 240px;
    flex-shrink: 0;
}

.logo-footer {
    max-width: 300px;
    height: auto;
    margin-top: 20px;
    padding-left: 100px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.footer-links li img {
    cursor: pointer;
    padding-right: 10px;
}

.logo-footer {
    max-width: 300px;
    height: auto;
}

.footer-links ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top p {
    width: 673px;
    color: var(--Black, #000);
    font-family: "IBM Plex Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-left: 10%;
    margin-top: 20px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    color: var(--Space-Grey, #5C656F);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.tabela-mobile {
    display: none;
}

.footer-menu-mobile {
    display: none;
}



@media (max-width: 649px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    html,
    body {
        padding: 0;
        margin: 0;
        height: 100%;
        overflow-x: hidden;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .logo {
        max-width: 100px;
        height: auto;
    }

    .btn-icon {
        font-size: 14px;
        padding: 8px 12px;
    }

    .text-intro {
        padding: 40px 20px;
        margin-top: 40px;
        align-items: center;
        text-align: center;
    }

    .text-intro h1 {
        font-size: 28px;
    }

    .text-intro p {
        font-size: 16px;
    }

    .btn-intro {
        display: flex;
        width: 328px;
        height: 54px;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
        margin: -20px auto 0 auto;
    }

    .mockup1 {
        width: 264px;
        height: 500px;
        position: relative;
        z-index: 2;
        left: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-top: -80px;
    }

    .sombra1 {
        width: 480px;
        height: 750px;
        flex-shrink: 0;
        position: absolute;
        top: -30%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.6;
    }

    .text-mockup2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .text-mockup2 h2 {
        color: var(--Modern-Ink, #212933);
        text-align: center;
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        margin-top: 20px;
    }

    .text-mockup2 p {
        width: 100%;
        height: auto;
        text-align: left;
    }

    .text-mockup2 h3 {
        color: var(--Modern-Ink, #212933);
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        margin-top: 30px;
    }

    .text-mockup2 {
        order: 1;
    }

    .img-mockup2 {
        order: 2;
        position: relative;
    }

    .mockup2 {
        width: 350px;
        height: auto;
        position: relative;
        z-index: 2;
        margin: 0 auto;
        margin-top: -12px;
        display: block;
    }

    .sombra2 {
        width: 450px;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        opacity: 0.6;
    }

    .img-mockup2 {
        padding: 0;
        margin: 0;
        height: 100%;
    }

    .pix {
        width: 100%;
        display: grid;
        justify-items: start;
        gap: 20px;
        background: linear-gradient(97deg, #212933 3.18%, #121820 91.76%);
        height: auto;
        overflow: visible;
        padding: 0;
    }

    .pix h2,
    .pix h3,
    .pix p {
        margin-left: 0;
        padding-left: 0;
        text-align: left;
    }


    .pix h2 {
        font-size: 28px;
        margin-top: 20px;
        white-space: nowrap;
    }

    .pix h3 {
        font-size: 20px;
        margin-top: 10px;
        text-align: left;
    }

    .pix p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.5;
        text-align: left;
    }

    .colunas {
        max-width: 100%;
        padding: 10px 0;
        text-align: left;
        color: white;
    }

    .colunas-why {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .colunas li {
        padding: 1rem;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
        border-radius: 8px;
    }

    .mockup3 {
        display: none;
    }

    .sombra3 {
        width: 757px;
        height: 900px;
        flex-shrink: 0;
        padding-left: 300px;
    }

    .tabela-img {
        display: none;
    }

    .tabela h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    .tabela p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-tabela {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        text-align: center;
        padding: 12px 24px;
        font-size: 16px;
    }

    .tabela-mobile {
        display: block;
        width: 100%;
        max-width: 600px;
        margin: 20px auto;
        overflow-x: hidden;
    }

    .tabela-mobile table {
        width: 100%;
        border-collapse: collapse;
        min-width: auto;
        table-layout: fixed;
    }

    .tabela-mobile th,
    .tabela-mobile td {
        padding: 12px 10px;
        text-align: center;
        border: 1px solid #ddd;
        white-space: normal;
        word-wrap: break-word;
    }

    .tabela-mobile thead th {
        background-color: #fff;
        font-weight: 600;
        color: #5C656F;
    }

    .tabela-mobile tbody td {
        background-color: #f9f9f9;
    }

    .tabela-mobile .linha-pix td {
        background-color: #1848a0;
        color: white;
        font-weight: bold;
    }

    .tabela-mobile img {
        width: 30px;
        height: 30px;
    }

    .tabela-mobile thead th:first-child {
        background-color: transparent;
    }

    .question h2 {
        width: 221px;
        font-size: 24px;
        padding-left: 0;
        margin-left: 0;
        text-align: center;
    }

    .accordion {
        max-width: 100%;
        margin: 0 auto;
        margin-top: 20px;
        padding: 0 20px;
    }

    .footer-top {
        height: auto;
        padding: 20px 0;
    }

    .logo-footer {
        max-width: 150px;
        height: auto;
        margin: 0;
        display: block;
        padding-left: 8px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        padding-left: 8px;
        width: 100%;
        gap: 20px;
    }

    .footer-top p {
        width: 100%;
        font-size: 12px;
        padding-left: 8px;
        margin-top: 20px;
        color: var(--Space-Grey, #5C656F);
        margin-top: 30px;
    }

    .footer-menu-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding-left: 8px;
        margin-bottom: 20px;
        color: var(--Space-Grey, #5C656F);
    }

    footer {
        display: none;
    }


}