/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syncopate:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap"); */

:root {
    --animation-section: 1000ms;
}

@keyframes GradAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

header .nav-mobile {
    display: none;
}

header .nav-header {
    transition: all 500ms;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    height: 100px; /* or 70px ${(props) => props.theme.heightHeader};*/
    display: flex;
    justify-content: center;
}

header .nav-container {
    width: 1280px;
    display: flex;
    justify-content: space-between;
}

header .toggle-menu {
    display: none;
}

header .logo {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

header .logo img:first-child {
    transition: all 500ms;
    height: 22px; /* or 0px ${(props) => props.theme.heightUduLogo}; */
}

header .logo img:last-child {
    height: 40px;
}

header .nav-menu {
    transition: all 500ms;
    display: flex;
    align-items: center;
    opacity: 1; /* or 0 ${(props) => props.theme.opacityNavMenu};*/
    pointer-events: auto; /* or none ${(props) => props.theme.pointerEvents};*/
}

header .nav-menu ul {
    display: flex;
    list-style-type: none;
    justify-content: center;
    column-gap: 50px;
    color: rgba(0, 114, 188, 1);
}

header .nav-menu li {
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
    cursor: pointer;
}

header .nav-menu li::after {
    opacity: 0;
    transition: all 400ms;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgb(0, 114, 188);
    background: linear-gradient(
        90deg,
        rgba(0, 114, 188, 1) 0%,
        rgba(109, 192, 103, 1) 100%
    );
}

header .nav-menu li:hover::after {
    opacity: 1;
    transition: all 600ms;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgb(0, 114, 188);
    background: linear-gradient(
        90deg,
        rgba(0, 114, 188, 1) 0%,
        rgba(109, 192, 103, 1) 100%
    );
}

header .nav-button-container {
    display: flex;
    align-items: center;
    position: relative;
}

header .nav-button {
    transition: all 500ms;
    border-radius: 30px;
    background: rgba(109, 192, 103, 1);
    padding: 12px; /* or 10px ${(props) => props.theme.paddingButton};*/
    width: 130px;
    color: #fff;
    font-weight: lighter;
    display: flex;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    text-align: center;
}

header .nav-button:hover {
    background: rgba(109, 192, 103, 0.9);
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 114, 188);
    width: 60px;
    height: 0px;
    opacity: 0;
    border-radius: 50%;
    transition: opacity 500ms ease, height 0ms linear,
        background-color 500ms ease;
    overflow: hidden;
    cursor: pointer;
}

.back-top:hover {
    background-color: rgb(32, 132, 197);
}

.back-top img {
    width: 40px;
}

.intro {
    display: flex;
    width: 100%;
    height: 100vh;
    background: url(img/udu_img-4.jpg);
    background-size: 100%;
    justify-content: center;
}

.intro .intro-container {
    width: 1280px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.intro .intro-container .intro-enunciado {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 33%;
}

.intro-enunciado .header {
    font-size: 38px;
    font-family: "Syncopate", sans-serif;
    font-weight: bold;
    line-height: 48px;
    color: rgb(0, 114, 188);
}

.intro-enunciado .button-cadastro {
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        rgba(0, 114, 188, 1) 0%,
        rgba(109, 192, 103, 1) 100%
    );
    font-size: 25px;
    width: 260px;
    height: 65px;
    color: #fff;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-size: 100% 100%;
    transition: all 0.5s ease;
}

.intro-enunciado .button-cadastro:hover {
    transition: all 0.5s ease;
    font-size: 27px;
    background-size: 200% 200%;
    animation: GradAnimation 1s ease infinite;
}

.about {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #fff;
    align-items: center;
    justify-content: center;
}

.about .container {
    max-width: 900px;
    opacity: 1;
    transition: opacity var(--animation-section) ease;
}

.about .container.invisible {
    opacity: 0;
}

.about h1 {
    font-family: "Syncopate", sans-serif;
    color: rgb(0, 114, 188);
}

.about h2 {
    font-family: "Syncopate", sans-serif;
    color: rgba(109, 192, 103, 1);
}

.about p {
    color: rgb(0, 114, 188);
    font-size: 20px;
}

.what {
    display: flex;
    width: 100%;
    height: 100vh;
    background: rgb(109, 192, 103);
    background: linear-gradient(
        90deg,
        rgba(109, 192, 103, 1) 0%,
        rgba(0, 114, 188, 1) 100%
    );
    align-items: center;
    justify-content: center;
    color: #fff;
}

.what .container {
    max-width: 900px;
    opacity: 1;
    transition: opacity var(--animation-section) ease;
}

.what .container.invisible {
    opacity: 0;
}

.what h1 {
    font-family: "Syncopate", sans-serif;
}

.what .content {
    /* display: flex; */
    max-width: 900px;
    column-gap: 50px;
    margin-top: 40px;
}

.what .content > ul {
    display: flex;
    column-gap: 70px;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    flex: 1;
}

.what .content > ul li {
    flex: 1;
    margin-bottom: 30px;
}

.what .content > ul li strong {
    font-size: 1.2em;
}

.what .content > ul li ul {
    padding: 0px 0px 0px 18px;
}

.what .content > ul li li {
    margin-bottom: 10px;
    padding: 0px;
}

.what .content > ul li span {
    display: block;
    padding-bottom: 20px;
}

.what .content div {
    flex: 1;
    background: url(img/udu_img_header.png);
    background-size: 100%;
    background-position: center;
    height: 235px;
    border-bottom-left-radius: 600px;
    border-bottom-right-radius: 600px;
}

.solutions {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #fff;
    align-items: center;
    justify-content: center;
}

.solutions .container {
    max-width: 900px;
    opacity: 1;
    transition: opacity var(--animation-section) ease;
}

.solutions .container.invisible {
    opacity: 0;
}

.solutions h1 {
    font-family: "Syncopate", sans-serif;
    color: rgb(0, 114, 188);
}

.solutions .content {
    display: flex;
    max-width: 900px;
    column-gap: 30px;
}

.solutions .content div {
    width: 350px;
}

.solutions .content ul {
    flex: 1;
    font-size: 20px;
    color: rgba(109, 192, 103, 1);
}

.solutions .content li:not(.solutions .content li:last-child) {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(109, 192, 103, 0.5);
}

.blog {
    width: 100%;
    height: 100vh;
    background: url(img/udu_img-6.png);
    background-size: 100%;
}

.blog .gradient {
    display: flex;
    background: linear-gradient(
        0deg,
        rgba(109, 192, 103, 0) 0%,
        rgba(0, 114, 188, 1) 60%
    );
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.blog .container {
    max-width: 900px;
    opacity: 1;
    transition: opacity var(--animation-section) ease;
}

.blog .container.invisible {
    opacity: 0;
}

.blog h1 {
    font-family: "Syncopate", sans-serif;
    color: #fff;
}

.blog .content {
    max-width: 900px;
}

.blog ul {
    list-style-type: none;
    display: flex;
    column-gap: 50px;
    padding: 0;
}

.blog ul li {
    width: 250px;
    height: 175px;
}

.blog ul a div {
    height: 40px;
    padding: 5px;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 0) 100%
    );
}

.blog ul a {
    display: flex;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    flex-direction: column;
    justify-content: flex-end;
    width: 250px;
    height: 175px;
    filter: brightness(100%);
    transition: filter 200ms ease;
}

.blog ul a:hover {
    filter: brightness(70%);
}

.blog ul #blog-1 {
    background: url(https://www.michaelpage.com.br/sites/michaelpage.com.br/files/styles/advice_node_desktop/public/2021-09/agtechs.jpg);
    background-size: cover;
    background-position: center;
}

.blog ul #blog-2 {
    background: url(https://infocredi360.com.br/images/a/1706/b2ap3_medium_agronegocio-credito-rural-Infocredi360.jpg);
    background-size: cover;
    background-position: center;
}

.blog ul #blog-3 {
    background: url(https://imagens.ebc.com.br/mW2yYmUWjSmKGqgjU7ETDGOc5jg=/1170x700/smart/https://agenciabrasil.ebc.com.br/sites/default/files/thumbnails/image/dinheiro_caixa_mcajr_abr_2907221128.jpg?itok=kyoGQMUw);
    background-size: cover;
    background-position: center;
}

.contact {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #fff;
    align-items: center;
    justify-content: center;
}

.contact .container {
    max-width: 900px;
    opacity: 1;
    transition: opacity var(--animation-section) ease;
}

.contact .container.invisible {
    opacity: 0;
}

.contact h1 {
    font-family: "Syncopate", sans-serif;
    color: rgb(0, 114, 188);
}

.contact .content {
    display: flex;
    max-width: 900px;
    column-gap: 50px;
    margin-top: 40px;
}

.contact .content > div:first-child {
    width: 65%;
}

.contact .content > div:last-child {
    width: 35%;
}

.contact .content .talk-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.contact .content .whatsapp {
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3),
        0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

.contact .content .whatsapp:hover {
    opacity: 0.8;
}

.contact .content .whatsapp img {
    width: 120px;
    filter: invert(100%);
}

.contact .content .img {
    background: url(img/udu_img-1.png);
    background-size: 100%;
    height: 235px;
    width: 420px;
    border-bottom-left-radius: 400px;
    border-bottom-right-radius: 400px;
    cursor: pointer;
}

.bubble {
    margin-top: 20px;
    position: relative;
    max-width: 30em;
    background-color: #fff;
    padding: 1.125em 1.5em;
    font-size: 18px;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3),
        0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

.bubble::before {
    content: "";
    position: absolute;
    width: 0;
    right: 40px;
    height: 0;
    bottom: 100%;
    border: 0.75rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, 0.1));
}

footer {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

footer .container {
    max-width: 1200px;
    display: flex;
}

footer .container > div:first-child {
    width: 240px;
}

footer .logo {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

footer .logo img:first-child {
    transition: all 500ms;
    height: 23px;
}

footer .logo img:last-child {
    height: 48px;
}

footer .container > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    color: rgb(0, 114, 188);
}

footer .container > div:last-child > div:first-child {
    display: flex;
    /* justify-content: space-between; */
    column-gap: 40px;
    border-bottom: 1px solid rgb(0, 114, 188);
    padding-bottom: 10px;
    font-size: 1em;
}

footer
    .container
    > div:last-child
    > div:first-child
    div
    > div:first-child
    > span {
    border-bottom: 1px solid rgb(0, 114, 188);
    font-weight: bold;
    padding-bottom: 3px;
    text-decoration: none;
}

footer .container > div:last-child > div:first-child div > div:last-child > a {
    text-decoration: none;
    color: rgb(0, 114, 188);
}

footer .container > div:last-child > div:first-child div > div:last-child {
    padding: 10px 0;
}

footer .container > div:last-child > div:last-child {
    padding-top: 15px;
}

@media screen and (max-width: 600px) {
    header .nav-header {
        /* background-color: red; */
        height: auto;
    }

    header .nav-container {
        width: 100%;
        padding: 10px;
    }

    header .toggle-menu {
        display: flex;
    }

    header .nav-menu {
        display: none;
    }

    header .nav-button-container {
        display: none;
    }

    header .toggle-menu img {
        height: 40px;
    }

    header .nav-mobile {
        display: block;
        background-color: rgba(255, 255, 255, 0.9);
        max-height: 0px;
        overflow: hidden;
        transition: max-height 500ms ease;
    }

    header .nav-mobile .nav-menu {
        display: block;
    }

    header .nav-mobile .nav-menu ul {
        display: block;
        margin: 0;
        padding: 0;
        padding-top: 20px;
        text-align: center;
        font-size: 30px;
    }

    header .nav-mobile .nav-menu ul li {
        padding: 10px 0px;
    }

    header .nav-mobile .nav-button-container {
        display: flex;
        justify-content: center;
        padding: 40px;
    }

    header .nav-mobile .nav-button-container .nav-button {
        width: 250px;
        font-size: 20px;
        font-weight: normal;
    }

    .intro {
        background-size: auto;
        background-position: center;
    }

    .intro .intro-container {
        width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .intro .intro-container .intro-enunciado {
        margin-top: 100px;
        width: 300px;
        row-gap: 20px;
    }

    .intro .intro-container .intro-enunciado .header {
        font-size: 30px;
        line-height: 40px;
    }

    .intro .intro-container .intro-enunciado .button-cadastro {
        font-size: 20px;
        width: 200px;
        height: 55px;
    }

    .about .container {
        padding: 30px;
    }

    .about .container h1 {
        margin-bottom: 50px;
    }

    .about .container h2,
    .about .container p {
        font-size: 18px;
    }

    .what .container {
        padding: 30px;
    }

    .what .content > ul {
        display: block;
        font-size: 17px;
    }

    .what .content div {
        display: none;
    }

    .solutions .container {
        padding: 30px;
    }

    .solutions .content {
        flex-direction: column;
        align-items: center;
    }

    .blog {
        background-size: auto;
        background-position: center;
    }

    .blog ul {
        flex-direction: column;
        row-gap: 20px;
    }

    .contact .container {
        padding: 30px;
    }

    .contact .content {
        flex-direction: column;
        align-items: center;
    }

    .contact .content > div:first-child {
        width: 90%;
    }

    .contact .content > div:last-child {
        width: 90%;
    }

    .contact .content .img {
        display: none;
    }

    footer {
        padding: 50px;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }

    footer .logo {
        justify-content: center;
    }

    footer .container > div:last-child > div:first-child {
        flex-direction: column;
    }

    /* header .logo img:first-child {
        display: none;
    } */
}
