    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

    html,body {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        list-style: none;
        font-family: 'Montserrat', sans-serif;
        outline: none;
    }

    .main {
        display: flex;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                rgba(220, 249, 245, 1) 0%,
                rgba(235, 252, 249, 1) 35%,
                rgba(255, 255, 255, 1) 50%,
                rgba(235, 252, 249, 1) 65%,
                rgba(220, 249, 245, 1) 100%);
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .main .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 85%;
        height: 80px;
        background-color: white;
        margin-top: 30px !important;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar img {
        width: 200px;
        padding-bottom: 10px;
        padding-left: 22px;
        padding-top: 10px;
    }

    .navbar,
    .menu-wrapper {
        overflow: visible;
    }
    .menu-list {
        list-style: none;
        display: flex;
        gap: 30px;
        padding: 0;
        margin: 0;
    }

    .menu-item {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        color: #000;
        font-weight: 600;
        position: relative;
    }
     .schedule {
        padding: 15px;
        max-width: 320px;
        font-size: 14px;
        color: #333;
    }

    .schedule-title {
        font-size: 16px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .schedule-group {
        margin-bottom: 12px;
    }

    .schedule-label {
        display: block;
        margin-bottom: 6px;
        color: #111;
    }

    .schedule ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .schedule li {
        display: flex;
        justify-content: space-between;
        padding: 2px 0;
        color: #555;
    }

    .schedule li span {
        font-weight: 500;
        color: #000;
    }

    .bar {
        width: 3px;
        height: 18px;
        background-color: #00d4c7;
    }

    .arrows {
        font-size: 10px;
        margin-left: 4px;
    }

    /* Dropdown */
    .dropdown {
        position: relative;
        z-index: 1000;
    }

    /* Menu oculto */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        /* <<< ESSENCIAL */
        left: 0;

        background: #fff;
        width: 530px;
        padding: 20px;

        display: flex;
        gap: 20px;

        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s;

        z-index: 9999;
        /* <<< ESSENCIAL */
    }

    /* Links */
    .dropdown-menu li a {
        display: block;
        padding: 8px 16px;
        text-decoration: none;
        color: #333;
    }

    .dropdown-menu li a:hover {
        background-color: #f2f2f2;
    }

    /* Mostrar dropdown */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .demo {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 16px 40px;
        border-radius: 999px;

        background: linear-gradient(135deg, #bfeee6, #8eece0);
        color: #000;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.5px;

        text-decoration: none;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.15);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;
        margin-left: 0 !important;
    }

    /* Hover */
    .demo:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 20px rgba(0, 0, 0, 0.2);
        opacity: 0.95;
    }

    /* Active (clique) */
    .demo:active {
        transform: translateY(0);
        box-shadow:
            0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .menu-wrapper {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-right: 20px;
    }

    .content-1 {
        display: flex;
        width: 85%;
        height: 500px;
        align-items: start;
        flex-direction: column;
        margin-top: 40px;
    }

    .content-1 .titulo h1 {
        font-size: 100px;
    }

    .content-1 .titulo p {
        font-size: 30px;
        margin-top: 20px;
        width: 50%;
    }

    .demo-two {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 16px 40px;
        border-radius: 999px;

        background: linear-gradient(135deg, #bfeee6, #8eece0);
        color: #000;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.5px;

        text-decoration: none;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.15);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;
        margin-left: 0 !important;
        font-size: 20px;
        margin-top: 30px;
    }

    /* Hover */
    .demo-two:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 20px rgba(0, 0, 0, 0.2);
        opacity: 0.95;
    }

    /* Active (clique) */
    .demo-two:active {
        transform: translateY(0);
        box-shadow:
            0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .roll {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .roll img {
        width: 55px;
        animation: float 2s ease-in-out infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .wrapper {
        display: inline-block;
        height: 1.2em;
        overflow: hidden;
        vertical-align: bottom;
    }

    .roleta {
        display: flex;
        flex-direction: column;
        animation: slide 8s linear infinite;
    }

    .roleta span {
        height: 1.2em;
        line-height: 1.2em;
        white-space: nowrap;
    }

    /* animação */
    @keyframes slide {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-83.33%);
        }
    }


    .textos {
        color: #04AFAB;
        display: inline-block;
        transition: transform 0.6s ease;
        white-space: nowrap;
        text-shadow: 1px 1px 8px #00B295 !important;
        width: max-content;
        height: max-content;
    }

    .epson {
        display: flex;
        width: 100%;
        height: 480px;
        background-color: #fff;
        margin-top: 100px;
        flex-direction: column;
        align-items: center;
    }

    .epson img {
        width: 460px;
        margin-top: 30px;
        margin-bottom: 0 !important;
    }
    
    .totem {
        display: flex;
        align-items: center;          /* alinha verticalmente */
        justify-content: space-between; /* distribui esquerda / centro / direita */
        width: 100%;           /* controla o centro real */
        margin: 100px auto 0 auto;    /* centraliza na página */
        padding: 40px;
        background-color: #fff;
        gap: 40px;
    }

    .texto-totem {
        max-width: 520px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0; /* evita o texto "puxar" para os lados */
    }

    .totem h1 {
        margin: 0 0 24px 0;
        line-height: 1.4;
    }

    .totem img {
        max-width: 100%;
        height: auto;
    }

    .gertec{
        max-height: 500px;
    }
        
    
    .animate {
        opacity: 0;
        transform: translateY(80px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate.show {
        opacity: 1;
        transform: translateY(0);
    }

    .nubefood {
        width: 100%;
        height: 480px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-color: #fff;
        margin-top: 50px;
    }

    .nubefood .texto {
        width: 500px;
        text-align: start;
        text-align: justify;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .nube {
        animation: nube 4s ease-in-out infinite alternate;
    }

    .nubebtn {
        width: max-content;
        padding: 20px;
        background-color: #8eece0;
        color: #000;
        border-radius: 50px;
        font-weight: 600;
        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.15);
    }

    /* Hover */
    .nubebtn:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 20px rgba(0, 0, 0, 0.2);
        opacity: 0.95;
    }

    /* Active (clique) */
    .nubebtn:active {
        transform: translateY(0);
        box-shadow:
            0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .autorizada {
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .autorizada h2 {
        width: max-content;
        height: max-content;
        padding: 20px 40px;
        border-radius: 999px;
        background: linear-gradient(135deg, #bfeee6, #8eece0);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
        margin-bottom: 35px;
    }

    .autorizada p {
        width: 600px;
        font-style: italic;
        text-align: center;
        margin-bottom: 25px;
    }

    .demo-black {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 16px 40px;
        border-radius: 999px;

        background-color: #000;
        color: #8eece0;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.5px;

        text-decoration: none;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.15);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;
        margin-left: 0 !important;
        font-size: 20px;
    }

    /* Hover */
    .demo-black:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 20px rgba(0, 0, 0, 0.2);
        opacity: 0.95;
    }

    /* Active (clique) */
    .demo-black:active {
        transform: translateY(0);
        box-shadow:
            0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .maps {
        width: 100%;
    }

    /*.footer {*/
    /*    display: flex;*/
    /*    width: 100%;*/
    /*    height: 250px;*/
    /*    align-items: center;*/
    /*    justify-content: center;*/
    /*    flex-direction: column;*/
    /*}*/

    /*.footer img {*/
    /*    width: 550px;*/
    /*}*/

    /*.footer hr {*/
    /*    width: 90%;*/
    /*    border: 1px solid rgba(0, 0, 0, 0.2);*/
    /*}*/

    /*.footer .opt {*/
    /*    width: 90%;*/
    /*    height: max-content;*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    justify-content: space-between;*/
    /*    color: rgba(0, 0, 0, 0.5);*/
    /*}*/

    /*.opt p {*/
    /*    font-size: 12px;*/
    /*}*/

    /*.opt ul {*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    flex-direction: row;*/
    /*    gap: 5px;*/
    /*}*/

    /*.opt ul li a {*/
    /*    font-size: 25px;*/
    /*    color: rgba(0, 0, 0, 0.5);*/
    /*}*/
    
    .footer {
        color: #000;
        padding: 60px 20px 30px;
        font-size: 14px;
        background: #fff;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
    }

    .footer-logo img {
        max-width: 300px;
    }

    .footer-schedule {
        max-width: 420px;
    }

    .footer-schedule h4 {
        font-size: 16px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-schedule .schedule-group {
        margin-bottom: 16px;
    }

    .footer-schedule strong {
        font-weight: 600;
    }

    .footer-schedule span {
        color: rgba(0, 0, 0, 0.55);
    }

    .footer hr {
        margin: 40px auto 20px;
        border: none;
        height: 1px;
        background: #e5e7eb;
        max-width: 1200px;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(0, 0, 0, 0.6);
    }

    .footer-bottom .social {
        display: flex;
        align-items: center;
    }

    .footer-bottom .social a {
        font-size: 20px;
        color: rgba(0, 0, 0, 0.6)
    }
    .footer-bottom .social a:hover {
        color: #22c55e;
        /* verde WhatsApp */
    }

    #solucoes {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: max-content;
        flex-direction: column;
    }

    #solucoes .card {
        display: flex;
        width: 80%;
        height: 500px;
        background-color: white;
        box-shadow: 2px 2px 4px #000;
        margin: 40px;
        border-radius: 20px;
        align-items: start;
        flex-direction: row;
    }

    #solucoes .card .pbar {
        display: flex;
        width: 5px;
        height: 28px;
        background-color: #00d4c7;
        margin-right: 5px;
    }


    .lista-beneficios {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 12px 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lista-beneficios li {
        position: relative;
        padding-left: 36px;
        font-size: 16px;
        white-space: nowrap;
    }

    .lista-beneficios li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
        background-image: url("../images/listicon.png");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .lista-beneficios-sistemas {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 16px 32px;
        justify-content: center;
        flex-direction: column;
    }

    .lista-beneficios-sistemas li {
        position: relative;
        padding-left: 36px;
        font-size: 16px;
        white-space: nowrap;
    }

    .lista-beneficios-sistemas li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
        background-image: url("../images/listicon.png");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .info {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        margin: 20px 40px;
        width: 500px;
    }

    .titulocard {
        display: flex;
        width: max-content;
        height: max-content;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .info p {
        margin-bottom: 20px;
    }

    .info ul {
        display: flex;
    }


    .img {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img img {
        width: 350px;
    }

    .opt-solucoes {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        border-radius: 8px;
        width: 70%;
    }

    .carousel {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        min-height: 520px;
        /* garante espaço */
    }

    /* Cards */
    .carousel .card {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        inset: 0;
        transition: opacity 0.5s ease;
    }



    /* Card ativo */
    .carousel .card.active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
    }

    /* Setas */
    .arrow {
        cursor: pointer;
        font-size: 26px;
        color: #000;
        text-decoration: none;
        user-select: none;
        margin: 0 20px;
    }

    /* Dots */
    .dot {
        width: 15px;
        height: 15px;
        border-radius: 5px;
        background: #ccc;
        display: inline-block;
        cursor: pointer;
    }

    .dot.active {
        border: 2px solid #0EE0CD;
        background: #000;
    }

    .imgs {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }

    .imgs img {
        width: 370px;
        border-radius: 100px 10px 100px 10px;
    }

    .imgscafe {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }

    .imgscafe img {
        width: 500px;
        border-radius: 100px 10px 100px 10px;
    }
    
     .imgscompleta {
        width: 55%;
        height: 100%;
        overflow: hidden;
        /* corta a imagem */
        border-top-left-radius: 1000px;
        border-top-right-radius: 20px;
        /* acompanha o card */
        border-bottom-right-radius: 20px;
    }

    .imgscompleta img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

    .hex-tech-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    .hex {
        stroke: #00B295;
        fill: none;
        stroke-width: 1.5;
        filter: drop-shadow(0 0 6px rgba(0, 178, 149, 0.8));
        opacity: 0.6;
    }

    /* Camadas para profundidade */
    .layer1 {
        animation: moveHex1 40s linear infinite;
    }

    .layer2 {
        animation: moveHex2 65s linear infinite;
        opacity: 0.35;
    }

    /* Conteúdo acima
    .content-1.features>*:not(.hex-tech-bg) {
        position: relative;
    } */

    @keyframes moveHex1 {
        from {
            transform: translate(-10%, -10%);
        }

        to {
            transform: translate(10%, 10%);
        }
    }

    @keyframes moveHex2 {
        from {
            transform: translate(10%, -10%);
        }

        to {
            transform: translate(-10%, 10%);
        }
    }
    
     @keyframes nube {
        from {
            transform: translateY(-2%);
        }

        to {
            transform: translateY(-5%);
        }

    }
    
    .content-2 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 40px;
        padding: 60px 5%;
    }

    .content-2 .textoforms {
        max-width: 450px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .content-2 form {
        max-width: 550px;
        width: 100%;
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 20px;
        box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.08);
    }

    .mb-3 {
        width: 100%;
        margin: 15px 20px;
    }

    .mb-3 label {
        font-weight: 700;
    }

    .inputs,
    .selects {
        width: 100%;
        max-width: 90%;
        margin-top: 10px;
        padding: 10px;
        font-size: 20px;
        border: none;
        box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.08);
        background: rgba(0, 0, 0, 0.03);
        border-radius: 5px;
    }

    .selects option {
        font-size: 15px;
    }

    .submit {
        width: 90%;
        padding: 10px;
        margin-left: 20px;
        background: linear-gradient(135deg, #bfeee6, #8eece0) !important;
        border: none;
        border-radius: 10px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
        font-size: 20px;
        font-weight: 600;
    }

    .sucesso {
        background: #e6fffa;
        border: 1px solid #38b2ac;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        margin-top: 10px;
    }

    .erro {
        background: #fff5f5;
        border: 1px solid #e53e3e;
        padding: 15px;
        border-radius: 8px;
        color: #c53030;
        text-align: center;
    }

    .formcontato {
        width: 100%;
        min-height: 350px;
        /* em vez de height */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        flex-direction: column;
        margin-top: 20px;
        padding: 20px 0;
    }

    .formcontato form {
        width: 80%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .formcontato form input {
        width: calc(50% - 40px);
        padding: 10px;
        margin: 10px;
        border: none;
        border-bottom: 2px solid #000;
        font-size: 20px;
    }

    .formcontato form select {
        width: calc(50% - 40px);
        padding: 10px;
        margin: 10px;
        border: none;
        border-bottom: 2px solid #000;
        font-size: 20px;
    }

    .formcontato form textarea {
        width: calc(100% - 1px);
        padding: 10px;
        margin: 10px;
        border: none;
        border-bottom: 2px solid #000;
        font-size: 18px;
    }

    .button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 10px;
    }

    .button button {
        width: 150px;
        padding: 20px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 20px;
        cursor: pointer;
        transition: 1s ease;
    }

    .button button:hover {
        transform: translateY(-3px);
        transition: 1s ease;
    }

    .fade-out {
        opacity: 0;
        transition: opacity 0.6s ease;
    }