* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;

    --gray-300: #F2F2F2;
    --gray-500: #E8E8E8;
    --gray-550: #ECECEC;
    --gray-600: #dadada;
    --gray-900: #000000;

    --green-500: #00D61E;
    --green-600: #28552E;
}

@media (max-width: 1080px) {
    html {
        font-size: 93.75%;
    }
}

@media (max-width: 720px) {
    html {
        font-size: 87.5%;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--gray-300);
    color: var(--gray-900);
    overflow-x: hidden;
    position: relative;
}

body,
input,
select,
textarea,
button {
    font: 400 1rem "Montserrat", sans-serif;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header_mobile {
    display: none;
}

#header {
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 20px;
    width: 100%;
    height: auto;
}

#header .header {
    min-height: 56.27px;
}

.header .nav-bar {
    display: flex;
    gap: 5rem;
    width: 100%;
    height: 100%;
    align-items: center;
    max-width: calc(100vw - 20.35%);
    padding: 0 10px;
}

.header .nav-bar .brand {
    max-width: 200px;
    display: block;
}

#header .nav-list ul {
    position: initial;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 3rem;

    height: auto;
    width: fit-content;
    top: 0;

    list-style: none;
    z-index: 1;
    overflow-x: hidden;
}

#header .nav-list ul.active {
    left: 0%;
}

#header .nav-list ul a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    display: block;
    border-radius: 4px;

    padding: 10px 1rem;
    padding-bottom: 10px;

    transition: all 0.2s ease;
}

#header .nav-list ul li:hover a {
    background-color: #ffffff4d;
}

.nav-bar .actions {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-left: auto;
}

.nav-bar .actions a {
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;

    padding: 10px 1rem;
    padding-bottom: 10px;

    transition: all 0.2s ease;
}

.nav-bar .actions #login {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--white);
}

.nav-bar .actions a:hover {
    background-color: #ffffff4d;
}

.nav-bar .actions #contact-button {
    background-color: var(--white);
    color: var(--green-600);

    border-radius: 4px;

    padding: 0.5rem 0.9rem;
}

.nav-bar .actions #contact-button:hover {
    filter: brightness(0.9);
}

.nav-bar .actions #contact-button span {
    display: block;
}

@media only screen and (max-width: 1464px) {
    .header .nav-bar .brand {
        width: 120px;
    }

    #header .nav-list ul {
        gap: 1rem;
    }

    .header .nav-bar {
        gap: 2rem !important;
    }

    #phones .phones #phones-desktop {
        max-width: 800px;
    }
}

.brand-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    #header {
        display: none;
    }

    .brand-mobile {
        display: block;
        width: 130px;
    }

    #header_mobile {
        display: block;
        position: absolute;
        width: 100%;
        height: 100vh;

        background-color: transparent;
    }

    #header_mobile .header_mobile {
        height: 100vh;
    }

    #header_mobile .header_mobile .control_menu_mobile {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;

        z-index: 2;

        padding: 1rem 1.5rem;
    }

    #header_mobile .header_mobile .control_menu_mobile a {
        outline: none;
        border: none;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.75rem;
        font-weight: 600;
        background-color: var(--white);
        color: var(--green-500);

        border-radius: 4px;

        padding: 0.5rem 0.6rem;
    }

    #header_mobile .header_mobile .menu_mobile {
        position: relative;
        right: 100%;
        transition: .5s ease right;
        z-index: 2;
    }

    #header_mobile .header_mobile .menu_mobile.active {
        right: 0;
        width: 100%;
        height: 100vh;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background-color: var(--white);
        padding: 1rem 1.5rem;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_header #logo-mobile {
        width: 100px;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_header span {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_content {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        background-color: var(--gray-300);
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_content ul {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1.3rem;
        list-style: none;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_content ul a {
        font-size: 1rem;
        font-weight: 500;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        background-color: var(--gray-300);
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact .menu_mobile_contact_whatsapp {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 2rem 0;
        color: var(--green-600);
        font-weight: 600;

        border-top: 2px solid var(--gray-500);
        border-bottom: 2px solid var(--gray-500);
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact #login {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 2rem 0;
        color: var(--green-600);
        font-weight: 600;

        border-top: 2px solid var(--gray-500);
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact #login i {
        font-size: 1.5rem;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact .menu_mobile_contact_socials {
        width: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.2rem;
        padding: 6.5rem 0 0 0;
        font-weight: 500;
    }

    #header_mobile .header_mobile .menu_mobile .menu_mobile_contact .menu_mobile_contact_socials .links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
}

#banner {
    background-image: url("./assets/HeroBackground.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

#banner:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--gray-900);
    opacity: .25;
    z-index: -1;
}

#banner .banner {
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 100px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;

    color: var(--white);
}

#banner #banner-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#banner h1 {
    display: block;
    width: fit-content;
    font-size: 4.38em;
    font-weight: 700;
    position: relative;
}

#banner #banner-description {
    position: relative;
    flex-direction: column;
    gap: 1rem;
}

#banner #banner-description span {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
}

.banner>a {
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--green-600);

    border-radius: 4px;

    padding: 0.5rem 0.9rem;

    transition: filter 0.2s ease;
}

.banner>a:hover {
    filter: brightness(0.9);
}

#banner .socials {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    left: 0;
    bottom: 5rem;
    margin-left: 3rem;
}

#banner .socials img {
    transition: .2s ease-in-out;
}

#banner .socials img:hover {
    transform: scale(1.05);
}

@media only screen and (max-height: 831px) {

    #banner #banner-title,
    #banner #banner-description {
        top: -1rem;
    }
}

@media only screen and (max-width: 768px) {
    #banner {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
    }

    #banner .banner {
        padding: 0 30px;
        gap: 2rem;
    }

    #banner h1 {
        font-size: 2.5rem;
    }

    #banner #banner-title {
        top: 0;
    }

    #banner #banner-description {
        top: 0;
    }

    #banner #banner-description span {
        font-size: 1rem;
    }

    #banner button {
        top: 0;
    }

    #banner .socials {
        display: none;
    }
}

@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes text_reveal {
    100% {
        color: white;
    }
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/About_Background.svg);
    background-size: auto;
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    #content {
        background-position: top;
    }
}

#phones .phones {
    display: flex;
    align-items: center;
    justify-content: center;
}

#phones .phones img {
    position: relative;
    top: -10rem;
    z-index: 1;
}

#phones .phones #phones-desktop {
    display: block;
}

#phones .phones #phones-mobile {
    display: none;
}

@media only screen and (max-height: 831px) {
    #phones .phones #phones-desktop {
        top: -5rem;
    }
}

@media only screen and (max-width: 768px) {
    #phones .phones {
        min-width: auto;
    }

    #phones .phones img {
        top: -45px;
    }

    #phones .phones #phones-desktop {
        display: none;
    }

    #phones .phones #phones-mobile {
        display: block;
        max-width: 370px;
    }
}

#about {
    width: 100%;
    height: 100%;
    padding-bottom: 3rem;
}

#about .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    min-height: 100vh;

    margin-top: 2rem;
}

#about .about .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;

    padding: 0 3rem;
}

@media only screen and (max-width: 768px) {
    #about .about .info {
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

#about .about .info .left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

#about .about #logo-about {
    width: 50px;
}

#about .about .subtitle {
    color: var(--green-600);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3.6px;
    text-align: center;
}

#about .about .title span {
    max-width: 500px;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
}

#about .about .description {
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

#about .about .info .right img {
    max-height: calc(100vh - 200px);
}

@media only screen and (max-width: 768px) {
    #about .about .info .right img {
        max-height: 300px;
    }
}

#about .about .description span {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    line-height: 2;
}

#about-2 {
    width: 100%;
    height: 100%;
    padding-bottom: 3rem;
}

#about-2 .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    min-height: 100vh;

    margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
    #about-2 .about {
        min-height: fit-content;
    }
}

#about-2 .about .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;

    padding: 0 3rem;
}

@media only screen and (max-width: 768px) {
    #about-2 .about .info {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

#about-2 .about .info .left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;

    max-width: 600px;
}

#about-2 .about #logo-about {
    width: 50px;
}

#about-2 .about .subtitle {
    color: var(--green-600);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3.6px;
    text-align: center;
}

#about-2 .about .title span {
    max-width: 500px;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
}

#about-2 .about .description {
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

#about-2 .about .info .right img {
    max-height: calc(100vh - 200px);
}

@media only screen and (max-width: 768px) {
    #about-2 .about .info .right {
        transform: rotate(-90deg);
    }

    #about-2 .about .info .right img {
        max-height: 300px;
    }
}

#about-2 .about .description span {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    line-height: 2;
}

.about .scroller {
    max-width: 600px;
}

.about .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg,
            transparent,
            white 20%,
            white 80%,
            transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.about .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.about .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.about .scroller .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about .card-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.about .card-list li img {
    max-width: 80px !important;
}

#about .about .descriptionCards {
    font-size: 1rem;
    color: #6b7280;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 1.5rem));
    }
}

.divider {
    max-width: 1120px;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--gray-500);
    margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
    #about .about .title span {
        font-size: 2rem;
    }

    #about .about .title-2 {
        padding: 0 2rem;
    }

    #about .about .title-2 span {
        font-size: 1.5rem;
    }

    #about .about .scroller {
        max-width: -webkit-fill-available;
    }
}

#products {
    width: 100%;
    height: 100%;
}

#products .products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    margin-top: 4rem;
}

#products .products .board {
    width: 1120px;
    height: 414px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;

    padding: 3rem;

    border-radius: 20px;
    background-color: var(--gray-550);
}

#products .products .board i {
    color: var(--green-600);
    font-size: 3rem;
}

#products .products .board .title {
    font-weight: 700;
    font-size: 2.25rem;
    text-align: center;
}

#products .products .board .subtitle {
    max-width: 400px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 2;
    margin-bottom: 2rem;
}

#products .products .cards-wrapper {
    padding: 0 5rem;

    position: relative;
    top: -10rem;
}

.cards::-webkit-scrollbar {
    width: 6px;
    height: 7px;
}

.cards::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.cards::-webkit-scrollbar-thumb {
    background: var(--green-500);
    border-radius: 41px;
}

.cards::-webkit-scrollbar-track {
    background: #c5c5c5;
    border-radius: 9px;
}

.cards::-webkit-scrollbar-track:hover {
    background: #c5c5c5;
}

.cards::-webkit-scrollbar-track:active {
    background: #c5c5c5;
}

.cards::-webkit-scrollbar-corner {
    background: transparent;
}

#products .products .cards {
    overflow-x: scroll;
    max-width: 1200px;

    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;

    padding: 0 10rem;
}

#products .products .cards .card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    background-size: cover;

    min-width: 397px;
    height: 397px;
    padding: 3rem;
    margin-bottom: 1rem;

    border-radius: 20px;
    box-shadow: 10px 10px 6px -6px rgba(0, 0, 0, 0.09);
}

#products .products .cards i {
    font-size: 2.5rem;
}

#products .products .cards .card-active {
    background-color: var(--green-600);
    color: var(--white);
}

#products .products .cards .card-active i {
    color: var(--white);
}

#products .products .cards .card-inactive {
    background-color: var(--white);
    color: var(--green-600);
}

#products .products .cards .card-inactive i {
    color: var(--green-600);
}

#products .products .cards .card .title {
    font-size: 1.75rem;
    font-weight: 700;
    max-width: 200px;
}

#products .products .cards .card .description {
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 240px;
    line-height: 1.8;
}

@media only screen and (max-width: 816px) {
    #products .products .board {
        width: 100%;
    }

    #products .products .cards-wrapper {
        padding: 0 1rem !important;

        width: 100vw;
        padding: 0;
    }

    #products .products .cards {
        padding: 0;

        -webkit-mask: none;
        mask: none;
    }

    #products .products .cards .card {
        min-width: calc(100vw - 2.5rem);
        height: 360px;
        padding: 2.5rem;
    }

    #products .products .cards i {
        font-size: 3.5rem;
    }

    #products .products .cards .card .title {
        font-size: 2rem;
    }

    #products .products .cards .card .description {
        font-size: 1rem;
    }
}

#support {
    width: 100%;
}

#support .support {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    gap: 3rem;
}

#support .support .title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

#support .support .title {
    display: flex;
    gap: 192px;
}

#support .support .title i {
    display: none;
    font-size: 3rem;
    color: var(--green-500);
}

#support .support .title img:first-child {
    position: relative;
    bottom: 50px;
}

#support .support .title span {
    max-width: 500px;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
}

@media only screen and (max-width: 810px) {
    #support .support .title i {
        display: block;
    }

    #support .support .title {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    #support .support .title>img {
        display: none;
    }
}

#support .support .subtitle {
    font-size: 1rem;
    font-weight: 500;

    color: #707070;
    text-align: center;

    max-width: 500px;
}

#support .support .content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;

    max-width: 1120px;
}

@media only screen and (max-width: 768px) {
    #support .support .content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}

#support .support .content img {
    max-height: calc(100vh - 200px);
}

@media only screen and (max-width: 768px) {
    #support .support .content img {
        max-height: 300px;
    }
}

#support .support #support-brand {
    position: absolute;
    left: 0;
    z-index: -1;
}

#support .support .content img {
    max-width: 350px;
}

#support .support .content .description {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media only screen and (max-width: 768px) {
    #support {
        padding: 3rem 0;
    }

    #support .support {
        padding: 0 1.5rem;
    }

    #support .support .title span {
        font-size: 1.7rem;
        text-align: left;
    }

    #support .support .subtitle {
        text-align: left;
    }

    #support .support .content .description {
        font-size: 1.2rem;
        text-align: left;
    }

    #support .support .content {
        flex-direction: column-reverse;
    }

    #support .support #support-brand {
        display: none;
    }

    #support .support .content #support-icon-1,
    #support .support .content #support-icon-2 {
        display: none;
    }
}

#certification {
    height: 100vh;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 5rem;

    background-color: var(--green-600);
    color: var(--white);
}

.certification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
    gap: 1rem;

    height: 100%;
    max-width: 1120px;
}

.certification img {
    width: 100%;
    max-width: 400px;
}

.certification .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;

    max-width: calc(1120px/2);
    height: 100%;
}

.certification .content .title {
    font-size: 3rem;
    font-weight: 700;
}

.certification .content .description {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.certification .content .pciLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;

    transition: all 0.2s ease;
}

.certification .content .pciLink:hover {
    color: var(--green-600);
    background-color: var(--white);
}

.certification .content .pciLink i {
    font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
    #certification {
        height: 100vh;
        padding: 2rem 0;
    }

    .certification {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;

        padding: 0 1.5rem;
    }

    .certification img {
        max-width: 200px;
    }

    .certification .content {
        align-items: center;
        justify-content: flex-start;
        height: fit-content;
    }

    .certification .content .title {
        font-size: 2rem;
    }

    .certification .content .description {
        font-size: 1.2rem;
    }

    .certification .content .pciLink {
        width: 100%;
        font-size: 1rem;
    }
}

#faq {
    width: 100%;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

#faq .faq {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

#faq .faq #faq-phone {
    position: absolute;
    left: -60px;
    max-width: 350px;
}

#faq .faq .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    font-size: 3rem;
    font-weight: 700;
}

#faq .faq .title i {
    color: var(--green-500);
}

#faq .faq .subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 550px;
    line-height: 2;
    text-align: center;
}

#faq .faq .faq-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;

    margin-top: 2rem;

    font-size: 0.75rem;
    font-weight: 500;
}

#faq .faq .faq-wrapper details {
    width: 536px;
    padding: 1rem 2rem;
    border-radius: 6px;
}

#faq .faq .faq-wrapper details:not([open]) {
    background-color: var(--gray-550);
}

#faq .faq .faq-wrapper details[open] {
    background-color: var(--white);
}

#faq .faq .faq-wrapper details summary {
    width: auto;
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 2rem;
}

#faq .faq .faq-wrapper details summary::before {
    margin-left: auto;
}

#faq .faq .faq-wrapper details:not([open]) summary::before {
    content: url(./assets/Open-details.svg)
}

#faq .faq .faq-wrapper details[open] summary::before {
    content: url(./assets/Close-details.svg)
}

#faq .faq .faq-wrapper span {
    color: #666666;
    margin-top: 1rem;
}

#faq .faq .faq-wrapper span a {
    color: var(--green-600);
    font-weight: 600;

    text-decoration: underline;
}

@media only screen and (max-height: 831px) {
    #faq {
        padding-bottom: 5rem;
    }
}

@media only screen and (max-width: 768px) {
    #faq .faq {
        padding: 0 1.5rem;
        align-items: flex-start;
    }

    #faq .faq .title {
        flex-direction: column;
        align-items: flex-start;
    }

    #faq .faq .subtitle {
        text-align: start;
    }

    #faq .faq #faq-phone {
        display: none;
    }

    #faq .faq #faq-brand {
        display: none;
    }

    #faq .faq .faq-wrapper details {
        width: 100%;
    }
}

#contact {
    height: 100vh;
    width: 100%;
    z-index: 1;
    background-image: url(./assets/Contact_Background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}

#contact .contact {
    width: 100vw;
    display: flex;
    justify-content: flex-end;
}

#contact .contact .contact-data {
    width: calc(100vw/2);
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: transparent;
    color: var(--white);
}

#contact .contact .contact-data .contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;

    max-width: 550px;
}

#contact .contact .contact-data .contact-wrapper .title {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#contact .contact .contact-data .contact-wrapper .title i {
    font-size: 2.8rem;
    color: var(--green-500)
}

#contact .contact .contact-data .contact-wrapper .title span {
    font-size: 2.5rem;
    font-weight: 700;
}

#contact .contact .contact-data .contact-wrapper .contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

#contact .contact .contact-data .contact-wrapper .contact-whatsapp span {
    width: 244px;
    font-size: 0.875rem;
    text-align: left;
    line-height: 2;
}

#contact .contact .contact-data .contact-wrapper .contact-whatsapp a {
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    background-color: var(--green-600);
    color: var(--white);
    border-radius: 6px;
    border: 1px solid var(--white);
    padding: 1rem 1.5rem;
}

#contact .contact .contact-data .contact-wrapper .info {
    width: 100%;
    padding: 1.7rem 0;
    border-top: 2px solid var(--gray-550);
    border-bottom: 2px solid var(--gray-550);
    text-align: center;
}

#contact .contact .contact-data .contact-wrapper .info span {
    display: inline-block;
    font-weight: 700;
    font-size: 0.875rem;
    max-width: 300px;
}

#contact .contact .contact-data .contact-wrapper .form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;

    width: 100%;
}

#contact .contact .contact-data .contact-wrapper .form .form-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
}

#contact .contact .contact-data .contact-wrapper .form .form-group input {
    width: 100%;
    min-height: 44px;

    padding: 0.3rem 0.8rem;

    border: 1px solid var(--white);
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;

    transition: all 0.2s ease;

    font-size: 0.875rem;
}

#contact .contact .contact-data .contact-wrapper .form .form-group input:hover {
    border-color: #b3b3b3;
}

#contact .contact .contact-data .contact-wrapper .form button {
    border: none;
    outline: none;
    margin: 1rem 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 0.5rem 1rem;

    color: var(--white);
    background-color: var(--green-600);

    font-size: 0.75rem;
}

@media only screen and (max-width: 768px) {
    #contact {
        background-position: left;
    }

    #contact .contact {
        flex-direction: column-reverse;
    }

    #contact .contact .background {
        background-image: url(./assets/Contact-Background-mobile.svg);
        margin: 0;
        width: auto;
        height: calc(100vh/2);
    }

    #contact .contact .contact-data {
        margin: 0;
        width: 100%;
        height: auto;
        padding: 2rem 0;
    }

    #contact .contact .contact-data .contact-wrapper {
        width: 100%;
        padding: 0 1.5rem;
    }

    #contact .contact .contact-data .contact-wrapper .title {
        width: 100%;
    }

    #contact .contact .contact-data .contact-wrapper .contact-whatsapp span {
        width: 100%;
    }

    #contact .contact .contact-data .contact-wrapper .contact-whatsapp {
        flex-direction: column;
        width: 100%;
    }

    #contact .contact .contact-data .contact-wrapper .contact-whatsapp a {
        padding: 1rem;
    }

    #contact .contact .contact-data .contact-wrapper .form .form-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    #contact .contact .contact-data .contact-wrapper .form button {
        margin: 1rem 0 0 0;
    }
}

#footer {
    width: 100%;
    padding: 3rem 8rem;
}

#footer .footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

#footer .footer #logo-footer {
    width: 250px;
}

#footer .footer .footer-divider {
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--gray-500);
}

#footer .footer .business-contact {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}

#footer .footer .business-contact .col {
    flex: 1;
}

#footer .footer .business-contact .col .title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#footer .footer .business-contact .col .address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}

#footer .footer .business-contact .col .address span {
    font-size: 0.75rem;
    font-weight: 400;
}

#footer .footer .business-contact .col .sac-phones {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}

#footer .footer .business-contact .col .sac-phones span {
    font-size: 0.75rem;
    font-weight: 400;
}

#footer .footer .business-contact .col .email {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}

#footer .footer .business-contact .col .email span,
a {
    font-size: 0.75rem;
    font-weight: 400;
}

#footer .footer .business-contact .col .social-links {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1rem;
}

.social-links i {
    color: var(--gray-900);
    font-size: 32px;
}

@media only screen and (max-width: 768px) {
    #footer {
        padding: 3rem 1.5rem;
    }

    #footer .footer .business-contact {
        flex-direction: column;
    }
}

#copy {
    width: 100%;
    background-color: var(--gray-500);
}

#copy .copy {
    width: 100%;
    padding: 1rem 13rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 0.875rem;
    color: #A5A5A5;
}

#copy .copy a {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    #copy .copy {
        flex-direction: column;
        gap: 0.5rem;

        font-size: 0.857143rem;
        padding: 1rem;
    }
}

.max-h-screen {
    max-height: 100vh;
}

.bg-white {
    background-color: #FFFFFF;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.gap-6 {
    gap: 1.5rem
        /* 24px */
    ;
}

.mt-20 {
    margin-top: 5rem
        /* 80px */
    ;
}

.font-medium {
    font-weight: 500;
}

.px-12 {
    padding-left: 3rem
        /* 48px */
    ;
    padding-right: 3rem
        /* 48px */
    ;
}

.w-full {
    width: 100%;
}

.h-\[70px\] {
    height: 70px;
}

.bg-gray-1000 {
    background-color: var(--green-600);
}

.bg-gray-100 {
    background-color: var(--gray-300);
}

.w-\[150px\] {
    width: 150px;
}

.h-\[calc\(100vh-140px\)\] {
    height: calc(100vh - 140px);
}

.p-6 {
    padding: 1.5rem
        /* 24px */
    ;
}

@media (min-width: 1024px) {
    .lg\:p-12 {
        padding: 3rem
            /* 48px */
        ;
    }
}

.max-h-\[calc\(100vh-188px\)\] {
    max-height: calc(100vh - 188px);
}

@media (min-width: 1024px) {
    .lg\:max-h-\[calc\(100vh-236px\)\] {
        max-height: calc(100vh - 236px);
    }
}

.overflow-y-auto {
    overflow-y: auto;
}

.max-w-\[1120px\] {
    max-width: 1120px;
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .lg\:px-0 {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.text-4xl {
    font-size: 2.25rem
        /* 36px */
    ;
    line-height: 2.5rem
        /* 40px */
    ;
}

.font-bold {
    font-weight: 700;
}

.text-gray-1000 {
    color: var(--green-600);
}

.text-lg {
    font-size: 1.125rem
        /* 18px */
    ;
    line-height: 1.75rem
        /* 28px */
    ;
}

.font-semibold {
    font-weight: 600;
}

.ml-6 {
    margin-left: 1.5rem
        /* 24px */
    ;
}

.text-white {
    color: #FFFFFF;
}

.text-center {
    text-align: center;
}

.h-full {
    height: 100%;
}

.gap-4 {
    gap: 1rem
        /* 16px */
    ;
}

.w-\[180px\] {
    width: 180px;
}

.p-2 {
    padding: 0.5rem;
}

.border-2 {
    border: 2px solid var(--gray-900);
}

.rounded {
    border-radius: 0.25rem;
}

.font-bold {
    font-weight: 700;
}

.mt-1 {
    margin-top: 1rem;
}

#pci-certification {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pci-certification {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;

    padding: 2rem 0;
    max-width: 1120px;
}

@media only screen and (max-width: 768px) {
    .pci-certification {
        padding: 2rem;
    }
}

.pci-certification .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;

    max-width: 600px;

    text-align: center;
}

.pci-certification .title img {
    max-width: 150px;
}

.pci-certification .descriptionItems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;

    max-width: 1120px;

    margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
    .pci-certification .descriptionItems {
        grid-template-columns: 1fr;
    }
}

.pci-certification .descriptionItems .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;

    padding: 1rem;
    border-radius: 6px;

    background-color: var(--gray-550);
    color: var(--gray-1000);
    font-size: 0.875rem;

    transition: all 0.2s ease;
}

.pci-certification .descriptionItems .item:hover {
    background-color: var(--gray-600);
}

.pci-certification .descriptionItems .item span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
}

.pci-certification .descriptionItems .item p {
    font-size: 0.9rem;
    line-height: 1.5rem;
}

.pci-certification .pciLevels {
    max-width: 1120px;
    margin-top: 2rem;
}

.pci-certification .pciLevels span {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.containerLevels {
    padding-top: 3rem;
    padding-bottom: 3rem;

    max-width: 1120px;
}

.timeline-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.timeline-header {
    grid-column: 1 / -1;
}

.header-content {
    text-align: center;
    position: relative;
}

.header-content .titleTimeline {
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.header-content .subtitleTimeline {
    font-size: 1rem;
    line-height: 1.25rem;
}

.header-content::before {
    content: '';
    display: block;
    width: 6rem;
    height: 0.75rem;
    margin: 0 auto;
    margin-bottom: 1.25rem;
    border-radius: 0.375rem;
    background-color: var(--green-600);
    /* Cor do brand (dark) */
}

.timeline-content {
    position: relative;
    display: grid;
    gap: 3rem;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

@media only screen and (max-width: 768px) {
    .timeline-item {
        padding-left: 1rem;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: -1.75rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--green-500);
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .timeline-item::before {
        left: -0.75rem;
    }
}

.position {
    font-size: 1.25rem;
    font-weight: 700;
}

.duration {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--green-600);
    font-weight: 600;
}

.alert-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: fit-content;
    border: 1px solid transparent;
    background-image: linear-gradient(to bottom, rgba(167, 167, 167, 0.188), rgba(63, 63, 63, 0.188));
    background-origin: border-box;
    overflow: hidden;
    border-radius: 6px;
    z-index: 99999;
}

@media only screen and (max-width: 768px) {
    .alert-container {
        bottom: 0px;
        right: 0px;
        left: 0px;
        width: fit-content;
        border: none;
    }
}

.alert-content {
    background-color: #202020;
    max-width: 400px;
    transition: background-color 0.2s;
}

@media only screen and (max-width: 768px) {
    .alert-content {
        max-width: 100vw;
    }
}

.alert-content:hover {
    background-color: #242424;
}

.alert-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    color: white;
}

.alert-title {
    font-size: 20px;
    font-weight: 500;
    color: #fafafa;
    margin: 0;
}

.alert-message {
    font-size: 14px;
    color: #f4f4f5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.alert-message strong {
    font-weight: 600;
}

.alert-message a {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.alert-button {
    margin: 0 auto;
    width: 100%;
    background-color: var(--green-600);
    transition: filter 0.2s;
    border-radius: 6px;
    padding: 8px 16px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    border: none;
    cursor: pointer;
}

.alert-button:hover {
    filter: brightness(0.9);
}

.document-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2rem 0;
}

.document-container .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--green-600);
}

iframe {
    width: 1120px;
    height: 100vh;
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: white;
}

@media only screen and (max-width: 768px) {
    iframe {
        width: 100vw;
        height: 100vh;
    }

    .document-container .title {
        font-size: 1.5rem;
    }
}