@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
  

body {
    width: 100vw;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    color: #FFFFFF;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;

    @media (max-width: 768px) {
        /* flex-direction: row-reverse; */
        justify-content: space-between;
    }
}

.navbar-logo {
    height: 3rem;
    width: auto;
    margin: auto 0;
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;

    @media (max-width: 480px) {
        height: 2.2rem;
    }
}

.navbar-logo.scrolled {
    opacity: 1;
}

#navbar .menu-buttons {
    display: flex;
    align-items: center;

    @media (max-width: 480px) {
        flex-direction: row-reverse;;
    }
}

#navbar.scrolled {
    background-color: rgba(35, 44, 53, 0.8);
}

#navbar .options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
    max-width: 1280px;
    width: 100%;
    margin: 3rem 0;
    padding: 0 6rem;
    font-weight: 700;
}

#navbar .options a {
    color: #FFFFFF;
}

#navbar .options .active {
    color: #E9630C;
    font-style: italic;
}
  

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    color: white;
}

@media (max-width: 768px) {
    #navbar ul.options {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        width: 100vw;
        top: 0.9rem;
        left: 0;
        z-index: 1;
        padding: 0 2rem;
        gap: 0.2rem;
    }

    #navbar ul.options li {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-top: 1px solid #444;
    }

    .options .divisor {
        display: none;
    }

    .hamburger {
        display: block;
        padding: 1rem;
    }
}

#navbar ul.options.active {
    display: flex;
}

.language-flags {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
}

.language-flags img {
    width: 2rem;
    cursor: pointer;
}

.main-section {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('../images/bg-main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
}

.content {
    max-width: 1280px;
    width: 100%;
    margin-top: 10rem;
    margin-bottom: 4rem;
    padding: 0 6rem;

    @media (max-width: 1280px) {
        padding: 0 3rem;
    }

    @media (max-width: 480px) {
        margin-top: 6rem;
        padding: 0 1rem;
    }    
}

.main-section-content > img {
    width: 50%;
    height: auto;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.main-section-content > h2 {
    margin: 3rem 0;
    font-size: 42px;
    line-height: 3.6rem;
    font-weight: 700;
    text-transform: uppercase;

    @media (max-width: 1280px) {
        font-size: 40px;
        line-height: 3rem;
    }

    @media (max-width: 1100px) {
        font-size: 34px;
        line-height: 2.4rem;
    }

    @media (max-width: 480px) {
        font-size: 24px;
        line-height: 2rem;
    }
}

.main-section-content ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-section-content .topics {
    display: flex;
    justify-content: start;
    gap: 1rem;
}

.main-section-content .topics div {
    width: 24px;
    height: 24px;
    margin-top: 0.5rem;
    border-radius: 50%;
    background-color: #FFFFFF;

    @media (max-width: 1280px) {
        width: 20px;
        height: 20px;
    }

    @media (max-width: 1100px) {
        width: 18px;
        height: 18px;
    }

    @media (max-width: 480px) {
        width: 16px;
        height: 16px;
    }
}

.main-section-content .topics p {
    max-width: 90%;
    font-size: 30px;
    line-height: 2.4rem;

    @media (max-width: 1280px) {
        font-size: 24px;
        line-height: 2rem;
    }

    @media (max-width: 1100px) {
        font-size: 20px;
        line-height: 2rem;
    }

    @media (max-width: 480px) {
        font-size: 18px;
        line-height: 2rem;
    }
}

.products-section {
    position: relative;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    overflow: hidden;
}

.orange-stripe {
    width: 100%;
    height: 20px;
    background-color: #E9630C;
}

.products-section .logo {
    position: absolute;
    max-width: 200px;
    width: 16%;
    height: auto;
}

.products-section .logo-left {
    top: 30px;
    left: 0;
    transform: translateX(-60%);
}

.products-section .logo-right {
    bottom: 30px;
    right: 0;
    transform: translateX(60%);
}

.products-section .content {
    margin-top: 4rem;
}

.products-section .title-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.products-section .title-content img {
    width: 14%;
    height: auto;

    @media (max-width: 480px) {
        width: 54%;
    }
}

.products-section .title-content h2 {
    font-size: 40px;
    line-height: 3.6rem;
    font-weight: 700;
    text-transform: uppercase;

    @media (max-width: 1280px) {
        font-size: 40px;
        line-height: 3rem;
    }

    @media (max-width: 1100px) {
        font-size: 34px;
        line-height: 2.4rem;
    }

    @media (max-width: 480px) {
        font-size: 20px;
        line-height: 2rem;
    }
}

.products-topics {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (max-width: 480px) {
        flex-direction: column;
    }
}

.products-content ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
    margin-top: 4rem;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.products-content .topics {
    display: flex;
    justify-content: start;
    gap: 1rem;
}

.products-content .topics div {
    width: 24px;
    height: 24px;
    margin-top: 0.5rem;
    border-radius: 50%;
    background-color: #000000;

    @media (max-width: 1280px) {
        width: 20px;
        height: 20px;
    }

    @media (max-width: 1100px) {
        width: 18px;
        height: 18px;
    }

    @media (max-width: 480px) {
        width: 16px;
        height: 16px;
    }
}

.products-content .topics p {
    max-width: 90%;
    font-size: 26px;
    line-height: 2.4rem;

    @media (max-width: 1280px) {
        font-size: 24px;
        line-height: 2rem;
    }

    @media (max-width: 1100px) {
        font-size: 20px;
        line-height: 2rem;
    }

    @media (max-width: 480px) {
        font-size: 18px;
        line-height: 2rem;
    }
}

.products-topics img {
    margin-top: 4rem;
    width: 50%;
    transform: translateX(-10%);

    @media (max-width: 480px) {
        width: 100%;
        transform: translateX(0%);
        margin-top: 2rem;
    }
}

.products-content .products-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
    }
}

li.product-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: solid 2px #414141;
    border-radius: 20px;
}

li.product-box .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.4rem;
    border-radius: 16px;
    background-color: #414141;
}

.product-header .text-box {
    width: 70%;
    padding: 0.2rem 0.4rem 0.2rem 0.8rem;
    color: #FFFFFF;
}

.product-header .text-box h3 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;

    @media (max-width: 480px) {
        font-size: 30px;
    }
}

.product-header .text-box p {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
}

.product-header .image-box {
    width: 30%;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.product-header .image-box img {
    width: 100%;
    height: auto;
}

.product-box > p {
    margin-top: 0.8rem;
    padding: 0.2rem 0.8rem;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6rem;
}

.product-box > h4 {
    margin-top: 1rem;
    padding: 0.2rem 0.8rem;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.product-box > ul {
    padding: 0.2rem 0.8rem;
    width: 100%;
    margin: 1rem 0;
}

.product-box .topics div {
    width: 8px;
    height: 8px;
    margin-top: 0.6rem;

    @media (max-width: 480px) {
        width: 8px;
        height: 8px;
    }
}

.product-box .topics p {
    max-width: 90%;
    font-size: 18px;
    line-height: 1.8rem;

    @media (max-width: 1280px) {
        font-size: 24px;
        line-height: 2rem;
    }

    @media (max-width: 1100px) {
        font-size: 20px;
        line-height: 2rem;
    }

    @media (max-width: 480px) {
        font-size: 18px;
        line-height: 2rem;
    }
}

.product-box .orange-button {
    width: calc(100% + 4px);
    padding: 0.6rem 0.4rem;
    background-color: #E9630C;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    transform: translateY(2px) translateX(-2px);
}

.about-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem 4rem 1rem;
    background-image: url('../images/bg-about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
}

.about-content {
    padding: 3rem 0 0 0;
    border-radius: 1rem;
    background-color: #FFFFFF;
}

.about-content h2 {
    padding: 0 2rem;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
}

.about-content p {
    margin-top: 2rem;
    padding: 0 2rem;
    text-align: justify;
    font-size: 22px;
    line-height: 2.6rem;
    color: #000000;
}

.about-content p span {
    font-weight: bold;
}

.about-content .orange-button {
    width: calc(100%);
    margin-top: 2rem;
    padding: 0.6rem 0.4rem;
    background-color: #E9630C;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    transform: translateY(2px);
    cursor: pointer;
}

.success-stories-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEFEFE;
}

.success-stories-section .content {
    margin: 4rem;
    padding: 2rem;

    @media (max-width: 480px) {
        padding: 0.4rem;
    }
}

.success-stories-content .title-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;

    @media (max-width: 480px) {
        justify-content: center;
    }
}

.success-stories-content .title-container h2 {
    width: 80%;
    padding: 0 2rem;
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    color: #414141;

    @media (max-width: 480px) {
        width: 60%;
        font-size: 30px;
    }
}

.success-stories-content .title-container img {
    width: 8%;
    height: auto;

    @media (max-width: 480px) {
        width: 16%;
    }
}

.carousel-box {
    position: relative;
    padding: 0 10%;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 4rem 0 2rem 0;
    overflow: hidden;
    border: solid 2px #414141;
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 0;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.carousel-item .carousel-header {
    padding: 1rem 2rem;
    border-radius: 8px;
    background-color: #414141;
    color: #FFFFFF;
}

.carousel-item h2 {
    text-align: start;
    font-size: 28px;
    line-height: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;

    @media (max-width: 1280px) {
        font-size: 24px;
        line-height: 2rem;
    }

    @media (max-width: 480px) {
        font-size: 16px;
    }
}

.carousel-item h3 {
    padding: 1rem 2rem;
    text-align: start;
    font-size: 40px;
    font-weight: 700;
    color: #414141;
    
    @media (max-width: 1280px) {
        font-size: 32px;
        line-height: 2.4rem;
    }

    @media (max-width: 480px) {
        padding: 0.4rem 1rem;
        font-size: 30px;
        line-height: 1.6rem;
    }
}

.carousel-item h4 {
    padding: 1rem 2rem 0.4rem 2rem;
    text-align: start;
    font-size: 28px;
    font-weight: 700;
    color: #414141;

    @media (max-width: 1280px) {
        font-size: 24px;
    }

    @media (max-width: 480px) {
        font-size: 22px;
        padding: 0.4rem 1rem;
    }
}

.carousel-item p {
    padding: 1rem 2rem;
    text-align: start;
    font-size: 22px;
    line-height: 2rem;
    color: #414141;

    @media (max-width: 1280px) {
        font-size: 18px;
    }

    @media (max-width: 480px) {
        padding: 0.4rem 1rem;
        line-height: 1rem;
    }
}

.carousel-item p span {
    font-weight: bold;
    font-style: italic;
}

.carousel-item .orange-button {
    width: calc(100%);
    margin-top: 2rem;
    padding: 0.6rem 1rem;
    background-color: #E9630C;
    border: none;
    border-radius: 10px;
    text-align: start;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    transform: translateY(2px);
}

.prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    font-size: 24px;
    font-weight: bold;
    background-color: transparent;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
}

.prev img, .next img {
    max-width: 60px;
    height: auto;

    @media (max-width: 480px) {
        max-width: 30px;
    }
}

.prev {
    left: 0px;

    @media (max-width: 480px) {
        left: -3%;
    }
}

.next {
    right: 0px;

    @media (max-width: 480px) {
        right: -3%;
    }
}

/* Container dos dots */
.dots-container {
    text-align: center;
    margin-top: 30px;
}

/* Cada dot individual */
.dot {
    height: 6px;
    width: 6px;
    margin: 0 5px;
    background-color: #414141;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #E9630C;
}

.clients-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    background-image: url('../images/bg-clients.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #414141;
}

.clients-content h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.clients-logos {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6rem;
    margin-top: 6rem;
}

.clients-logos .first-line-item {
    height: 8rem;

    @media (max-width: 1280px) {
        height: 7.8rem;
    }

    @media (max-width: 480px) {
        height: 7.6rem;
    }

    @media (max-width: 420px) {
        height: 7rem;
    }

    @media (max-width: 380px) {
        height: 6rem;
    }
}

.clients-logos .second-line-item {
    width: 24%;
    height: auto;

    @media (max-width: 480px) {
        width: 47%;
    }
}

.clients-content .bottom-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6rem;
}

.bottom-clients h3 {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;

    @media (max-width: 480px) {
        font-size: 28px;
    }
}

.bottom-clients .orange-button {
    margin-top: 2rem;
    padding: 0.6rem 3rem;
    background-color: #E9630C;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;

    @media (max-width: 480px) {
        font-size: 26px;
    }
}

.footer-section {
    display: flex;
    justify-content: center;
    background-color: #034361;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    padding: 2rem 1rem;

    @media (max-width: 480px) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

.footer-content img {
    height: 4rem;
}

.footer-content h2 {
    margin: auto 0;
    font-size: 22px;
    color: #FFFFFF;

    @media (max-width: 480px) {
        font-size: 18px;
    }
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #FFFFFF;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-item img {
    height: 1.6rem;
    width: auto;
}

.contact-item p {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .carousel-item h2 {
        font-size: 18px;
    }
    .carousel-item h3 {
        font-size: 1.2em;
    }
    .carousel-item p {
        font-size: 1em;
    }
}
