/*nouvo*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: "Poppins", serif;
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/* Banner Principal */
#banner-solar.banner-principal {
    background: url('/images/solardez/sl6.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

#banner-solar .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 4, 3, 0.14);
}

#banner-solar .conteudo-banner {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: entradaSuave 1s ease-in-out;
}

@keyframes entradaSuave {
    from {
        opacity: 0;
        transform: translateY(20px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}

#banner-solar .logo-banner {
    width: 150px;
    margin-bottom: 20px;
}

#banner-solar .conteudo-banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

#banner-solar .conteudo-banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra suave no texto */
}

#banner-solar .conteudo-banner .botao {
    display: inline-block;
    background-color: #09b818;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s;
    position: relative;
    overflow: hidden;
}

#banner-solar .conteudo-banner .botao::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

#banner-solar .conteudo-banner .botao:hover::after {
    left: 125%;
}

#banner-solar .conteudo-banner .botao:hover {
    background-color: #0c9718;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    #banner-solar .conteudo-banner h1 {
        font-size: 2.5rem;
    }

    #banner-solar .conteudo-banner p {
        font-size: 1.2rem;
    }

    #banner-solar .logo-banner {
        width: 120px;
    }
}


/*emprene*/


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/* Seção Por Que Escolher */
#por-que-escolher {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

#por-que-escolher h2 {
    font-size: 2.3rem;
    color: #002A5E;
    margin-bottom: 40px;
}

.beneficios {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 20px; /* Margem lateral para evitar que os itens toquem as bordas */
}

.beneficio {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0; /* Início da animação */
}

.beneficio:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.beneficio img {
    width: 60px;
    margin-bottom: 20px;
}

.beneficio h3 {
    font-size: 1.5rem;
    color: #1d1b1b;
    margin-bottom: 15px;
}

.beneficio p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Animação de Entrada */
@keyframes entradaSuave {
    from {
        opacity: 0;
        transform: translateY(20px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}

#por-que-escolher .beneficio {
    animation: entradaSuave 1s ease-in-out forwards;
    animation-delay: calc(var(--i) * 0.3s);
}

.cta-botao {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    margin-top: 40px;
    color: #fff;
    background-color: #09b818;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  /* Pseudo-elemento para o gradiente fica atrás com z-index: -1 */
  .cta-botao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #09b818, #0c9718);
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
    z-index: -1; /* Ajuste para ficar atrás do conteúdo */
  }

  /* No hover, o gradiente desliza cobrindo o botão */
  .cta-botao:hover::before {
    transform: translateX(-100%);
  }

  /* Efeito de escalar o botão no hover */
  .cta-botao:hover {
    transform: scale(1.05);
  }

  /* Se desejar, garanta que o texto fique relativo (mesmo que neste exemplo não seja indispensável) */
  .cta-botao span {
    position: relative;
    z-index: 1;
  }

/* Responsividade */
@media (max-width: 768px) {
    .beneficios {
        flex-direction: column;
        align-items: center;
    }
}


/*soluçõesne*/



/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/* Seção Projetos Realizados */
#projetos-realizados {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

#projetos-realizados h2 {
    font-size: 2.3rem;
    color: #002A5E;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#projetos-realizados h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #FDD835;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.galeria-projetos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 0 20px;
}

.projeto {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.projeto:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.projeto img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.projeto img:hover {
    transform: scale(1.05);
}

.detalhes-projeto {
    background: rgba(0, 42, 94, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    transition: opacity 0.3s;
    opacity: 0;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
    pointer-events: none;
}

.projeto:hover .detalhes-projeto {
    opacity: 1;
}

.projeto h3, .projeto p {
    margin: 0;
}

/* Animação de Entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsividade */
@media (max-width: 1200px) {
    .galeria-projetos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .galeria-projetos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .galeria-projetos {
        grid-template-columns: 1fr;
    }
}


/*depoimentosne*/


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/* Seção Depoimentos em Vídeo */
#depoimentos-video {
    padding: 80px 40px; /* Espaçamento maior para mais impacto visual */
    background-color: #f5f5f5;
    text-align: center;
}

#depoimentos-video h2 {
    font-size: 2.3rem;
    color: #002A5E;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#depoimentos-video h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #FDD835;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    margin: 0 auto; /* Centralizar os itens */
    max-width: 1200px; /* Limitar a largura máxima */
    padding: 0 40px; /* Adicionar espaçamento das bordas */
}

.video {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.video:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    background: linear-gradient(135deg, #f3f3f3, #ddd);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.5rem;
}

.video-placeholder::before {
    content: "Vídeo";
}

.video p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Animação de Entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

#depoimentos-video .video {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

/* Estilo Responsivo */
@media (max-width: 768px) {
    .videos {
        grid-template-columns: 1fr;
    }
}


/*vantagensne*/


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
    background-color: #f5f5f5; /* Fundo cinza claro */
}

/* Seção Sobre a Empresa */
#sobre-a-empresa {
    padding: 80px 20px;
    background-color: #ffffff; /* Fundo branco */
    text-align: center;
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Sombra para elevação */
    max-width: 1200px; /* Aumentei a largura máxima da seção */
    margin: 60px auto; /* Centraliza a seção na página */
}

#sobre-a-empresa .container {
    padding: 20px 60px; /* Aumentei o espaçamento interno */
}

#sobre-a-empresa h2 {
    font-size: 2.8rem; /* Aumentar o tamanho da fonte */
    color: #002A5E;
    margin-bottom: 30px;
    position: relative;
}

#sobre-a-empresa h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #FDD835;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Wrapper para alinhar conteúdo e imagem */
.sobre-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Aumentei o espaçamento entre o texto e a imagem */
}

.sobre-conteudo {
    flex: 1;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.sobre-conteudo p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.sobre-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 768px) {
    #sobre-a-empresa {
        padding: 0px 0px;
    }

    #sobre-a-empresa .container {
        padding: 10px 20px;
    }

    #sobre-a-empresa h2 {
        font-size: 2.5rem;
    }

    .sobre-conteudo p {
        font-size: 1.1rem;
    }
    
    .sobre-wrapper {
        flex-direction: column; /* Empilha o texto e a imagem verticalmente */
        gap: 20px; /* Reduz o espaçamento entre texto e imagem em telas menores */
    }
}

.icone-botao {
    max-height: 30px;
    margin-right: 10px;
}

#steps h3 {
    color: #fff;
}

.container1 {
    max-width: 93%;
    margin: auto;
}

.contact-input.white-input {
    width: 96%;
    height: 50px;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 12px;
    color: #727272;
    background-color: #f6f7f8;
    border: 1px solid #ececec !important;
    font-size: 14px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 18px;
}

/*chamadane*/


/* Estilos para a seção de passos */
.section-steps {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.section-steps h2 {
    font-size: 2.3rem;
    color: #1E3A8A;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Necessário para o posicionamento absoluto do ::after */
}
  
  .section-steps h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #FDD835;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}
  
.section-steps .steps-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Adicionando espaço entre os itens */
}

.section-steps .step {
    background-color: #1E3A8A; /* Cor de fundo azul escuro */
    color: #ffffff; /* Cor do texto branco */
    border-radius: 15px; /* Aumentando o arredondamento das bordas */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    padding: 12px;
    flex: 0 0 calc(16.66% - 20px); /* Ajuste para permitir o gap */
    box-sizing: border-box;
    height: 350px; /* Aumentando o tamanho fixo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Alinhamento inicial ao centro */
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s;
    overflow: hidden;
}

.section-steps .step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.section-steps .step:hover::after,
.section-steps .step.active::after {
    left: 125%;
}

.section-steps .step:hover,
.section-steps .step.active {
    background-color: #2E59A2; /* Cor de fundo no hover */
    transform: scale(1.05); /* Efeito de escala no hover */
}

.section-steps .step h3 {
    font-size: 1.5rem;
    margin: 0; /* Removendo a margem inferior do título */
    transition: transform 0.8s ease, color 0.8s ease; /* Prolongando a duração da transição */
    text-align: center; /* Centralizando título */
    z-index: 1; /* Garantindo que o texto fique acima do fundo */
    transform: translateY(0); /* Posição inicial */
    position: absolute; /* Fixando a posição do título */
    top: 50%; /* Centralizando verticalmente */
    left: 50%; /* Centralizando horizontalmente */
    transform: translate(-50%, -50%); /* Ajuste para centralizar completamente */
}

.section-steps .step:hover h3,
.section-steps .step.active h3 {
    color: #ffffff; /* Mudando a cor do título ao passar o mouse para branco */
    transform: translate(-50%, calc(-50% - 130px)); /* Ajuste para mover o título */
}

.section-steps .step .step-text {
    font-size: 1rem;
    color: #ffffff;
    margin: 10px 0 0 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(10px);
    z-index: 1;
}

.section-steps .step:hover .step-text,
.section-steps .step.active .step-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Animação ao aparecer */
}

.section-steps .step i {
    font-size: 3rem; /* Aumentando o tamanho dos ícones */
    margin-bottom: 10px;
    z-index: 1;
}

.section-steps .steps-button {
    margin-top: 40px;
}

/* Aplicando o mesmo efeito ao botão */
.section-steps .btn-steps {
    display: inline-block;
  background-color: #FDD835;
  color: #002a5e;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.section-steps .btn-steps::after {
    content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.section-steps .btn-steps:hover::after {
    left: 125%;
}

.section-steps .btn-steps:hover {
    background-color: #2E59A2;
    transform: scale(1.05);
}

/* Breakpoints adicionais */
@media (max-width: 1024px) {
    .section-steps .step {
        flex: 0 0 calc(25% - 20px); /* Ajuste para permitir o gap */
    }
}

@media (max-width: 768px) {
    .section-steps .step {
        flex: 0 0 calc(33.33% - 20px); /* Ajuste para permitir o gap */
    }
}

@media (max-width: 480px) {
    .section-steps .step {
        flex: 0 0 calc(100% - 20px); /* Ajuste para permitir o gap */
        margin-bottom: 20px;
    }

    .section-steps .steps-button {
        margin-top: 20px;
    }
}


.lightbox {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro com transparência */
  }
  
  .lightbox-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1000px;
  }

  .lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .lightbox-close:hover,
  .lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  #sobre-a-empresa p {
    color: #000;
  }


/*faq*/


#faq {
    padding: 60px 20px;
    font-family: "Poppins", serif;
    max-width: 900px;
    margin: 80px auto; /* Centralizar a seção */
    border-radius: 8px; /* Bordas arredondadas para a seção */
  }
  
  #faq h2 {
    font-size: 2.3rem;
    color: #1E3A8A; /* Cor primária - azul escuro */
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
  }
  
  #faq h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #FDD835, #FDD835);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .faq-item {
    margin-bottom: 20px;
    background-color: #ffffff; /* Fundo branco para destaque */
    border-radius: 12px; /* Bordas arredondadas */
    padding: 20px 30px; /* Espaçamento interno */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); /* Sombra mais proeminente no hover */
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
    color: #1E3A8A; /* Azul elegante para os títulos */
    cursor: pointer;
    position: relative;
    margin: 0;
    padding-right: 40px; /* Espaço para o ícone */
    transition: color 0.3s ease;
  }
  
  .faq-item h3:hover {
    color: #0056b3; /* Cor diferente no hover */
  }
  
  .faq-item h3::after {
    content: '+'; /* Ícone de seta para baixo */
    font-family: "Poppins", serif;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #1E3A8A; /* Cor de destaque para o ícone */
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .faq-item.active h3::after {
    transform: translateY(-50%) rotate(130deg); /* Rotaciona a seta para cima quando ativo */
    content: '+'; /* Ícone de seta para cima */
    color: #0056b3;
  }
  
  .faq-item .faq-answer {
    display: block;  /* Garantir que o conteúdo esteja sempre presente para a animação */
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    margin-top: 0;
    border-top: 1px solid transparent; /* Começa sem cor para a borda */
    overflow: hidden;
    transition: 
      opacity 0.4s ease,
      max-height 0.4s ease,
      padding-top 0.4s ease,
      margin-top 0.4s ease,
      border-top-color 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    opacity: 1;
    max-height: 500px; /* Valor suficientemente alto para acomodar o conteúdo */
    padding-top: 20px;
    margin-top: 20px;
    border-top-color: #e6e6e6; /* Ativa a cor da borda */
  }

#faq p {
    color: #000;
}  

/* Seção de Contato – Estilo Moderno e Profissional */
#contact {
    padding: 80px 20px;
    font-family: "Poppins", serif;
  }
  
  #contact .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Título do Formulário com pseudo-elemento ::after */
  #contact h4 {
    font-size: 2.3rem;
    color: #FFF;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative; /* Necessário para posicionar o ::after */
  }
  
  #contact h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #FDD835;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
  }
  
  /* Formulário */
  #contact form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Inputs e Select */
  #contact input.contact-input,
  #contact select.contact-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  #contact input.contact-input:focus,
  #contact select.contact-input:focus {
    border-color: #1E3A8A;
    outline: none;
  }
  
  /* Botão de Envio */
  #contact .contact-submit {
    background: linear-gradient(45deg, #1E3A8A, #2E59A2);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
  }
  
  #contact .contact-submit:hover {
    background: linear-gradient(45deg, #2E59A2, #1E3A8A);
    transform: scale(1.03);
  }
  
  /* Layout das Colunas */
  #contact .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  #contact .col-md-6 {
    flex: 0 0 48%;
    margin-left: 26%;
  }
  
  /* Imagem Responsiva */
  #contact .responsive-bottom-margins img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    #contact .row {
      flex-direction: column;
      text-align: center;
    }
    #contact .col-md-6 {
      flex: 0 0 100%;
      margin-bottom: 30px;
    }
    .container1 {
        max-width: 80%;
        margin: auto;
    }
    #depoimentos-video {
        padding: 0px 0px;
    }
    .video {
        padding: 0px;
    }

    iframe {
        width: 400px;
    }
    .videos {
        padding: 0 25px;
    }

    .projeto {
        padding: 0px;
    }
    #lightbox-img {
        margin-top: 60%;
        margin-right: 17%;
    }
    .lightbox-content {
        width: 82%;
        max-width: 999px;
    }
    .section-steps .step .step-text {
        font-size: 1.3rem;
    }
    #faq .cta-botao {
        margin-left: 13% !important;
    }
    #submit-button {
        margin-left: 0% !important;
    }
    #contact .col-md-6 {
        margin-left: 0% !important;
    }
    #banner-solar.banner-principal {
        height: 70vh !important;
    }
    #projetos-realizados {
        padding: 0px 0px;
    }
    .section-steps {
        padding: 50px 0;
    }
    #sobre-a-empresa {
        background-color: #f5f5f5;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0);
    }
    #faq {
        padding: 0px 20px;
    }
    .imglogo {
        max-height: 90px;
        margin-bottom: 30px;
        filter: drop-shadow(0 0 10px #c2955b);
    }
    #banner-solar .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(4, 4, 3, 0.53);
      }
  }

.col-md-6.responsive-bottom-margins {
    display: none;
}

#contact {
    position: relative;
    overflow: hidden;
    display: block;
    padding-top: 80px;
    background-image: url(/images/solardez/bg-html.png);
    background-color: rgba(0, 0, 0, 0.21);
    background-blend-mode: overlay;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#faq .cta-botao {
    margin-left: 32%;
}

#submit-button {
    margin-left: 35%;
}

.captcha {
    color: #000;          /* Garante que o texto seja preto */
    font-size: 18px;       /* Tamanho de fonte adequado */
    background: #eee;     /* Fundo claro para contraste */
    border: 1px solid #ccc;
    padding: 5px 10px;
    display: inline-block;
    text-align: center;
}

#banner-solar.banner-principal {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #FFFFFF;
    background: url('/images/solardez/sl7.jpg') no-repeat center center/cover; /* Imagem padrão */
  }
  
  #banner-solar .video-banner {
    display: none; /* Vídeo oculto por padrão */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Vídeo abaixo do conteúdo */
  }
  
   @media (max-width: 768px) {
   /* #banner-solar {
      background: transparent !important; /* Garante que a imagem desapareça *
    }
  
    #banner-solar .video-banner {
      display: block; /* Mostra o vídeo no responsivo *
      z-index: 0; /* Ajusta vídeo como fundo ativo *
    }
  }
   */