html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: "Lato", sans-serif;
    height: 100vh;
    font-size: 1.8rem;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

section {
    padding: 2rem 4rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.btn {
    background: -webkit-linear-gradient(left, #4dd4d8 0%, #028c92 100%);
    background: -o-linear-gradient(left, #4dd4d8 0%, #028c92 100%);
    background: linear-gradient(to right, #4dd4d8 0%, #028c92 100%);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;/
}

.btn:hover {
    scale: 1.1;
}

/* Header */

.navbar-custom {
    padding: 2rem 0;
    padding-right: 0;
    width: 100%;
    border-radius: 0;
    z-index: 999;
    margin-bottom: 0;
    transition: all .5s ease-in-out;
}


.nav-sticky.navbar-custom {
    margin-top: 0;
    padding: 1.4rem 0;
    background: linear-gradient(135deg, rgba(77, 212, 216, 1) 0%, rgba(2, 140, 146, 1) 100%);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
}

.nav-sticky.navbar-custom .download-btn {
    background-color: #fff;
    color: #028C92;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.nav-sticky.navbar-custom .navbar-nav {
    margin-top: 0px;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 3rem;
    transition: .3s;
    position: relative;
}

.navbar-custom .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    border-radius: 10px;
    border-bottom: 2px solid #fff;
    transition: width 0.3s;
}

.navbar-custom .navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.navbar-custom .navbar-nav .nav-item .nav-link,
.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link {
    color: #fff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: inherit;
    padding: 0 1.2rem;
    margin: 0 1.6rem;
}

.header .container img,
.nav-sticky.navbar-custom .container img {
    max-width: 200px;
    content: url("/src/images/logo-credi-salario-branco.svg");
}

.nav-container {
    display: flex;
    align-items: center;
}

.download-btn {
    background: #028C92;
    transition: all .3s ease-in-out;
}

/* Hero Section */

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url(/src/images/hero_generic.jpg
);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: #fff;
    text-align: center;
    padding: 0 4rem;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 500;
}

.hero-text p {
    font-size: 3rem;
    font-weight: 500;
    line-height: 2.2rem;
}

.hero-text .download-btn {
    margin-top: 2rem;
}

/* Algoritm Section */

.algoritmo {
    padding: 9rem 0;
}

.card-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 40px;

}

.card {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    min-width: 280px;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ddd;
    transition: .2s ease-in-out;
    text-align: center;
}

.card:hover {
    scale: 1.1;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(2, 140, 146, 0.4);
}

.card h3 {
    margin-bottom: 10px;
    color: #028C92;
    font-size: 1.2em;
}

.card p {
    margin-bottom: 2rem;
    font-size: 0.95em;
    color: #666;
}

.card .card-link {
    color: #333;
    transition: all .3s ease-in;
}

.card .card-link:hover {
    color: #4dd4d8;
}

/* Product Section */

.products {
    padding: 9rem 2rem;
    text-align: center;
}

.product_container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;

}

.product_item {
    padding: 20px;
    border-radius: 10px;
    transition: border 0.3s;
    max-width: 300px;
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #028c92;
}

.product_item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product_item p {
    font-size: 1.5rem;
    color: #666;
}

.differentials {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.differentials h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.diff_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.diff_item {
    padding: 20px;
    border-radius: 1rem;
    text-align: center;
}

.diff_item:hover {
    background-color: #028c92;
    color: white;
    transition: background-color 0.3s ease;
}

.diff_item:hover i {
    color: white;
    transform: scale(1.2);
    transition: transform 0.3s ease, color 0.3s ease;
}

.diff_item:hover h3,
.diff_item:hover p {
    color: white;
}

.diff_item i {
    font-size: 40px;
    color: #028c92;
    margin-bottom: 15px;
}

.diff_item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.diff_item p {
    font-size: 1.8rem;
    color: #665;
}

/* Enterprise Section */

.enterprise {
    padding: 9rem 3rem;
}

.enterprise_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.enterprise_container img {
    width: 400px;
    border-radius: 15px;
}

.enterprise_txt_container {
    line-height: 1.8;
}

.enterprise_txt_container span {
    color: #4dd4d8;
}

/* Partner Section */

.partners {
    padding: 4rem 2rem;
    text-align: center;
}

.partners p {
    font-size: 1.8rem;
}

.partners_container {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 4.5rem 0;
}

.partner_card {
    background-color: #f5f5f5;
    border-radius: 1rem;
    padding: 2rem 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 500px;
    transition: transform .3s ease-in;
    text-align: left;
}

.partner_card .partner_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.partner_card:hover {
    transform: translateY(-10px);
}

.partners-list-p {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
    color: #028C92;
}

.list-block {
    display: block;
}

.partner_card li {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    gap: 20px;
}

.partner_card p {
    font-size: 1.8rem;
}

.partner_card i {
    font-size: 20px;
    color: #4dd4d8;


}




/* Growth Section */

.growth-strategy {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.growth-strategy .text-content {
    padding: 0 4rem;
}


.growth-strategy p {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.growth-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.growth-container .image-test {
    max-width: 450px;
}

.growth-container .image-test img {
    border-radius: 15px;
}

/* Modal */

.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(52, 52, 50, 0.749);
    opacity: 0;
    visibility: hidden;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.modal-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.modal-card {
    background-color: white;
    position: absolute;
    border-radius: 1.5rem;
    max-width: 600px;
}

.modal-content {
    position: relative;
    text-align: center;
    padding: 3rem;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    transition: all .3s ease-in;
}

.close-modal:hover {
    cursor: pointer;
    color: #028C92;
}

.app-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.app-links .link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: .5rem;
    border: 1px solid #000;
}

.app-links .link i {
    font-size: 3rem;
}

.app-links .link a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    transition: all .3s ease-in;
}

.app-links .link a div:hover {
    color: #028c92;
}

.back-to-top {
    font-size: 20px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background: -webkit-linear-gradient(left, #4dd4d8 0%, #028c92 100%);
    background: -o-linear-gradient(left, #4dd4d8 0%, #028c92 100%);
    background: linear-gradient(to right, #4dd4d8 0%, #028c92 100%);
    text-align: center;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    color: #fff;
    scale: 1.1;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Footer */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(77, 212, 216, 1) 0%, rgba(2, 140, 146, 1) 100%);
    padding: 2rem;
    color: #fff;
}

.footer-content {
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.footer img {
    max-width: 200px;
}

.footer .contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .contacts a {
    color: #fff;
    transition: .2s ease-in-out;
}


.footer .contacts a:hover {
    color: #333;
}

.footer .contacts h6 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.footer .contacts p {
    margin-bottom: .5rem;
}

.footer .copyright {
    text-align: center;
}