/*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/slide-home.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: rgb(4 4 3 / 13%);
}

#banner-solar .conteudo-banner {
    position: relative;
    text-align: center;
    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);
    color: #fdd835 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#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;
        line-height: 50px;
    }

    #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 0px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

#por-que-escolher h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 60px;
}

.beneficios {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 20px;
    /* Margem lateral para evitar que os itens toquem as bordas */
    margin-bottom: 45px;
}

.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 */
    width: 100%;
}

.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;
    margin-top: 12px;
}

.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: black;
    margin-bottom: 55px;
    position: relative;
    display: inline-block;
}

#projetos-realizados h2::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 5px;
    background-color: #febe2b;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    border-radius: 2px;
}

.galeria-projetos {
    display: grid;
    grid-template-columns: repeat(3, 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(0.98);
}

.detalhes-projeto {
    color: #fff;
    padding: 10px 0px;
    border-radius: 10px;
    margin-top: 25px;
}

.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: 35px 40px 70px 40px;
    /* EspaÃ§amento maior para mais impacto visual */
    background-color: #f5f5f5;
    text-align: center;
}

#depoimentos-video h2 {
    font-size: 2.3rem;
    color: black;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#depoimentos-video h2::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 5px;
    background-color: #febe2b;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    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: black;
    /* Cor primÃ¡ria - azul escuro */
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

#faq h2::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 5px;
    background-color: #febe2b;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    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: black;
    /* 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: #FBAC2C;
    /* 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: 15px;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    /* NecessÃ¡rio para posicionar o ::after */
}

#contact h4::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 5px;
    background-color: #febe2b;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    border-radius: 2px;
    display: none;
}

/* 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 .contact-input::placeholder {
    color: white !important;
}

#contact input.contact-input,
#contact select.contact-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 45px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #001229;
    color: White !important;
    border-color: transparent;
}

#contact input.contact-input:focus,
#contact select.contact-input:focus {
    border-color: #1E3A8A;
    outline: none;
}

/* BotÃ£o de Envio */
#contact .contact-submit {
    background: #febe2b;
    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: #F26E34;
    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%;
    }

    .container1 {
        max-width: 80%;
        margin: auto;
    }

    #depoimentos-video {
        padding: 0px 0px 65px;
    }

    .video {
        padding: 0px;
    }

    iframe {
        width: 400px;
    }

    .videos {
        padding: 0 25px;
    }

    .projeto {
        padding: 0px;
        margin: 20px 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;
    }

    .responsive-img {
        display: block !important;
    }

    .desktop-img {
        display: none;
    }

    img.img-empresa-edt {
        width: 100%;
    }

    .line-charge {
        display: none;
    }

    a.cta-botao {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .container-passos {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .detalhes-projeto {
        padding: 0px 40px 25px;
    }

    section#empresa-extra {
        margin-top: 25px !important;
        padding: 0px 15px;
    }

    img.crt-extra {
        width: 100%;
    }

    section#extra-certificad {
        margin-top: 70px;
        margin-bottom: 45px;
    }

    #depoimentos-video h2 {
        margin-bottom: 55px;
    }

    #faq .cta-botao {
        margin-left: 3% !important;
        margin-right: 3% !important;
    }

    #submit-button {
        margin-left: 0% !important;
    }

    #contact .col-md-6 {
        margin-left: 0% !important;
        padding: 0px !important;
    }

    #banner-solar.banner-principal {
        height: 70vh !important;
    }

    #projetos-realizados {
        padding: 50px 10px;
    }

    .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;
    }
}

.col-md-6.responsive-bottom-margins {
    display: none;
}

#contact {
    position: relative;
    overflow: hidden;
    display: block;
    padding-top: 80px;
    /* background-image: url(/images/bg-html.webp); */
    background-color: #021C3F;
    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%;
}

.p-contact {
    margin-bottom: 25px;
    text-align: center;
}

.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;
}