@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;

}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}



body {
    color: #212529;
    background: white;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;

    font-size: 12px;
    font-weight: 400;

}



/* Navegação */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    width: 100%;
    background: white;
    transition: all 0.5s;
    position: fixed;
    z-index: 99;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navigation .logo {
    color: var(--purple);
    font-size: 1.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.navigation .logo img {}



.logo span {
    color: var(--dark);
}

.dropdown-content a {
    display: block;
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #555;
    border-radius: 10px;

}

/* Dropdown */
.dropdown {
    display: inline-block;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1;
    transition: 0.2s;
}

.dropdown:hover .dropdown-content {
    display: block;

}



.navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 !important;
}



.navigation ul li a {
    font-size: 14px;
    transition: all 0.5s;
    text-decoration: none;
    color: #212529;

}

.navigation ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #212529;
    transition: all .2s ease-in-out;
}

.navigation ul li a:hover::after {
    width: 100%;
}



.navigation ul li a:hover {
    color: var(--purple);
}


.navigation i {
    cursor: pointer;
    font-size: 1.5rem;
}

.menu {
    cursor: pointer;
    display: none;
}

.menu .bar {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: #212529;
    margin: 5px auto;
    transition: all 0.3s;
}

.menu .bar:nth-child(1),
.menu .bar:nth-child(3) {
    background: #212529;
}

/* fim navegação */

/* main */
.banner {
    background-image: url('../img/banner.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
}

.bannerx {
    background-image: url('../img/bannerdesk.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
}

.banner2 {
    background-image: url('../img/banner2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 561px;
    position: relative;
}

.banner .texto-banner {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
}

.texto-bannerx {
    position: absolute;
    top: 42%;
    text-align: center;
    width: 100%;
}

.texto-bannerx img {
    width: 30%;

}

.texto-bannerx h3 {
    color: white;
    margin: 15px 0;
}



.centrl{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.text-left{
    text-align: left !important;
}
.text-right{
    text-align: right !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Cor do overlay com transparência */
}

.banner .texto-banner h1,
h2 {

    color: white;
}

#escritorio {
    background-color: #f6f7f8;
}



section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.img-escritorio {
    position: relative;
    margin-left: 100px;
}

.containerx {
    padding: 0px 20px
}

.header-t {
    color: #212529;
}

p {
    line-height: 24px;
    margin-bottom: 24px;
    font-size: 15px;
}

.img-profissional {
    position: relative;
}

.img-profissional img {
    width: 80%;

}

#profissional {
    text-align: right;
}

a {
    transition: 0.2s;
}

.card-area a.thumbnail {
    overflow: hidden;
    display: block;
}

.thumbnail img {
    transition: 0.4s;
    min-width: 100%;
}

.thumbnail img:hover {
    transform: scale(1.1);
}

.card-area .body {
    margin: -150px 30px 30px 30px;
    margin-bottom: 0;
}

.card-area .body .wrapper {
    background: #fff;
    position: relative;
    z-index: 5;
    padding: 30px;
    padding-bottom: 0;
}

.card-area .body .wrapper .icon-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.icon-area span {
    font-size: 48px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #88919B;
}

.card-area .body .wrapper .inner p.disc {
    color: #7D7D7D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.32px;
    margin-bottom: 24px;
}

.title {
    color: #30373E;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.inner a.arrow-btn-saiba-mais i {
    color: #30373E;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.inner a.arrow-btn-saiba-mais {
    color: #30373E;
    font-size: 17px;
    font-weight: 500;
}

.header2 {
    text-align: center;
    padding: 40px 0px;
}

.form {
    width: 340px;
    height: 488px;
    background: #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #000;
    margin: calc(50vh - 220px) auto;
    padding: 20px 30px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    position: relative
}

.form h2 {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 180px;
    color: #212529;
    border-bottom: 3px solid #212529
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #212529
}

input:focus {
    border-bottom: 2px solid #212529
}

.form p:before {
    content: attr(type);
    display: block;
    margin: 28px 0 0;
    font-size: 14px;
    color: #212529
}

.form p {
    padding: 0;
    margin: 0;
}

button {
    float: right;
    padding: 8px 12px;
    margin: 8px 0 0;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #000000;
    background: 0;
    color: #000000;
    cursor: pointer;
    transition: all .3s
}

button:hover {
    background: #212529;
    color: #fff
}

.div-form {
    content: 'Hi';
    position: absolute;
    bottom: -15px;
    right: -20px;
    background: #212529;
    color: #fff;
    width: 320px;
    padding: 16px 4px 16px 0;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 10px 10px 40px -14px #000
}

span {
    margin: 0 5px 0 15px
}

.email-img h2 {
    color: #212529;
}

.email-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.email-img img {
    width: 100%;
}

ul {
    padding-left: 0;
}

.rodape {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #212529;
    padding: 10px 0px;
}

.rodape span {
    font-weight: 400;
    color: white;
}

.rodape .direitos span a{
    color: #fff !important;
}

.redes-sociais {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    gap: 10px;
}

.redes-sociais a {
    color: #ffffff;

}

.redes-sociais .bx {
    font-size: 20px;
}

.cta {
    background-image: url('../img/cta.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
}

.cta-header {
    position: absolute;
    top: 25%;
    padding-left: 15px;
    color: white;   
}

.cta-header h3{
    font-weight: 200 !important;
}

@media (max-width:785px) {

    .navigation {
        padding: 18px 20px;
        z-index: 999;
    }



    .navigation ul {
        gap: 0;
        margin: 0 !important;
        padding: 0 !important;

    }



    .menu {
        display: block;
    }

    .menu.ativo .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu.ativo .bar:nth-child(2) {
        opacity: 0;
    }

    .menu.ativo .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: white;
        gap: -10px;
        transition: 0.3s;

    }

    .nav-menu.ativo {
        right: 0;
        top: 65px;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-item a{ cursor: pointer;}

    .mobile-title {
        background: #0000009e;
        padding: 10px;
        margin: 10px;
    }

    .macbook_img img {
        right: 0;
        width: 100%;
    }

    .card-area .body .wrapper {
        margin-bottom: 40px;
    }

    .cta {
        background-position: left;
    }

    .form {
        height: 477px;
    }

    .rodape {
        flex-direction: column;
    }

    .texto-bannerx img {
        width: 80%;

    }

    .x{
        display: inline-block !important;
    }
    .x{
        display: inline-block !important;
    }
    .flex{
        text-align: center !important;
    }
    .insta-disc{
        text-align: center !important;
    }

}


.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
    background-color: #212529;
    padding: 15px;
    border-radius: 10px;
    transition: 0.4s;
    cursor: pointer;

}

.whatsapp-float a {
    color: white !important;
}

.whatsapp-float i {
    font-size: 15px;
    /* Tamanho do ícone do WhatsApp */
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* Sombra suave */
    transition: transform 0.3s ease;
    /* Efeito de transição suave */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    /* Efeito de escala ao passar o mouse */
    background-color: #25d366;
}

.img-insta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-insta img {
    width: 80%;
}


.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: right;
}

.btn-seguir {
    color: white;
    background-color: rgb(0, 149, 246);
    border: none;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    padding: 7px 16px !important;
    cursor: pointer;
}

.btn-seguir:hover {
    color: white;
    background-color: rgb(24, 119, 242);
}

.btn-youtube {
    color: white;
    background-color: #dd2c00;
    border: none;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    padding: 7px 16px !important;
    cursor: pointer;
}

.btn-youtube:hover {
    color: white;
    background-color: black;
}

.flex h2 {
    color: #212529;
}

.desktop-item {
    display: none;
}

.mobile-item {
    display: block;
}

.img-escritorio img {
    width: 85%;
}

.img-escritorio::after {
    content: "";
    position: absolute;
    top: 70px;
    left: -70px;
    width: 85%;
    height: 100%;
    background-color: transparent;
    border: 30px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 700px) {
    .desktop-item {
        display: block;
    }

    .mobile-item {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .img-escritorio img {
        width: 100% !important;
    }
    
    .img-escritorio::after {
        content: "";
        position: absolute;
        top: 70px;
        left: -70px;
        width: 100%;
        height: 100%;
        background-color: transparent;
        border: 30px solid rgba(0, 0, 0, 0.1);
    }
}

.nav-item a{ cursor: pointer;}