body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

body, html {
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 55vh; /* Cada seção ocupa a altura da janela */
}
.container3 {
    position: relative;
    width: 100%;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorções */
    filter: brightness(0.6); /* Mantém o efeito de escurecimento */
    z-index: -1; /* Mantém a imagem atrás do conteúdo */
}

.content {
    position: absolute;
    height: 85%; /* Posiciona 10% acima do rodapé */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px;
    align-content: space-evenly;
}

.content h1 {
    font-size: 2.5rem;
    margin: 0 0 20px;
    color: #ff6347; /* Laranja */
}

.content p {
    font-size: 1.2rem;
    margin: 0 0 30px;
    line-height: 1.5;
    color: #fff;
}

.content .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #ff6347; /* Laranja */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s;
}

.content .btn:hover {
    background-color: #e5533e; /* Tom mais escuro de laranja */
}

#check-list {
    background-color: #111;
    color: #fff;
    padding: 50px 12px;
    text-align: center;
}

.titulo {
    font-size: 2rem;
    text-align: justify;
}

#check-list .conteudo ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 800px;
    text-align: left;
}

#check-list .conteudo ul li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

#check-list .conteudo ul li .icone {
    color: #ff6347;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-check {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    background-color: #47c150;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-check:hover {
    background-color: #53d95d;
}
.imagem-checklists-interno{
    display: flex;
    border-radius: 5px;
}
.imagem-checklists{
    display: flex;
    height: 250px;
}
.conteudo {
    display: flex;
    justify-self: center;
    width: 570px;
}
.espacamento-top-20 {
    margin-top: 20px;
}
.chack-texto {
    padding: 20px;
}
.peeding-20 {
    padding: 20px;
}
.frase-principal-check {
    display: inline-block;
    max-width: 600px;
}
#web-design {
    background-color: #000 !important;
    color: #fff;
    padding: 0px 0px 50px 0px;
}

.content-web-design {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.texto-web-design {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.imagem-web-design {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.imagem-web-design img {
    max-width: 95%;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-web-design {
        flex-direction: column; /* Empilhar as colunas em telas menores */
    }

    .texto-web-design, .imagem-web-design {
        max-width: 100%; /* Garantir que o conteúdo ocupe a largura total */
        margin-bottom: 20px; /* Espaçamento entre os itens */
    }
}

@media (max-width: 480px) {
    .texto-web-design h2 {
        font-size: 1.5rem; /* Ajustar o tamanho do título em telas pequenas */
        text-align: center; /* Centralizar o título */
    }

    .texto-web-design p {
        font-size: 1rem; /* Ajustar o tamanho do texto */
        text-align: center; /* Centralizar o texto */
    }

    .texto-web-design ul li {
        font-size: 0.9rem; /* Ajustar o tamanho da lista */
    }

    .btn-check {
        padding: 10px 20px; /* Ajustar o tamanho do botão */
    }
}


.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    margin-bottom: 85px;
}

h1 {
    color: #ff6347;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    position: relative;
    background: linear-gradient(145deg, #1c1e22, #25292d);
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    height: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: skew(-10deg);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.card-content {
    transform: skew(10deg); /* Corrige a inclinação do conteúdo interno */
    position: relative;
    height: 100%;
    overflow: hidden;
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem não distorça */
    z-index: 0;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Escurece a imagem de fundo */
    z-index: 1;
}

.card-content p {
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Fundo semitransparente para destacar o texto */
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
}
#parceiros {
    min-height: 145vh; /* Altura mínima da seção para telas grandes */
    background-color: #f8f9fa;
    padding: 50px 0;
}

#parceiros h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#parceiros p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

#parceiros .container {
    max-width: 1140px;
    margin: 0 auto;
}

.logo-parceiro {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-parceiro:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}
.logo-parceiro {
    width: 120px; /* Largura desejada */
    height: auto; /* Mantém a proporção da imagem */
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px; /* Garante espaçamento na última linha */
    background-color: #f8f9fa;
}

.col-md-2 {
    flex: 0 0 auto;
    width: 16.6667%; /* Tamanho para 6 colunas por linha no desktop */
    max-width: 16.6667%;
    padding: 15px;
}

.col-sm-4 {
    width: 20%; /* Tamanho para 3 colunas por linha no tablet */
    max-width: 33.3333%;
}

.col-6 {
    max-width: 50%;
    align-items: center;
    display: flex;
}

@media (max-width: 768px) {
    #parceiros {
        padding: 30px 0;
    }

    #parceiros h2 {
        font-size: 1.8rem;
    }

    #parceiros p {
        font-size: 1rem;
    }

    .col-md-2 {
        width: 33.3333%; /* Adaptação para dispositivos menores */
        max-width: 33.3333%;
    }
}

@media (max-width: 576px) {
    .col-sm-4 {
        width: 50%; /* Adaptação para dispositivos menores */
        max-width: 50%;
    }

    .col-6 {
        width: 28%; /* Adaptação para dispositivos pequenos */
        max-width: 100%;
    }
}
.titulo-parceiros {
    text-align: center;
}

.texto-fotao {
    margin-right: 49px;
}
#fotao {
    margin-top: 40px;
}
#fotao img {
    max-width: 200px;
}
#fotao h1 {
    font-size: 32px;
    font-weight: 100;
    text-transform: capitalize;
    margin: 5px 0;
}

.corpo-fotao {
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 10px;
}

.autor-fotao{
    font-size: 10px;
}

.rodape {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.rodape-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.rodape-endereco,
.rodape-logo,
.rodape-redes-sociais {
    flex: 1;
}

.rodape-endereco {
    text-align: left;
    font-size: 14px;
    padding: 20px;
}

.rodape-logo img {
    max-width: 300px;
}

.rodape-redes-sociais {
}

.rodape-redes-sociais a {
    color: #fff; /* Cor padrão dos ícones */
    font-size: 40px;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover para cada rede social */
.rodape-redes-sociais a.instagram:hover {
    color: #C13584; /* Cor do Instagram */
}

.rodape-redes-sociais a.facebook:hover {
    color: #1877F2; /* Cor do Facebook */
}

.rodape-redes-sociais a.whatsapp:hover {
    color: #25D366; /* Cor do WhatsApp */
}

.rodape-copyright {
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 12px;
    margin-top: 10px;
}

.rodape-redes-sociais a i {
    margin: 0; /* Remove margens adicionais ao redor do ícone */
    padding: 0; /* Remove espaçamento adicional */
    vertical-align: middle; /* Alinha o ícone ao meio */
}
.row>* {
    text-align: center !important;
}
#principal {
    background-color: #e63329 !important; /* Fundo laranja */
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.container22 {
    display: ruby-text;
    align-items: center;
    justify-items: center;
    position: relative;
    width: 100%;
    height: 90vh; /* Cada seção ocupa a altura da janela */
    margin-top: 30px;
}
.content {
    display: unset;
    align-items: center;
}

.logo {
    width: 200px; /* Ajuste conforme necessário */
}

.text {
    color: white;
    font-size: 1.5rem;
}

.line {
    height: 3px;
    background-color: white;
    position: relative;
}

.cima {
    margin-top: 20px;
}

.baixo {
    bottom: 20px;
} 
.highlight {
    color: yellow;
    font-weight: bold;
}

/* Tela menor que 200px */
@media (max-width: 200px) {
    .line { width: 100px; }
    #parceiros { min-height: 160vh; }
}
@media (max-width: 600px) {
    .rodape-container { display: block; }
    .icones-bandeiras {
        transform: scale(0.6); /* Reduz mais em telas menores */
        margin: -15px !important;
    }
    .container22 {
        height: 100vh;
    }
}

@media (max-width: 680px) {
    .logos-grupo {
        display: unset !important;
    }
}

@media (max-width: 780px) {
    .titulo-icon { flex-direction: column-reverse; }
    .icone-web { align-self: center !important; }
    .texto-fotao { margin-right: 20px; }
    .sobre-imagem-container {
        max-width: 550px !important;
    }
    .sobre-container {
        display: grid !important;
    }
    .container22 {
        height: 60vh;
    }
    .sobre-texto-container {
        padding-left: 10px !important;
        padding: 10px;
    }

}
@media (max-width: 1050px) {
    .sobre-imagem-container {
        max-width: 450px !important;
    }
    .container22 {
        height: 80vh;
        margin-top: 50px;
    }
}
@media (max-width: 950px) {
    .sobre-imagem-container {
        max-width: 350px !important;
    }
}
@media (max-width: 870px) {
    .sobre-imagem-container {
        max-width: 290px !important;
    }
}

/* Tela entre 400px e 500px */
@media (min-width: 200px) and (max-width: 300px) {
    .conteudo {
        width: 200px;
        display: unset;
    }
    .content {
        display: unset;
        width: 100%;
    }
    .text {
        font-size: 1rem;
    }
    .line { width: 150px; }
    #parceiros { min-height: 160vh; }
}

/* Tela entre 400px e 500px */
@media (min-width: 300px) and (max-width: 400px) {
    .conteudo {
        width: 300px;
        display: unset;
    }
    .content {
        display: unset;
        width: 100%;
    }
    .text {
        font-size: 1rem;
    }
    .line { width: 250px; }
    #parceiros { min-height: 200vh; }
    .frame-video {
        width: 280px !important;
    }
}

/* Tela entre 400px e 500px */
@media (min-width: 400px) and (max-width: 500px) {
    .conteudo {
        width: 400px;
        display: unset;
    }
    .content {
        display: unset;
        width: 100%;
    }
    .text {
        font-size: 1rem;
    }
    .line { width: 350px; }
    #parceiros { min-height: 220vh; }
    .frame-video {
        width: 290px !important;
    }
}

/* Tela entre 500px e 600px */
@media (min-width: 500px) and (max-width: 600px) {
    .conteudo {
        width: 500px;
        display: unset;
    }
    .content {
        display: unset;
        width: 100%;
    }
    .text {
        font-size: 1rem;
    }    .line { width: 450px; }
    #parceiros { min-height: 220vh; }
    .frame-video {
        width: 390px !important;
    }
}

/* Tela entre 600px e 700px */
@media (min-width: 600px) and (max-width: 700px) {
    .conteudo {
        width: 600px;
        display: unset;
    }
    .line { width: 550px; }
    #parceiros { min-height: 220vh; }
    .container22 {
        height: 105vh;
        margin-top: 50px;
    }
    .frame-video {
        width: 490px !important;
    }
}


/* Tela entre 700px e 800px */
@media (min-width: 700px) and (max-width: 800px) {
    .line { width: 650px; }
    #parceiros { min-height: 220vh; }
}
/* Tela entre 800px e 900px */
@media (min-width: 800px) and (max-width: 900px) {
    .line { width: 750px; }
    #parceiros { min-height: 155vh; }
}
@media (min-width: 700px) and (max-width: 900px) {
    .container22 {
        height: 90vh;
        margin-top: 60px;
    }
}

/* Tela entre 900px e 1000px */
@media (min-width: 900px) and (max-width: 1000px) {
    .line { width: 850px; }
    #parceiros { min-height: 145vh; }
}

/* Tela entre 1000px e 1100px */
@media (min-width: 1000px) and (max-width: 1100px) {
    .line { width: 950px; }
    #parceiros { min-height: 145vh; }
}

/* Tela entre 1100px e 1200px */
@media (min-width: 1100px) and (max-width: 1200px) {
    .line { width: 1050px; }
    #parceiros { min-height: 145vh; }
}

/* Tela entre 1200px e 1300px */
@media (min-width: 1200px) and (max-width: 1300px) {
    .line { width: 1150px; }
    #parceiros { min-height: 145vh; }
}

/* Tela entre 1300px e 1400px */
@media (min-width: 1300px) and (max-width: 1400px) {
    .line { width: 1250px; }
    #parceiros { min-height: 145vh; }
}

/* Tela entre 1400px e 1500px */
@media (min-width: 1400px) and (max-width: 1500px) {
    .line { width: 1350px; }
}

/* Tela entre 1500px e 1600px */
@media (min-width: 1500px) and (max-width: 1600px) {
    .line { width: 1450px; }
}

/* Tela entre 1600px e 1700px */
@media (min-width: 1600px) and (max-width: 1700px) {
    .line { width: 1550px; }
}

/* Tela entre 1700px e 1800px */
@media (min-width: 1700px) and (max-width: 1800px) {
    .line { width: 1650px; }
}

/* Tela entre 1800px e 1900px */
@media (min-width: 1800px) and (max-width: 1900px) {
    .line { width: 1750px; }
}

/* Tela entre 1900px e 2000px */
@media (min-width: 1900px) and (max-width: 2000px) {
    .line { width: 1850px; }
}
/* Tela entre 2000px e 2100px */
@media (min-width: 2000px) and (max-width: 2100px) {
    .line { width: 1950px; }
}

/* Tela entre 2100px e 2200px */
@media (min-width: 2100px) and (max-width: 2200px) {
    .line { width: 2050px; }
}

/* Tela entre 2200px e 2300px */
@media (min-width: 2200px) and (max-width: 2300px) {
    .line { width: 2150px; }
}

/* Tela entre 2300px e 2400px */
@media (min-width: 2300px) and (max-width: 2400px) {
    .line { width: 2250px; }
}

/* Tela entre 2400px e 2500px */
@media (min-width: 2400px) and (max-width: 2500px) {
    .line { width: 2350px; }
}

/* Tela entre 2500px e 2600px */
@media (min-width: 2500px) and (max-width: 2600px) {
    .line { width: 2450px; }
}

/* Tela entre 2600px e 2700px */
@media (min-width: 2600px) and (max-width: 2700px) {
    .line { width: 2550px; }
}

/* Tela entre 2700px e 2800px */
@media (min-width: 2700px) and (max-width: 2800px) {
    .line { width: 2650px; }
}

/* Tela entre 2800px e 2900px */
@media (min-width: 2800px) and (max-width: 2900px) {
    .line { width: 2750px; }
}

/* Tela entre 2900px e 3000px */
@media (min-width: 2900px) and (max-width: 3000px) {
    .line { width: 2850px; }
}
@media (min-width: 3000px) {
    .line { width: 2950px; }
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Mantém o tamanho correto da imagem */
}

.swiper-slide-novo img {
    width: 75%;
    height: auto;
    border-radius: 10px; /* Adiciona bordas arredondadas */
    object-fit: cover; /* Mantém o tamanho correto da imagem */
}


.swiper-button-prev {
    color: #0000005e !important;
}
.swiper-button-next {
    color: #0000005e !important;
}
.icone-web {
    display: flex;
    justify-content: center;
    align-self: self-start;
}

.icones-bandeiras {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(230, 51, 41, 1));
    /*background-color: rgb(230, 51, 41);*/
    width: 100px;
    height: 120px;
    position: relative;
    margin: 0px 0px 10px 10px;
    clip-path: path('M100 0 0 0Q-5 99 22 101 46 110 50 120 54 110 84 98 105 91 100 0Z');
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}
.active {
    background: linear-gradient(rgb(255 50 50), rgba(230, 51, 41, 1));
}
.brilhando {
    background: linear-gradient(170deg, rgb(230, 51, 41), rgb(230, 172, 172));
    transition: background 3s linear;
}

.icones-icones {
    font-size: 40px !important;
    color: white;  /* Cor dos ícones */
    margin-top: 10px;
}

.icones-bandeiras h1 {
    font-size: 12px;
    color: white;
    margin-top: 5px;
    text-align: center;
}

.icones-distance {
    justify-items: center;
}
.texto-card {
    margin-right: 40px;
    margin-left: -20px;
}

#sobre {
    background-color: #e63329;
}
.sobre-nossa-empresa {
    /* Estilo para a seção geral */
    padding: 50px 0;
}

.sobre-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-imagem-container {
    flex: 1;
    margin-right: 20px;
    max-width: 550px;
    max-height: 550px;
}

.sobre-swiper {
    width: 100%;
    height: auto;
    overflow: hidden; /* Evita que o Swiper fique desalinhado */
}

.swiper-slide-novo {
    /* Estilo para os slides com a nova classe */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.sobre-swiper .swiper-wrapper {
    display: flex;
    width: 100%;
}

.sobre-swiper .swiper-slide {
    flex-shrink: 0;
   display: flex;
}

.sobre-imagem {
    max-width: 500px;
    border-radius: 10px;
}

.sobre-texto-container {
    flex: 1;
    padding-left: 20px;
    max-width: 600px;
    max-height: 620px;
}

.sobre-titulo {
    font-size: 2rem;
    font-weight: bold;
}
.sobre-botao {
    display: flex;
    justify-content: center;
    padding: 15px 30px;
    color: #fff;
    background: linear-gradient(45deg, rgb(255 0 0), rgb(255 79 79), rgb(255 106 106), rgb(255 140 140), rgb(255 171 166));
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sobre-botao a {
    color: inherit; /* Impede que o link fique azul */
    text-decoration: none; /* Remove sublinhado */
    font-weight: bold;
}

#inicial-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e63329;
    margin: 0;
}

/* Estilos para o container do carrossel */
#meu-carrossel {
    width: 100%;
    max-width: 3541px;
    margin: 0 auto;
}

/* Estilos para as imagens */
#meu-carrossel .splide__slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Estilos para a paginação */
#meu-carrossel .splide__pagination {
    bottom: -20px;
}

#meu-carrossel .splide__pagination__page {
    background: #ccc;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

#meu-carrossel .splide__pagination__page.is-active {
    background: #ff0000;
    transform: scale(1.2);
}

/* Estilos para as setas de navegação */
#meu-carrossel .splide__arrow {
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    opacity: 1;
}

#meu-carrossel .splide__arrow svg {
    fill: white;
    width: 24px;
    height: 24px;
}

#meu-carrossel .splide__arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}
#corpo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #fff;
    margin: 0;
    padding: 50px 0;
    color: #5c5c5c;
}

.corpo-conteiner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-secao {
    display: flex;
    width: 90%;
    margin: 40px 0;
    gap: 30px;
    justify-content: center;
}

.video-item {
    width: 30%;
    text-align: center;
    position: relative;
}

.video-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.video-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal video {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .video-secao {
        flex-direction: column;
        align-items: center;
    }

    .corpo-conteiner {
        gap: 100px !important;
    }
    
    .video-secao-meio {
        flex-direction: column-reverse !important;
    }

    .video-item {
        width: 80% !important;
        margin-bottom: 20px;
    }
}

.storys {
    width: 20%;
}

.texto-corpo-video {
    max-width: 400px;
}

.texto-corpo-video h1 {
    font-size: 2.4rem;
}

.texto-corpo-video p {
    font-size: 1.6rem;
}

.feed {
    width: 55%;
}
#galeria {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #555555;
    margin: 0;
    padding: 50px 0;
}

.fileira-videos {
    display: flex;
    justify-items: center;  /* Alinha os itens no centro */
}

.video-galeria iframe {
    border-radius: 10px;
    width: 100%; /* Limite de largura máxima */

}

.frame-video {
    background-color: #3c3a3a;
    border-radius: 10px;
    padding: 30px;
    width: 877px;
}

.video-thumbnail {
    width: 140px !important; /* Ajuste o tamanho conforme necessário */
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.video-thumbnail:hover {
    transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
}

.video-thumbnail.selecionado {
    border: 3px solid #e63329; /* Altere a cor para a sua preferência */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Efeito de sombra para destacar */
}

.troca-videos {
    width: 100%;
    max-width: 900px; /* Limita a largura */
    margin: auto;
}

.slick-slide {
    display: flex;
    justify-content: center;
}

.slick-slide iframe {
    width: 100% !important; /* força ocupar toda a largura do slide */
}
.troca-videos iframe {
    width: 240px !important;
    height: 419px !important;
    border-radius: 10px;
}
.slick-prev, .slick-next {
    color: #fff; /* Cor das setas */
    z-index: 10;
}
.logos-grupo {
    display: inline-flex;
    align-items: center; /* Para alinhar verticalmente */
    gap: 15px; /* Espaçamento entre os elementos */
    justify-content: center;
}

.logos-grupo img {
    width: auto; /* Mantém a proporção original */
    height: 30px; /* Define uma altura fixa */
}
.logos-grupo p {
    margin: 0;
}


/* Estilo para o cabeçalho fixo */
#cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.cabecalho-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-left: 20px;
    margin-right: 10px;
}

.logo {
    max-width: 150px;
}

/* Ícone do menu hambúrguer */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Menu lateral no mobile */
#menu {
    position: fixed;
    top: 0;
    right: -250px; /* Inicia fora da tela */
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    padding-top: 60px;
    text-align: center;
    transition: right 0.4s ease-in-out;
}

#menu ul {
    list-style: none;
    padding: 0;
}

#menu ul li {
    margin: 20px 0;
}

#menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 10px;
}

#menu ul li a:hover {
    background-color: rgba(101, 101, 101, 0.7);
    border-radius: 5px;
}

/* Quando o menu está ativo */
/* Responsivo para MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    #menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        padding-top: 60px;
        text-align: center;
        transform: translateX(100%); /* Esconde o menu */
        transition: transform 0.4s ease-in-out;
    }

    #menu ul {
        display: block;
        padding: 10px 0;
    }

    #menu ul li {
        display: block;
        margin: 10px 0;
    }

    #menu.ativo {
        transform: translateX(0);
    }
}
@media (max-width: 769px) {
    #cabecalho {
        display: flex;
        justify-content: flex-end;
    }
}

/* Responsivo para DESKTOP */
@media (min-width: 769px) {
    #menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        display: flex;
        justify-content: center;
        padding-top: 0px;
        margin-right: 50px;
    }

    #menu ul {
        display: flex;
        gap: 20px;
    }

    #menu ul li {
        margin: 0;
    }

    #menu ul li a {
        font-size: 16px;
        color: white;
        padding: 10px 15px;
    }

    .menu-toggle {
        display: none; /* Esconde o ícone hambúrguer no desktop */
    }
}

#formulario {
    background: #e63329;
    padding: 20px 0;
}
.formulario {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.formulario h2 {
    margin-bottom: 20px;
    color: #000;
}

.formulario form {
    display: flex;
    flex-direction: column;
}

.formulario label {
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    color: #000;
}

.formulario input,
.formulario textarea {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ff00004f;
    border-radius: 5px;
}

.formulario button {
    margin-top: 15px;
    padding: 10px;
    background: #e63329;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.formulario button:hover {
    background: #cc291f;
}

#servicos {
    justify-items: center;
    align-items: center;
    padding: 50px 0;
}

.lista-servicos {
    display: flex;
    gap: 100px;
}

.destaque {
    color: #f5463d;
    font-weight: bold;
}
.lista1 i {
    margin-right: 10px;
}

/* Container principal do vídeo */
.yt-video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: transparent;
}

/* Container que mantém a proporção 16:9 */
.yt-video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Iframe do vídeo */
.yt-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .yt-video-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .yt-video-container {
        border-radius: 8px;
    }
}