@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --header-h: 64px
}

* {
    margin: 0;
}

body {
    width: 100vw;
    overflow-x: hidden;
    background-color: black !important;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

header {
    width: 100vw;
    max-height: 200px;
    height: auto;
    padding: 10px;
    position: fixed;
    justify-content: space-around;
    align-items: center;
    display: flex;
    z-index: 9999 !important;
    font-size: 20px;
    transition: 0.5s ease-in-out;
}

.background-color {
    background-color: rgba(244, 244, 244, 0.3);
}

header .logo {
    width: 75px;
    border-radius: 300px;
}

#pc,
#mobile {
    align-items: center;
    width: 70%;
    justify-content: center;
    display: flex;
    gap: 15%;
}

#pc a,
#mobile a,
.dropdown a {
    text-decoration: none;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 0.8rem;
}


.dropdown {
    width: 100%;
    position: static;
    display: grid;
    text-align: center;
    gap: 10px;
    transition: 0.5s ease-in-out;
    top: 100px;
}

.dropdown a {
    display: grid
}

#mobile {
    display: none;
    gap: 80%
}

#mobile .fas {
    color: black;
}

#mobile img {
    width: 50px;
}


.btn-menu {
    display: flex;
    color: black;
    gap: 20px;
    background-color: white;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 0.8rem;
}

#s-hero {
    width: 100vw;
    height: 100vh;
    background: url('/images/ceu_estrelado.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    /* z-index: 1; */
    justify-content: center;
    align-items: center;
    display: flex;
}

.overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
}


@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 3s infinite;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.7s ease;
    z-index: 999;
}

.arrow img {
    width: 80px;
    transform: rotate(180deg);
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-content {
    z-index: 200;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    gap: 50px;
}

#saibamais {
    position: relative;
    overflow: hidden;
    width: 300px;
    font-family: 'Raleway', 'sans-serif';
    justify-self: center;
    align-self: center;
    display: block;
    color: white;
    transition: 0.5s;
    background-color: blueviolet;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}

#saibamais::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    20% {
        left: 125%;
    }

    70% {
        left: 125%;
    }

    90% {
        left: -75%;
    }

    100% {
        left: -75%;
    }
}

.hero-content .sub-content {
    display: grid;
    text-align: center;
    width: 100%;
    width: 400px;
    justify-content: center;
}

.hero-content .sub-content span {
    text-shadow: 0 0 2px white;
    animation: text-highlights 3s infinite;
    font-size: 2.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.hero-content .sub-content span b {
    font-size: 3rem;
    font-style: italic
}

@keyframes text-highlights {
    0% {
        text-shadow: 0 0 10px white;
    }

    10% {
        text-shadow: 0 0 12px white;
    }

    20% {
        text-shadow: 0 0 14px white;
    }

    30% {
        text-shadow: 0 0 16px white;
    }

    40% {
        text-shadow: 0 0 18px white;
    }

    50% {
        text-shadow: 0 0 20px white;
    }

    60% {
        text-shadow: 0 0 18px white;
    }

    70% {
        text-shadow: 0 0 16px white;
    }

    80% {
        text-shadow: 0 0 14px white;
    }

    90% {
        text-shadow: 0 0 12px white;
    }

    100% {
        text-shadow: 0 0 10px white;
    }
}

.fonte-titulo {
    font-size: 3rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    /* text-decoration: line-through; */
}

.texto-alinhado {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-top: 10px;
    padding-bottom: 75px;
    position: relative;
    z-index: 0;
}

#s-banner {
    width: 100vw;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    background: black;
    /* cor de fundo final */
    overflow: hidden;
}

#s-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%),
        url('/images/ceu_estrelado.jpg') no-repeat center top;
    background-size: cover;
    opacity: 0.3;
    /* controla a intensidade da imagem */
    z-index: 0;
}

#s-banner>* {
    position: relative;
    z-index: 1;
}

.posicionamento-banner {
    display: flex;
}

.quebrando-pc {
    justify-content: center;
    display: flex;
    width: auto;
}

.quebrando-pc img {
    width: 400px;
    border-radius: 300px;
}

.texto-banner {
    justify-content: center;
    display: grid;
    text-align: center;
    gap: 30px;
}

.texto-banner h1 {
    justify-self: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: orange;
    width: 400px;
    font-size: 40px !important;
}

.texto-banner h3 {
    color: white;
    font-family: 'Raleway', 'sans-serif';
}

#s-numeros {
    margin-top: 50px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

.text-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.text-number .fas {
    font-size: 4rem;
    color: grey;
}

.text-number-item {
    color: white;
    gap: 0px;
    width: 150px;
    display: grid;
    font-size: 1rem !important;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.contador-numeros {
    height: 50px;
    position: relative;
}

.texto-numeros {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.text-number p {
    font-size: 3rem;
    margin-bottom: 0px;
    text-align: center;
}


#s-servicos {
    width: 100vw;
    height: auto;
    /* background-color: orange; */
    margin-top: 50px;
    display: grid;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.titulo {
    width: auto;
    font-size: 3rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    max-width: 80%;
    justify-self: center;
    justify-content: center;
}

.linha {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 80px;
    justify-content: center;
}

.box {
    /* border: 1px dashed grey; */
    opacity: 0;
    width: 400px;
    height: 250px;
    background-color: black;
    box-shadow: rgba(255, 255, 255, 0.12) 0px 10px 36px 0px, rgba(255, 255, 255, 0.26) 0px 0px 0px 1px;
    transition: 0s ease-in-out;
    perspective: 1000px;
    cursor: pointer;
    border-radius: 30px;
    transform: translateY(-100px);
}

.box.animate {
    animation: fall-down 2s ease-out forwards;
}

@keyframes fall-down {
    0% {
        transform: translateY(99);
    }

    50% {
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.box.flip .box-inner {
    border-radius: 30px;
    transform: rotateX(180deg);
}

.box-front {
    padding: 30px;
}

.box-front,
.box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 30px;
    color: white;
}


.box-back {
    /* background-color: rgba(50, 50, 50, 1); */
    transform: rotateX(-180deg);
    padding: 30px;
}

.box:hover {
    background-color: rgba(20, 20, 20, 1);
}

.box p {
    font-family: "Bungee", sans-serif;
    color: white;
    text-align: center;
    font-size: 30px;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.box h4 {
    font-family: "Bebas Neue", sans-serif;
    /* font-weight: 100; */
    font-size: 20px;
    text-align: center;
}


#s-testimonials {
    width: 100vw;
    height: auto;
    padding-top: 150px;
}

.testimonial {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: 350px;
    text-decoration: none;
    background-color: white;
    max-width: 80%;
    display: flex;
    justify-self: center;
    overflow: visible;
    border-radius: 50px;
    margin-bottom: 85px;
    box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.4);
    transition: box-shadow 1s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(0.8);
}

.testimonial:hover {
    transform: scale(0.85);
    cursor: pointer;
    box-shadow: 0 0 100px 10px rgba(0, 255, 255, 0.3);
}

.testimonial .texts {
    background-color: black;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    color: white;
    width: 70%;
    padding: 30px;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial .texts h1 {
    text-align: center;
    color: red;
    /* padding-top: 30px; */
}

.testimonial .texts h3 {
    font-size: 1.2rem;
}

.testimonial .img {
    width: 40%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
}

.testimonial img {
    width: 90%;
    max-width: 100%;
    height: auto;
}

#testimonial-1 .img {
    transform: scale(0.5);
}

#testimonial-2 {
    flex-direction: row-reverse;
}

#testimonial-2 .texts {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: black;
    color: white;
}

#testimonial-2 .img {
    background-color: white;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

@keyframes testimonial-lightnings {
    0% {
        box-shadow: 0 0 10px 2px red;
    }

    25% {
        box-shadow: 0 0 15px 4px red;
    }

    50% {
        box-shadow: 0 0 20px 6px red;
    }

    75% {
        box-shadow: 0 0 15px 4px red;
    }

    100% {
        box-shadow: 0 0 10px 2px red;
    }
}

.popup {
    padding: 10px;
    text-align: center;
    display: grid;
    position: fixed;
    left: 50px;
    bottom: 50px;
    width: 400px;
    border-radius: 35px;
    height: auto;
    background-color: white;
    z-index: 99999;
    gap: 20px;
}

.popup-close {
    position: absolute;
    right: 25px;
    top: 10px;
}

.popup hr {
    width: 80%;
    height: 1px;
    border: 0px;
    border-top: 1px solid black;
    border-radius: 50px;
    background-color: #dddddd;
    padding: 0px;
    margin: 0;
}

.popup-title {
    margin-top: 5px;
    margin-bottom: -20px;
    height: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.popup-body {
    min-height: 80px;
}

.popup-body img {
    width: 80%;
    border-radius: 30px;
}

.popup-footer {
    gap: 10px;
    display: flex;
    position: relative;
    bottom: 10px;
    justify-content: center;
}


.popup-button {
    background-color: purple !important;
}

hr {
    position: relative;
    z-index: -1;
    background: grey;
    opacity: 1 !important;
    height: 300px;
    width: 4px;
    border-radius: 50px;
    margin: 40px auto;
}

@media (max-width:1000px) {
    .box {
        transform: scale(0.9);
    }

    .linha {
        margin-top: 5px;
        margin-bottom: 5px;
        gap: 40px;
    }

}

@media (max-width:850px) {
    .hero-content {
        display: grid;
    }

    .posicionamento-banner {
        display: grid;
        gap: 50px;
    }

    #s-numeros {
        transform: scale(0.8);
    }

    .box {
        transform: scale(1);
    }

    .linha {
        margin-top: 15px;
        margin-bottom: 15px;
        gap: 30px;
        display: grid
    }

    #mobile {
        display: flex;
    }

    #pc {
        display: none;
    }

    #testimonial-1 .img {
        transform: scale(0.9);
    }

    #testimonial-2 .img img {
        transform: scale(1.2);
        transform-origin: center center;
    }
}

@media (max-width: 768px) {
    #s-numeros {
        transform: scale(1);
        display: grid;
        gap: 30px;
    }

    .linha {
        margin-top: 30px;
        margin-bottom: 30px;
        gap: 60px;
    }

    .quebrando-pc img {
        width: 300px;
    }

    .testimonial {
        transform: scale(1);
    }

    .testimonial .texts h1 {
        font-size: 1.5rem;
    }

    .testimonial .texts h3 {
        font-size: 1rem;
    }
}

@media (max-width: 520px) {
    .box {
        transform: scale(0.8);
    }

    header {
        padding: 0px;
    }

    .titulo {
        font-size: 2rem;
    }

    #s-numeros {
        margin-top: 150px;
    }

    hr {
        height: 100px;
    }

    .hero-content .sub-content {
        transform: scale(0.8);
    }

    .testimonial {
        height: 250px;
    }

    .testimonial .texts h1 {
        font-size: 1rem;
    }

    .testimonial .texts h3 {
        font-size: 0.7rem;
    }

    .box {
        justify-self: center;
        max-width: 80%;
    }
}

page-lhs-it-services\styles\style.css */
/* ...existing code... */

/* PORTFÓLIO */
#s-portfolio {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.portfolio-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.portfolio-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.portfolio-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 250px;
    transition: transform 0.2s;
}

.portfolio-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.portfolio-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* EQUIPE */
#s-team {
    background: linear-gradient(to bottom, #000 0%, #ccc 2%, #fff 4%);
    padding: 40px 0;
    text-align: center;
}

.team-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 220px;
}

.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* CONTATO */
#s-contact {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(204, 204, 204, 0.2) 8%,
            rgba(244, 244, 244, 1) 15%);
    padding: 40px 0;
    text-align: center;
    height: auto;
    min-height: 500px;
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}

.contact-title {
    margin-top: 50px;
    display: grid;
}

.contact-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
    width: 80%;
    text-align: center;
    justify-self: center;
    justify-content: center;
}

.wpp-pequeno {
    width: 40px;
}

.btn-whatsapp {
    height: auto;
    min-height: 50px;
    max-width: 80%;
    transition: transform 0.3s ease-in-out !important;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

#main-footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    font-size: 0.95rem;
}

#main-footer a {
    color: #25D366;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}

#main-footer a:hover {
    color: #1ebe57;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* 
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------OLD SITE PARA BAIXO-----------------------------------------------
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------

*/


.show-site {
    position: relative;
    background: linear-gradient(to bottom, #000 0%, #0A0A0A 5%, #1C1C1C 40%, #1C1C1C 95%, #000 100%);
    display: block;
    width: 100vw;
    height: auto;
    padding-bottom: 200px;
    transition: top 1s ease, opacity 1s ease;
}

#app {
    overflow-x: clip !important;
    position: relative;
    max-width: 70vw;
    max-height: 10vh;
    font-size: 3rem;
    font-family: "Cascadia Code", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    text-align: center;
}

.Typewriter__wrapper {
    position: relative;
}

.sub-content a {
    text-decoration: none;
}

#saibamais:hover {
    background-color: violet;
    transform: scale(1.05);
}

#setas {
    width: 100px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.showButton {
    display: auto;
}


#quem-somos {
    width: 100vw;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}

.quem-somos-fotos {
    padding-left: 10px;
    margin-top: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}

.quem-somos-fotos img {
    width: 250px;
    border-radius: 200px;
    border: 1px solid white;
    transition: transform 0.4s ease;
}

.nos-conheca {
    max-width: 80vw;
    display: flex;
    gap: 50px;
    align-items: center;
    color: white;
}

.texto-nossa-empresa {
    max-width: 300px;
}

.portfolio {
    margin-top: 50px;
    width: 75vw;
    max-width: 75vw;
    background-color: white;
    height: 300px;
    align-self: center;
    justify-self: center;
    border-radius: 10px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    /* gap: 10px; */
    scroll-behavior: smooth !important;
}

hr {
    color: white !important;
    max-width: 80vw;
    justify-self: center;
    align-self: center;
    display: flex;
}

.portfolio-item {
    position: relative;
    width: 500px;
    height: 100%;
    /* border-radius: 10px; */
}

.portfolio-item img {
    width: 500px;
    height: 100%;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio::-webkit-scrollbar {
    height: 15px;
}

.portfolio::-webkit-scrollbar-track {
    background: #1C1C1C;
}

.portfolio::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 10px;
}

.portfolio::-webkit-scrollbar-thumb:hover {
    background-color: white;
}

.nossos-servicos {
    width: 100vw;
    height: auto;
    /* background-color: red; */
    display: grid;
    justify-content: center;
    ;
}

.servicos-cards {
    position: inherit;
    display: flex;
    width: 100vw;
    justify-content: center;
    gap: 20px;
    height: auto;
    align-items: center;
}

.card {
    border: 1px solid grey;
    align-self: center;
    justify-self: center;
    width: 250px;
    height: 150px !important;
    padding: 15px;
    font-size: 0.8rem;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateX(-100px);
    opacity: 0;
}

.card.ativo {
    transform: translateX(0);
    opacity: 1;
}

.card:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.card h5 {
    font-size: 1rem;
}

#muitomais {
    justify-content: center;
    align-items: center;
}

#muitomais:hover {
    transform: scale(1);
}

.icones {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icones img {
    transition: transform 0.5s ease-in-out, color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
}

.icones img:hover {
    transform: scale(1.1);
}

.social {
    width: 100px;
    height: 100px;
}

.social2 {
    width: 90px;
    height: 90px;
}

.alinhar-centro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wpp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 10;
    /* Mantém o botão na frente */
}

.wpp-button img {
    width: 80px;
    transition: 1s;
}

.wpp-button img:hover {
    transform: scale(1.05);
}

.chat-box {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 350px;
    height: 300px;
    background: white;
    border-radius: 10px;
    border-style: solid;
    border-color: green;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.fechar-chat {
    position: absolute;
    right: 15px;
    top: 5px;
    color: black;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

.fechar-chat:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.chat-box.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease-in-out;
}

.chat-box a {
    color: white;
    text-decoration: none;
}

.dentro-wpp {
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
    /* margin-top: 10px; */
    border-radius: 10px;
    width: 325px;
    height: 250px;
    display: flex;
    border: 2px solid green;
}

.dentro-wpp p {
    letter-spacing: 1px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.botao-wpp {
    transition: 1s ease-in-out;
}

.botao-wpp a:hover {
    color: black;
    transition: 1s;
}

.fotos-wpp {
    /* background-color: red; */
    /* border-right: 1px solid green; */
    padding-top: 10px;
    /* height: 100%; */
    width: 50px;
    display: grid;
    justify-content: center;
    align-self: baseline;
    gap: 10px;
}

.fotos-inside {
    height: auto;
}

.textos-wpp {
    width: 80%;
    padding-left: 5px;
    align-self: baseline;
    font-size: 3rem;
    /* background-color: orange; */
}

#luiz-wpp {
    border-radius: 300px;
    width: 35px;
}

#avatar-padrao {
    border-radius: 300px;
    width: 35px;
}

.primeiro-texto-wpp,
.segundo-texto-wpp,
.terceiro-texto-wpp,
.quarto-texto-wpp {
    margin-top: 5px !important;
    font-size: 0.8rem;
    font-family: "Cascadia Code", sans-serif;
}

.segundo-texto-wpp,
.terceiro-texto-wpp,
.quarto-texto-wpp {
    margin-top: 17px !important;
}

.online {
    margin-top: -7px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}

#online {
    width: 25px;
}

.first-buttons {
    margin-top: 10px;
    padding: 0px;
    gap: 5px;
    justify-content: left;
    display: none;
    opacity: 0;
}

.first-buttons button {
    align-self: center;
    border: none;
    border-radius: 5px;
    width: 125px;
    height: 50px;
    font-size: 0.8rem;
    transition: 0.5s ease-in-out;
    background-color: #0d77c9;
    color: white;
}

.second-buttons {
    margin-top: 5px;
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    /* espaço entre botões */
    justify-content: center;
}

.second-buttons button {
    align-self: center;
    border: none;
    gap: 0px;
    border-radius: 5px;
    width: 100px;
    height: 40px;
    font-size: 0.8rem;
    transition: 0.5s ease-in-out;
    background-color: #0d77c9;
    color: white;
}

#opcao1:hover,
#opcao2:hover {
    background-color: green;
    color: white;
}

#foto-2,
#foto-3,
#foto-4 {
    display: none;
}

#conv-1,
#conv-3 {
    display: none;
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 5px;
}

#conv-2,
#conv-4 {
    display: none;
    background-color: #50c647;
    border-radius: 10px;
    padding: 5px;
}

#conv-5 {
    display: none;
    padding: 5px;
}

.goto-wpp {
    background-color: green;
    margin-top: -10px;
    border-radius: 10px;
    border: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    font-size: 0.7rem;
    height: 40px;
    justify-content: space-around;
    transition: 0.5s ease-in-out;
}

.goto-wpp:hover {
    transform: scale(1.05);
}

#img-botao {
    width: 30px;
    color: white;
}

.carrossel-instagram {
    justify-content: center;
    display: flex;
    padding-top: 100px;
    width: 100vw;
}

.logo {
    justify-self: center;
}

.instagram {
    justify-self: center;
    min-height: justify;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80vw;
    overflow: auto;
}

.snapwidget-widget {
    justify-self: center;
    align-self: center;
}

footer {
    background: #000;
    height: auto;
    padding: 20px;
    color: #fff;
    padding: 20px;
    text-align: center;
    gap: 50px;
}

.container-footer {
    display: grid;
    justify-content: center;
    align-items: center;
}

.scontainer-footer {
    margin-top: 10px;
    justify-self: center;
    display: flex;
    justify-content: space-between;
    width: 50vw;
    gap: 50px;
}

.menu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.menu-footer li {
    margin-bottom: 5px;
}

.redes-sociais-footer {
    display: grid;
    justify-content: right;
    align-items: right;
    text-align: right;
}

.redes-sociais-footer img {
    width: 25px;
}

.scontainer-footer a {
    text-decoration: none;
    color: white;
}

.modal-novo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hidden {
    display: none;
    transition: 1s ease-in-out;
}

.modal-novo-content {
    position: relative;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    transition: 1s ease-in-out;
    animation: opacityModal 1s ease-in-out;
}

.modal-novo-content h2{
    font-size: 25px;
}

.modal-novo-content img{
    border-radius: 15px;
    width: 100%;
}

#closeModal{
    margin-top:10px;
    font-size: 10px;
}

#closeModal:hover{
    cursor: pointer;
}

.closeModal-x{
    position: absolute;
    right: 8px;
    top: 8px;
}

@keyframes opacityModal{
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}


@keyframes comeToLeft {
    0% {
        opacity: 0;
        left: -100;
    }

    90% {}
}

@keyframes internalDiagonalFlash {
    0% {
        /* top: 100%; */
        left: 0%;
    }

    100% {
        /* top: 100%; */
        left: 100%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media(max-width:1024px) {
    #app {
        font-size: 2.5rem;
    }

    .servicos-cards {
        display: grid;
        width: auto;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .nos-conheca {
        display: grid;
    }

    #app {
        font-size: 2rem;
    }

    .scontainer-footer {
        text-align: center !important;
        justify-content: center;
        align-items: center;
        display: grid;
    }

    .menu-footer ul {
        text-align: center;
    }

    .redes-sociais-footer {
        text-align: center;
    }

    .texto-nossa-empresa h4 {
        text-align: center;
    }

}

@media(max-width:570px) {
    .servicos-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media(max-width:480px) {
    #app {
        font-size: 2rem;
    }

    .chat-box {
        width: 100%;
        right: 0px;
    }

    .dentro-wpp {
        width: 100%;
    }

    .redes-sociais-footer {
        font-size: 0.5rem;
    }

}