body {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/*------------------------------------------------ Cabeçalho ------------------------------------------------*/

header {
    width: 100%;
    background: linear-gradient(to right, #412772, #6E46BB);
    color: #ffffff;
    font-size: 14px;
    overflow: visible;
    position: fixed;
    z-index: 1000;
}

    .header-part1 {
        height: 5vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 10px 0px 10px #000000;
        padding: 0% 10%;
    }

        .header-part1-left {
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .header-part1-right {
            display: flex;
            align-items: center;
            gap: 1rem;

        }

        .header-part1-right a {
            color: var(--cor-branca);
            transition: 300ms;
            font-size: 16px;
        }

        .header-part1-right a:hover {
            color: #e0e0e0;
        }

    .header-part2 {
        height: 10vh;
        padding: 0% 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        overflow: visible;
    }

        .header-part2 img {
            height: 70%;
            border-radius: 5px;
            border: 2px solid #19181A;
            cursor: pointer;
        }

        .header-navigator {
            display: flex;
            gap: 2rem;
            list-style-type: none;
            height: 100%;
            display: flex;
            align-items: center;
            overflow: visible;
        }

        .header-navigator li {
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
            overflow: visible;
        }

        .header-navigator-li {
            color: var(--cor-branca);
            text-decoration: none;
            transition: 300ms;
            height: 50%;
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
        }

        .header-navigator-li:hover {
            color: #e0e0e0;
        }

        .header-btn-fale-conosco {
            background-color: #ffffff;
            color: var(--cor-primaria);
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            border: 1px solid transparent;
            transition: 300ms;
        }

        .header-btn-fale-conosco:hover {
            color: #ffffff;
            background-color: var(--cor-primaria);
            border-color: var(--cor-branca);
        }

        .header-navigator-solucoes {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-navigator-li::after {
            content: " ";
            width: 0%;
            height: 2px;
            background: linear-gradient(to right, #e0e0e0, #fcfcfc);
            border-radius: 1px;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: 150ms;
        }

        .header-navigator a:hover::after, .header-navigator p:hover::after{
            width: 100%;
        }

        .header-navigator-list {
            width: auto;
            height: auto;
            background-color: var(--cor-branca);
            position: absolute;
            top: 90%;
            z-index: 3;
            overflow: visible;
            box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
            padding: 1rem;

            color: var(--cor-primaria);
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: flex-start;

            gap: 1rem;
            display: none;
            transition: 500ms;
        }

        @keyframes header-navigator-list-animation-enter {
            0% {
                opacity: 0;
            }
            100%{
                opacity: 1;
            }
        }

        .header-navigator-list-animation-enter {
            animation: header-navigator-list-animation-enter ease-in-out 200ms;
            opacity: 1;
            display: flex;
        }

        @keyframes header-navigator-list-animation-over {
            0% {
                opacity: 1;
            }
            100%{
                opacity: 0;
            }
        }

        .header-navigator-list-animation-over {
            animation: header-navigator-list-animation-over ease-in-out 200ms;
            opacity: 0;
            display: none;
        }

        .header-navigator-list::before {
            content: "";
            position: absolute;
            top: -10px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent; /* Define a borda esquerda */
            border-right: 10px solid transparent; /* Define a borda direita */
            border-bottom: 10px solid var(--cor-branca); /* Define a cor do triângulo */
            border-top: 0; /* Remove a borda superior */
        }    
        
        .header-navigator-list-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 300px;
        }

        .header-navigator-list-div {
            width: 100%;
        }

        .header-navigator-list-div span {
            font-size: 1.1rem;
        }

        .header-navigator-list-div a {
            text-decoration: none;
            transition: 150ms ease-in-out;
            color: var(--cor-primaria);
        }

        .header-navigator-list-div a:hover {
            color: var(--cor-secundaria);
            transform: translateX(5px);
        }

        /* HEADER PARA MOBILE */

        .header-navigator-mobile-box {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;

            display: none;
        }

        .header-navigator-mobile-box i {
            display: flex;
            align-items: center;
            font-size: 2rem;
            width: 2rem;
            color: white;
            overflow: visible;
            cursor: pointer;
        }

        .header-navigator-mobile {
            width: 100%;
            height: 85%;
            top: 15%;
            left: 0;
            z-index: 20;
            background-color: #ffffff;
            position: absolute;
            transform: translateX(-100%); /* Posição inicial fora da tela */
            transition: transform 0.3s ease-in-out; /* Transição suave */
            position: fixed; /* Fixa o menu */  
        }

        .header-navigator-mobile-li {
            width: 100%;
            list-style-type: none;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 2rem;
            border-bottom: 1px solid var(--cor-primaria);
            font-size: 1.1rem;

            position: relative;
        }

        .header-navigator-mobile-li a {
            text-decoration: none;
            color: var(--cor-primaria);
            font-weight: bold;
        }

        #header-navigator-mobile-icon-close {
            display: none;
        }

        .header-navigator-mobile-li i {
            color: var(--cor-primaria);
            font-size: 1.5rem;
            right: 1rem;

            position: absolute;
        }

        .header-navigator-mobile-solucoes-dropdown-list {
            position: absolute;
            width: 100%;
            top: 100%; /* Coloca o dropdown logo abaixo da li */
            left: 0;
            transition: height 0.3s ease-in-out; /* Transição suave no ajuste do tamanho */
            overflow: hidden; /* Oculta o conteúdo quando fechado */
            height: 0; /* Altura inicial (fechado) */
        }        

        .header-navigator-mobile-li-solucoes {
            background-color: #6E46BB22;
        }

        @keyframes mobile-li-dropdown-list-open {
            0% {
                top: calc(-85px * 2);
            }

            100% {
                top: 0;
            }
        }

        .header-navigator-mobile-solucoes-dropdown-list-open {
            height: calc(85px * 2); /* Altura total para exibir os itens do dropdown */
        }

        @keyframes mobile-li-dropdown-list-close {
            0% {
                top: 0;
            }

            100% {
                top: calc(-85px * 2);
            }
        }

        .header-navigator-mobile-solucoes-dropdown-list-close {
            height: 0; /* Altura do dropdown quando fechado */
        }

/*------------------------------------------------ Home ------------------------------------------------*/

#home {
    width: 100%;
    position: relative;
    z-index: 0;
    margin-top: 15vh;
}

    .home-bg-video img {
        width: 100vw;
        height: 85vh;
        object-fit: cover;
    }

    .home-content-box {
        position: absolute;
        top: 0vh; /* Ajuste o valor conforme necessário */
        left: 0;
        width: 100%;
        height: 85vh;
        background: rgba(0, 0, 0, 0.6); /* Sombra preta com 50% de opacidade */
        color: #fff;
        padding: 20px;
        z-index: 1; /* Coloca o conteúdo acima da imagem */

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .iron-box-model {
        background: linear-gradient(to bottom, #737373, #FFFFFF);
        padding: 0.7rem 1.6rem;
        border-radius: 5px;
        box-shadow: 0px 3px 5px #000000;
        text-transform: uppercase;
        font-weight: bold;
        color: #545454;
        cursor: default;
        overflow: hidden;
        position: relative;
        transition: 200ms;
        cursor: pointer;
    }

    .iron-box-model::after {
        content: "";
        position: absolute;
        top: 0;
        left: -20%;
        width: 50px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
        transform: skewX(-20deg);
        transition: opacity 0.5s ease-in-out;
        pointer-events: none;
        z-index: 10;
        opacity: 0;
    }
    
    .iron-box-model.shine-animation::after {
        animation: iron-box-model-animation 1.5s ease-in-out;
        opacity: 1;
    }
    
    @keyframes iron-box-model-animation {
        0% {
            left: -20%;
            opacity: 0;
        }
        50% {
            left: 120%;
            opacity: 1;
        }
        100% {
            left: 120%;
            opacity: 0;
        }
    }    

    .iron-box-model:hover {
        transform: scale(1.1);
        transform: translateY(-2px);
        box-shadow: 0px 0px 5px #73737388;
    }

    .flash-heading {
        font-family: var(--fonte-extra);
        font-size: 4rem;
        font-weight: bold;
        color: #EAEAEA;

        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        position: relative;

        text-shadow: 0px 0px 10px #545454;
    }
    
    .home-content-box p {
        width: 60%;
        text-align: center;
        text-shadow: 0px 0px 10px #545454;
    }

    .home-content-box-icon a {
        width: 100%;
        height: 100%;
        color: #ffffff;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .home-content-box i {
        font-size: 1.5rem;
        transition: 300ms;
        background-color: transparent;
        padding: 10px;
        border-radius: 50%;
        color: #ffffff;
        z-index: 2;
    }

    .home-content-box i:hover {
        background-color: var(--cor-branca);
        color: var(--cor-secundaria);
    }
/*------------------------------------------------ Sobre ------------------------------------------------*/

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0% 5%;
    position: relative;
    z-index: 10;
    gap: 5rem;
    top: -5vh;
}

.divs-squares {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
}

.square-skills {
    width: 400px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #00000055;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.square-skills h2 {
    font-weight: bold;
    line-height: 1.4rem;
}

.square-skills i {
    font-size: 100px;
    background-image: linear-gradient(to bottom, #412772, #6E46BB); /* Gradiente de cima para baixo */
    -webkit-background-clip: text; /* Aplica o gradiente no texto */
    color: transparent; /* Torna o texto transparente para que o gradiente seja visível */
    overflow: hidden;
}

.about-video {
    display: flex;
    gap: 1%;
}

.about-video video {
    border-radius: 10px;
}

.about-video-left {
    width: 30%;
    margin-right: 10%;
    gap: 2rem;
    padding-left: 5%;
}

#iron-box-model2 {
    width: auto; /* A largura se ajusta ao conteúdo */
    display: inline-block; /* Isso vai permitir que a div se ajuste ao conteúdo sem forçar o 100% de largura */
    max-width: 100%; /* Se necessário, pode limitar a largura máxima */
    margin-bottom: 1rem;
}

.about-video-left h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.about-video-left p {
    margin-bottom: 2rem;
}

.about-btn-ver-solucoes {
    background: linear-gradient(to right, #412772, #6E46BB);
    color: var(--cor-branca);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
    transition: 200ms;
}

.about-btn-ver-solucoes:hover {
    box-shadow: 0px 0px 10px #6E46BB;
}

.about-video-right {
    width: 60%;
    padding-right: 5%;
}

.about-video-right video {
    width: 100%;
}

.about-numbers {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0% 5%;
    gap: 1rem;
}

.about-numbers-box {
    text-align: center;
    padding: 2rem;
}

.about-numbers-box h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.about-infraestrutura {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 0% 5%;
}

.about-infraestrutura h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.infraestrutura-box {
    display: flex;
    gap: 2%;
}

.infraestrutura-image-container {
    width: 70%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.infraestrutura-video {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: filter 0.5s ease;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.infraestrutura-content {
    width: 30%;
}

.infraestrutura-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 700;
    line-height: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.infraestrutura-text-right {
    text-align: right;
}

.infraestrutura-text-left {
    text-align: left;
}

.infraestrutura-box-location {
    margin-top: 1rem;
    display: flex;
    justify-content: end;
    text-align: right;
    width: 100%;
}

.infraestrutura-box-location i {
    font-size: 2rem;
    margin-right: 1rem;
}

/*------------------------------------------------ Sócios ------------------------------------------------*/

.about-socios {
    display: flex;
    gap: 5rem;
    padding: 0% 5%;
}

.about-socios-box {
    display: flex;
    flex-direction: column;
}

.about-socios-box h2 {
    font-size: 2.5rem;
}

.about-socios-box img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    margin-top: 0.5rem;
    border-radius: 10px;
}

/*------------------------------------------------ Clientes ------------------------------------------------*/

#clients {
    margin: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#clients h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 800;
    line-height: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.clients-box{
  display: flex;
  overflow:hidden;   /* importante p/ o slide */
  gap:0;
  margin-top:10px;
  padding:0 20px;
  position:relative;
  width: 100%;
}

.clients-box::before,
.clients-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2; /* garante que fique acima das imagens */
}

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

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

.carrossel-de-clientes{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:nowrap;
  flex:0 0 auto;           /* faixa não “quebra” */
  animation: clientes-slide 10s linear infinite;
}

.carrossel-de-clientes img{
  height: 80px;
  width:auto !important;   /* anula width:100% global */
  max-width:none;          /* evita encolhimento forçado */
  flex:0 0 auto;           /* cada logo tamanho próprio */
  display:block;           /* ok em flex */
  margin:0 20px;
  filter:grayscale(100%);
  transition:filter .3s ease;
}

.carrossel-de-clientes img:hover {
  filter: grayscale(0%);
}

@keyframes clientes-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*------------------------------------------------ Blog ------------------------------------------------*/

#blog {
    display: flex;
    gap: 5rem;
    padding: 0% 5%;
}

.blog-image-mobile {
    display: none;
}

.blog-main-images {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
    border-radius: 10px;
    gap: 10px;
    overflow: visible;
}

.blog-main-images-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fcfcfc;
    padding-left: 3%;
    border-radius: 10px;
    overflow: visible;
    cursor: pointer;
    transition: ease-in-out 200ms;

    position: relative; /* Necessário para o pseudo-elemento */
    border: 1px solid #00000011;

    gap: 1rem;
}

.blog-main-images-post:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px #ececec;
}

.blog-main-images-post div {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 0rem;
}

.blog-main-images-post h2 {
    font-size: 1.2rem;
}

.blog-main-images-post img {
    width: 20%;
    aspect-ratio: 1; /* Garante que a imagem seja quadrada */
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 0px 10px #0e0e0e55;

    height: 100%;
}

.blog-content {
    width: 50%;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 3rem;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.blog-content ul {
    list-style-position: inside; /* Os marcadores aparecem dentro do bloco de texto */
    padding-left: 0; /* Remova o padding adicional se necessário */
}

.blog-content ul li {
    margin-bottom: 1rem;
}

.blog-content-button {
    background: linear-gradient(to right, #412772, #6E46BB);
    color: var(--cor-branca);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
    transition: 200ms;
    text-align: center;
    width: 25%;
}

.blog-content-button:hover {
    box-shadow: 0px 0px 10px #6E46BB;
}

#about-infraestrutura-mobile {
    display: none;
}

.blog-main-images-title {
    display: none;
    font-size: 3rem;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/*------------------------------------------------ Rodapé ------------------------------------------------*/

footer {
    margin-top: 5rem;
    color: var(--cor-branca);
}

.footer-maps {
    height: 70vh;
    overflow: hidden;
}

.footer-social {
    height: 30%;
    background: linear-gradient(to right, #412772, #6E46BB);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0rem;
}

.footer-social-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0% 5%;
}

.footer-social-top div:nth-child(1) {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social-top img {
    width: 60%;
    height: 100%;
    cursor: pointer;
}

.footer-social-top div:nth-child(2) {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-social-top div:nth-child(2) div {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10%;
}

.footer-social-top div:nth-child(2) ul {
    list-style-position: inside; /* Os marcadores aparecem dentro do bloco de texto */
    padding-left: 0; /* Remova o padding adicional se necessário */
    margin-top: 1rem;
}

.footer-social-top div:nth-child(2) ul li {
    margin-bottom: 5px;
}

.footer-social-top-title {
    font-size: 1.2rem;
}

.footer-social-top div:nth-child(3) {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-social-top div:nth-child(3) div {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10%;
}

.footer-social-top div:nth-child(3) ul {
    margin-top: 1rem;
}

.footer-social-top div:nth-child(3) ul li {
    margin-bottom: 5px;
}

.footer-social-top-title {
    font-size: 1.2rem;
}

.footer-social-bottom {
    font-size: 0.8rem;
}

.footer-social-top a {
    color: var(--cor-branca);
    text-decoration: none;
    transition: 200ms ease-in-out;
}

.footer-social-top a:hover {
    color: #ececec;
}

.whatsapp-click-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 10000;
}

.whatsapp-click-button img {
    width: 50px;
    height: 50px;
}

/* --------------------------------------RESPONSIVIDADE--------------------------------------- */

@media (max-width: 1919px) /*Desktops médios e grandes (1367px a 1920px)*/ {
    .header-part1 {
        padding: 0% 5%;
    }

    .header-part2 {
        padding: 0% 5%;
    }

    #about {
        padding: 0%;
    }

    .square-skills {
        width: 350px;
    }

    .about-video {
        gap: 5%;
        overflow: visible;
    }

    .about-video-left {
        width: 40%;
        margin: 0;
        overflow: visible;
    }

    .about-socios-box img {
        height: 800px;
    }

    footer {
        font-size: 16px;
    }
}

@media (max-width: 1366px) /*Desktops pequenos e laptops (1025px a 1366px)*/ {
    .header-part1-left {
        gap: 1rem;
        font-size: 0.6rem;
    }

    .header-part1-right a {
        font-size: 0.6rem;
    }

    .header-part2 img {
        height: 60%;
        border: 1px solid #19181A;
        border-radius: 1px;
    }

    .header-navigator {
        font-size: 0.8rem;
    }

    .header-navigator-li::after {
        height: 1px;
    }

    .header-btn-fale-conosco {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .iron-box-model {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .flash-heading {
        font-size: 2.5rem;
    }

    .flash-paragraph {
        font-size: 0.8rem;
    }

    .home-content-box i {
        padding: 6px;
        font-size: 1rem;
    }

    .square-skills {
        width: 280px;
        padding: 1rem;
    }

    .square-skills i {
        font-size: 4rem;
    }

    .square-skills h2 {
        font-size: 1.2rem;
    }

    .square-skills p {
        font-size: 0.8rem;
    }

    .about-video-left h2 {
        font-size: 2rem;
    }

    .about-video-left p {
        font-size: 0.8rem;
    }

    .about-btn-ver-solucoes {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .about-numbers-box h2 {
        font-size: 2.5rem;
    }
    
    .about-numbers-box p {
        font-size: ´0.8rem;
    }

    .about-infraestrutura h1 {
        font-size: 2.5rem;
    }

    .about-infraestrutura h2 {
        font-size: 2rem;
    }

    .about-infraestrutura p, .about-infraestrutura em {
        font-size: 0.8rem;
    }

    .infraestrutura-box img {
        height: 400px;
    }

    .about-socios h2 {
        font-size: 2rem;
    }
    
    .about-socios span {
        font-size: 0.8rem;
    }

    .about-socios img {
        height: 600px;
    }

    #clients h1 {
        font-size: 2.5rem;
    }

    #blog {
        gap: 2rem;
    }

    .blog-main-images-post div{
        padding: 1rem 0rem;
    }

    .blog-main-images-post h2 {
        font-size: 1rem;
    }

    .blog-main-images span {
        font-size: 12px;
    }

    .blog-content {
        gap: 1rem;
    }

    .blog-content h2 {
        font-size: 2.5rem;
    }

    #blog p, ul {
        font-size: 0.8rem;
    }

    .blog-content-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer-social-top {
        font-size: 0.8rem;
        justify-content: space-around;
    }

    .footer-social-top div {
        justify-content: center;
    }

    .footer-social-top div:nth-child(2) {
        display: none;
    }

    .footer-social-top div img {
        width: 100%;
    }

    .footer-social-top-title {
        font-size: 1.2rem;
    }

}

@media (max-width: 1024px) /*Tablets em retrato e paisagem (769px a 1024px)*/ {
    .header-navigator-mobile-box {
        display: flex;
    }
    
    .header-navigator {
        display: none;
    }

    .header-part2 img {
        height: 50%;
        border-radius: 5px;
    }

    .header-btn-fale-conosco {
        display: none;
    }

    .flash-heading {
        font-size: 3rem;
        width: 80%;
        white-space: normal;
        text-align: center;
    }

    .home-content-box p {
        font-size: 1rem;
        width: 80%;
    }

    .square-skills {
        width: 200px;
    }

    .home-content-box i {
        font-size: 1.5rem;
    }

    .about-video {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-video-left {
        padding: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .about-video-left h2 {
        font-size: 2.5rem;
    }

    .about-video-left p {
        width: 80%;
        margin-bottom: 1rem;
    }

    .about-video-right {
        padding: 0;
        width: 80%;
        height: auto;
    }

    #blog {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
    }

    .blog-main-images {
        margin-top: 2rem;
        width: 80%;
    }

    .blog-content {
        width: 100%;
        background-color: var(--cor-secundaria);
        color: var(--cor-branca);
        padding: 10%;
        position: relative; /* Necessário para os pseudo-elementos */
        overflow: hidden; /* Garante que o conteúdo extra não apareça */
    }
    
    .blog-content::before,
    .blog-content::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 5px; /* Espessura da borda */
        background: linear-gradient(
            90deg,
            #6E46BB,
            #ffffff,
            #a07fe0,
            #ffffff,
            #6E46BB
        );
        background-size: 300%;
        animation: border-argb 3s linear infinite;
    }
    
    .blog-content::before {
        top: 0; /* Borda no topo */
    }
    
    .blog-content::after {
        bottom: 0; /* Borda na parte inferior */
    }
    
    @keyframes border-argb {
        0% {
            background-position: 0%;
        }
        100% {
            background-position: 300%;
        }
    }      

    .blog-image-mobile {
        display: block;
        width: 60%;
    }

    .blog-content-button {
        margin: 0;
        background: none;
        background-color: #FFFFFF;
        color: #000000;
    }

    .whatsapp-click-button img {
        width: 40px;
        height: 40px;
    }

    .about-infraestrutura {
        display: none;
    }

    #about-infraestrutura-mobile {
        display: flex;
    }

    .infraestrutura-box {
        flex-direction: column;
    }

    .infraestrutura-content {
        width: 100%;
        text-align: left;
    }

    .infraestrutura-text-right {
        text-align: left;
    }

    .infraestrutura-box-location {
        display: none;
    }

    .infraestrutura-image-container {
        width: 100%;
        margin-top: 1rem;
    }

    .blog-main-images-title {
        display: block;
        font-size: 2.5rem;
        margin-bottom: 10px;
        margin-top: 3rem;
    }

    .blog-main-images-post div {
        gap: 10px;
    }

    .carrossel-de-clientes img {
        height: 60px;
    }

    .clients-box::after,
    .clients-box::before {
        width: 150px;
    }
}

@media (max-width: 767px) /*Dispositivos móveis medios (480px a 768px)*/ {
    .header-part1 {
        height: 3vh;
        justify-content: center;
    }
    
    .header-part1-left {
        display: none;
    }

    .header-part2 {
        height: 8vh;
    }

    .header-part2 img {
        border-radius: 3px;
    }

    #home {
        margin-top: 11vh;
    }

    .header-navigator-mobile {
        top: calc(3vh + 8vh);
        height: calc(100vh - 11vh);
    }

    .flash-heading {
        font-size: 2rem;
    }

    .home-content-box {
        height: 89vh;
    }

    .home-bg-video img {
        height: 89vh;
    }

    .home-content-box p {
        font-size: 0.8rem;
    }

    .divs-squares {
        flex-direction: column;
        padding: 0;
        gap: 3rem;
    }

    .square-skills {
        width: 80%;
    }

    .about-video-left h2 {
        font-size: 2rem;
    }

    .about-numbers {
        padding: 0rem 2rem ;
    }

    .about-numbers-box {
        padding: 0;
    }

    .about-numbers-box h2 {
        font-size: 2rem;
    }

    .about-numbers-box p {
        font-size: 0.8rem;
    }

    .blog-image-mobile {
        width: 100%;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-content-button {
        width: 40%;
    }

    .blog-main-images {
        width: 90%;
    }

    .about-infraestrutura {
        gap: 2rem;
    }

    .about-infraestrutura h1 {
        font-size: 2rem;
        text-align: center;
    }

    .about-infraestrutura h2 {
        font-size: 1.5rem;
    }

    #clients h1 {
        font-size: 2rem;
        text-align: center;
    }


    #clients {
        margin: 3rem 0rem;
    }

    .footer-maps {
        height: 50vh;
    }

    .footer-social-top div:nth-child(3) {
        display: none;
    }

    .footer-social-top div:nth-child(1) {
        width: 60%;
    }

    .footer-social-top div:nth-child(1) p {
        display: none;
    }

    .footer-social-bottom {
        font-size: 0.6rem;
    }

    .header-navigator-mobile-box i {
        font-size: 1.5rem;
    }

    .header-navigator-mobile-li {
        font-size: 1rem;
    }

    .blog-main-images img {
        width: 30%;
    }

    .blog-main-images-title {
        font-size: 2rem;
        margin-bottom: 10px;
        margin-top: 2rem;
    }

    .clients-box::after,
    .clients-box::before {
        width: 100px;
    }
}

@media (max-width: 479px) /*Dispositivos móveis pequenos (320px a 479px)*/ {
    
    .flash-heading {
        width: 100%;
        font-size: 1.8rem;
    }

    .home-content-box p {
        font-size: 0.6rem;
    }

    .iron-box-model {
        font-size: 0.6rem;
        padding: 0.5rem;
    }

    .about-numbers-box h2 {
        font-size: 1.5rem;
    }

    .about-numbers-box p {
        font-size: 0.6rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    #blog p, ul {
        font-size: 0.7rem;
    }

    .blog-content-button {
        width: 50%;
    }

    .blog-main-images-title {
        font-size: 1.5rem;
    }

    .about-infraestrutura h1 {
        font-size: 1.5rem;
    }

    .about-infraestrutura h2 {
        font-size: 1.2rem;
    }

    #clients {
        margin: 1rem 0rem;
    }

    #clients h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .carrossel-de-clientes {
        gap: 0px;
    }

    .carrossel-de-clientes img {
        height: 40px;
    }

    .clients-box {
        margin: 0;
    }

    .clients-box::after,
    .clients-box::before {
        width: 150px;
    }

    .blog-main-images-post h2 {
        font-size: 0.8rem;
    }

    .blog-main-images span {
        font-size: 0.5rem;
    }

    .blog-main-images-post div {
        padding: 0;
    }
}