* {
    margin: 0;
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    scroll-behavior: smooth;
}

nav {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 2;
    background-color: white;
}

body::-webkit-scrollbar {
    width: 10px;
    /* Largura da barra de rolagem */
}

body::-webkit-scrollbar-thumb {
    background-color: #E73569;
    /* Cor do "polegar" da barra de rolagem */
}

body::-webkit-scrollbar-track {
    background-color: #A4C428;
    /* Cor do trilho da barra de rolagem */
}

::selection {
    background-color: #E73569;
    /* Defina a cor de fundo ao selecionar o texto */
    color: white;
    /* Defina a cor do texto selecionado */
}

.nav-container {
    height: 100px;
    width: 100%;
    display: flex;
}

.nav-container-box {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container-box a {
    height: 100%;
}

.nav-container-box-logo {
    height: 100%;
}

.nav-container-box-menu {
    width: 70%;
    display: flex;
    justify-content: space-evenly;
}

.nav-link {
    color: #222;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.nav-link:hover {
    color: #A4C428;
}

.section-swiper {
    height: calc(100vh - 120px);
    min-height: 600px;
    position: relative;
    margin-top: 120px;
}

.section-swiper>.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-swiper>.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-swiper>.swiper-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.section-swiper>.swiper-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.swiper-pagination-carousel>.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #A1C128 !important;
    border: 2px solid #E73569;
    box-sizing: border-box;
}

.swiper-pagination-carousel>.swiper-pagination-bullet {
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    background: #A1C128 !important;
}

.sobre-container {
    width: 770px;
    margin: auto;
}

.sobre-container-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sobre-container-more.show {
    max-height: 1000px;
    /* Valor maior que a altura máxima do conteúdo */
}

.sobre-container h4 {
    color: #A4C428;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

.sobre-container h3 {
    color: #061829;
    text-align: center;
    font-family: mono45-headline;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}

.sobre-container p {
    color: #666F77;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    padding-top: 30px;
    /* 160% */
}

.sobre-container button {
    height: 56px;
    width: 160px;
    background-color: #A4C428;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */

    border: none;
    border-radius: 4px;
    margin: auto;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Define a transição para várias propriedades */
    cursor: pointer;
}

.sobre-container button:hover {
    background-color: #E5376B;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.section-sobre {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-equipa {
    height: 450px;
    min-height: 420px;
    display: flex;
    align-items: center;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/img/team-bg.png');
}

.equipa-container>.swiper-slide {
    text-align: center !important;
}

.equipa-container>.swiper {
    height: 100%;
}

.equipa-container {
    width: 70%;
    max-width: 600px;
    margin: auto;
    height: 80%;
    text-align: center;
}

.swiper-slide-img-equipa {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
}

.swiper-slide-equipa h3 {
    margin-top: 20px;
    color: #FFF;
    font-family: Mono45-Headline;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.swiper-slide-equipa h4 {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.swiper-pagination-equipa>.swiper-pagination-bullet {
    opacity: 0.3 !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-equipa>.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #ffffff !important;
}

.section-sobre2 {
    background: #F1F6FB;
}

.sobre2-container {
    width: 100%;
    max-width: 1930px;
    height: 781px;
    display: flex;
    position: relative;
    margin: auto;
}

.sobre2-container-info-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sobre2-container-info-more.show {
    max-height: 500px;
    /* Valor maior que a altura máxima do conteúdo */
}

.sobre2-container-img,
.sobre2-container-info {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre2-container-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.sobre2-container-info h4 {
    color: #A4C428;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

.sobre2-container-info h3 {
    color: #061829;
    font-family: mono45-headline;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    /* 125% */
}

.sobre2-container-info p {
    color: #666F77;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    /* 160% */
}

.sobre2-container-info button {
    height: 56px;
    width: 160px;
    background-color: #A4C428;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */

    border: none;
    border-radius: 4px;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Define a transição para várias propriedades */
    cursor: pointer;
}

.sobre2-container-info button:hover {
    background-color: #E5376B;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}


.sobre2-container-info-box {
    width: max-content;
}

.sobre2-container-info-box p {
    width: 377px;
}

.sobre2-clip {
    width: 99px;
    height: 145px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.produtos-header {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.produtos-header h5 {
    color: #666F77;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

.produtos-header h2 {
    color: #061829;
    text-align: center;
    font-family: Mono45-Headline;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    /* 125% */
}

.produtos-header p {
    color: #666F77;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    width: 560px;
    margin: auto;
}

.produtos-list {
    width: 1080px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 50px;
}

.produtos-list-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.produtos-list-row-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.produtos-more {
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    opacity: 0;
    margin-bottom: 0px;
    margin-top: 0px;
}

.produtos-more.show {
    max-height: 1000px;
    /* Ou qualquer valor maior que a altura máxima do conteúdo */
    opacity: 1;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    /* Adicione a transição de opacidade */
    margin-bottom: 0px;
    margin-top: 100px;

}


.produto {
    height: 370px;
    width: 344px;
    border-radius: 8px;
    border: 1px solid #F0F5F8;
    background: #FFF;
    box-shadow: 0px 3px 6px 0px rgba(155, 188, 232, 0.29);
    position: relative;
}

.produto-icon {
    height: 96px;
    width: 96px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(25%, -50%);
}

.produto-details {
    width: 85%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
}

.produto-details h2 {
    color: #061829;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 136.364% */
    margin-bottom: 10px;
}

.produto-details p {
    color: #666F77;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    /* 160% */
}

.produto-details button {
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid #E73569;
    width: 100%;
    background: none;
    color: #E73569;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;


    position: relative;
    color: #E73569;
    transition: color 0.3s;

}

.produto-details button::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -2px;
    width: 0%;
    height: 104%;
    background: #E73569;
    transition: 0.3s;
    z-index: -1;
    border-radius: 4px;
}

.produto-details button:hover {
    color: #FFF;
    cursor: pointer;
}

.produto-details button:hover::before {
    width: 101%;
}

.produtos-list-button {
    height: 56px;
    width: 160px;
    background-color: #A4C428;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */

    border: none;
    border-radius: 4px;


    margin: auto;
    margin-top: 30px;
    margin-bottom: 100px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Define a transição para várias propriedades */
    cursor: pointer;

    z-index: 2;
}

.produtos-list-button:hover {
    background-color: #E5376B;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.produto-details-more {
    display: none;
}

.section-infraestruturas {
    margin-bottom: -5px;
}

.section-infraestruturas img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

footer {
    background-color: #A4C428;
    padding-top: 150px;
    padding-bottom: 150px;
}

.footer-container {
    width: 90%;
    max-width: 1080px;
    margin: auto;
}

.footer-logo {
    width: 120px;
}

.footer-container-header {
    display: flex;
    justify-content: space-between;
}

.footer-container-header-media {
    justify-content: space-between;
    display: flex;
    width: 110px;
    text-align: right;
}

.footer-container-header-media img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.footer-container-body {
    display: flex;
    justify-content: space-between;
}

.footer-container-body-section {
    margin-top: 70px;
}

.footer-container-body-section h6 {
    color: #E5376B;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    /* 133.333% */
}


.footer-container-body-section a {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px;
    width: 100%;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-container-body-section {
    margin-top: 50px;
    width: 200px;
}

.footer-container-body-section-link {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.footer-section-contactar {
    width: 272px;
}

.footer-section-contactar-info {
    width: 100%;
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.footer-section-contactar-info img {
    margin-right: 10px;
}

.footer-container-body-section-link small {
    width: 100%;
    color: white;
    font-family: Poppins;
    margin-bottom: 10px;
    font-weight: 200;
}

.footer-section-nmb {
    margin-bottom: 0;
}

.footer-section-ligar {
    width: 325px;
}

.footer-container-body-section-link p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    /* 160% */
}

.footer-container-body-section-link button {
    width: 100%;
    border-radius: 4px;
    background: #E5376B;
    border: none;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 15px;
}

.footer-container-body-section-link img {
    margin-right: 5px;
}

@media (min-width: 768px) {
    .no-desktop {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .no-mobile {
        display: none;
    }

    .section-swiper {
        height: calc(60vh - 120px);
        min-height: 500px;
        position: relative;
        margin-top: 120px;
    }

    .swiper-logo img {
        width: 100px;
    }

    .swiper-logo svg {
        width: 120px;
    }

    .sobre-container {
        width: 90%;
    }

    .sobre-container h4 {
        font-size: 14px;
    }

    .sobre-container h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .sobre-container p {
        font-size: 15px;
        padding-top: 20px;
    }

    .sobre-container button {
        height: 46px;
        width: 150px;
        font-size: 14px;
    }

    .section-equipa {
        height: 350px;
        min-height: 350px;
    }

    .swiper-slide-img-equipa {
        width: 180px;
        height: 180px;
    }

    .swiper-slide-equipa h3 {
        margin-top: 10px;
        font-size: 20px;
    }

    .swiper-slide-equipa h4 {
        font-size: 13px;
    }

    .sobre2-container-img,
    .sobre2-container-info {
        width: 100%;
    }

    .sobre2-container {
        height: auto;
        flex-wrap: wrap;
    }

    .sobre2-container-wr {
        flex-wrap: wrap-reverse;
    }

    .sobre2-clip {
        display: none;
    }

    .sobre2-container-info {
        width: 90%;
        margin: auto;
    }

    .sobre2-container-info-box {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sobre2-container-img {
        height: 324px;
    }

    .sobre2-container-info h4 {
        font-size: 14px;
    }

    .sobre2-container-info h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .sobre2-container-info p {
        font-size: 15px;
        padding-top: 20px;
    }

    .sobre2-container-info p {
        font-size: 15px;
        width: 100%;
    }

    .sobre2-container-info button {
        height: 46px;
        width: 150px;
        font-size: 14px;
    }

    .section-produtos {
        width: 90%;
        margin: auto;
    }

    .produtos-header p {
        font-size: 15px;
        width: 100%;
    }

    .produtos-list {
        display: none;
    }

    footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-container-header {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-container-header-media {
        justify-content: space-evenly;
        display: flex;
        width: 70%;
        text-align: right;
        margin-top: 10px;
    }

    .footer-container-body {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-container-body-section-link p {
        font-size: 15px;
    }

    .footer-container-body-section-link button {
        width: 90%;
        margin: auto;
    }

    .button-mobile-menu {
        display: inline-block;
        cursor: pointer;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
    }

    nav {
        height: 75px;
    }

    .nav-container {
        height: 100%;
        width: 90%;
        margin: auto;
    }

    .nav-container-box-left {
        justify-content: left;
    }

    .nav-container-box-right {
        justify-content: right;
    }

    .mobile-menu {
        position: fixed;
        left: 0%;
        top: -100%;
        height: calc(100% - 75px);
        width: 100%;
        background-image: url(/img/team-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        transition: 0.5s;
        animation: moveBackground 60s linear infinite;
    }

    @keyframes moveBackground {
        0% {
            background-position: left center;
        }

        100% {
            background-position: right center;
        }
    }

    .mobile-menu-container {
        height: 100%;
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .m-nav-link {
        color: #A4C428;
        font-family: Poppins;
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

    .mobile-menu-container-box {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
    }

    .nav-container-box a {
        height: 100%;
        width: 100%;
        text-shadow: 1px 1px 3px black;
    }

    .open {
        top: 75px;
    }
}