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

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.whatsapp .wtsapp i {
    font-size: 25px; 
    transform: translateY(-5.5px);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.whatsapp .wtsapp {
    z-index: 1;
    position: fixed;
    transform: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 30px;
    left: 24px;  
    border: 0;
    z-index: 9999;
    width: 40px;
    height: 40px;
    line-height: 50px;
}


.whatsapp .wtsapp:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.whatsapp .wtsapp:focus {
    border: none;
    outline: none;
}

.whatsapp a:hover {
    color: #fff !important;
}

@keyframes pulse-border {
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
    100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
}

.left, .right {
   visibility: hidden;
}

.fale a {
    width: 100%;
    height: 100%;
}

.button-footer {
    background-color: rgb(206, 224, 250);
    padding: 6px 8px;
    width: 35%;
    border: 1.5px solid #004aad;
    border-radius: 12px;
    cursor: pointer;
}

.button-footer a {
    color: #1c1e53;
    cursor: pointer;
}

.fale a:hover {
   color: rgb(255, 255, 255);
   width: 100%;
   height: 100%;
}

a{
    text-decoration: none;
    color: #1c1e53;
    transition: color 0.3s ease;
}

a:hover{
    color: #004aad;
}

h5{
    font-size: 20px;
}

li{
    list-style: none;
}

.fale {
    color: fff;
}

nav{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    overflow-x: hidden;
}

nav .logo,
footer .logo{
    display: flex;
    align-items: center;
}

nav .logo a,
footer .logo a{
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

nav .logo img,
footer .logo img{
    width:290px;
    height: 290px;
    margin-top: 40px;
}

nav ul,
footer .top ul{
    display: flex;
    gap: 40px;
}

nav ul i {
    font-size: 10px;
}

nav button{
    color: #1c1e53;
    background-color: transparent;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid #1c1e53;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav button:hover{
    background-color: #004aad;
    border-color: #004aad;
    color: #fff;
}

nav button#menuButton{
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
    
}

#menuIcon {
    transition: transform 0.3s ease;
}



.main{
    background-color: #004aad;
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    margin-top: 70px;
}

.main .left{
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #f1b020;
}

.main .left h3{
    margin-top: 10px;
    font-weight: bold;
    font-size: 46px;
    color: #f1b020;
}

.main .left h3 span{
    color: #ffffff;
}

.main .left p{
    color: #ffffff;
    font-size: 22px;
    margin-top: 20px;
}

.main .left button{
    margin-top: 40px;
    color: #000000;
    cursor: pointer;
    background-color: #f1b020;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.left a{
    color: #03377a;
}
  
.main .right img {
    position: relative;
    height: 100%;
    top: 94px;
    width: 100%; 
    object-fit: cover; 
    object-position: center; 
    overflow-y: hidden;
    overflow-x: hidden;
}

.skills h3,
.about .right h3,
.portfolio .header h3,
.feedback h3{
    font-size: 40px;
    margin-top: 20px;
}

.skills .skill-items{
    display: flex;
    margin-top: 70px;
    gap: 10px;
}

.skills .skill-items .item{
    background-color: #a39797;
    width: 25%;
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skills .skill-items .item:hover{
    border-color: #f1b020;
}

.skills .skill-items .item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}


.info h1, .skills h3, .feedback h1 {
   color: #004aad;
}

.info h1 {
    font-size: 33px;
    white-space: nowrap;
}

#info-h1 {
    white-space: nowrap;
}

.skills .skill-items .item .icon i{
    font-size: 26px;
    color: #006b6a;
}

.skills .skill-items .item h4,
.portfolio .portfo-items .item .info h4{
    font-size: 18px;
}

.skills .skill-items .item p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    color: #1c1e53;
}

.portfolio{
    background-color: #fff;
    padding: 55px 75px;
}

.portfolio .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.portfolio .header button{
    background-color: #ff0000;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    border: none;
    border-radius: 10px;
}

.portfolio .header button i{
    font-size: 26px;
}

.portfolio .portfo-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.portfolio .portfo-items .item{
    width: 20%;
    height: 3%;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;

}

.portfolio .portfo-items .item:hover{
    border-color: #004aad;
}

.portfolio .portfo-items .item img{
    width: 100%;
    height: 100%;
    max-height: 290px;
    min-height: 290px;
    object-fit:cover;
    object-position: 20%;
    border-radius: 10px 10px 20px 20px;
}

.image-slider {
    opacity: 1;
    transition: opacity 1s ease-in-out; 
    width: 100%; 
    height: auto;
}


.portfolio .portfo-items .item .info{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px 32px 62px;
}

.ver {
    position: fixed;
}

.portfolio .portfo-items .item .info p{
    font-size: 13px;
}

.portfolio .portfo-items .item .info a{
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #f1b020; 
    position: 24%;  
}

.portfolio .portfo-items .item .info a i{
    margin-left: 2px;
    font-size: 16px;
}

.info a {
    color: #004aad;
}

#h5-medi {
    font-size: 15.5px;
}

#solutions {
    font-size: 30.5px;
    display: flex; 
    width: 50%;
    white-space: nowrap;
}

.info h5 {
       font-size: 16px; 
}

.feedback{
    padding: 110px 85px;
}

.feedback h1 {
    align-items: center;
    text-align: center;
}

.feedback .customers{
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.feedback .customers .item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #006b6a;
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback .customers .item .rating{
    color: #006b6a;
    font-size: 22px;
}

.feedback .customers .item:hover{
    border-color: #5e3bee;
}

.feedback .customers .item p{
    line-height: 22px;
    font-size: 14px;
}

.feedback .customers .item .user{
    display: flex;
    align-items: center;
    gap: 20px;
}

.feedback .customers .item .user img{
    width: 10px;
    height: 10px;
    object-fit: cover;
    border-radius: 50%;
}

.logos-slide img {
    justify-content: space-between
}

.feedback .customers .item .user h1{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feedback .customers .item .user p{
    font-size: 12px;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; 
    gap: 40px;
    padding: 40px;
}

.square {
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d5dff1;
    border: 1px solid #f1b020;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.square i {
    font-size: 36px;
    color:#004aad;
    margin-bottom: 10px;
}

.square h1 {
    font-size: 18px;
    margin: 0;
    color: #000000;
}

footer {
    width: 100%;
    color: #f5f5f5;
}

#footer_content {
    background-color: #d5dff1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
    border-radius: 10px 10px 0px 0px;
}

#footer_contacts h1 {
    margin-bottom: 0.75rem;
}

#footer_contacts img {
    margin-top: -77px;
    margin-left: -40px;
    width: 330px;
    height: 330px;
}

#footer_media {
    display: flex;
    gap: 1.48rem;
    max-height: 150px;
    margin-top: -3.rem;
    border-radius: 10px;
  
}

#footer_media i{
   padding: 0.55rem;
   border-radius: 10px;
}

#footer_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.5rem;
    width: 4.5rem;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.2 ease-in-out;
}

#footer_media:hover .footer-link:hover, #instagram:hover, #twitterx:hover, #whatsapp:hover  {
    opacity: 0.9;
}


#instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
    color: #f5f5f5;
    font-size: 20px;
    border-radius: 10px;
}

#twitterx {
    background: #000000;
    color: #f5f5f5;
    font-size: 20px;
    border-radius: 10px;
}

#whatsapp {
    background:#25d366;
    color: #f5f5f5;
    font-size: 20px;
    border-radius: 10px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link {
    color: #163f81;
    font-size: 16px;
}

.footer-list h3 {
    font-size: 30px;
    color: #004aad;
}

#footer_copyright {
    display: flex;
    justify-content: center;
    background-color: #b2c9f5;
    color: #19386b;
    font-size: 1.0rem;
    padding: 1.5rem;
    font-weight: 700;
    border-radius: 0px 0px 10px 10px;
}

.logos {
    overflow: hidden;
    padding: 75px 0;
    width: 100%;
    background: white;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 1;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-slide {
    display: flex;
    gap: 5px; /* Espaçamento uniforme entre logos */
    animation: slide 10s linear infinite;
}

.logos-slide img {
    width: 120px; /* Largura fixa para todas as logos */
    height: auto; /* Altura proporcional */
    object-fit: contain; /* Garante que as imagens não distorçam */
    flex-shrink: 0; /* Impede redução do tamanho das imagens */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ajuste para duplicar o slide */
.logos {
    display: flex;
}

.logos-slide:nth-child(2) {
    margin-left: 100%; /* O segundo slide começa logo após o primeiro */
}

.logos-slide {
    min-width: calc(100% + 100px); /* Garante que todo o conteúdo do slide esteja visível */
}



  .info h4, p {
    animation: CSSscrollReveal ease-in-out both;
    animation-timeline: view();
    animation-range: entry 50% cover 50%;
  }




 

  @media screen and (max-width: 1200px) {
    .main {
        display: flex;
        flex-direction: row;
        align-items: stretch; 
    }

    .main .right {
        height: 100%; 
    }

    .main .left h5 {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 36px;
    }

    .main .left p {
        font-size: 18px;
    }

    .main .right img {
        width: 380px;
    }

    .skills .skill-items {
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .skills .skill-items .item {
        width: 49%;
    }

    .about .left img {
        width: 370px;
    }

    .skills h3,
    .about .right h3,
    .portfolio .header h3,
    .feedback h3 {
        font-size: 32px;
    }

    .about .right p {
        font-size: 15px;
    }

    .feedback .customers .item .rating {
        font-size: 20px;
    }

    .feedback .customers .item p {
        font-size: 13px;
    }

    .whatsapp .wtsapp {
        left: 10px; 
        bottom: 20px; 
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    footer {
        width: 100%;
    }

    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    nav {
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 15px;
    }

    .main {
        flex-direction: column;
        padding: 60px 42px;
        align-items: center;
    }

    .main .left h3 {
        font-size: 36px;
    }

    .main .left p {
        font-size: 18px;
    }

    .main .left button {
        width: 100%;
    }

    .main .right img {
        max-width: 70%;
        height: auto;
        margin-top: 20px;
    }

    .info h1 {
        display: flex;
        margin-left: 50px;
    }

    .skills {
        padding: 85px 42px 0;
    }

    .skills .skill-items {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .skills .skill-items .item {
        width: 45%;
    }

    .about {
        padding: 85px 42px;
        flex-direction: column;
        align-items: center;
    }

    .about .left img {
        max-width: 100%;
    }

    .portfolio {
        padding: 85px 42px;
    }

    .portfolio .portfo-items {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio .portfo-items .item {
        width: 45%;
    }

    .feedback {
        padding: 85px 42px;
    }

    .feedback .customers {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback .customers .item {
        width: 45%;
    }

    .whatsapp .wtsapp {
        left: 10px; 
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px; 
    }

    #menuButton {
        display: none;
    }

    .main .right img {
        position: relative; 
        top: 66px; 
        left: 33%;
        transform: translateX(-30%); 
        max-width: 100%; 
        height: auto; 
    }
}

@media screen and (max-width: 992px) {
    nav button {
        display: none;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 11px;
    }

    .main {
        flex-direction: column;
    }

    .about {
        flex-direction: column;
        justify-content: center;
    }

    .portfolio .portfo-items {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio .portfo-items .item {
        width: 48%;
    }

    .feedback .customers {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback .customers .item {
        width: 48%;
    }

    .info h1 {
        position: relative;
        left: -40px; 
        bottom: 0px;
    }

    .whatsapp .wtsapp {
        left: 10px; 
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 25px;
    }

    #footer_contacts {
        margin-top: 0px;
        padding: 0;
        gap: 0;
        font-size: 20px;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {

    .logos-slide img {
        width: 90px;
    }
    .logos:before, .logos:after {
        width: 150px;
    }

    .whatsapp .wtsapp {
        left: 10px;  
        bottom: 20px;  
        width: 45px;
        height: 45px;
        font-size: 25px;
    }

    .whatsapp .wtsapp:before {
        width: 50px;
        height: 50px;
    }

    nav ul {
        display: none;
        gap: 10px;
    }

    nav.open .logo {
        display: none;
    }

    nav.open ul {
        display: flex;
    }

    nav button#menuButton {
        display: flex;
    }

    .main {
        padding: 42px;
    }

    .skills {
        padding: 85px 42px 0;
    }

    .skills .skill-items {
        gap: 8px;
    }

    .about {
        padding: 85px 42px;
    }

    .portfolio {
        padding: 60px 42px;
    }

    .portfolio .portfo-items {
        gap: 18px;
    }

    .portfolio .portfo-items .item img{
        object-fit: fill;
    }

    .feedback {
        padding: 85px 42px;
    }

    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 40px;
    }
}


@media screen and (max-width: 576px) {
    .whatsapp .wtsapp {
        left: 5px;  
        bottom: 15px;
        width: 40px;
        height: 39px;
        font-size: 22px;
    }

    i {
        font-size: 27px;
    }

    .whatsapp .wtsapp:before {
        width: 45px;
        height: 45px;
    }

    .main .right {
        height: 100%; 
    }

    .main .right img {
        position: relative; 
        top: 46px; 
        left: 33%;
        transform: translateX(-30%); 
        max-width: 100%; 
        height: auto; 
    }

    nav ul li a {
        font-size: 11px;
        font-weight: 600;
    }

    nav .logo a {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 32px;
    }

    .main .left p {
        font-size: 16px;
    }

    .main .left button {
        width: 100%;
    }

    .skills .skill-items .item {
        width: 100%;
    }

    .portfolio .header button {
        font-size: 12px;
        padding: 8px 14px;
    }

    .portfolio .portfo-items .item {
        width: 80%;
    }

    .feedback .customers .item {
        width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    @media screen and (max-width: 480px) {
        .logos-slide img {
            width: 80px; /* Reduzido para telas menores */
            margin: 0 10px; /* Ajustado o espaçamento */
        }
        .logos:before,
        .logos:after {
            width: 50px; /* Gradiente ajustado */
        }
        .logos-slide {
            animation: slide 10s linear infinite; /* Aumentado para garantir visibilidade */
        }
    }

    @media screen and (max-width: 426px) {
        #footer_content {
            grid-template-columns: repeat(1, 2fr);
            gap: 1rem;
            padding: 40px;
        }

        nav ul li a {
            font-size: 11px;
        }
    }

    

  /* Galaxy S8+ */
@media screen and (max-width: 360px) and (min-height: 740px) {
    html {
        overflow-x: hidden; 
    }

    .whatsapp .wtsapp {
        left: 10px;
        bottom: 5px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .whatsapp .wtsapp:before {
        width: 50px;
        height: 50px;
    }

    .main .right {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .main .right img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .main .left h3 {
        font-size: 28px;
    }

    .main .left p {
        font-size: 14px;
    }

    .main .left button {
        width: 100%;
        padding: 10px 16px;
    }

    footer .logo {
        height: 250px;
        width: 250%;
    }

    footer .logo img {
        position: relative;
        right: 15%;
    }

    body {
        overflow-x: hidden;
    }

    nav {
        margin: 5px;
    }

    nav ul li a {
        font-size: 8.5px;
    }

    #solutions {
        left: -95px;
    }
}



/* Galaxy S5 */
@media screen and (max-width: 360px) and (min-height: 640px) {
    html {
        overflow-x: hidden; 
    }

    * {
        margin: 0;
        padding: 0;
        border: none;
    }

    .whatsapp .wtsapp {
        left: 10px;
        bottom: 5px;
        width: 50px;
        height: 50px;
        font-size: 25px;
        overflow-x: hidden !important;
    }

    .whatsapp .wtsapp:before {
        width: 50px;
        height: 50px;
    }

    nav {
        justify-content: space-between;
    }

    .main .right {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .main .right img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }


    .main .left h3 {
        font-size: 28px;
    }

    .main .left p {
        font-size: 14px;
    }

    .main .left button {
        width: 100%;
        padding: 10px 16px;
    }
    
    .info h1 {
        margin-left: 47px;
    }

    #info-h1 {
        padding-left: 40px;
        white-space: nowrap;
    }

    #solutions {
        left: -30px;
    }

    #footer_media {
       display: none;
    }

    footer .logo {
        height: 250px;
        width: 250%;
    }

    .footer-list h3 {
        font-size: 42px;
    }

    footer .logo img {
        position: relative;
        right: 15%;
    }


}

:root {
    --font-size-lg: 9.7px;
    --font-size-md: 8.7px;
    --font-size-h3-lg: 30px;
    --font-size-h3-md: 26px;
    --font-size-h3-sm: 25px;
    --primary-color: #004aad;
}

html {
    overflow-x: hidden;
}


nav ul li a {
    font-size: var(--font-size-md); 
}

/* LG */
@media screen and (max-width: 384px) and (min-height: 640px) {
    nav ul li a {
        font-size: 13px;
    }
    .footer-list h3 {
        font-size: 22px;
        color: var(--primary-color);
    }

    .info h1 {
     font-size: 24px;
     left: -20px;
     padding-left: 20px;
    }
    
    #info-h1 {
        font-size: 22px;
        margin-left: 135px;
        white-space: nowrap;
    }

   h1#solutions {
        margin-left: 95px;
   }
}

/* moto g power */
@media screen and (max-width: 412px) and (min-height: 823px) {

    
    nav ul li a {
        font-size: 13px;
    }

    .info h1, #info-h1, #solutions {
        font-size: 30px;
        padding: 20px;
        white-space: nowrap; 
       }

       h1#info-h1 {
        margin-left: 20px;
       }
       
  
       h1#solutions {
        margin-left: 100px;
       }


    .footer-list h3 {
        font-size: var(--font-size-h3-md);
        color: var(--primary-color);
    }
}

/* Moto G4 */
@media screen and (max-width: 360px) and (min-height: 640px) {
    nav ul li a {
        font-size: var(--font-size-md);
    }

    h1#solutions {
        margin-left: 115px;
   }

   .info h1 {
    white-space: nowrap;
    left: -50px;
   }

}

/* iPhone SE */
@media screen and (max-width: 375px) and (min-height: 667px) {
    nav ul li a {
        font-size: 12px;
    }
    .info h1 {
        font-size: 24px;
        white-space: nowrap; 
       }
       
       h1#info-h1 {
           font-size: 21px;
           margin-right: 110px;
       }

       h1#solutions {
        margin-left: 90px;
       }

    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }

}

@media screen and (max-width: 414px) and (min-height: 896px) {
    nav ul li a {
        font-size: 14px;
    }
    .info h1 {
        position: relative;
        left: 35px;
        margin-left: 75px;
        white-space: nowrap;
        font-size: 28px;
        bottom: 0;
    }
       
       #info-h1, #solutions {
           font-size: 28.1px;
           margin-right: -40px;
           padding-left: -20px;
       }


    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }
}

@media screen and (max-width: 412px) and (min-height: 915px) {
    nav ul li a {
        font-size: 14px;
    }
    .info h1 {
        position: relative;
        font-size: 30px;
        padding-left: 20px;
        margin-left: 50px;
        white-space: nowrap; 
    }
       
       #info-h1 {
           font-size: 29.1px;
           white-space: nowrap; 
       }

       h1#solutions {
        left: -60px;
        padding-left: 40px;
       }


    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }
}

@media screen and (max-width: 412px) and (min-height: 914px) {
    nav ul li a {
        font-size: 14px;
    }
    .info h1 {
        position: relative;
        font-size: 30px;
        padding-left: 20px;
        margin-left: 50px;
        white-space: nowrap; 
    }
       
       #info-h1 {
           font-size: 29.1px;
           white-space: nowrap; 
       }

       h1#solutions {
        left: -30px;
        padding-left: 40px;
       }


    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }
}

@media screen and (max-width: 414px) and (min-height: 736px) {
    nav ul li a {
        font-size: 14px;
    }
    .info h1 {
        position: relative;
        left: -25px;
        bottom: 0;
    }
    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }
}

/* iPhone 12 Pro */
@media screen and (max-width: 390px) and (min-height: 844px) {
    nav ul li a {
        font-size: 13px;
    }
    .info h1 {
        font-size: 26px;
       }
       
       h1#info-h1  {
           font-size: 24.1px;
           margin-left: 5px;
           padding-left: -300px;
           
       }

       h1#solutions {
         text-align: center;
         margin-left: 90px;
       }

    .footer-list h3 {
        font-size: var(--font-size-h3-lg);
        color: var(--primary-color);
    }
}

/* iPhone X (variação menor) */
@media screen and (max-width: 375px) and (min-height: 812px) {
    body {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }

    nav ul li a {
        font-size: 12px;
    }

    .info h1 {
        font-size: 29px;
        margin-left: 80px;
       }
       
       #info-h1 {
           font-size: 17px;
           margin-left: -190px;
           padding-left: -90px;
       }

       #solutions {
        padding-left: 10px;
       }

}



/* iPhone 14 Pro Max*/
@media screen and (max-width: 430px) and (min-height: 932px) {
    body {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .footer-list h3 {
        font-size: var(--font-size-h3-sm);
        color: var(--primary-color);
    }

    #first {
        align-items: initial;
        justify-content: initial;
        position: relative;
        left: 60px;
        top: 150px;
    }

    #first h3 {
        font-size: 25px;
        white-space: nowrap; 
        margin-left: -5px;
    }

    #solu {
        align-items: initial;
        justify-content: initial;
        margin-left: -325px;
        margin-top:400px;
    }

    .info h1 {
        font-size: 29px;
        margin-left: 85px;
        white-space: nowrap;
       }
       
       h1#info-h1 {
           font-size: 28px;
           margin-left: 50px;
           padding-left: 20px;
       }

       h1#solutions {
          margin-left: 150px;
       }

    nav ul li a {
        font-size: 13px;
    }
}


@media screen and (max-width: 375px) and (min-height: 667px) {



    .info h1 {
        font-size: 24px;
       }
       
       #info-h1 {
           font-size: 23px;
           padding-left: -30px;
       }

 
}

    @media screen and (max-width: 375px) and (min-height: 812px) {

        body {
         height: 100%;
         width: 100%;
         object-fit: contain;
        }
 
        .footer-list h3 {
         font-size: 25px;
         color: #004aad;
     }

        .info h1 {
            padding-left: 20px;
            left: -50px;
            font-size: 24px;
        }

        h1#info-h1 {
            padding-left: 40px;
            left: -35px;
        }
     
     }

     :root {
        --primary-color: #004aad;
        --font-size-h3-sm: 25px;
        --font-size-h3-lg: 30px;
        --font-size-h3-md: 10px;
    }
    
    
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
    }

    .slide-right {
       margin-left: 20px;
    }

    #info-h1 {
        margin-left: 40px;
    }

    #solutions {
        font-size: 30.5px;
        margin-left: 120px;
    }
    
    footer,
    #footer_media i,
    #part2 {
        align-items: center;
        justify-content: center;
    }
    
    
    @media screen and (max-width: 360px) and (min-height: 800px) {
        .footer-list h3 {
            font-size: var(--font-size-h3-sm);
            color: var(--primary-color);
        }


          #info-h1 {
            font-size: 24px;
            margin-left: 40px;
        }

        #solutions {
            padding-left: -20px;
        }
    }
    
    @media screen and (max-width: 430px) and (min-height: 932px) {
        footer img {
            width: 290px;
            height: 290px;
            margin-bottom: 490px;
            margin-right: 5px;
        }
    
        #first {
            margin-left: -380px;
            font-size: 20px;
        }
    
        #footer_media i {
            font-size: 40px;
        }
    
        .footer-list h3 {
            font-size: var(--font-size-h3-sm);
            color: var(--primary-color);
        }
    
        #part2 {
            margin-right: 20px;
        }

        #info-h1 {
            font-size: 25px;
        }

        .info h1 {
            font-size: 30px;
        }
    }

    @media screen and (max-width: 414px) and (min-height: 736px) {
        #info-h1 {
            font-size: 24px;
            left: 5px;
        }

        #solutions {
            left: -15px;
        }
    }
    
 
    @media screen and (max-width: 768px) and (min-height: 1024px) {
        .whatsapp .wtsapp {
            left: 1vh;
            bottom: 15px;
            width: 50px;
            height: 50px;
            font-size: 25px;
            overflow: hidden;
        }
    
        .main .right {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
    
        .main .right img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-height: 100%;
        }
    
        .skills .skill-items .item,
        .portfolio .portfo-items .item {
            width: 48%;
        }
    }
    
   
    @media screen and (min-width: 820px) and (max-width: 1180px) and (min-height: 1180px) {
        .whatsapp .wtsapp {
            left: 515px;
            bottom: 15px;
            width: 50px;
            height: 40px;
            font-size: 25px;
        }
    
        .main {
            padding: 70px;
        }
    
        .portfolio .portfo-items .item {
            width: 40%;
        }
    }
    
   
    @media screen and (max-width: 1024px) and (min-height: 1366px) {
        .main {
            padding: 80px 50px;
        }
    
        .portfolio .portfo-items {
            gap: 20px;
            flex-wrap: wrap;
        }
    
        .feedback .customers .item {
            width: 48%;
        }
    }
    
   
    @media screen and (min-width: 912px) and (max-width: 1280px) {
        .main {
            padding: 60px 80px;
        }
    
        .main .right img {
            top: 60px;
        }
    
        .skills .skill-items .item {
            width: 45%;
        }
    
        .whatsapp .wtsapp {
            left: 30px;
            bottom: 50px;
            width: 60px;
            height: 60px;
            font-size: 32px;
        }
    
        .footer-list h3 {
            font-size: var(--font-size-h3-md);
            color: var(--primary-color);
        }
    }

    @media screen and (min-width: 540px) and (max-width: 720px) {
        .main {
            padding: 60px 80px;
        }
    
        .main .right img {
            top: 60px;
        }
    
        .skills .skill-items .item {
            width: 45%;
        }
    
        nav ul li a {
            font-size: 13px;
        }
    
        .footer-list h3 {
            font-size: 22px;
            color: var(--primary-color);
        }

        #solu {
            align-items: initial;
            justify-content: initial;
            margin-left: -325px;
            margin-top:400px;
        }

        #footer_media {
            display: none;
        }

        #first {
            margin-left: -320px;
            margin-top: 150px;
        }
    
        .info h1 {
            font-size: 29px;
            left: 50px;
           }
           
           #info-h1 {
               font-size: 28px;
               margin-left: 70px;
               padding-left: 20px;
           }

           #solutions {
               margin-left: 170px;
           }

           .slide-right {
            padding-right: 50px;
            margin-right: -90px;
           }

           .main .right img {
            position: relative; 
            top: 70px; 
            left: 33%;
            transform: translateX(-30%); 
            max-width: 100%; 
            height: auto; 
        }
    }
    

    :root {
        --primary-color: #004aad;
        --font-size-small: 8px;
        --font-size-medium: 18px;
        --font-size-large: 22px;
    }
    
    /* Galaxy Z Fold 5 */
    @media screen and (max-width: 344px) and (min-height: 882px) {
        .whatsapp .wtsapp {
            left: 5px; /* Ajuste para dispositivos dobráveis */
            bottom: 5px;
            width: 45px;
            height: 45px;
            font-size: var(--font-size-medium);
        }
    
        .whatsapp .wtsapp:before {
            width: 50px;
            height: 50px;
        }
    
        .main .right img {
            width: 80%;
        }
    
        .skills .skill-items .item,
        .portfolio .portfo-items .item {
            width: 90%;
        }
    
        nav ul li a {
            font-size: 1px;
            margin: 0;
            padding: 0;
            margin-right: 12px;
            white-space: nowrap; 
        }

        #footer_contacts img {
            position: relative;
            width: 110px;
            height: 200px;
        }
        
        .info h1 {
            margin-left: 45px;
        }

        #info-h1 {
            margin-left: 35px;
        }

        h1#solutions {
            font-size: 22px;
            margin-left: 90px;
            padding-left: -40px;
        }

    }
    
    /* Asus Zenbook Fold */
    @media screen and (min-width: 1280px) and (max-width: 853px) {
        .right img {
            top: 100px;
            overflow: hidden;
        }
    
        .skills .skill-items .item {
            width: 22%;
        }
    
        .portfolio .portfo-items .item {
            width: 30%;
        }
    }
    
  
    @media screen and (min-width: 1024px) and (max-height: 600px) {
        .main .right {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
    
        .main .right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
    
    /* Nest Hub Max */
    @media screen and (min-width: 1280px) and (max-height: 800px) {
        .main .left h3 {
            font-size: 29px;
        }
    
        .main .right img {
            width: 55%;
            top: 55px;
        }
    
        .feedback .customers .item {
            width: 35%;
        }
    }
    
   
    @media screen and (max-width: 1024px) and (min-height: 1024px) {
        .whatsapp .wtsapp {
            left: 20px;
            bottom: 40px;
            width: 50px;
            height: 50px;
            font-size: var(--font-size-large);
        }
    
        .whatsapp .wtsapp:before {
            width: 55px;
            height: 55px;
        }
    }
    
  
    @media screen and (min-width: 1280px) {
        .whatsapp .wtsapp {
            left: 40px;
            bottom: 60px;
            width: 70px;
            height: 70px;
            font-size: 36px;
        }
    
        .whatsapp .wtsapp:before {
            width: 75px;
            height: 75px;
        }
    }
    @media screen and (max-width: 360px) {

        
        
        .right img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
       

        nav .logo img {
            width: 240px; 
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
      
        nav .fale {
            position: relative; 
            margin-right: 10px;
        }

       
        .logo img {
            width: 180px; 
            height: auto;
        }
    
        
        h1, h3 {
            font-size: 30px; 
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed; 
            left: 10%; 
            bottom: 15px; 
            width: 40px;
            height: 40px;
            font-size: 27px; 
            border: none; 
            box-shadow: none; 
            transform: translateX(-60%); 
            display: flex;
            justify-content: center; 
            align-items: center; 
            background-color: #25d366;
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            align-items: center;
            justify-content: center;
            transform: translateY(-2px);
            font-size: 25px; 
        }
    
    
       
        #footer_media .footer_link {
            font-size: 22px; 
            display: inline-block;
            color: #ffffff; 
            width: 110px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        #info-h1 {
            font-size: 22px;
        }

        #footer_media {
            margin-right: 10px;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 250px;
            height: 250px;
        }
    

        
    
        .main {
            display: flex;
            flex-direction: column; 
            justify-content: flex-start; 
            height: 100vh; 
            margin: 0; 
            padding: 0; 
            overflow: hidden; 
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            margin-top: 80px;
            box-sizing: border-box;
            overflow: hidden; 
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
       
        .main .right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh; 
            object-fit: contain;
        }
    
        body {
            overflow-x: hidden; 
        }

        nav ul li a, .fale a {
            font-size: 12px; 
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 25px;
        }
    
        .portfolio .portfo-items .item {
            width: 100%; 
            margin-bottom: 15px;
        }


    }

    @media screen and (max-width: 360px) and (min-height: 740px) {

        nav {
            position: sticky;
        }

        nav .logo img {
            width: 240px;
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
       
        nav .fale {
            position: relative;
            margin-right: 10px;
        }

       
        .logo img {
            width: 180px; 
            height: auto;
        }
    
      
        h1, h3 {
            font-size: 30px;
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed; 
            left: 10%; 
            bottom: 15px; 
            width: 45px;
            height: 45px;
            font-size: 27px; 
            border: none;
            box-shadow: none; 
            transform: translateX(-60%); 
            display: flex;
            justify-content: center; 
            align-items: center; 
            background-color: #25d366; 
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            top: 25px;
            font-size: 33px; 
        }

        .whatsapp .wtsapp i {
            font-size: 25px; 
            transform: translateY(-2.0px);
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        #footer_media .footer_link {
            font-size: 22px; 
            display: inline-block;
            color: #ffffff; 
            width: 110px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        #info-h1 {
            font-size: 23px;
            margin-right: -30px;
            padding: 0;
        }

        #footer_media {
            margin-right: 10px;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 250px;
            height: 250px;
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden; 
            margin-top: 0;
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
    

    
        
        .main .right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh;
            object-fit: contain;
        }
    
   
        body {
            overflow-x: hidden; 
            margin: 0;
            padding: 0;
        }
    
     
        nav ul li a, .fale a {
            font-size: 11px; 
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 26.5px;
            position: relative;
            transform: translateX(-5px);
        }

        #info-h1 {
            font-size: 29.5px;
            transform: translateX(5px);
        }

        h1#solutions {
          text-align: center;
          font-size: 34px;
          margin-left: 110px;
        }

        .info {
            padding: -10px;
        }
    
        .portfolio .portfo-items .item {
            width: 100%; 
            margin-bottom: 15px;
        }
    }

    @media screen and (max-width: 712px) and (min-height: 1138px) {
        nav .logo img {
            width: 240px; 
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
        nav .fale {
            position: relative; 
            margin-right: 10px;
        }

        .logo img {
            width: 180px; 
            height: auto;
        }
        h1, h3 {
            font-size: 30px; 
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed; 
            left: 10%; 
            bottom: 15px;
            width: 55px;
            height: 55px;
            font-size: 27px;
            border: none; 
            box-shadow: none; 
            transform: translateX(-50%); 
            display: flex;
            justify-content: center; 
            align-items: center; 
            background-color: #25d366; 
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            top: 25px;
            font-size: 29px; 
        }
    
        #footer_media .footer_link {
            font-size: 22px; 
            display: inline-block;
            color: #ffffff; 
            width: 110px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        #info-h1 {
            font-size: 23px;
            margin-right: 90px;
            padding: 0;
        }

        #h5_seg {
            white-space: nowrap;
        }

        #solutions {
            margin: 0;
        }

        #footer_media {
            margin-right: 10px;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 250px;
            height: 250px;
        }
    

        
    
        .main {
            display: flex;
            flex-direction: column; 
            justify-content: flex-start;
            height: 100vh; 
            margin: 0; 
            padding: 0; 
            overflow: hidden; 
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden; 
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
    
        .main .right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end; 
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh; 
            object-fit: contain;
        }
    
        body {
            overflow-x: hidden; 
        }
    
        nav ul li a, .fale a {
            font-size: 12px; 
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 26.5px;
            position: relative;
            left: -100px;
           
        }

        .slide-right {
            font-size: 26.5px;
            position: relative;
        }
    
        .portfolio .portfo-items .item {
            width: 100%; 
            margin-bottom: 15px;
        }
    }

     @media screen and (max-width: 712px) and (min-height: 1138px) {
        nav .logo img {
            width: 240px; 
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
        nav .fale {
            position: relative; 
            margin-right: 10px;
        }

        .logo img {
            width: 180px; 
            height: auto;
        }
    
        h1, h3 {
            font-size: 30px; 
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed;
            left: 10%; 
            bottom: 15px; 
            width: 55px;
            height: 55px;
            font-size: 27px; 
            border: none; 
            box-shadow: none;
            transform: translateX(-50%); 
            display: flex;
            justify-content: center;
            align-items: center; 
            background-color: #25d366; 
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            top: 25px;
            font-size: 29px;
        }
    
        #footer_media .footer_link {
            font-size: 22px; 
            display: inline-block;
            color: #ffffff; 
            width: 110px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        #info-h1 {
            font-size: 23px;
            margin-right: 90px;
            padding: 0;
        }

        #h5_seg {
            white-space: nowrap;
        }

        #footer_media {
            margin-right: 10px;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 250px;
            height: 250px;
        }
    
        .main {
            display: flex;
            flex-direction: column; 
            justify-content: flex-start; 
            height: 100vh; 
            margin: 0; 
            padding: 0; 
            overflow: hidden; 
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden; 
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
    
        .main .right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end; 
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh; 
            object-fit: contain;
        }
    
        body {
            overflow-x: hidden; 
        }
    
        nav ul li a, .fale a {
            font-size: 12px; 
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 26.5px;
            position: relative;
            left: -100px;
           
        }

        .slide-right {
            font-size: 26.5px;
            position: relative;
        }
    
        .portfolio .portfo-items .item {
            width: 100%;
            margin-bottom: 15px;
        }
    }

    @media screen and (max-width: 428px) and (min-height: 926px) {
        nav ul li a {
            font-size: 14px; 
        }

        .info h1 {
            font-size: 28px;
            margin-left: 100px;
        }

        h1#info-h1 {
            padding-left: 40px;
            left: -50px;
        }

        h1#solutions {
            padding-left: 40px;
        }

        footer img {
            width: 290px;
            height: 290px;
            margin-bottom: 490px;
            margin-right: 5px;
        }
    
        #first {
            margin-left: -320px;
            margin-top: 90px;
        }

        #solu {
            margin-left: -320px;
            margin-top: -260px;
        }
    
        #footer_media  {
            display: none;
        }
    
        .footer-list h3 {
            font-size: var(--font-size-h3-sm);
            color: var(--primary-color);
        }

    }
    


    @media screen and (max-width: 320px) {



        nav .logo img {
            width: 200px; 
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
        nav .fale {
            position: relative; 
            margin-right: 10px;
        }

        .logo img {
            width: 180px; 
            height: auto;
        }
    
        h1, h3 {
            font-size: 30px; 
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed; 
            left: 10%; 
            bottom: 15px; 
            width: 55px;
            height: 55px;
            font-size: 27px; 
            border: none; 
            box-shadow: none;
            transform: translateX(-50%); 
            display: flex;
            justify-content: center; 
            align-items: center; 
            background-color: #25d366; 
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            top: 25px;
            font-size: 29px; 
        }
    
        #footer_media .footer_link {
            font-size: 20px; 
            display: inline-block;
            color: #ffffff; 
            width: 190px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        #info-h1 {
            font-size: 19px;
            margin-right: -5px;
        }

        #footer_media {
            margin-right: 10px;
            align-items: center;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 200px;
            height: 220px;
        }
    

        
    
        .main {
            display: flex;
            flex-direction: column; 
            justify-content: flex-start; 
            height: 100vh; 
            margin: 0; 
            padding: 0; 
            overflow: hidden; 
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden; 
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
    
        .right img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh; 
            object-fit: contain;
        }
    
        body {
            overflow-x: hidden;
        }
    
        nav ul li a, .fale a {
            font-size: 12px;
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 22px;
            white-space: nowrap; 
        }
    
        .portfolio .portfo-items .item {
            width: 100%; 
            margin-bottom: 15px;
        }
    }

    @media screen and (max-width: 320px), (max-height: 568px) {

        .right img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
    
        nav .logo img {
            width: 200px; 
            height: auto;
            margin-left: 0;
        }
    
        #menuButton {
            font-size: 22px;
            display: block;
        }
    
        nav .fale {
            position: relative;
         
        }
    
        .logo img {
            width: 150px; 
            height: auto;
        }
    
        h1, h3 {
            font-size: 24px; 
            line-height: 1.3;
        }
    
        .whatsapp .wtsapp {
            left: 8%; 
            bottom: 10px;
            width: 36px;
            height: 36px;
            font-size: 14px;
            transform: translateX(-50%);
        }

        .whatsapp .wtsapp i {
            font-size: 21px;
        }
    
        #footer_media .footer_link {
            font-size: 12px;
            width: 40px;
            height: 45px;
        }


    
        .footer-list h3 {
            font-size: 18px;
        }
    
      
    
        #footer_contacts img {
            width: 200px;
            height: 200px;
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 8px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
    
        .main .left h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }
    
        .main .left p {
            font-size: 14px;
            margin-bottom: 16px;
        }
    
        .main .right img {
            width: 85%;
            max-height: 35vh; 
            object-fit: contain;
        }
    
        nav ul li a, .fale a {
            font-size: 9.5px;
        }
    
        button.fale {
            padding: 6px 12px;
            font-size: 12px;
        }
    
        .info h1 {
            font-size: 22px;
            margin-left: 30px;
        }
        

        #solutions {
            font-size: 30.5px;
            margin-left: 60px;
        }
    
        .portfolio .portfo-items .item {
            width: 100%;
            margin-bottom: 12px;
        }
    
    }

    @media screen and (max-width: 339px) and (min-height: 656px) {

        .info h1 {
            padding-left: 40px;
            margin-left: 40px;
        }

        #info-h1 {
            font-size: 22px;
            padding-left: 20px;
            margin-left: 30px;
        }

        h1#solutions {
            font-size: 29px;
            padding-left: 40px;
            
        }


        #footer_media {
            display: none;
        }

        nav ul li a {
            font-size: 10.5px; 
            
        }


    }


    @media screen and (max-width: 360px) and (min-height: 616px) {

        .info h1 {
            padding-left: 20px;
            left: -35px;
        }

        #info-h1 {
            font-size: 22px;
            padding-left: 20px;
            left: -30px;
        }

        #solutions {
            font-size: 29px;
            padding-left: 40px;
            left: -75px;
        }


        #footer_media {
            display: none;
        }

        nav ul li a {
            font-size: 10.5px; 
            
        }


    }
    

    @media screen and (max-width: 320px) and (min-height: 658px) {



        nav .logo img {
            width: 200px; 
            height: auto;
            margin-left: 0; 
        }

        #menuButton {
            font-size: 24px;
            display: block;
        }
    
        nav .fale {
            position: relative; 
            margin-right: 10px;
        }

        .logo img {
            width: 180px; 
            height: auto;
        }
    
        h1, h3 {
            font-size: 30px; 
            line-height: 1.4; 
        }
    
        .whatsapp .wtsapp {
            position: fixed; 
            left: 10%; 
            bottom: 15px; 
            width: 55px;
            height: 55px;
            font-size: 27px; 
            border: none; 
            box-shadow: none; 
            transform: translateX(-50%); 
            display: flex;
            justify-content: center; 
            align-items: center; 
            background-color: #25d366; 
            border-radius: 50%; 
            color: white; 
        }
    
        .whatsapp .wtsapp:before {
            display: none; 
        }

        .whatsapp .wtsapp i {
            top: 25px;
            font-size: 29px; 
        }
    
        #footer_media .footer_link {
            font-size: 20px; 
            display: inline-block;
            color: #ffffff; 
            width: 190px;
            height: 51px;
        }

        .footer-list h3 {
            font-size: 20px;
        }

        .info h1 {
            padding-left: 40px;
            margin-left: 30px;
        }

        #info-h1 {
            font-size: 22px;
            padding-left: 40px;
            left: -60px;
        }

        #solutions {
            font-size: 24px;
            padding-left: 20px;
            left: -94px;
        }

        #footer_media {
            margin-right: 10px;
            align-items: center;
        }

        #footer_contacts img {
            position: relative;
            margin-left: -15px;
            width: 200px;
            height: 220px;
        }
    

        
    
        .main {
            display: flex;
            flex-direction: column; 
            justify-content: flex-start; 
            height: 100vh; 
            margin: 0; 
            padding: 0; 
            overflow: hidden; 
        }
    
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 10px;
            height: 100%;
            box-sizing: border-box;
            overflow: hidden; 
            margin-top: 80px;
        }
    
        .main .left {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    
        .main .left h3 {
            font-size: 26px; 
            margin-bottom: 10px;
            padding: 0;
        }
    
        .main .left p {
            font-size: 16px; 
            margin-bottom: 20px;
            padding: 0;
        }
    
        .main .right {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
    
        .main .right img {
            width: 90%;
            max-height: 40vh; 
            object-fit: contain;
        }
    
        body {
            overflow-x: hidden; 
        }
    
        nav ul li a, .fale a {
            font-size: 9.5px; 
            white-space: nowrap; 
        }
    
        button.fale {
            padding: 8px 16px; 
            font-size: 14px;
        }
    
        .info h1 {
            font-size: 22px;
            left: -20px;
            padding-left: 20px;
            white-space: nowrap; 
        }
    
        .portfolio .portfo-items .item {
            width: 100%; 
            margin-bottom: 15px;
        }
    }
    }

    
    