/* ==========================
      Importação de Fonte
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ==========================
        Estilos Gerais
========================== */

html,
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


/* ==========================
          Header
========================== */

header {
    background-color: black;
    width: 100%;
    height: 7vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.logo-header {
    display: flex;
    align-items: center;
}

.logo-header img {
    height: 50px;
    scale: 0.65;
}

nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    margin-left: 32vw;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #12d6c6;
}


/* =============================
 Estilizando o Submenu (Dropdown)
============================= */

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 10.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.menu-item:hover .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
    background-color: #000000;
}

.submenu li {
    display: block;
}

.submenu li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.submenu li a:hover {
    background-color: #44444480;
    padding-left: 20px;
}


/* ==========================
        Menu Mobile
========================== */

.a-mobile {
    display: none;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.hamburguer {
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-size: 40px;
    font-weight: 70;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 4px;
    color: white;
    display: none;
}

.nav-mobile-1 {
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    display: none;
    border: none;
    padding-top: 0px;
    list-style-type: none;
    margin: 0;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 32px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px;
    transition: 0.3s;
    display: none;
}

.a-mobile-1 {
    display: none;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: rgb(95, 95, 95);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

/* ==========================
            Hero
========================== */

.hero{
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 2;
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: start;
    padding-bottom: 20vh;
    padding-left: 15vw;
}

.hero-mobile {
    display: none;
}

.button {
    padding: 10px 20px;
    background-color: #0b9729;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #1caf3c;
}

.hero-2 button {
    display: none;
}

/* ==========================
            About
========================== */

.about {
    width: 100%;
    height: 80vh;
    background-image: url("../assets/img/home/banner-fundo-video.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    color: white;
    z-index: 100;
}

.container-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
}

.content {
    max-width: 50%;
}

.about h1.title {
    font-size: 48px;
    margin-bottom: 20px;
}

.about p.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.about button.button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about button.button:hover {
    background-color: #0056b3;
}

.video-container {
    max-width: 50%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.video-container video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 15px 5px #12d6c6;
    margin-top: 50px;
}


/* ==========================
          Portfólio
========================== */

.portfolio {
    text-align: center;
    background-image: url("../assets/img/home/fundo-portifolio.webp");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.portfolio-content {
    max-width: 1200px;
}

.portfolio h1 {
    font-size: 4em;
    margin-bottom: 5px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.portfolio .intro {
    font-size: 1.5em;
    margin-bottom: 0px;
    color: white;
}

.portfolio-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    height: 100vh;
    object-fit: cover;
}

.portfolio-item {
    width: 350px;
    text-align: center;
    margin-top: 30px;
}

.portfolio-item img {
    width: 100%;
    height: 30vh;
    border: 5px solid #fff;
    border-radius: 8px;
    object-fit: cover;
}

.portfolio-item p {
    font-size: 1.2em;
    margin: 10px 0;
    color: white;
}

.btn-portfolio {
    display: inline-block;
    padding: 8px 15px;
    font-size: 0.7em;
    color: #fff;
    background-color: #0b9729;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #1caf3c;
}

#link-saiba-mais {
    text-decoration: none;
}


/* ==========================
          Ads Multi
========================== */

.adsmulti {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    color: white;
}

.adsmulti::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/img/home/banner-fundo-video.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.container-adsmulti {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.video-container {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 15px 5px #12d6c6;
}

.adsmulti-content {
    max-width: 50%;
    text-align: left;
    padding-left: 100px;
}

.adsmulti-content .title {
    font-size: 48px;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.adsmulti-content .subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.adsmulti-content .button {
    display: none;
}

.adsmulti-content .button:hover {
    background-color: #0056b3;
}


/* ==========================
        Inovação
========================== */

.innovation {
    background-image: url('../assets/img/home/inovacao.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 50px 20px;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

.innovation h1 {
    font-size: 7rem;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.innovation .subtitle {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 10px;
    max-width: 90%;
    padding-left: 10%;
}

.icon-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    box-shadow: 3px 3px 8px rgba(255, 255, 255, 0.2), -3px -3px 8px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    max-width: 220px;
    backdrop-filter: blur(5px);
}

.icon-item:hover {
    background: rgba(1, 58, 27, 0.726);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.7);
    transform: translateY(-4px);
}

.icon-item img {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
    transition: transform 0.3s ease-in-out;
    filter: drop-shadow(0px 0px 5px rgba(0, 200, 255, 0.4));
}

.icon-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px rgba(0, 200, 255, 0.6));
}

.icon-item p {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin: 0;
    text-align: center;
    max-width: 180px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
}

.icon-item p::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    height: 3px;
    background-color: rgba(0, 200, 255, 0.5);
    transform: translateX(-50%);
    border-radius: 2px;
}


/* ==========================
        Grunner com você
========================== */

#grunnerwithyou {
    width: 100%;
    height: 100vh;
    background-color: black;
}

.p-grunner,
.h1-grunner {
    margin: 0;
    text-align: center;
    color: white;
}

#h1-grunner-main {
    font-size: 50px;
    color: white;
    margin: 0;
    text-align: center;
}

#p-grunner-main-1,
#p-grunner-main-2 {
    width: 80%;
}

#p-grunner-main {
    font-size: 22px;
    text-align: center;
    width: 90%;
    color: rgb(113, 113, 113);
    margin: 0;
    text-align: center;
}

.container-icon-txt {
    width: 100%;
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../assets/img/home/fundo-time-grunner.webp);
    background-size: cover;
}

#texts-grunnerwithyou {
    width: 40%;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#icon-grunner {
    width: 70%;
    height: 45%;
    display: flex;
    justify-content: space-between;
}

#icon-grunner1 {
    background-image: url(../assets/img/home/LogoEngrenagem2.webp);
    background-position: top calc(20px) center;
    background-size: 40%;
    background-repeat: no-repeat;
}

#icon-grunner2 {
    background-image: url(../assets/img/home/LogoSuporte.webp);
    background-position: top calc(15px) right calc(52%);
    background-size: 25%;
    background-repeat: no-repeat;
}

.icons-grunner {
    width: 47%;
    height: 100%;
    border: 4px solid rgb(0, 238, 255);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.btt1 {
    background-color: rgb(0, 238, 255);
    width: 32%;
    height: 40px;
    border: none;
    border-radius: 15px;
    margin: 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
}


/* ==========================
            Blog
========================== */

.blog {
    width: 100%;
    padding: 50px 0;
    background-color: #000000;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f9f3f3;
    margin-bottom: 20px;
}

.blog p {
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.blog-post {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.blog-post p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

.blog-post .btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.blog-post .btn:hover {
    background-color: #0056b3;
}


/* ==========================
            Footer
========================== */

.footer-copy {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    background-color: #222;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #23562e;
}


/* ==========================
    Consentimento de Cookies
========================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #f9f9f9;
    text-align: center;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-consent p {
    margin: 0;
    padding-right: 10px;
    margin-right: 25vw;
}

.cookie-consent .privacy-policy {
    color: #4caf50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0 5px;
    border-radius: 5px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cookie-consent .privacy-policy:hover {
    color: #388e3c;
    transform: scale(1.05);
}

.cookie-consent .privacy-policy:focus {
    outline: none;
    color: #388e3c;
}

.cookie-consent .btn {
    background-color: #f9a825;
    color: white;
    border: none;
    margin-right: 3vw;
    padding: 10px 20px;
    cursor: pointer;
}

.cookie-consent .btn:hover {
    background-color: #c78900;
}


/* ==========================
    Responsividade Mobile
========================== */

@media (max-width: 768px) {
    
    .hero-desktop {
        display: none !important;
    }
    
    .hero-mobile {
        display: flex !important;
    }

    .hero-mobile {
        height: auto;
        aspect-ratio: 5 / 7;
        background-size: cover;
        background-position: center center;
    }
    
    .about {
        width: 100%;
        height: 90vh;
        background-image: url("../assets/img/home/banner-fundo-video.webp");
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 2vh;
        color: white;
    }

    .container-about {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        max-width: 1200px;
        width: 100%;
    }

    .content {
        max-width: 80%;
    }

    .about h1.title {
        font-size: 1.8em;
        margin-bottom: 1em;
    }

    .about p.subtitle {
        font-size: 1.2em;
        margin-bottom: 2em;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        margin-bottom: 5vh;
    }

    .about button.button {
        display: none;
    }

    .portfolio {
        text-align: center;
        background-image: url("../assets/img/home/fundo-portifolio.webp");
        width: 100%;
        height: 200vh;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .portfolio h1 {
        font-size: 1.8em;
        margin-bottom: 5px;
        color: white;
        font-family: "Poppins", sans-serif;
        font-weight: bold;
        text-align: center;
        margin-top: -60vh;
    }

    .portfolio .intro {
        font-size: 1.2em;
        margin-bottom: 0px;
        color: white;
    }

    .portfolio-item img {
        width: 95%;
        height: 30vh;
        border: 5px solid #fff;
        border-radius: 8px;
        object-fit: cover;
    }

    .adsmulti {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-top: 4vh;
        color: white;
    }

    .container-adsmulti {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .adsmulti-content {
        max-width: 90%;
        padding: 0;
        padding-left: 1em;
    }

    .adsmulti-content .title {
        font-size: 1.8em;
        margin-bottom: 5px;
        font-family: "Poppins", sans-serif;
        font-weight: bold;
        margin-top: -30%;
    }

    .adsmulti-content .subtitle {
        font-size: 1.2em;
        margin-bottom: 40px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
    }

    .video-container {
        max-height: 50%;
        margin: 0;
        max-width: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: auto;
    }

    .video-container video {
        width: 100%;
        max-height: 40vh;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 5px 5px 8px 2px #12d6c6;
    }

    .innovation {
        background-position: cover left calc(50%);
        background-repeat: no-repeat;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 55px 20px;
        width: 100%;
        height: 135vh;
        box-sizing: border-box;
    }

    .innovation h1 {
        font-size: 2em;
        margin-bottom: 0.8em;
        padding-top: 1em;
        font-family: "Poppins", sans-serif;
        font-weight: bold;
    }

    .innovation .subtitle {
        font-size: 1.2em;
        margin: 0;
        margin-bottom: 10vh;
        max-width: 100%;
        padding: 0;
    }

    .icon-gallery {
        display: grid;
        justify-content: center;
        gap: 50px;
        padding-bottom: 2em;
    }

    .icon-item img {
        width: 150px;
        height: auto;
        margin-bottom: 15px;
    }

    .icon-item p {
        font-size: 1.2em;
        color: white;
        margin: 0;
        text-align: center;
        max-width: 200px;
        position: relative;
        padding-bottom: 15px;
    }

    .icon-group {
        max-width: 80px;
    }

    #grunnerwithyou {
        height: 100vh;
    }

    .p-grunner,
    .h1-grunner {
        font-size: 12px;
    }

    .h1-grunner {
        margin-top: 5px;
        margin-top: auto;
    }

    #h1-grunner-main {
        font-size: 1.8em;
        color: white;
        margin: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    #p-grunner-main-1,
    #p-grunner-main-2 {
        width: 90%;
    }

    #p-grunner-main {
        font-size: 1.2em;
        width: 90%;
    }

    #texts-grunnerwithyou {
        width: 80%;
        height: 20vh;
    }

    #icon-grunner {
        width: 100%;
        height: 60%;
        display: grid;
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
    }

    .container-icon-txt {
        width: 100%;
        height: 95%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-color: #000000;
        background-image: none;
        background-size: cover;
    }

    #icon-grunner {
        width: 90%;
        height: 70vh;
        display: flex;
        justify-content: center;
    }

    .icons-grunner {
        width: 60%;
    }

    #icon-grunner1 {
        background-image: url(../assets/img/home/LogoEngrenagem2.webp);
        background-position: top calc(10px) center;
        background-size: 40%;
    }

    .btt1 {
        width: 40%;
        height: 35px;
        border-radius: 10px;
        font-size: 12px;
        margin: 10px 0px;
    }

    .blog-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 16px 40px;
        gap: 16px;
        margin: 0 -16px;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-post {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
        margin: 0;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .blog-post img {
        width: 100%;
        height: 200px;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .blog-post h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 10px 0;
    }

    .blog-post p {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 12px;
    }

    .blog-post .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .mobile-menu {
        display: block;
        padding: 10px;
    }

    .nav-list-mobile>li {
        margin-right: 0;
        opacity: 0;
        display: block;
        line-height: 1.2em;
    }

    .nav-list-mobile {
        position: absolute;
        top: 8vh;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: start;
        padding: 15px 25x;
        transform: translateX(100%);
        transition: transform 0.2s ease-in;
        overflow-y: auto;
        line-height: 1.2em;
    }

    ul {
        display: block;
    }

    .a-mobile {
        display: block;
        text-align: right;
    }

    .a-mobile-1 {
        display: block;
    }

    .hamburguer {
        display: block;
    }

    .main-mobile {
        display: block;
    }

    .mobile-menu div {
        display: block;
    }

    .nav-mobile-1 {
        display: flex;
    }

    .menu-item {
        display: none;
    }

    .submenu {
        display: none;
    }

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        color: #f9f9f9;
        text-align: center;
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        border-radius: 5px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
        max-height: 100px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .cookie-consent p {
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
        padding-right: 10px;
        flex: 1;
        min-width: 0;
        word-break: break-word;
        white-space: normal;
    }

    .cookie-consent .privacy-policy {
        color: #4caf50;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        padding: 0 5px;
        border-radius: 5px;
        transition: color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .cookie-consent .btn {
        background-color: #f9a825;
        color: white;
        border: none;
        margin-left: 10px;
        padding: 8px 15px;
        cursor: pointer;
        font-size: 14px;
        white-space: nowrap;
    }

    .navbar-desktop {
        display: none;
    }

    .logo-header {
        display: none;
    }

    .header-desktop {
        width: 100%;
        height: 8vh;
        padding: 0;
        margin: 0;
    }

    .imgformobile {
        display: block;
        max-width: 40vw;
        height: 7vh;
        padding-left: 10px;
        margin: 5px auto;
        transform: scale(0.8);
    }

    nav ul li a:hover {
        color: white;
    }
}

.nav-list-mobile.active {
    transform: translateX(0);
    gap: 0;
    padding-right: 10px;
}

.has-submenu1 {
    position: relative;
}

.submenu1 {
    display: none;
}

.submenu1-active {
    display: block !important;
    text-align: right;
}

.submenu1-active li {
    margin: 0;
    padding: 0;
}

.submenu1 li {
    opacity: 1 !important;
    animation: none !important;
    margin: 0;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    animation: bounce 1.5s infinite ease-in-out;
}

.whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out, transform 0.2s;
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

