body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: black;
}
html{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
a{
    text-decoration: none;
}

header {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color:transparent;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    width: 100%;
    height: 8rem;
}

#logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10rem;
}

#logo img {
    position: relative;
    left: 5rem;
}

#logo img:hover {
    transform: scale(1.1);
}

#menu li {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

#menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
}

#menu li:hover {
    transform: scale(1.15);
}

#menu ul {
    display: flex;
    justify-content: space-around;
    margin-right: 5rem;
    font-size: 0;
    align-items: center;
}

#menu a {
    text-decoration: none;
    color: rgb(255, 253, 253);
    font-weight: 700;
}

/* ----------------- */
/* Dropdown de idiomas */
/* Caixinha da bandeira */
/* Caixa da bandeira */
.flag-box {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #111;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: background-color 0.3s;
}

.flag-box:hover {
    background-color: #222;
}

/* Bandeira */
.flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Setinha */
.arrow {
    color: white;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Quando dropdown está aberto, gira a seta */
.dropdown.open .arrow {
    transform: rotate(180deg);
}

/* Dropdown Geral */
.dropdown {
    position: relative;
    display: flex; /* Corrige o alinhamento */
    align-items: center;
    z-index: 9999;
}

/* Botão dropdown */
.dropbtn {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
/* Conteúdo do dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #B2181C;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 999;
    border-radius: 8px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-content a:hover {
    background-color: #680205;
    border-radius: 8px;

}

/* Mostrar dropdown no hover (desktop) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Também ativa a seta no hover */
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Botão Contato */
.btn-contato {
    padding: 10px 20px;
    background-color: #800020; /* vermelho grená */
    color: white !important;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-contato:hover {
    background-color: #a51c30;
    transform: scale(1.05);
}

#responsiveMenu{
    display: none;
  }

  @media screen and (min-width: 300px) and (max-width: 1398px) {
  /*Menu*/
  #responsiveMenu{
    margin: 0;
    display: grid;
    grid-template-columns:50% 50%;
}
#responsiveMenu span{
    text-align: right;
    position: relative;
    right: -60%;
    top: 30%;
    color: white;
    
    
}
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  #mensagem{
    resize: none;
}

/*menu de idiomas*/
.dropdown {
    display: block;
}

.dropdown-content {
    position: relative;
    box-shadow: none;
    background-color: rgba(0,0,0,0.95);
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropbtn {
    padding: 1rem;
    font-size: 1.2rem;
}
  @media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }

}

.overlay .btn-contato {
    display: inline-block;
    padding: 10px 20px;
    background-color: #800020;
    color: white !important;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    margin: 1rem auto;
    font-size: 24px;
    width: auto;
    max-width: 80%;
    text-align: center;
}

.overlay .btn-contato:hover {
    background-color: #a51c30;
    transform: scale(1.05);
}

}
/*Fim do menu*/



/* Section Vídeo Hero */
section.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Botão de som */
#mute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#mute-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
  section.hero-video {
    height: 80vh;
  }

  #mute-button {
    bottom: 12px;
    right: 12px;
    font-size: 18px;
    padding: 8px 10px;
  }
}
/* Fim do Vídeo Hero */



/* Seção Paralax */
.parallax-section {
    position: relative;
    background-image: url('Imagens/background2.jpg' ); /* Usando a imagem de background anterior */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px; /* Ajustado para dar mais espaço */
    color: white;
    min-height: 100vh;
}

/* Efeito de partículas de fundo (mantido) */
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Quadrado central (info-box) */
.info-box {
    background: rgba(255, 255, 255, 0.08); /* Glassmorphism com cores da marca */
    padding: 60px; /* Aumentado para mais espaço */
    border-radius: 20px; /* Mais arredondado */
    max-width: 1400px; /* Aumentado para 90% da tela */
    width: 90%; /* Ocupa 90% da largura da tela */
    color: #fff;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px); /* Mais blur */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Espaçamento entre os blocos internos */
}

/* Efeito de brilho ao passar o mouse na info-box */
.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.info-box:hover::before {
    left: 100%;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-box h2 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Tamanho responsivo */
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.info-box h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 3px;
    width: 30%;
    background: linear-gradient(90deg, #680205, #FFFFFF);
    border-radius: 2px;
    opacity: 0.9;
}

.info-box h2.left::after {
    left: 0;
    right: auto;
    transform: none;
}

.info-box h2.right::after {
    right: 0;
    left: auto;
    transform: none;
}
@media (max-width: 768px) {
  .info-box h2::after {
width: 100%;
;
  }
}

.info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem); /* Tamanho responsivo */
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e8e8e8;
    font-weight: 400;
    position: relative;
}

.servicos-lista {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;
    font-family: 'Montserrat', sans-serif;
    color: #e8e8e8;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    text-align: right;
    position: relative;
}

.servicos-lista li {
    margin-bottom: 10px;
    padding-right: 28px; /* espaço para a seta */
    position: relative;
    transition: all 0.3s ease;
}

/* Marcador (seta) do lado direito */
.servicos-lista li::after {
    content: '▹';
    position: absolute;
    right: 0;
    color: #ffffff; /* cor da marca */
    font-size: 1.3rem;
    top: 0;
    line-height: 1.2;
}
/* Efeito hover */
.servicos-lista li:hover {
    transform: translateX(-5px);
    color: #fff;
}

/* Responsividade (centraliza em telas pequenas) */
@media (max-width: 768px) {
    .servicos-lista {
        text-align: center;
        padding-right: 0;
    }

    .servicos-lista li {
        padding-right: 0;
    }

    .servicos-lista li::after {
        content: '•';
        position: static;
        margin-left: 8px;
        color: #ffffff;
    }

    .servicos-lista li:hover {
        transform: none;
    }
}
.info-box p:last-of-type {
    margin-bottom: 0;
}

.info-box p::first-letter {
    font-size: 1.3em;
    font-weight: 600;
    color: #f5f5f5;
}

.left {
    text-align: left;
    align-self: flex-start; /* Alinha o bloco à esquerda */
    width: 100%; /* Ocupa a largura total da info-box */
}

.right {
    text-align: right;
    align-self: flex-end; /* Alinha o bloco à direita */
    width: 100%; /* Ocupa a largura total da info-box */
}

#space-above {
    margin-top: 40px; /* Aumentado para melhor espaçamento */
}

.btn-contact {
    display: inline-block;
    margin-top: 60px; /* Espaçamento do último bloco de texto */
    padding: 18px 40px;
    background-color: #680205; /* Cor vermelha da marca */
    color: #FFFFFF;
    text-decoration: none;
    width: 30%;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(104, 2, 5, 0.4);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(104, 2, 5, 0.6);
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeitos de hover adicionais */
h2:hover::after {
    width: 80px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
    .info-box {
        padding: 40px;
        width: 95%;
    }

    .info-box h2 {
        font-size: 2rem;
    }

    .info-box p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .parallax-section {
        padding: 80px 15px;
    }

    .info-box {
        padding: 30px;
        width: 98%;
        gap: 30px;
    }

    .info-box h2 {
        font-size: 1.6rem;
        text-align: center !important; /* Centraliza títulos em mobile */
    }

    .info-box h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-box p {
        font-size: 1rem;
        text-align: center !important; /* Centraliza parágrafos em mobile */
    }

    .left,
    .right {
        align-self: center; /* Centraliza todos os blocos em mobile */
    }

    .btn-contact {
        margin-top: 40px;
        padding: 15px 30px;
        font-size: 1rem;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .parallax-section {
        padding: 60px 10px;
    }

    .info-box {
        padding: 20px;
        gap: 20px;
    }

    .info-box h2 {
        font-size: 1.4rem;
    }

    .info-box p {
        font-size: 0.95rem;
    }

    .btn-contact {
        margin-top: 30px;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .info-box::before,
    .btn-contact::before {
        animation: none;
        transition: none;
    }
}

/* Suporte para modo escuro (mantido) */
@media (prefers-color-scheme: dark) {
    .info-box {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .info-box:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}



/*Seção de Clientes*/

.clientes-section {
  background-image: url('Imagens/fundo-preto.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px;
  background-color: #000000;
  font-family: "Montserrat", sans-serif;
}

.clientes-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}

/* Carrossel */
.carousel-clientes {
  position: relative;
  overflow: hidden;
  width: 70%;
}

.carousel-track-clientes {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}

.carousel-item-clientes {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item-clientes img {
  width: 180px;
  max-width: 90%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.8;
  transition: 0.3s;
}

.carousel-item-clientes img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Animação */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 1024px) {
  .carousel-track-clientes {
    gap: 40px;
    animation-duration: 18s;
  }

  .carousel-item-clientes img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .carousel-track-clientes {
    gap: 30px;
    animation-duration: 16s;
  }

  .carousel-item-clientes img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .carousel-track-clientes {
    gap: 20px;
    animation-duration: 14s;
  }

  .carousel-item-clientes img {
    width: 100px;
  }

  .clientes-title {
    font-size: 2rem;
  }
}

/*Fim da Seção de Clientes*/





/*Rodapé*/

footer {
  font-family: 'Comfortaa', sans-serif;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 30px 5% 20px 5%;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 200px;
}

/* Logo */
.footer-logo img {
  width: 320px;
  max-width: 100%;
}

/* Redes */
.footer-redes {
  text-align: left;
}

.footer-redes h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-redes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redes li {
  margin: 10px 0;
}

.footer-redes a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-redes a:hover {
  color: #B2181C;
  transform: translateX(5px);
}

.footer-redes i {
  font-size: 1.2rem;
}

/* Direitos */
.footer-direitos {
  text-align: center;
  margin-top: 25px;
}

.footer-direitos p {
  font-size: 0.85rem;
  color: #fff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-redes {
    text-align: center;
  }
}

/*Fim do Rodapé*/


  /*botão whats*/

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 300px) and (max-width: 1399px){

    #responsiveMenu{
        display: block;
    }
    #menu{
        display: none;
    }
    header{
        margin: 0;
        display: grid;
        grid-template-columns:50% 50%;
    }
    #logo{
        margin: 0;
        position: relative;
        left: 20px;
    }
    #logo img{
        width: 50%;
        margin: 0;
        float: left;
        position: relative;
        left: 20px;
    }
  }

  
  