* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    line-height: 1.6;
    background-image: url(./imagens/background6.png);
}

header {
    background-color: rgba(255, 255, 255, 0.377); /* Deixa a barra transparente */
    backdrop-filter: blur(2px); /* Adiciona um efeito de desfoque */
    display: flex;
    justify-content: space-between; /* Ajuste para espaçar logo e links */
    align-items: center;
    padding: 3px 5px;
    position: fixed;  /* Mantém a navbar sempre no topo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: top 0.3s ease-in-out;  /* Suaviza o efeito */ 
    
  
}

.navbar.hidden {
    top: -100px;
    }

.logo{
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
}
.logo-img  {
    max-width: 7.5rem; /* Ajusta o tamanho da logo */
    height: auto;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer; /* Deixa claro que é clicável */
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.logo-img2{
    max-width: 2.5em;
}

.short-logo{
    
        opacity: 0; /* Fica invisível por padrão */
        transform: translateX(-20px); /* Começa deslocada para a esquerda */
    
}

.logo:hover .full-logo {
    opacity: 0; /* Some ao passar o mouse */
    transform: translateX(-50px); /* Move para a direita */
}

.logo:hover .short-logo {
    opacity: 1; /* Aparece ao passar o mouse */
    transform: translateX(0); /* Volta para a posição normal */
}


.logo-img:active{
    transform: scale(0.9);
    transition: transform 0.1s ease-in-out;
}


.navli ul {
    list-style: none;
    display:flex;
    opacity: 1;
    gap: 15px;
}

nav ul li {
    margin-left: 10px;

}

nav ul li a {
    color: #1cbaad;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul li a:hover {
    font-size: 1.1em;
    
    
}
.lang-btn{
    background-color: transparent;
    font-size: 1em;
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    border: none;
    color: #1cbaad;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;


}
.lang-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border-radius: 2px;
    display: block;
  }

.lang-btn:hover{
    font-size: 1.2rem;
}

.language-selector {
    position: relative;
    display: inline-block;
  }
  
  .lang-toggle {
    background-color: transparent;
    color: #1cbaad;
    border: 2px solid #1cbaad;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .lang-toggle:hover {
    background-color: #ffffff;
    color: #ffffff;
  }
  
  .lang-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    border: 1px solid #1cbaad;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 10;
  }
  
  .lang-menu a {
    display: block;
    padding: 10px 16px;
    color: #1cbaad;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .lang-menu a:hover {
    background-color: #1cbaad;
    color: white;
    font-size: 1rem;
  }

  
  
  .hidden {
    display: none;
}

.hidden {
    display: none;
}
  
  

.hero {
background-image: url(./imagens/backgroud4.png);   
background-size: cover;
color: #1cbaad;
text-align: center;
padding: 60px 20px;
display: flex;
align-items: center;
justify-content: center;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 50px;
    transition-property: padding;
    transition-duration: 5s;
    
}

.hero-title {
    font-size: 38px;
    font-weight: normal;
    color: #000000;
    flex: 1;
    text-align: left;
    line-height: 48px ;
    
}




.sombra{
    
    text-shadow:1px 1px 10px  #c5c4c4 ;


}

.btn {
    background: #fff;
    color: #1cbaad;
    padding: 20px 36px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    box-shadow: 2px 2px 7px 7px #1cbaad;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 25px;
}

.btn:hover {
    background: #fff;
    transform: scale(1.2);
    box-shadow:  4px 4px 14px 14px #1cbaad;
    font-weight: bold;
}
.btn:active{
    background: black;
}

.sobre-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajuste a altura conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    overflow: hidden;
    padding: 40px;
    flex-direction: column;

}

/* Vídeo em tela cheia */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(20%); /* Deixa o vídeo mais escuro */

}

/* Texto centralizado acima do vídeo */
.conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1400px;
    align-items: center;
    justify-content: space-between;
}
.mais-texto {
    display: inline;
}
.btn-leia-mais {
  display: none;
}


/* Título à esquerda */
.titulo-sobre {
    font-size: 3.2em; /* Chamativo */
    font-weight: bold;
    flex: 1;
}

.texto-sobre {
    font-size: 1.3em; /* Tamanho legível */
    flex: 2;
    max-width: 800px;
    line-height: 1.6;
}


.servicos {
    padding: 50px 20px;
    background-image: url(./imagens/background6.png);
    
}
.servicos h1{
    float: left;
    font-size: 40px;
    color: white;
}

.servicos h2{
    color:#00ccff; ;
}
.servicos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;

}
.servico {
    background: #1a1a1a;
    padding: 20px;
    margin-left: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: grid;
}
.servico:hover {
    transform: scale(1.05);
}
.servico img {
    width: 50px;
    margin-bottom: 10px;
}
.servico h3 {
    color: #1e90ff;
}
.servico a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    text-decoration: none;
    color: inherit;
}

/* Slidepanel */
.slide-panel {
    position: fixed;
    right: -100%;
    top: 0;
    width: 350px;
    height: 100vh;
    background-color: #0e0e0e;
    color: white;
    padding: 20px;
    border-left: 2px solid #3b82f6;
    box-shadow: -2px 0 20px rgba(59, 130, 246, 0.6);
    z-index: 999;
    transition: right 0.25s ease-in-out;
    max-height: auto; /* define altura máxima antes de rolar */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #007bff transparent;
  }
  .slide-panel ::-webkit-scrollbar {
    width: 6px;
  }
  .slide-panel::-webkit-scrollbar-thumb {
    background-color: #007bff; /* azul bonito */
    border-radius: 10px;
  }
  .slide-panel::-webkit-scrollbar-track {
    background: transparent;
  }

  .slide-panel.active {
    right: 0;
  }

  .slide-panel strong{
    color:#007bff;
  }
  .slide-panel h2{
    color:#007bff;
  }
  
  .slide-panel .close-panel {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
  }


  
  .panel-content {
    margin-top: 40px;
  }

.BTN-projeto{
    
     
    background: linear-gradient(45deg, #001F3F, #003366);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: block;
    padding: 5px 5px;
    text-align: center;
    float: right;
    margin-left: auto;
    width: fit-content; /* Evita que o botão ocupe 100% da largura */
    margin-top: 5em;
    color: white;
    font-size: 1em;
    letter-spacing: 1px;
    border: 2px solid #00ccff;
    box-shadow: 0 0 10px #00ccff;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.BTN-projeto:hover {
    background: linear-gradient(45deg, #003366, #0055a4);
    color: #fff;
    box-shadow: 0 0 20px #00ccff;
}
@keyframes neonGlow {
    0% { box-shadow: 0 0 10px #00ccff; }
    50% { box-shadow: 0 0 20px #00ffff; }
    100% { box-shadow: 0 0 10px #00ccff; }
}

.BTN-projeto.blinking {
    animation: neonGlow 1.5s infinite alternate;
}
/* Seção "Sobre a Rall Tech" */
.sobre {
    text-align: center;
    padding: 50px 20px;
    background-color: #000000;
    background-image: url(./imagens/5680034-hd_1920_1080_24fps.gif);
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(1px);

}

.sobre h2 {
    color: white;
        font-size: 2rem;
    margin-bottom: 20px;
}

.sobre p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: white;
}

.backgroud-video{
    position: relative;
    width: 100%;
}

.video1{
    width: 100%;
}
/* Seção de Depoimentos */
/* Seção de Consultoria */
.consultoria {
    background-color: #ffffff;
    padding: 50px 20px;
    max-width: 1300px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 4px 4px 10px #2c98f0;
}


.consultoria h2 {
    color: #2c98f0;
    font-size: 30px;
    text-align: center;}

.consultoria p {
    font-size: 26px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

/* Grid de Serviços */
.consultoria-todas {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.consu {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.consu i {
    font-size: 40px;
    color: #2c98f0;
    margin-bottom: 10px;
}

.consu h3 {
    font-size: 16px;
    color: #333;
}

/* Seção de ebooks */
.ebooks {
    text-align: center;
    padding: 50px 20px;
    background: rgb(255, 255, 255);
}

.ebooks h2 {
    font-weight: normal;
    color: #000000;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Estilizando o carrossel */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 60%;
    margin: auto;
}

.carousel-container {
    width: 600px; /* Exibe 3 ebooks de 300px cada */
    overflow: hidden;
    border-radius: 10px;
}

.carousel-track {
    display: flex;
    gap: 20px; /* Espaço entre os ebooks */
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

/* Botões de navegação */
.prev, .next {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #1cbaad;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Seção de Contato */
.contato {
    text-align: center;
    padding: 50px 20px;
    
    
}
.contato h2 {
    font-size: 2em;
    color: rgb(221, 247, 255);
    font-weight: bold;
   text-decoration-line:underline;
}
.contato p {
    font-size: 1.2em;
    color: rgb(221, 247, 255);
    font-weight: bold;
    margin-bottom: 30px;
}

.btn-contato{
    color: white;
    font-size: 1em;
    letter-spacing: 1px;
    border: 2px solid #00ccff;
    box-shadow: 0 0 10px #00ccff;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #001F3F, #003366);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    padding: 1rem 2rem;
    text-align: center;

}
.btn-contato:hover {
    background: linear-gradient(45deg, #003366, #0055a4);
    color: #fff;
    box-shadow: 0 0 20px #00ccff;
}

/* Footer */
footer {
   
    margin: auto;
    height: auto;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.coluna {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: left;
}

.coluna h4 {
    border-bottom: 2px solid #1cbaad;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.coluna ul {
    list-style: none;
}

.coluna ul li a {
    color: #e3f8f6;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.coluna ul li a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}

.Email, .numero {
    color: #2c3e50;
   
    text-decoration: none; /* Remove o sublinhado */
    transition: 0.3s;
    display: block; /* Faz os links ficarem um abaixo do outro */
    margin: 5px 0;
    color: white;
}

.email:hover, .numero:hover {
    text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
}



/* Responsividade */
@media (max-width: 1100px) {
    .conteudo {
        display: flex;
        flex-direction: column; /* Faz os elementos ficarem um abaixo do outro */
        align-items: center;
        text-align: center;
        transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
        /* Suaviza a mudança */

    }

    .titulo-sobre {
        margin-bottom: 20px; /* Dá um espaço entre o título e o texto */
        font-size: 60px; /* Aumenta um pouco o tamanho para destaque */
        transform: translateY(50px);
        opacity: 1;
        position: relative;
        animation: moveTitleToTop  2s ease-out forwards;

    }

    .texto-sobre {
        max-width: 90%; /* Mantém o texto legível */
        font-size: 25px; /* Ajusta para melhor leitura */
        transform: translateY(50px);
        opacity: 1;
        animation: moveUp 2s ease-out forwards;

    }

    .hero-content {
        display: flex;
        flex-direction: column; /* Organiza os elementos em coluna */
        align-items: center;
        text-align: center;
    }
   

    .hero-title {
        margin-top: 10px; /* Dá um espaçamento entre o texto e o botão */
        animation: moveUp 2s ease-out forwards;

        
        }
        .btn{
            animation: moveUp 1s ease-in-out forwards;

        }

        .sobre-container {
            flex-direction: column; /* Empilha os elementos em coluna */
            height: auto;
            padding: 20px;
            text-align: center;
        }
    
        .conteudo {
            flex-direction: column;
            width: 90%;
            text-align: center;
            padding: 20px;
            animation: moveUp 1s ease-in-out forwards;
        }
    
        .titulo-sobre {
            font-size: 26px; /* Reduz o tamanho do título */
            animation: moveUp 1s ease-in-out forwards;
        }
    
        .texto-sobre {
            font-size: 16px; /* Tamanho menor para leitura confortável */
            max-width: 100%;
            margin: 10px;
            animation: moveUp 1s ease-in-out forwards;
        }
    
        .video-background {
            height: 100%;
        }
    
        .video-background video {
            object-fit: cover;
            height: 100vh;
        }
        
        .mais-texto {
            display: none; /* Esconde o texto extra */
        }
    
        .btn-leia-mais {
            
                display: none; /* Exibe o botão "Leia mais" */
                background-color: rgba(255, 255, 255, 0.2);
                color: white;
                border: none;
                padding: 10px 15px;
                margin-top: 10px;
                cursor: pointer;
                transition: 0.3s;
                font-size: 16px;
                border-radius: 5px;
                margin: auto;
        }
    
        .btn-leia-mais:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
    
        .hero-title {
            margin-top: 10px; /* Dá um espaçamento entre o texto e o botão */
            }
    
        .hero
        {
        margin-top: 0.5em;
        animation: moveUp 1s ease-in-out forwards;}
    
        .btn:hover {
            transform: scale(1.2);
            animation: moveUp 1s ease-in-out forwards;
    
        }
        .servicos-container {
            display: grid;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.5s ease-in-out; /* Suaviza a transição */
            grid-template-columns: repeat(2, 1fr); /* 2 colunas */
            scale: 1;
            

        }
        .servicos h2{
            font-size: 40px;
            order: -1; /* Move os textos para cima */
            text-align: center;   
            padding-bottom: 10px;     

        }
         
        .servicos h1 {
            order: -1; /* Move os textos para cima */
            font-size: 0px;
            text-align: center;

        }
    
        .servico {
            display: grid;
            flex-direction: column;
            transition: all 0.5s ease-in-out;
            scale: 1;
        }

        .menu-toggle {
            display: block; /* Mostra o botão hambúrguer */
            position: absolute;
            right: 10px;
            top: 0;
            z-index: 1100;
        }
        .navli {
            display: none; /* Esconde o menu */
            position: absolute;
            top: 2.5em;
            right: 0;
            width: 100%;
            background-color: white ;
            text-align: center; /* centraliza conteúdo inline */

            
        }
    
        .navli ul {
            display: flex;
            flex-direction: column;
            text-align: center;
            align-items: center;      /* alinha no eixo cruzado */
            padding: 10px;
            margin: 0; /* remove espaço padrão */
            list-style: none;
            font-size: 1.5rem;
        }
        

        .navli ul li {
            padding: 10px;
        }
        .navli.active {
            display: block;
        }

        .logo:hover .full-logo {
            opacity: none
           
        }
        
        .logo:hover .short-logo {
            opacity: none
            
        }
        
        
        .logo-img:active{
            transform: scale(0.9);
            transition: transform 0.1s ease-in-out;
        }
       
    
}
   

@media (max-width: 768px) {
    header {
        flex-direction: column;
        justify-content: center;
        margin: auto;
   }

    
    .logo-img {
        max-width: 6em;
    }
    .logo-img2 {
        max-width: 3em;
        
    }

    .sobre-container {
        flex-direction: column; /* Empilha os elementos em coluna */
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .conteudo {
        flex-direction: column;
        width: 90%;
        text-align: center;
        padding: 20px;
        animation: moveUp 1s ease-in-out forwards;
    }

    .titulo-sobre {
        font-size: 26px; /* Reduz o tamanho do título */
        animation: moveUp 1s ease-in-out forwards;
    }

    .texto-sobre {
        font-size: 16px; /* Tamanho menor para leitura confortável */
        max-width: 100%;
        margin: 10px;
        animation: moveUp 1s ease-in-out forwards;
    }

    .video-background {
        height: 100%;
    }

    .video-background video {
        object-fit: cover;
        height: 100vh;
    }
    
    .mais-texto {
        display: inline ; /* Esconde o texto extra */
    }

    .btn-leia-mais {
        display: none; /* Exibe o botão "Leia mais" */
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        padding: 10px 15px;
        margin-top: 10px;
        cursor: pointer;
        transition: 0.3s;
        font-size: 16px;
        border-radius: 5px;
        margin: auto;
    }

    .btn-leia-mais:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .hero-title {
        margin-top: 10px; /* Dá um espaçamento entre o texto e o botão */
        }

    .hero
    {
    margin-top: 0.5em;
    animation: moveUp 1s ease-in-out forwards;}

    .btn:hover {
        transform: scale(1.2);
        animation: moveUp 1s ease-in-out forwards;

    }

    .top-section {
        flex-direction: column;
        text-align: center;
    }
    .servicos-container {
        width: 100%;
        padding: 20px;
        grid-template-columns: repeat(1, 1fr); /* 1 coluna */
        gap: 8px;
    }

    .servicos h2{
        font-size: 30px;
        order: -1; /* Move os textos para cima */
        text-align: center;
    }
    .servicos h1 {
        font-size:0px; /* Ajusta o tamanho do texto */
        order: -1;
    }

    .PROJETO {
        width: 100%;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    .coluna {
        margin-bottom: 20px;
        min-width: 100%;
    }

    .contato .btn {
        font-size: 18px;
        padding: 14px 28px;
    }

    .carousel {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        max-width: 90%;
        margin: auto;
    }

    .carousel-container {
        width: 600px;
    }

    .carousel-track img {
        width: 10rem;
        height: 10rem;
    }

    .prev, .next {
        font-size: 1.5rem;
    }

    #ebooktamanho{
        width: 10rem;
        height: 10rem;
    }

    /* Estilizando o carrossel */

    /* Idioma */
  

  .lang-menu {
text-align: center;   
 width: 100%;
  }

  .lang-btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
    .hero {
        padding: 40px 10px;
    }

    .btn {
        padding: 12px 24px;
    }
}

/* Animação de transição */
@keyframes moveUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
    
}


@keyframes moveTitleToTop {
    from {
        transform: translate(-500px, 50px);
        opacity: 0;
    }
    to {
        transform: translate(0, -60px);
        opacity: 1;
    }

}
/* Politica de Privacidade */

#mais-texto2{
    display: none;
}
.btn-leia-mais2 {
    display: inline-block; /* O botão "Ler mais" sempre aparece */
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #1cbaad;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-leia-mais2:hover {
    background-color: #148c83;
}
/* Caixa de texto com rolagem */
.texto-sobre {
    max-height: 300px; /* Define altura máxima para ativar a rolagem */
    overflow-y: auto; /* Ativa a rolagem vertical */
    padding-right: 10px; /* Espaço para não colar no scroll */
}

/* Barra de rolagem personalizada */
.texto-sobre::-webkit-scrollbar {
    width: 5px; /* Largura da barra */
}

/* Fundo da barra (quase invisível) */
.texto-sobre::-webkit-scrollbar-track {
    background: transparent;
}

/* Estilo do botão de rolagem */
.texto-sobre::-webkit-scrollbar-thumb {
    background-color: #1cbaad; /* Cor da rolagem */
    border-radius: 3px;
}

/* Estilo do botão ao passar o mouse */
.texto-sobre::-webkit-scrollbar-thumb:hover {
    background-color: #148c83;
}

.navli ul a {
    list-style: none;
    display: flex;
    opacity: 1;
    gap: 20px;
}



nav ul a {
    color: #1cbaad;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul a:hover {
    color: #1cbaad;
    font-size: 1.3em;
    
}

.container-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: #111; /* Fundo escuro */
    padding: 30px;
    border-radius: 10px;
    width: 60%; /* Aumentado */
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
    display: flex;
    flex-direction: column; /* Campos um abaixo do outro */
    gap: 15px;
}

/* CSS Formulario */
.container-form h2 {
    color: #fff;
    text-align: center;
    font-size: 22px;
}

.container-form input,
.container-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #007bff; /* Azul da marca */
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 16px;
}

.container-form textarea {
    height: 100px;
    resize: none;
}

.container-form button {
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.container-form button:hover {
    background: #0056b3;
}

#mensagem{
    resize: vertical;
}

.buttoncontato:disabled{
cursor: not-allowed;
background-color: #555b69;
}


.success {
    color: #00ffcc;
    background-color: #0d0d0d;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.error {
    color: #ff4d4d;
    background-color: #0d0d0d;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #25d366;
    animation: pulse 1.5s infinite;
    z-index: 999;
  }

  .whatsapp-btn img {
    width: 35px;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0px #25d366; }
    50% { box-shadow: 0 0 15px #25d366; }
    100% { box-shadow: 0 0 0px #25d366; }
  }


  .container-form{
    margin-top: 1rem;
  }
  .container-form h1{
    color: #0056b3;
    text-align: center;
  }

  .container-form h6{
    color: #ffffff;
    text-align: center;
    font-size: 0.7em;
  }