@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --text-color-primary:#041a42;
    --color-primary-opacity-low:#041a422f;

    /*{{ CARD VIVO - PLANS }}*/ 
    --color-violeta: #8A2BE2; /* Violeta */
    --color-violeta-claro: #EE82EE; /* Violeta Claro */
    --color-violeta-escuro: #9400D3; /* Violeta Escuro */
    --color-violeta-medio: #9370DB; /* Violeta Médio */
    --color-gray: rgba(0, 0, 0, 0.219);
    --color-white: #FFFFFF;
    --color-blueroyal:#4169E1;/* Blue Royal*/

    --gradient-button: linear-gradient(90deg,var(--color-blueroyal),var(--color-violeta));
    --gradient-background-page-movel: linear-gradient(45deg,var(--color-white),var(--color-gray));
    --gradient-background-page-total: linear-gradient(45deg,var(--color-white),var(--color-gray));
    --gradient-background-page-fixo: linear-gradient(210deg,var(--color-white),var(--color-gray));
    --gradient-background-page-avancado: linear-gradient(180deg,var(--color-white),var(--color-gray));
    --gradient-background-page-alocacao: linear-gradient(60deg, var(--color-white), var(--color-violeta-medio));
    --gradient-background-page-footer: linear-gradient(180deg,var(--color-white),var(--color-gray));

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    scroll-snap-type: none !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}



.log-form {
    color: green;
}

p {
    line-height: 1.5;
    font-size: 0.875rem;

}

a, li a {
    text-decoration: none;
    color: var(--text-color-primary);
}

li {
    list-style: none;
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    top: 0;
    width: 100%;
    height: 3.75em;
    z-index: 20;
    transition: all .5s ease;

    .container-logos{
        display: flex;
        width: 30%;
        align-items: center;
        gap: 0.625rem;
        margin-left: 1.25rem;
        .logo-noatec-head{
            width: 10rem;
        }

        .logo-parceiro-head {
            width: 8.75rem;
        }
    }
    .btn-menu-mobile {
        display: none;
        cursor: pointer;
    }
}

.nav-header {
    display: flex;
    
    #menu {
        padding: 1.25rem;

        #menu-list{
            display: flex;
            gap: 2.5rem;
            height: 100%;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;

            li > a{
                font-size: 0.75rem;
                color: var(--text-color-primary);
                font-weight: 500;
            }

            .dropdown {
                .dropdown-menu {
                    padding: 1;
                }
            }

            .dropdown:hover .dropdown-menu {
                display: block;
              }
        }

        #menu-list-mobile {
            display: none;
        }
    }
}
.btn-menu-consultor {
    background-image: var(--gradient-button) ;
    border: none;
    border-radius: 0.5rem;
    color: var(--color-white);
    padding: 0.5rem;
    width: 6.25rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all .5s;
  }
  .btn-menu-consultor:hover {
    filter: brightness(1.06);
  }

.mobile-nav {
    display: none;
    height: 100%;
}

header.header-retraido {
    overflow: hidden;
    height: 0px;
    opacity: 0.8;
}

nav.header-retraido {
    overflow: hidden;
    width: 0;
    opacity: 0.8;
}

.fixed-whatsapp{
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    
    img {
        width: 3.75rem;
    }
}

.fixed-whatsapp.stopped {
    position: absolute;
    bottom: auto;
}

#container-main {
    width: 100%;
    margin-top: 3.75rem;
    height: 100svh;
    background-image: url(media-img/mulher-fundo-gradient.jpeg);
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 3;
    overflow: hidden;

    .swiper-main {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;

        .swiper-wrapper {
            width: 100%;
            user-select: none;

            .swiper-slide{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                height: 100%;

                .text-main-carousel{
                    font-size: 4rem;
                    margin-bottom: 2.5rem;
                    color: var(--color-white);
                    text-transform: uppercase;
                    
                    span {
                        color: transparent;
                        -webkit-text-stroke: 0.0845rem #FFFFFF;
                    }
                }

                .btn-main-carousel {
                    background-image: var(--gradient-button) ;
                    border: none;
                    border-radius: 0.5rem;
                    color: var(--color-white);
                    padding: 0.5rem;
                    width: 5.75rem;
                    text-transform: uppercase;
                    font-size: 0.75rem;
                    font-weight: bold;
                }

                a {
                    margin-bottom: 12.5rem;
                }
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--color-white);
            opacity: 0.1;
            transition: all 0.5s;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            opacity: 1;
        }

        .swiper-pagination {
           top: 17.5rem;

           .swiper-pagination-bullet {
            background-color: var(--color-white);
            opacity: 0.2;
            transition: all 0.5s;
          }
          
          .swiper-pagination-bullet-active {
            opacity: 1;
          }
        }
    }

}

#container-main::after {
    content: "";
    background-color: black;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
}

#plans-movel {
    background-image: var(--gradient-background-page-movel);
    height: 60svh;
    overflow: hidden;
}

.vivo-title {
    font-size: 4rem;
    color: transparent;
    background-image: var(--gradient-button);
    background-clip: text;
}

.vivo-p {
    text-align: flex-start;
    font-size: 0.875rem;
}

.content-plans-movel {
    .container-cards-movel {
        display: flex;
        .title-content-movel {
            width: 40%;
            order: 2;

            .vivo-title {
                align-self: flex-start;
            }

            p {
                text-align: justify ;

            }

            div {
                align-self: flex-start;
            }
        }
    }
}

.contaier-movel-cards {
    display: flex;
    gap: 0.8rem;
    padding: 0.85rem;
    width: 50%;
}

.card-vivo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: .148rem solid var(--color-primary-opacity-low);
    max-width: 8.5rem;
    padding: 0.625rem;
    transition: all 0.5s;
    border-radius: 0.625rem;

    p {
        text-align: center;
        font-size: 0.75rem;

    }
    img {
        width: 3.75rem;
    }

}

.card-vivo:hover {
    transform: scale(1.1);
}

.btn-page {
    background-image: var(--gradient-button) ;
    border: none;
    border-radius: 0.5rem;
    color: var(--color-white);
    padding: 0.5rem;
    width: 12.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all .5s;

}

.btn-page:hover {
    filter: brightness(1.09);
}

#plans-total {
    height: 60svh;
    background-image: var(--gradient-background-page-total);
    overflow: hidden;
}


.title-content-total {
    width: 30%;
}

.container-cards-total {


    .total-title {
        font-size: 4rem;
        color: transparent;
        background-image: var(--gradient-button);
        background-clip: text;
        text-align: left;
    }

    .total-p {
        text-align: justify;
        font-size: 0.875rem;
    }

    .card-vivo.total{
        height: 12.5rem;
    }

}

#plans-fixo {
    height: 60svh;
    background-image: var(--gradient-background-page-fixo);
    overflow: hidden;
}
.container-cards-fixo {
    .title-content-fixo {
        order: 5;
        width: 30%;

        .vivo-title {
            align-self: flex-start;
        }

        .vivo-p {
            text-align: justify;
            font-size: 0.875rem;
        }

        .btn-page {
            align-self: flex-start;
        }
    }
    .card-vivo.fixo {
        height: 12.5rem;
    }
}

#sessao-avancado {
    display: flex;
    height: calc(80svh);
    justify-content: space-between;
    background-image: var(--gradient-background-page-avancado);
    overflow: hidden;
    .container-avancado {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;

        .content-avancado {
                width: 100%;

            .content-text-avancado {
                p {
                    width: 70%;
                    
                }
            }
        }

        .container-cards-vivo {
            display: flex;
            width: 100%;
            gap: 1.25rem;
            .card-info-avancado {
                background-color: var(--color-white);
                border-radius: 1.25rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 6.25rem;
                text-decoration: none;
                color: var(--color-violeta-medio);
                width: 12.5rem;
                gap: 0.625rem;
                transition: all .5s;
                user-select: none;
                
                img {
                    width: 2.5rem;
                }
                
                h2 {
                    font-size: 1rem;
                    text-transform: uppercase;
                }
            }

            .card-info-avancado:hover {
                transform: scale(1.06);
            }
        }

    }

    .swiper-ti {
        width: 30%;
        overflow: hidden;

        .swiper-wrapper {
            .swiper-slide {
                width: 100%;
                a img {
                    border-radius: 0.625rem;
                }
            }
        }
    }
}

.sessao-alocacao {
    height: 200svh !important;
    background-image: var(--gradient-background-page-alocacao);
    overflow: hidden;
    
    .container-alocacao {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        align-items: center;
        padding: 3.75rem;
        overflow: hidden;
        
        .container-nav-notebook {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 4;
            gap: 0.5rem;
            position: relative;
            margin-top: 1.25rem;

            h2 {
                font-size: 1rem;
            }
        }

        .container-notebook {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            flex-direction: column;
            z-index: 2;
            position: relative;

            .swiper-alocacao-pcs {
                width: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -210%);
                .swiper-pagination {
                    position: absolute;
    
                }

                .swiper-button-next,
                .swiper-button-prev {
                    color: var(--color-white);
                    opacity: .6;
                    transition: all .5s;
                }

                .swiper-button-next:hover,
                .swiper-button-prev:hover {
                    opacity: 1;
                }
                .swiper-wrapper {
                    .swiper-slide {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        z-index: 1;
                        user-select: none;

                        p{
                            position: absolute;
                            bottom: 5rem;
                        }
            
                        .notebook {
                            width: 50rem;
                            object-fit: cover;
                        }

                    }
                }

                a {
                    position: absolute;
                    bottom: 0%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 2;
                }
            }

            .swiper-alocacao-moveis {
                width: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -110%);
                .swiper-pagination {
                    position: absolute;
    
                }

                .swiper-button-next,
                .swiper-button-prev {
                    color: var(--color-white);
                    opacity: .6;
                    transition: all .5s;
                }

                .swiper-button-next:hover,
                .swiper-button-prev:hover {
                    opacity: 1;
                }
                .swiper-wrapper {
                    .swiper-slide {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        z-index: 1;
                        user-select: none;

                        p{
                            position: absolute;
                            bottom: 5rem;
                        }
            
                        .notebook {
                            width: 50rem;
                            object-fit: cover;
                        }

                    }
                }
                a {
                    position: absolute;
                    bottom: 0%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 2;
                }
            }


        }
        .fundo-notebook {
            position: absolute;
            width: 90%;
            z-index: 1;
            user-select: none;
            opacity: .6;
            user-select: none;
        }

    }

}

.sessao-form {
    height: auto;
    padding: 2.5rem;
    background-color: #4169E1;
    overflow: hidden;
    form {
        height: 100%;
        margin: 0 auto;
        background-color: var(--color-white);
        display: flex;
        flex-direction: column;
        width: 43.75rem;
        padding: 2.5rem;
        border-radius: 0.625rem;
        justify-content: space-between;
        gap: 2.5rem;

        button {
        }

        h2 {
            font-size: 1.5rem;
        }

        label {
             font-size: 0.875rem;
        }

        .form-container-inputs {
            display: flex;
            flex-direction: column;
            width: 100%;
            
            .container-input {
                display: flex;
                flex-wrap: wrap;
                gap: 2.5rem;
                margin-bottom: 2.5rem;

                div {
                    display: flex;
                    flex-direction: column;
                    max-height: 2.5rem;
                    label {
                        margin-bottom: 0.375rem;
                    }

                    input {
                        width: 15rem;
                        height: 2.25rem;
                        padding: 0.625rem;
                        font-size: 0.875rem;
                        border-radius: 1.25rem;
                        outline: none;
                        border: 0.0654rem solid var(--color-violeta-escuro);
                        caret-color: var(--color-violeta-escuro);
                    }
                }
    
            }

        }

    }
    .container-input-produto {

        .container-form-select {
            label{
                margin-bottom: 0.5rem;
            }
        
            select {
                width: 12.5rem;
                border: none;
                outline: none;
                border-radius: 0.625rem;
                padding: 0.5rem;
                background-color: white;
                border: 0.0654rem solid var(--color-violeta-escuro);
        
            }
        }

        .form-container-observacao {
            display: flex;
            flex-direction: column;
            width: 37.5rem;

            label {
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
            }

            textarea {
                width: 100%;
                font-size: 0.875rem;
                padding: 0.625rem;
                resize: none;
                outline: none;
                border: 0.0654rem solid var(--color-violeta-escuro);
                caret-color: var(--color-violeta-escuro);

            }

            small {
                margin-top: 0.625rem;
                align-self: flex-end;
            }

        }
    }

}

.required-label::after {
    content: " *";
    color: red;
    width: 0.5rem;
}

footer{
    margin: 0 auto;
    width: 100%;
    height: 60svh;
    background-image: var(--gradient-background-page-footer);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .container-footer {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        justify-content: space-between;

        .container-footer-logos {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 2.5rem;
            padding: 2.5rem;
            position: absolute;
            top: 0;

            .logo-footer-nuvemsorridente {
                width: 15rem;
                object-fit: cover;
                z-index: 4;
            }

            .logo-footer-vivoempresas {
                width: 8.75rem;
            }
            
        }

        nav {
            width: 100%;
            margin-top: 8.75rem;

            .container-footer-nav {
                display: flex;
                width: 100%;
                gap: 2.5rem;

                ul {
                    width: 12.5rem;

                    h2 {
                        font-size: 1.5rem;
                    }

                    li a {
                        margin-top: 2.5rem;
                        color: var(--color-violeta-medio);
                    }
                }
            }
        }
    }

    .container-footer-info {
        display: flex;
        justify-content: space-between;
        margin: 0px 2.5rem 0px 2.5rem;
        .container-footer-midia {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;

            .container-footer-redes {
                a img {
                    background-color: #9400D3;
                    width: 2.5rem;
                    padding: 0.5rem;
                    border-radius: 2.5rem;
                }
            }
        }

        .container-footer-cnpj {
            display: flex;
            gap: 1.25rem;
            flex-direction: column;
            align-items: flex-end;
            justify-content: space-between;
            
            a button{
                font-size: 1rem;
                letter-spacing: 1.5;
            }
        }
    }
}
.mobile-nav.active {
    width: 11.25rem;
}

.menu-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0;
    align-items: center;

    p{
        text-align: center;
        font-style: normal;
        font-weight: 400;
        font-size: .987rem !important;
        color: var(--text-color-primary);
    }
}
.dropdown {
    .submenu {
        display: flex;
        flex-direction: column;
        font-size: 0.75rem;
        height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        gap: 0.625rem;
        margin-top: 0.5rem;
    }
}

.btn-menu-mobile {
    display: block;
    width: 1.625rem;
    margin-right: 1.25rem;
}

.mobile-nav.active {
    position: fixed;
    top:  1.875rem;
    right: 0;
    background-color: var(--color-white);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

    #menu {
        padding: 0px;
        #menu-list {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 3.75rem;
            padding: 0;
            margin: 0;
        }
    }
}

.form-container-observacao, 
.container-form-select,
#observacao, #produto {
    width: 100% !important;
}


.content-manutence {
    height: 80svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    div {
        .ref {
            font-size: 0.5rem;
        }
    }
}
/* Mobile First */
@media (max-width: 480px) {  /* Celulares grandes */
    /* ajuste básico */
header {
    
    .container-logos {
        .logo-noatec-head {
            width: 8    rem;
        }

        .logo-parceiro-head {
            width: 5rem;
        }
    }

    .btn-menu-mobile {
        display: block;
    }


    .nav-header {
        display: none;
    }
}


#container-main {
    background-position: center;   

    .swiper-main {
    .swiper-wrapper {
        .swiper-slide {
            margin-top: 3.75rem;
            .text-main-carousel {
                font-size: 3.2rem;
                text-align: center;
            }
        }
    }

    .swiper-pagination {
        top: 25rem;
    }
    }
    
}


.container-cards-movel, 
.container-cards-total,
.container-cards-fixo {
    width: 100% !important;
    padding: 0.625rem !important;
    flex-direction: column;
}
.title-content-movel,
.title-content-total,
.title-content-fixo {
    width: 100% !important;
    padding: 1.25rem;
    align-items: flex-start;
    justify-content: flex-start;

    h2, h1 {
        font-size: 2.25rem !important;
    }
}

.content-plans, .content-plans-movel {
    align-items: center !important;
    justify-content: center !important;
}

.container-movel-cards, .card-vivo {
    display: none;
}

#sessao-avancado {
    flex-direction: column !important;
    height: 100svh;
    margin: 0 !important;
    padding: 2.5rem !important;
}

#plans-movel, 
#plans-total, 
#plans-fixo {
    height: 40svh !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.content-text-avancado {
    align-items: center;
    justify-content: center;
    text-align: center;
    .vivo-p {
        width: 100% !important;
    }
    .vivo-title {
        font-size: 2rem;
    }
}

.vivo-p,.total-p {
    font-size: .8rem !important;
}

.container-cards-vivo {
    display: none !important;
}

.swiper-ti {
    width: 100% !important;
    margin-bottom: 6rem;
    align-self: center;
}

.fixed-whatsapp {
    right: 1.25rem;
    bottom: 3.3rem;

    img {

        width: 3.75rem;
    }
}

.sessao-alocacao {
    height: 160svh !important;
    .container-alocacao {
        padding: 0;
        .container-nav-notebook {
            .vivo-title {
                margin-top: 2.5rem;
                font-size: 2.25rem;
            }

        }

        .link-btn-sessao {
            bottom: -40px !important;
        }
    }

    .container-notebook {
        .swiper-alocacao-pcs, .swiper-alocacao-moveis {
            transform: translate(-50%, -260%) !important;
            .swiper-wrapper {
                .swiper-slide {
                    .notebook {
                        width: 35rem !important;
                    }

                    p {
                        bottom: 2.5rem !important;
                        font-size: 0.75rem;
                    }
                }
            }
        }

        .swiper-alocacao-moveis {
            transform: translate(-50%, -140%) !important;
        }
    }


    .fundo-notebook {
        top: 12.5rem !important;
    }

}

.sessao-form {
    height: auto;
    padding: 1.25rem;
}


form {
    width: 90% !important;

    .form-container-inputs {
        width: 100%;
    }

    .btn-page {
        width: 100%;
    }
}
    
.subtitleform {
    font-size: 1rem !important;
}

.container-form-title {
    h1 {
        font-size: 1.5rem !important;
    }

    p{
        font-size: 0.75rem;
    }
}

.container-input {
    flex-direction: column;
    div {
        label {
            font-size: 0.75rem;
        }

        input {
            padding: 0.625rem;
            font-size: 0.75rem;
            width: 100% !important;
        }
    }
}
#produto {
    font-size: 0.75rem;
}

.logo-footer-nuvemsorridente {
    width: 6rem !important;
}
.nav-item {
    font-size: 0.75rem;
}

footer {
    min-height: 15.625rem;
    padding: 1rem !important;
}

.container-footer-cnpj {
    flex-direction: row !important;
    margin-top: 1.25rem;

    p {
        font-size: 0.5rem;
        line-height: 1.5;
        width: 100%;
        text-align: end;
    }
    .p-cnpj {
        font-size: 0.5rem;
        text-align: start   ;
    }
}
.container-footer-info {
    flex-direction: column;
    margin: 0 !important;
    
}

.container-footer-nav {
    align-items: flex-start !important;
}

.container-footer-midia {
    flex-direction: row !important;
    align-items: center; 

    .container-footer-redes {
        width: 100%;

        a img {
            width: 2.125rem !important;
            padding: 0.5rem !important;
        }

    }

    a button {
        letter-spacing: 0;
        width: 100%;
    }
}

.container-footer {
    justify-content: space-between !important;
    margin: 0 !important;
    
    nav {
        /* margin-bottom: 20px !important; */
        margin-top: 6.25rem !important;
        margin-left: 0.65rem ;

        ul {
            width: 100% !important;
            padding: 0;
        }
    }
}

}

@media ((min-width: 480px)  and  (max-width: 768px)) {  /* Tablets */
/* transição para layout em grid ou sidebar */

.logo-parceiro-head {
    width: 6rem !important;
}

.nav-header {
    display: none !important;
}

.btn-menu-mobile {
    display: block !important;
}

#plans-movel {
    height: 100svh;
}

#container-main {
    background-position: center;   
    
    .swiper-main {
        .swiper-wrapper {
            .swiper-slide {
            margin-top: 3.75rem;
            .text-main-carousel {
                font-size: 3.2rem;
                text-align: center;
            }
            }
        }

        .swiper-pagination {
        top: 25rem;
        }
    }
    
    }

.container-cards-movel, 
.container-cards-total,
.container-cards-fixo {
    width: 100% !important;
    padding: 0.625rem !important;
    flex-direction: column;

}
.title-content-movel,
.title-content-total,
.title-content-fixo {
    width: 100% !important;
    padding: 1.25rem;
    order: 1 !important;

    h2, h1 {
        margin-top: 3.75rem;
        font-size: 3.25rem !important;
    }
}

#sessao-avancado {
    flex-direction: column !important;
    height: 100svh;
    margin: 0 !important;
    padding: 2rem !important;
}

#plans-movel, 
#plans-total, 
#plans-fixo {
    height: 80svh !important;
}


.content-text-avancado {
    align-items: center;
    justify-content: center;
    text-align: center;
    .vivo-p {
        width: 100% !important;
    }
.vivo-title {
    font-size: 2.25rem;
    }
}

.vivo-p,.total-p {
    font-size: .8rem !important;
}

.container-movel-cards {
    display: flex;
    order: 2;
    gap: 1rem ;

    .card-vivo {
        max-width: 10rem;
        p {

            font-size: .657rem !important;
        }
    }
}

.swiper-ti {
    align-self: center;
    margin-bottom: 2rem;
    width: 300px !important;

    a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    img {
        object-fit: cover;
    }
}

.sessao-alocacao {
    height: 160svh !important;
    .container-alocacao {
        padding: 0;
        .container-nav-notebook {
            .vivo-title {
                margin-top: 2.5rem;
                font-size: 2.25rem;
            }
        }

        .link-btn-sessao {
            bottom: -40px !important;
        }

        .container-nav-notebook {
            .vivo-title {
                font-size: 4rem !important;
            }

            h2 {
                font-size: 0.875rem !important;
            }
        }
    }

    .container-notebook {
        .swiper-alocacao-pcs, .swiper-alocacao-moveis {
            transform: translate(-50%, -260%) !important;
            .swiper-wrapper {
                .swiper-slide {
                    .notebook {
                        width: 35rem !important;
                    }

                    p {
                        bottom: 2.5rem !important;
                        font-size: 0.75rem;
                    }
                }
            }
        }

        .swiper-alocacao-moveis {
            transform: translate(-50%, -140%) !important;
        }
    }


    .fundo-notebook {
        top: 12.5rem !important;
    }

}

.sessao-form {
    height: auto;
    padding: 1.25rem;
}

form {
    width: 90% !important;

    .form-container-inputs {
        width: 100%;
    }

    .btn-page {
        width: 100%;
    }
}
    
.subtitleform {
    font-size: 1rem !important;
}

.container-form-title {
    h1 {
        font-size: 1.5rem !important;
    }

    p{
        font-size: 0.75rem;
    }
}

.container-input {
    flex-direction: column;
    div {
        label {
            font-size: 0.75rem;
        }

        input {
            padding: 0.625rem;
            font-size: 0.75rem;
            width: 100% !important;
        }
    }
}
#produto {
    font-size: 0.75rem;
}

.logo-footer-nuvemsorridente {
    width: 6rem !important;
}
.nav-item {
    font-size: 0.75rem;
}

footer {
    min-height: 15.625rem;
    padding: 1rem !important;
}

.container-footer-cnpj {
    flex-direction: row !important;
    margin-top: 1.25rem;

    p {
        font-size: 0.5rem;
        line-height: 1.5;
        width: 100%;
        text-align: end;
    }
    .p-cnpj {
        font-size: 0.5rem;
        text-align: start   ;
    }
}
.container-footer-info {
    flex-direction: column;
    margin: 0 !important;
    
}

.container-footer-nav {
    align-items: flex-start !important;
}

.container-footer-midia {
    flex-direction: row !important;
    align-items: center; 

    .container-footer-redes {
        width: 100%;

        a img {
            width: 2.125rem !important;
            padding: 0.5rem !important;
        }

    }

    a button {
        letter-spacing: 0;
        width: 100%;
    }
}

.container-footer {
    justify-content: space-between !important;
    margin: 0 !important;
    
    nav {
        /* margin-bottom: 20px !important; */
        margin-top: 6.25rem !important;
        margin-left: 0.65rem ;

        ul {
            width: 100% !important;
            padding: 0;
        }
    }
}

.fixed-whatsapp {
    bottom: 3.3rem;
}


}
  
@media ((min-width: 768px) and (max-width: 1024px)) { /* Laptops e desktops padrão */
/* layout mais espaçado, fonte maior */

    .title-content-movel {

        h1 {
            font-size: 3rem !important;
        }

        p {
            font-size: 0.675rem;
        }
    }

    .card-vivo {
        p {
            font-size: 0.6rem;
        }
    }

    .container-movel-cards {
        display: flex;
        gap: 1rem;
    }
    #plans-movel {
        padding: 2rem;
    }

    .title-content-fixo, .title-content-total {
        .vivo-p, .total-p {
            font-size: 0.675rem !important;
        }

        h2 {
            font-size: 3rem !important;
        }
    }

    #sessao-avancado {
        padding: 3rem;
    }

    .content-text-avancado {
        .vivo-title {
            font-size: 3rem;
        }
    }

    .container-avancado {
        align-items: center !important;
        justify-content: center !important;
        gap: 4rem;
    }

    .swiper-ti {
        display: none;
    }

    .fixed-whatsapp {
        bottom: 3.3rem;
    }

    .container-footer-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .container-footer-midia {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        justify-content: space-between;
    }

    .container-footer-cnpj {
        display: flex;
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
    }

    .logo-footer-nuvemsorridente {
        width: 10rem !important;
    }

    .sessao-alocacao {
        height: 160svh !important;
    }

    .swiper-alocacao-pcs {
        transform: translate(-50%, -200%) !important;
    }

    .swiper-alocacao-moveis, .swiper-alocacao-pcs {
        .swiper-wrapper {
            .swiper-slide {
                img {
                    width: 40rem !important;
                }

                p {
                    bottom:  3rem !important;
                }
            }
        }
    }
}


  
  @media (min-width: 1024px) { /* Desktops largos */
    /* aumente margens, colunas, elementos grandes */

    .content-manutence {
    
        div {
            img {
                width: 200px !important;
            }
            .ref {
            }
        }
    }

    .menu-list {
        li a {
            font-size: clamp(0.675rem, .9vw, 2rem) !important;
        }
    }

    .container-movel-cards {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem;
        width: 50%;
        .card-vivo {
            max-width: 40rem !important;
        }
    }

    .title-content-movel, 
    .title-content-total,
    .title-content-fixo,
    .content-text-avancado {
        h2, h1 {
            font-size: clamp(4rem, 5vw, 40rem) !important;
        }

        p, .total-p {

            font-size: clamp(.875rem, 1vw, 6rem) !important;
        }
    }

    .card-vivo {
        width: 100%;
        height: auto;
        max-width: 600px;
        p {
            font-size: clamp(.675rem, 0.8vw, 4rem) !important;
        }

        img {
            width: 100%;
            max-width: 80px;
            height: auto;
        }
    }

    .c-btn-page {
        width: 100%;

        a {
            width: 100%;
        }
    }

    .btn-page{
        font-size: clamp(0.875rem, 1vw, 10rem);
        width: 100%;
    }

    #sessao-avancado {
        justify-content: center;
        gap: 80px;
        height: 60svh;
        padding: 0 !important;
        .swiper-ti {
            width: 100%;
            max-width: 360px !important;
            height: auto;
        }
    }
    .content-avancado {
        width: 100% !important;
        justify-content: center;
        align-items: center;
    }
    .container-avancado {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 1.675rem;
        width: 50% !important;
    }

    .content-text-avancado {
        h2 {
            font-size: clamp(4rem, 5vw, 40rem) !important;
            width: 100% !important;
        }
    }


    .fixed-whatsapp {
        bottom: 3.3rem;
    }
    
    .sessao-alocacao {
        height: 160svh !important;
    }

    .container-nav-notebook {
        h1 {
            font-size: 6rem !important;
        }
    }

    .swiper-alocacao-pcs,
    .swiper-alocacao-moveis {
        .swiper-wrapper {
            .swiper-slide{
                img {
                   width: 100%;
                   height: auto;
                   max-width: 800px;
                }

                p {
                    bottom: 4rem !important;
                }
            }
        }
    }
    
    .swiper-alocacao-pcs {
        transform: translate(-50%, -180%) !important;
    }

    .swiper-alocacao-moveis{
        transform: translate(-50%, -90%) !important;
    }

    .container-footer-info {
        flex-direction: column ;
        gap: 1rem;
    }

    .container-footer-midia {
        display: flex !important;
        flex-direction: row !important  ;
        width: 100% !important;
        justify-content: space-between;
    }
    .container-footer-cnpj {
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
    }
    
  }
