* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Botões Padrão --- */
.btnPadraoUm {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #242423;
    border: none;
    border-radius: 50px;
    height: 60px;
    width: auto;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    padding: 20px;
    
}

.btnPadraoDois {
    background-color: transparent;
    border: none;
    border-radius: 50px;
    height: 60px;
    width: auto;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    padding: 0px 20px;
}

.btnPadraoTres {
    background-color: white;
    color: #778DA9;
    border: 3px solid #778DA9;
    border-radius: 50px;
    height: 50px;
    width: auto;
    min-width: 150px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btnPadraoTres:hover {
    background-color: #778DA9;
    color: white;
}


.btnPadraoQuatro {
    background-color: #537a9e;
    color: white;
    border: none;
    border-radius: 50px;
    height: 60px;
    width: auto;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    padding: 20px;
}

.btnPadraoDois.active {
    border: 3px solid;
}

.btnEtapas-Btns {
    display: flex;
    flex-direction: column;
    width: 200px;
    gap: 10px;
    margin-top: 30px;
}

/* --- Navbar --- */
.navbar {
    height: 100px;
    width: 100%;
    margin: 0px !important;
    background-color: #242423;
    color: white;
    padding: 10px 100px 10px 100px !important;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

.navbar button{
    height: 100%;
    width: auto;
    padding: 0 20px;
    margin: 0;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #242423;
    color: white;
}

.navbar button.active {
    background-color: white;
    color: #242423;
    border-radius: 50px;
    height: auto;
    padding: 5px 20px 5px 20px;
}

#nucleo_logo {
    filter: invert(100%) brightness(200%);
    height: auto;
    width: 150px;
}

/* --- Banners Gerais --- */
.bannerBlack {
    background-color: #242423;
    color: white;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px;
}

.bannerBlackCarreira {
    background-color: #242423;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px;
}

.bannerWhiteCarreira {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: white;
    color: black;
    height: auto;
    width: 100%;
    padding: 100px;
    gap: 20px;
}

.bannerWhite {
    background-color: white;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* --- Banner Home --- */
#bannerHome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

#bannerHome-texto {
    width: 500px;
    flex-shrink: 0;
}

#bannerHome-texto h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: normal;
}

#bannerHome-texto h2 strong {
    font-size: 55px;
    font-weight: bold;
}

#bannerHome-texto p {
    font-size: 35px;
}

#bannerSobreNos-imagem {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: flex-end;
    max-width: 600px;
    margin-right: 0;
    padding-right: 0;
}

#bannerSobreNos-imagem img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* --- Banner Sobre Nós --- */
#bannerSobreNos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 50px 0px 50px 100px;
    gap: 60px;
}

#bannerSobreNos-texto {
    flex: 1;
    max-width: 600px;
}

#bannerSobreNos-texto h2 {
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: normal;
}

#bannerSobreNos-texto h2 strong {
    font-weight: bold;
}

#bannerSobreNos-texto p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #242423;
}

#bannerSobreNos-texto p:last-child {
    margin-bottom: 0;
}

#bannerSobreNos-imagem {
    display: flex;
    flex-direction: column;
}

#bannerSobreNos-imagem img{
    height: 700px;
}

.container-imagem {
    display: flex;
}

.img-horizontal {
    height: 300px;
    width: auto;
    border-radius: 18px;
    margin: 20px;
}

.img-vertical {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* Grid de imagens para bannerHome */
#bannerHome-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 600px;
}

.grid-imagens {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    height: 500px;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Linha curva no canto inferior esquerdo */
.curved-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 0 100% 0 0;
    border-top: 3px solid white;
    border-right: 3px solid white;
    opacity: 0.3;
    pointer-events: none;
}

/* --- Banner Marcas --- */
.bannerMarcas {
    overflow: hidden;
    white-space: nowrap;
    background-color: #E5E5E5;
    padding: 20px 0px;
}


.bannerMarcas-slider {
    display: flex;
    width: fit-content;
    animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {

        transform: translateX(-25%);
    }
}

.bannerMarcas-slider:hover {
    animation-play-state: paused;
}

.bannerMarcas-slider img {
    width: auto;
    max-height: 50px;
    object-fit: contain;

    margin: 0 2%;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: filter 0.5s ease, opacity 0.5s ease;
}


.bannerMarcas-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Banner Etapas --- */
.bannerEtapas-selector {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btnEtapas-Btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
}

.bannerEtapas {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    width: auto;
    padding: 100px;
}

#bannerEtapasBlack {
    background-color: #242423;
    color: white;
}

#bannerEtapasBlack button{
    color: white;
}

#bannerEtapasWhite {
    background-color: White;

}

#bannerEtapasWhite button{
    color: #778DA9;
}

.bannerEtapas-selector h2 {
    font-size: 40px;
}

.bannerEtapas-descricao h2 {
    font-size: 30px;
}

.bannerEtapas-descricao p {
    font-size: 25px;
    text-align: justify;
}

.bannerEtapas-descricao {
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 50px;
}

.bannerEtapas-descricao img {
    width: 430px;
    height: auto;
    border-radius: 50px 0px 0px 50px;
}

.conteiner-texto-etapas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 600px;
    border-radius: 0px 50px 50px 0px;
    background-color: #778DA9;
    padding: 50px;
}

#conteiner-texto-etapas-white {
    background-color: White;
    color: black;
}

#conteiner-texto-etapas-blue {
    background-color: #778DA9;
    color: white;
}

/* --- Banner Planos Home --- */
.bannerPlanosHome {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    gap: 20px;
    position: relative;
    background-color: white;
}

.planos-carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    flex-wrap: wrap;
}

.bannerPlanosHome h2{
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #242423;
}

.bannerPlanosHome p{
    font-size: 20px;
    color: #242423;
    margin-bottom: 30px;
    line-height: 1.5;
}


.planoHome {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #E5E5E5;
    width: 400px;
    min-width: 350px;
    height: auto;
    min-height: 450px;
    border-radius: 50px;
    padding: 50px 30px 40px 30px;
    justify-content: space-between;
    box-sizing: border-box;
}

.planoHome img {
    width: auto;
    height: 120px;
    margin-bottom: 30px;
    margin-top: 0;
    transform: none;
}

.planoHome h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.planoHome p {
    margin-top: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.planoHome button {
    margin-top: auto;
}

.carousel-arrow {
    background: none;
    border: none;
    font-size: 60px;
    color: #ccc;
    cursor: pointer;
    padding: 0 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.carousel-arrow:hover {
    color: #778DA9;
}

.carousel-arrow:active {
    color: #537a9e;
}

/* --- Banner Planos Saiba Mais --- */
#bannerPlanosSaibaMais {
    background-color: #242423;
    color: white;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#bannerPlanosSaibaMais-texto{
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 800px;
}

#bannerPlanosSaibaMais-texto h2{
    font-size: 35px;
    margin-bottom: 20px;
}

#bannerPlanosSaibaMais-texto p{
    font-size: 25px;
}

#bannerPlanosSaibaMais-imagem{
    display: flex;
    align-items: end;
}

#bannerPlanosSaibaMais-imagem img{
    height: 900px;
    width: auto;
}

#bannerPlanosSaibaMais img {
    width: 600px;
    height: auto;
    justify-content: flex-end;
    padding-right: 100px;
}

/* --- Footer --- */
.footer {
    background-color: #f0f0f0; /* Cor de fundo para a seção inferior */
    font-family: Arial, sans-serif;
}

.infoFooter {
    background-color: #778DA9;
    color: white;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    height: 200px;
}


.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 40px;
    border-right: 1px solid white;
}

.logo-text {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.icon-group {
    display: flex;
    gap: 10px;
}

.icon {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
}

.links-group {
    display: flex;
    gap: 40px;
    margin-right: auto;
    padding-left: 40px;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-info p {
    margin: 0;
    font-size: 16px;
    text-align: right;
}

.contact-info p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #333;
}

.copyright p {
    margin: 0;
}

/* --- Carousel Imagens/Soluções --- */
.carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 100px;
    background-color: white;
}

.carousel-window {
    width: 100%;
    max-width: 1400px;
    overflow: visible;
    position: relative;
    margin: 0 auto;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    position: relative;
}

.gallery-item {
    box-sizing: border-box;
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1;
}

.pagination-bars {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bar {
    height: 4px;
    width: 40px;
    background-color: #ddd;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.bar.active {
    background-color: #242423;
}


.carousel-caption-titulo {
    margin-top: 40px;
    font-size: 24px;
    color: #242423;
    text-align: center;
    font-weight: normal;
}


.cta-button {
    background-color: #537a9e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6a8eaf;
}

.image-gallery-nosso-solucoes-texto {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 90%;
}

/* --- Banner Fale Com A Nucleo --- */
.BannerFaleComANucleo {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    color: black;
    height: auto;
    width: 100%;
    padding: 100px;
}


#BannerFaleComANucleo-nossaSolucoes {
    background-color: #E5E5E5;
}

#BannerFaleComANucleo-contato{
    display: flex;
    flex-direction: column;
    background-color: white;
    gap: 50px;

}


.BannerFaleComANucleo h2 {
    font-size: 65px;
}

.contato {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    gap: 20px;
}

.contato li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #242423;
}

.contato li i {
    color: #537a9e;
    margin-right: 20px;
    font-size: 30px;
}

/* --- Form Carreira --- */
.formCarreira {
    background-color: white;
    border-radius: 50px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 600px;
    padding: 50px;
}

.formCarreira label {
    font-size: 18px;
    color: #242423;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.formCarreira input {
    background-color: #E5E5E5;
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: #242423;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.formCarreira input::placeholder {
    color: #999;
}

.formCarreira input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #537a9e;
}

.formCarreira button {
    align-self: flex-end;
    margin-top: 10px;
    width: auto;
}

/* Estilização do input de arquivo */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-text {
    display: block;
    background-color: #E5E5E5;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
    color: #999;
    text-align: center;
    border: none;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.formCarreira label {
    color: #242423;
}

.file-upload-wrapper:hover .file-upload-text {
    background-color: #d5d5d5;
}

.file-upload-wrapper input[type="file"]:focus + .file-upload-text {
    outline: none;
    box-shadow: 0 0 0 2px #537a9e;
}

/* --- Banner Carreira --- */
#bannerCarreira {
    height: auto;
    width: 100%;
    padding: 0px 0px 0px 100px;
}

.carreira-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin: 0 auto;
}

.carreira-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 100px;
}

.carreira-info h2 {
    font-size: 65px;
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
}

.carreira-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carreira-texto p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.carreira-texto p strong {
    font-weight: bold;
}

.carreira-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #242423;
    flex: 1;
    display: flex;
    height: 100%;
    padding: 100px;
}

/* Responsividade para página de Carreira */
@media (max-width: 1024px) {

    .bannerEtapas{
        display: flex;
        flex-direction: column;
    }
    .btnEtapas-Btns{
        display: flex;
        flex-direction: column;
        margin: 10px 0px;
    }

    .btnPadraoDois{
        width: auto;
        font-size: 12px;
        justify-content: center;
        align-items: center;
        padding: 0px 15px;
        justify-content: space-between;
    }

    .carreira-container {
        flex-direction: column;
    }

    .carreira-form-wrapper {
        width: 100%;
        padding: 50px 20px; /* Ajuste de padding */
    }

    .formCarreira {
        width: 100%;
    }

    .contato-form-wrapper{
        width: 100%;
    }

    .carreira-info {
        padding: 50px 20px;
    }

    #bannerCarreira {
        padding: 0;
    }

    .carreira-info h2 {
        font-size: 50px;
    }
}

/* --- Planos Soluções --- */
#planosSection {
    background-color: #E5E5E5;
    padding: 60px 0px 60px 100px;
    min-height: 600px;
}

.planos-title {
    font-size: 24px;
    color: #242423;
    margin-bottom: 50px;
    font-weight: normal;
}

.planos-title strong {
    font-weight: bold;
}

.planos-container {
    position: relative;
    margin: 0 auto;
}

.plano-content {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.plano-content.active {
    display: flex;
}

.plano-texto {
    flex: 1;
    max-width: 500px;
}

.plano-texto h3 {
    font-size: 65px;
    color: #242423;
    margin: 0 0 30px 0;
    line-height: 1.2;
    font-weight: normal;
}

.plano-texto h3 strong {
    font-weight: bold;
}

.plano-texto p {
    font-size: 18px;
    color: #242423;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btnPlanos {
    background-color: #778DA9;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.btnPlanos:hover {
    background-color: #537a9e;
}

.planos-pagination {
    display: flex;
    gap: 10px;
}

.plano-bar {
    height: 4px;
    width: 40px;
    background-color: #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plano-bar.active {
    background-color: #242423;
}

.plano-imagem {
    flex: 1;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;


    padding-right: 0;
}

.plano-imagem img {
    width: 100%;
    height: auto;
    border-radius: 0px 0px 0px 300px;
    object-fit: cover;
    float: right;
}

#form-contato {
    border-radius: 50px;
    background-color: #E5E5E5;
}

/* --- Banner Contato --- */
#bannerContato {
    background-color: white;
    width: 100%;
    padding: 100px;
}

.contato-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contato-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contato-info h2 {
    font-size: 65px;
    color: #242423;
    margin: 0;
    line-height: 1.2;
    font-weight: normal;
    text-transform: none;
}

.contato-info h2 strong {
    font-weight: bold;
    text-transform: none;
}


.contato-form-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.formContato {
    background-color: #E5E5E5;
    border-radius: 50px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 600px;
    padding: 50px;
}

.formContato label {
    font-size: 18px;
    color: #242423;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.formContato input,
.formContato textarea {
    background-color: white;
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: #242423;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.formContato textarea {
    border-radius: 30px;
    min-height: 120px;
    resize: vertical;
    padding: 15px 20px;
}

.formContato input::placeholder,
.formContato textarea::placeholder {
    color: #999;
}

.formContato input:focus,
.formContato textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #537a9e;
}

.formContato button {
    align-self: flex-end;
    margin-top: 10px;
    width: auto;
}

/* Responsividade para Contato */
@media (max-width: 1024px) {
    .contato-container {
        flex-direction: column;
    }

    .contato-form-wrapper {
        justify-content: flex-start;
    }

    .formContato {
        max-width: 100%;
    }
}

/* =======================================
   ESTILOS MOBILE (max-width: 768px)
   ======================================= */
@media (max-width: 768px) {

    /* --- Padding e Margem Geral --- */
    .bannerBlack,
    .bannerBlackCarreira,
    .bannerWhiteCarreira,
    #bannerContato {
        padding: 50px 20px; /* Reduz o padding lateral em banners */
    }

    /* --- Navbar --- */
    .navbar {
        padding: 10px 20px !important; /* Reduz o padding da navbar */
        height: 80px;
    }

    .navbar button {
        font-size: 14px;
        padding: 0 10px;
    }

    #nucleo_logo {
        width: 120px; /* Reduz o tamanho do logo */
    }

    /* --- Banner Home --- */
    #bannerHome {
        flex-direction: column; /* Transforma em coluna */
        min-height: auto;
        padding: 50px 20px;
    }

    #bannerHome-texto {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center; /* Centraliza o texto */
        margin-bottom: 40px;
    }

     .btnPadraoUm{
        width: 250px;
    }

    #bannerHome-texto h2 {
        font-size: 30px; /* Reduz o tamanho do título */
    }

    #bannerHome-texto h2 strong {
        font-size: 40px; /* Reduz o tamanho do strong */
    }

    #bannerHome-texto p {
        font-size: 20px; /* Reduz o tamanho do parágrafo */
    }

    #bannerHome-imagem {
        max-width: 100%;
    }

    .grid-imagens {
        height: 300px; /* Altura menor para o grid de imagens */
        gap: 10px;
    }

    .curved-line {
        display: none; /* Opcional: esconder linhas decorativas */
    }

    /* --- Banner Sobre Nós --- */
    #bannerSobreNos {
        flex-direction: column; /* Transforma em coluna */
        padding: 50px 20px;
        gap: 30px;
        text-align: center;
    }

    #bannerSobreNos-texto {
        max-width: 100%;
        text-align: center;
    }

    #bannerSobreNos-texto h2 {
        font-size: 35px;
    }

    #bannerSobreNos-imagem img{
        height: auto;
        max-height: 400px; /* Limita a altura da imagem */
    }

    /* --- Banner Marcas --- */
    .bannerMarcas-slider img {
        max-height: 30px; /* Reduz o tamanho dos logos */
    }
    
    /* --- Banner Etapas --- */
    .bannerEtapas {
        padding: 50px 20px;
    }

    .bannerEtapas-selector h2 {
        font-size: 35px;
    }

    .bannerEtapas-descricao {
        flex-direction: column; /* Transforma em coluna */
        padding: 0;
        text-align: center;
    }

    .bannerEtapas-descricao img {
        width: 100%;
        height: auto;
        border-radius: 50px 50px 0px 0px; /* Ajusta o border-radius */
    }

    .conteiner-texto-etapas {
        width: 100%;
        height: auto;
        border-radius: 0px 0px 50px 50px; /* Ajusta o border-radius */
        padding: 30px;
    }
    
    .bannerEtapas-descricao h2 {
        font-size: 24px;
    }
    
    .bannerEtapas-descricao p {
        font-size: 18px;
    }

    /* --- Banner Planos Home --- */
    .bannerPlanosHome {
        padding: 50px 20px;
    }

    .planos-carousel {
        flex-direction: column; /* Planos empilham */
        flex-wrap: nowrap;
    }

    .planoHome {
        width: 100%;
        min-width: 0;
    }

    .carousel-arrow {
        display: none; /* Esconde as setas, já que os planos vão empilhar */
    }

    /* --- Banner Planos Saiba Mais --- */
    #bannerPlanosSaibaMais {
        flex-direction: column; /* Transforma em coluna */
        text-align: center;
    }

    #bannerPlanosSaibaMais-texto {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 50px 20px;
    }

    #bannerPlanosSaibaMais-texto h2 {
        font-size: 30px;
    }

    #bannerPlanosSaibaMais-texto p {
        font-size: 20px;
    }

    #bannerPlanosSaibaMais-imagem {
        display: none; /* Oculta a imagem grande */
    }
    
    #bannerPlanosSaibaMais img {
        display: none; /* Oculta a imagem (já oculta acima, mas para garantir) */
    }

    /* --- Footer --- */
    .infoFooter {
        flex-direction: row; 
        height: auto;
        padding: 20px 20px;
        gap: 10px;
        text-align: center;
    }
    
    .logo-area {
        align-items: center; /* Centraliza logo e ícones */
        padding-right: 0;
        border-right: none;
        border-right: 1px solid white;
        width: 100%;
    }

    .links-group {
        display: none;
    }
    
    .link-list {
        text-align: center;
    }

    .contact-info {
        text-align: center;
        width: 100%;
    }   
    
    .contact-info p {
        text-align: center;
        width: auto;
    }
    
    .copyright {
        padding: 20px 20px;
    }

    /* --- Carousel Imagens/Soluções --- */
    .carousel-section {
        padding: 40px 20px;
    }

    .image-gallery {
        overflow-x: scroll; /* Permite scroll horizontal no mobile */
        justify-content: flex-start; /* Alinha para a esquerda no scroll */
        gap: 15px;
    }

    .gallery-item {
        min-width: 80%; /* Define uma largura mínima para o item */
        flex-shrink: 0; /* Impede que os itens diminuam */
        max-width: 100%;
    }
    
    /* Opcional: Esconder a paginação se usar scroll */
    .pagination-bars {
        display: none;
    }
    

    
    /* --- Banner Fale Com A Nucleo --- */
    .BannerFaleComANucleo {
        flex-direction: column;
        padding: 50px 20px;
    }

    .BannerFaleComANucleo h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .contato li {
        font-size: 18px;
    }

    .contato li i {
        font-size: 24px;
    }
    
    /* --- Forms (Carreira e Contato) --- */
    .formCarreira,
    .formContato {
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    /* --- Planos Soluções (Página Soluções) --- */
    #planosSection {
        padding: 50px 20px;
    }
    
    .plano-content {
        flex-direction: column;
        gap: 30px;
    }

    .plano-texto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .plano-texto h3 {
        font-size: 40px;
    }

    .plano-imagem {
        padding-right: 0;
    }

    .plano-imagem img {
        border-radius: 30px;
    }
    
}




/* ESTILOS DE DESKTOP (Padrão) */
.hamburger-btn {
    display: none; /* Esconde no desktop */
}

/* Os links ficam na horizontal no desktop */
.navbar-links-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* ou o gap que você usa */
}

/* O menu mobile deve estar sempre oculto no desktop */
.mobile-menu {
    display: none; 
}

.mobile-menu button.active {

    background-color: #383838; 
    color: #ffffff; 
    border-left: 5px solid #007bff; 
}


/* =======================================
   ESTILOS MOBILE (max-width: 768px)
   ======================================= */
@media (max-width: 768px) {
    
    /* 1. Oculta os links de desktop */
    .navbar-links-desktop {
        display: none;
    }

    /* 2. Mostra o botão hamburguer no mobile */
    .hamburger-btn {
        display: block;
        /* Garanta que o botão esteja estilizado para ser visível e no topo */
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1000;
        /* Adicione estilos para as linhas aqui (hamburger-line) */
    }

    .hamburger-btn i{
        font-size: 30px;
    }


    /* 3. Estiliza o menu mobile (inicialmente oculto) */
    .mobile-menu {
        position: fixed;
        top: 80px; /* Ajuste para começar abaixo da navbar */
        left: 0;
        width: 100%;
        height: calc(100% - 80px); /* Ocupa o restante da tela */
        background-color: #242423; /* Cor do seu navbar/banner black */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        
        /* Oculta o menu por padrão (usando transform para animar) */
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out; 
    }

    /* 4. Estilo dos botões no menu mobile */
    .mobile-menu button {
        color: white;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        font-size: 20px;
    }

    /* 5. Estado ATIVO (mostra o menu) */
    .mobile-menu.active {
        transform: translateX(0); /* Move para a posição visível */
        display: flex; 
    }
}
