.borda {
    border: 1px solid red;
}



h1 {
    font-size: 4.0em;
    text-transform: uppercase;
}

h2 {
    font-size: 3.2em;
    text-transform: uppercase;
}

h3 {
    font-size: 3.0em;
    text-transform: uppercase;

}

h4 {
    font-size: 2.5em;

}

h5 {
    font-size: 2.0em;
}

h6 {
    font-size: 1.5em;
}

p {
    font-size: 1.5em;
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.2rem;
        text-transform: uppercase;
    }

    h3 {
        font-size: 1.1rem;
        text-transform: uppercase;

    }

    h4 {
        font-size: 0.9rem;

    }

    h5 {
        font-size: 0.8rem;
    }

    h6 {
        font-size: 0.7rem;
    }

    p {
        font-size: 1.0em;
    }
}

@media (max-width: 1700px) {
    h1 {
        font-size: 3.0em;
        text-transform: uppercase;
    }

    h2 {
        font-size: 2.2em;
        text-transform: uppercase;
    }

    h3 {
        font-size: 2.0em;
        text-transform: uppercase;

    }

    h4 {
        font-size: 1.5em;

    }

    h5 {
        font-size: 1.0em;
    }

    h6 {
        font-size: 0.5em;
    }

    p {
        font-size: .9em;
    }
}

.efeitoPassagem {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(270deg, #878787, #2f2f2f, #757575);
    background-size: 600% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: deslizarCores 2s linear infinite;
}

@keyframes deslizarCores {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.texto-dif {
    position: relative;
    display: block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);

}

/* Aplica a máscara e animação ao elemento principal E aos pseudo-elementos */
.texto-dif,
.texto-dif::before,
.texto-dif::after {
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, 0.6) 50%, #c46b12 50%, rgb(15, 90, 188) 70%);
    -webkit-mask-size: 200%;
    animation: shine 3s infinite;
}

/* Estilos específicos dos pseudo-elementos (linhas) */
.texto-dif::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 50%;
    height: 5px;
    /* background-color: #262626; */
}

.texto-dif::after {
    content: "";
    position: absolute;
    left: 55%;
    bottom: -50px;
    width: 45px;
    height: 5px;
    /* background-color: #262626; */
}

/* Definição da animação (ajuste conforme necessário) */
@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}


i {
    font-size: 1.6em;
    opacity: 0.5;
}

.imagem-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */

}

.imagem-container img {
    width: 100%;
    display: block;
    /* border-radius: 8px; */
    /* position: relative; */
    z-index: 2;
}

.imagem-container::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    /* border: 2px solid #1C66A6; */
    /* border-radius: 8px; */
    z-index: 1;
    /* border: 1px solid red; */

}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    /* Para iniciar invisÃ­vel */
}

/* Adiciona delay em elementos subsequentes para efeito cascata */
.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}


.btn-projetos {
    background-color: #1C66A6;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
    animation-delay: 0.2s;
    text-decoration: none;
    text-align: center;
    margin-bottom: 45px;
}

.btn-projetos:hover {
    background-color: #16538B;
    transform: scale(1.05);
}

.btn-projetos:focus {
    outline: none;
    animation: pulse 1s infinite;
    /* AnimaÃ§Ã£o de pulsar no foco */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* DÃ¡ um pequeno aumento */
    }

    100% {
        transform: scale(1);
    }
}


/* Fundo escurecido e centralizador */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* fundo translÃºcido */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

/* Spinner central */
.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
}

/* Oculto por padrÃ£o */
.hidden {
    display: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



header .logoHeader {
    height: 100%;

}

header .logoHeader img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px #fcfced);
    /* brilho amarelado */
    animation: brilhoLampada 2s infinite alternate;
}

@keyframes brilhoLampada {
    0% {
        filter: drop-shadow(0 0 5px #a7a7a7);
    }

    100% {
        filter: drop-shadow(0 0 20px #ffffe1);
    }
}


.menu-principal {
    margin: 0 auto;
}

.menu-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* padding: 20px 0; */
    align-items: center;
}

.menu-principal li {
    /* margin: 0 20px; */
    font-size: 1.3em;
    border-right: 1px solid white;
    padding: 0 35px;
}

.menu-principal li:last-child {
    border-right: none;
    /* tira a borda do Ãºltimo item */
}

.menu-principal a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.3s ease;
    position: relative;
}

.menu-principal a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 4px;
    width: 0%;
    background-color: #217dcf;
    transition: width 300ms ease;
}

.menu-principal li:hover {
    border-right: none;
    /* remove borda ao passar o mouse */
}

.menu-principal li:hover a::after {
    width: 100%;
    /* anima a linha de baixo */
}

.menu-principal a:hover {
    color: #1888eb;
}



.menu-principal li a:hover li {
    border-right: none !important;
}


.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-icon {
    width: 30px;
    height: auto;
}

@media (max-width: 480px) {
    .textos-cta .titulos-cta .highlighted-text {
        margin-left: 0;
    }
}

/* Oculta o menu em telas pequenas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .menu-principal {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-principal.active {
        max-height: 400px;
        /* Ajuste conforme a quantidade de links */
    }

    .menu-principal ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .menu-principal li {
        list-style: none;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .menu-principal a {
        color: #000;
        text-decoration: none;
        font-weight: 500;
    }

    .menu-principal a:hover {
        color: #1C66A6;
    }
}

.rodape .container-rod {
    height: 100%;
}

.graute-info {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.graute-info img {
    height: 100px;
    width: auto;
}

.graute-info p {
    line-height: 2em;
}

.container-logo-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* width: 50%;
    height: 100px !important; */
}

.container-logo-info h3 {
    margin-top: 40px;
}

.contato-info {
    display: flex;
    justify-content: flex-start;
    /* Centraliza os itens na horizontal */
    /* align-items: center; */
    flex-direction: column;
    gap: 30px;
    /* EspaÃ§amento entre os itens */
    flex-wrap: wrap;
    /* Evita quebra esquisita se nÃ£o couber */
}

.contato-info .item {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    white-space: nowrap;
    /* Evita quebra de linha dentro do item */
}

.contato-info img {
    width: 24px;
    height: 24px;
}

.contato-info p {
    font-size: 1em;
    margin: 0;
}

.contato-social {
    display: flex;
    flex-direction: column;
    /* MantÃ©m na mesma linha */
    gap: 25px;
}

.contato-info .item {
    width: 500px;
}

.container-redes-sociais {
    display: flex;

}

#iconeFace {
    width: 40px;
    height: 40px;
    background-color: #1877F2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    margin: 15px;
}

#iconeFace:hover {
    transform: scale(1.1);
    box-shadow: 2px 4px 12px rgba(23, 85, 187, 0.3);
}

#iconeInsta {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    margin: 15px;

}

#iconeInsta:hover {
    transform: scale(1.1);
    /* aumenta o tamanho */
    box-shadow: 0 4px 12px rgba(73, 73, 73, 0.3);
    /* sombra suave */
}

.atendimento-info {
    line-height: 3em;
    text-align: center;

}

@media (max-width: 481px) {
    footer .rodape {
        display: flex;
        flex-direction: column;
    }

    h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.3em;
    }

    .graute-info {
        margin: 20px 0;
    }

    .contato-info {
        flex-direction: column;
        /* justify-content: center; */
        gap: 20px;
        flex-wrap: nowrap;
    }

    .contato-info .item {
        display: flex;
        gap: 8px;
        width: auto;
        margin: 15px 0;
        text-align: left;
        /* flex-wrap: wrap; */
    }

    .contato-info .item p {
        white-space: normal;
        /* permite quebra de linha */
        word-break: break-word;
        /* quebra palavras longas se necessÃ¡rio */
        font-size: 1em;
        margin: 0;
    }

    /* MantÃ©m o endereÃ§o centralizado */
    .contato-info .item:first-child {
        text-align: center;
    }

    /* Ajusta WhatsApp e Instagram na mesma linha */
    .contato-info .item:nth-child(2),
    .contato-info .item:nth-child(3) {
        flex-direction: row;

    }

    .contato-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .contato-info p {
        font-size: 0.9em;
        /* Reduz um pouco no mobile pra caber melhor */
    }

    .atendimento-info {
        margin: 20px 0;
    }

    .rodape {
        margin-bottom: 30px;
        /* Mais espaÃ§o pra evitar corte */
    }
}

.containergraute {
    /* background: url('../img/background-large.webp') no-repeat; */
    background-color: #174a6f;
    background-size: cover;
    /* Faz o background preencher toda a div */
    /* background-attachment: fixed; */
    /* padding: 60px 0; */
    height: auto;
}

.containergraute h1,
.containergraute h2,
.containergraute h3,
.containergraute h3,
.containergraute h4,
.containergraute h5,
.containergraute h6,
.containergraute p {
    color: white;
    margin: 0;
}

@media (max-width: 1475px) {
    .containergraute {
        height: auto;

    }
}



/* @media(min-width: 769 ) */



/* Base da seÃ§Ã£o */
/* Estilo padrão (desktop comum) */
.CTA {
    position: relative;
    width: 100%;
    height: 1500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    background:
        linear-gradient(to bottom, #001122 0%, rgba(0, 17, 34, 0.7) 30%, rgba(0, 17, 34, 0.5) 70%, rgba(0, 17, 34, 0.3) 100%),
        url('../img/sala-iluminacao.webp') no-repeat center center;
    background-size: cover;
    transition: background-color 0.5s ease;
    overflow: hidden;
}



.retangulo-Diagonal {
    position: absolute;
    left: -200px;
    width: 32%;
    height: 140%;
    background: #5196c78a;
    transform: rotate(30deg);
    z-index: 1;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}


.retangulo-Diagonal .containerImgRet {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.retangulo-Diagonal .containerImgRet::before {
    position: absolute;
    content: "";
    top: 15px;
    right: 55px;
    width: 100%;
    height: 2px;
    background-color: white;
    animation: bordaInfinityHorizontal 3s linear infinite;
    /* Animação horizontal */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    /* Brilho suave */

}

/* Borda vertical animada */
.retangulo-Diagonal .containerImgRet::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 55px;
    height: 100%;
    width: 2px;
    background-color: white;
    z-index: -1;
    animation: bordaInfinityVertical 3s linear infinite;
    /* Animação vertical */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    /* Brilho suave */

}

/* Animação horizontal - Movimento da borda */
@keyframes bordaInfinityHorizontal {
    0% {
        width: 0%;
        /* Começa pequena */
    }

    50% {
        width: 100%;
        /* Expande até a largura total */
    }

    100% {
        width: 0%;
        /* Volta para o tamanho inicial */
    }
}

/* Animação vertical - Movimento da borda */
@keyframes bordaInfinityVertical {
    0% {
        height: 0%;
        /* Começa pequena */
    }

    50% {
        height: 100%;
        /* Expande até a altura total */
    }

    100% {
        height: 0%;
        /* Volta para o tamanho inicial */
    }
}

.retangulo-Diagonal img {
    position: absolute;
    width: 650px;
    height: 470px;
    transform: rotate(-30deg);
    left: 215px;
    object-fit: cover;
    box-shadow: 10px 10px 40px rgba(0, 153, 255, 0.3);
}

/* ----------------- Responsividade ----------------- */

/* Telas muito grandes (monitores > 2000px) */
@media (min-width: 2000px) {
    .CTA {
        height: 1100px;
        background-size: cover;
    }

    .retangulo-Diagonal {
        width: 28%;
        height: 150%;
        left: -200px;
    }

    .retangulo-Diagonal img {
        width: 600px;
        height: 600px;
        left: 280px;
    }
}

/* Desktop (de 1200px a 2000px) */
@media (min-width: 1200px) and (max-width: 1999px) {
    .CTA {
        height: 900px;
    }

    .retangulo-Diagonal {
        width: 32%;
        height: 140%;
    }

    .retangulo-Diagonal img {
        width: 450px;
        height: 470px;
        left: 215px;
    }
}

/* Tablets (768px a 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .CTA {
        height: 700px;
        background-position: center;
    }

    .retangulo-Diagonal {
        width: 45%;
        height: 130%;
        left: -100px;
    }

    .retangulo-Diagonal img {
        width: 350px;
        height: 370px;
        left: 180px;
    }
}

/* Celulares (até 767px) */
@media (max-width: 767px) {
    .CTA {
        height: 600px;
        flex-direction: column;
        justify-content: center;
        background-position: center;
    }

    .retangulo-Diagonal {
        width: 80%;
        height: 100%;
        left: -100px;
        transform: rotate(0deg);
        top: auto;
        bottom: 0;
        height: 250px;
        width: 100%;

    }

    .retangulo-Diagonal img {
        width: 250px;
        height: 270px;
        left: 120px;
        transform: rotate(-15deg);
        opacity: 0.5;
    }
}


/* Texto da CTA */
.textos-cta {
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.textos-cta .titulo {
    margin-bottom: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textos-cta .titulo h5 {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.0em;
}

.textos-cta .titulo h6 {
    text-transform: uppercase;
    background-color: #18739d;
    padding: 15px 20px;
    font-size: 1.5em;

}

.textos-cta .titulo h1 {
    letter-spacing: 0.4em;
    padding: 20px 5px;
    font-size: 4.0em;
}


.titulos-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.titulos-cta h1 {
    margin: 0;
    line-height: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    /* Mais rÃ¡pida e suave */
}

.titulos-cta h1.highlighted-text {
    color: #1C66A6;
    margin-left: 110px;
    margin-top: 20px;
    animation-delay: 0.3s;
    /* Atraso ligeiramente ajustado */
}

/* AnimaÃ§Ã£o do parÃ¡grafo */
.textos-cta p {
    font-size: 1.2em;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    /* AnimaÃ§Ã£o mais suave */
    animation-delay: 0.8s;
}

/* AnimaÃ§Ã£o para a lista */
.textos-cta ul {
    margin-top: 20px;
    list-style-type: none;
    padding-left: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.2s;
}

.textos-cta ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.textos-cta ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1C66A6;
}



/* Efeitos de Fade-in */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .CTA {
        background:
            linear-gradient(to bottom, #001122 0%, rgba(0, 17, 34, 0.7) 30%, rgba(0, 17, 34, 0.5) 70%, rgba(0, 17, 34, 0.3) 100%),
            url('../img/sala-iluminacao.webp') no-repeat center center;
        height: 1400px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-size: cover;
    }


    .textos-cta {
        text-align: center;
        width: 100%;
    }

     .textos-cta .titulo h5 {
        font-size: 1.5em;
    }

    .textos-cta .titulo h6 {
        font-size: 1.2em;
    }

    .textos-cta .titulo h1 {
        font-size: 3em;
    }

    .textos-cta p {
        font-size: 1.2em;
        text-align: left;
    }

    .textos-cta ul li {
        text-align: left;
    }


    .btn-projetos {
        padding: 12px 25px;
        font-size: 1.2em;
    }
}


@media (min-width: 769px) and (max-width: 1525px) {
    .CTA {
        background:
            linear-gradient(to bottom, #001122 0%, rgba(0, 17, 34, 0.7) 30%, rgba(0, 17, 34, 0.5) 70%, rgba(0, 17, 34, 0.3) 100%),
            url('../img/sala-iluminacao.webp') no-repeat center center;
        height: auto;
        justify-content: center;
    }

    .textos-cta .titulo h5 {
        font-size: 1.8em;
    }

    .textos-cta .titulo h6 {
        font-size: 1.4em;
    }

    .textos-cta .titulo h1 {
        font-size: 3.6em;
    }


}
@media (min-width: 1440px) {
    .textos-cta .titulo h5 {
        font-size: 2em;
    }

    .textos-cta .titulo h6 {
        font-size: 1.6em;
    }

    .textos-cta .titulo h1 {
        font-size: 4em;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #174a6f 0%, #0e2e47 100%);
    ;
}

.hero-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

.slide.inicial>.conteudo-titulo {
    z-index: 2;
    position: relative;
    text-align: center;
    color: white;
}

.slide.inicial>.conteudo-titulo h2 {
    text-transform: none;
    font-weight: 300;
}

.slide.inicial {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #18739d;
    /* cor neutra até carregar imagem */

}

.EquipeGrauteInicial {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.slider {
    margin: 0 auto;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    height: 100%;
    width: 400%;
    display: flex;
    /* position: relative; */
}

.slides>input {
    display: none;
}

.slide {
    width: 25%;
    position: relative;
    transition: 1s;
}

.manual-navegation {
    position: absolute;
    width: 100%;
    /* margin-top: -40px; */
    display: flex;
    justify-content: center;
    bottom: 50px;
    left: 0;
}

.manual-btn {
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px;
    transition: 1s;
}

.manual-btn:hover {
    background-color: #fff;
}

#radio1:checked~.inicial {
    margin-left: 0;
}

#radio2:checked~.inicial {
    margin-left: -25%;
}

#radio3:checked~.inicial {
    margin-left: -50%;
}

.navegation-auto div {
    border: 2px solid #20a6ff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    margin: 10px;

}

.navegation-auto {
    position: absolute;
    display: flex;
    bottom: 50px;
    justify-content: center;
    width: 100%;
}

#radio1:checked~.navegation-auto .auto-btn1 {
    background-color: #fff;
}

#radio2:checked~.navegation-auto .auto-btn2 {
    background-color: #fff;
}

#radio3:checked~.navegation-auto .auto-btn3 {
    background-color: #fff;
}


.inicial::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* altura do degradê */
    background: linear-gradient(to top, #174a6f 0%, rgba(23, 74, 111, 0) 100%);
}

.inicial>div {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inicial .conteudo-titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.inicial .conteudo-titulo h2,
.inicial .conteudo-titulo h3 {
    text-align: center;
    margin: 0;
}

.inicial .conteudo-titulo h2 {
    width: 50%;
    background-color: #1aaada;
}

.inicial .conteudo-titulo h3 {
    width: 55%;
    background-color: #043b4e;
    padding: 15px 20px;
}

.slide .containerDivLogo {
    width: 33%;

}

.slide .textos-inicial {
    width: 33%;
}

.slide .formulario-inicial {
    width: 33%;
}


.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    /* Adiciona espaÃ§o abaixo da logo */
}

.logoGraute {
    height: 650px;
    /* Reduz o tamanho da logo */
    width: auto;
    z-index: 2;
}

.textos-inicial {
    text-align: center;
    /* Centraliza o texto */
    color: white;
    padding: 0 20px;
    /* Reduz o padding lateral */
    width: 80%;
    text-transform: uppercase;
    /* Aumenta a largura do container de texto para centralizar melhor */
}

.container-par {
    border: 2px dashed white;
    padding: 15px;
    margin: 0 auto 20px;
    /* Centraliza e adiciona margem inferior */
    width: fit-content;
    /* Ajusta a largura ao conteÃºdo */
}

.textos-inicial p {
    font-size: 3.0em;
    /* Aumenta o tamanho da fonte dos parÃ¡grafos */
    padding: 10px;
    margin: 10px 0;
    /* Adiciona margem vertical */
}

.textos-inicial h2 {
    color: white;
    margin-top: 0;
    font-size: 4.0em;
    /* Aumenta o tamanho da fonte do h2 */
    margin: 15px auto;
    /* Centraliza o h2 */
    width: fit-content;
    /* Ajusta a largura ao conteÃºdo */
}

#formulario-inicial {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px 30px;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#formulario-inicial h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #fff;
}

#formulario-inicial p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #fff;
}

#formulario-inicial div {
    margin-bottom: 15px;
}

#formulario-inicial label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #fff;
}

#formulario-inicial input,
#formulario-inicial select,
#formulario-inicial textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

#formulario-inicial input:focus,
#formulario-inicial select:focus,
#formulario-inicial textarea:focus {
    border-color: #007BFF;
    outline: none;
}

#formulario-inicial button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formulario-inicial button:hover {
    background-color: #0056b3;
}

.citacao {
    color: #1C66A6;
    font-style: italic;
    display: block;
}

.container-btn-orcamento {
    display: flex;
    justify-content: center;
    /* Centraliza o botÃ£o */
    width: 100%;
}

.btn-orcamento {
    background-color: #1C66A6;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em !important;
    /* Reduz um pouco o tamanho da fonte do botÃ£o */
    cursor: pointer;
    margin-top: 30px;
    /* Reduz a margem superior */
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    /* Garante que o texto dentro do botÃ£o esteja centralizado */
}

.btn-orcamento:hover {
    background-color: #16538B;
}

.EquipeGrauteInicial {
    background-image: linear-gradient(rgba(26, 170, 218, 0.3), #262626), url("../img/EquipeGraute.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    /* Altera para centralizar verticalmente */
    padding-top: 0;
    /* Remove o padding-top */
}

@media (max-width: 1580px) {
    section .slider {
        height: 1000px;
    }

    .slide .containerDivLogo .logoGraute {
        height: 300px;
    }

    .slide .container-par {
        margin-top: 20%;
    }

    .slide .textos-inicial p {
        font-size: 1.6em;
    }

    .slide .textos-inicial h2 {
        font-size: 2.0em;
    }

    .slide .formulario-inicial {
        /* height: 500px; */
        /* padding: 120px 0; */
    }

    .slider .slides .navegation-auto,
    .slider .slides .manual-navegation {
        bottom: 0;
    }
}


/* Media Query para dispositivos mÃ³veis */
@media (max-width: 481px) {
    section .slider {
        height: auto;
        /* padding: 20px 10px 45px 10px; */
    }

    .slide {
        height: auto;

        justify-content: center;
        display: flex;
        flex-direction: column;
        padding: 15px 0 95px 0;
        /* Volta o alinhamento vertical para o topo */
    }

    .slider .slides .manual-navegation,
    .slider .slides .navegation-auto {
        top: 150px;
        bottom: auto;
        z-index: 1000;
    }

    .navegation-auto {
        top: 7px;
        bottom: auto;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .logoGraute {
        height: 400px;
    }

    .textos-inicial {
        padding: 10px 10px;
        width: 90% !important;
    }

    .inicial .textos-inicial h2 {
        font-size: 2.1em;
    }

    .slide .formulario-inicial {
        width: 90%;
        /* height: 800px; */
        height: auto;
        padding: 120px 0;
        margin: 0;
    }

    .container-par {
        width: 90%;
        padding: 10px;
        margin-bottom: 15px;
    }

    .textos-inicial p {
        font-size: 1.8em !important;
        width: 100%;
        padding: 8px;
    }

    .btn-orcamento {
        font-size: 1em;
        padding: 10px 20px;
        margin-top: 20px;
    }

    .slide .conteudo-titulo {
        padding: 0;
        margin: 0;
        height: auto;
    }

    .slide .conteudo-titulo h2 {
        width: 75%;
    }

    .slide .conteudo-titulo h3 {
        width: 65%;
    }
}

.containerParcerias {
    background-color: #26262696;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px;
    color: white;
}


.bordaLogo {
    position: relative;
    z-index: 1;
}

.bordaLogo::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 60%;
    width: 45%;
    height: 60%;
    /* border: 1px solid red; */
    background-color: #20a6ff;
    z-index: -1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);


}

.bordaLogo::after {
    content: "";
    position: absolute;
    bottom: -55px;
    left: -25px;
    width: 45%;
    height: 60%;
    background-color: #20a6ff;

    z-index: -1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);


}

.containerWpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.containerWpp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    animation: none;
}

.containerWpp a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .containerWpp {
        padding: 12px;
    }

    .containerWpp a {
        font-size: 24px;
    }
}

.RespostaEnvioDeFormulario .container {
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    height: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide .RespostaEnvioDeFormulario {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    transition: 0.35s;

}

.RespostaEnvioDeFormulario .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.RespostaEnvioDeFormulario.active {
    transition: 0.35s;
    display: block;
}

.RespostaEnvioDeFormulario .icon svg {
    width: 100%;
    height: 100%;
    stroke: #28a745;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.RespostaEnvioDeFormulario h1 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.RespostaEnvioDeFormulario p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

/* Fundo escurecido e centralizador */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* fundo translÃºcido */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

/* Spinner central */
.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
}

/* Oculto por padrÃ£o */
.hidden {
    display: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.containerProcessos {
    background-color: #262626;
    padding: 35px 10px;
}

.containerProcessos .titulo h2{
    font-size: 3.2em;
}
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 60px 20px;
    gap: 40px;
    flex-wrap: nowrap;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
}

.card-processo {
    background: white;
    padding: 20px;
    width: 300px;
    flex: 0 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    z-index: 1;
}

.card-processo::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5196c78a;
    z-index: -1;
}

.card-processo .numero {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.card-processo .conteudo h4 {
    margin-top: 10px;
    /* font-size: 16px; */
}

.card-processo ul {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.card-processo ul li {
    color: white;
    line-height: 25px;
}

/* === TABLET: Layout em grade de 2 colunas com linha vertical === */
@media (max-width: 1024px) {
    .timeline-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 60px 10px;
        gap: 60px 30px;
    }

    .timeline-wrapper::before {
        display: none;
    }

    .card-processo {
        flex: 1 1 calc(50% - 30px);
        min-width: unset;
        max-width: 100%;
    }

    .card-processo .numero {
        left: 20px;
        transform: none;
    }
    .containerProcessos .titulo h2 {
        font-size: 2.5em;
    }

    .card-processo .conteudo h4 {
        font-size: 1.2em;
    }
}

/* === MOBILE: Coluna única === */
@media (max-width: 600px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .card-processo {
        width: 90%;
    }

    .card-processo .numero {
        left: 20px;
        top: -20px;
        transform: none;
    }
     .containerProcessos .titulo h2 {
        font-size: 2em;
        text-align: center;
    }

    .card-processo .conteudo h4 {
        font-size: 1.1em;
    }
    
}

/* === TELAS GRANDES (4K ou maiores que 2000px) === */
@media (min-width: 2000px) {
    .timeline-wrapper {
        margin: 0 auto;
        justify-content: space-between;
        gap: 60px;
    }

    .card-processo {
        min-width: 300px;
        max-width: 320px;
        padding: 24px;
    }

    .containerProcessos .titulo h2 {
        font-size: 3.5em;
    }

    .card-processo .conteudo h4 {
        font-size: 1.4em;
    }

    .card-processo ul {
        font-size: 15px;
    }
}