/*ESTILO GERAL*/
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

footer p i {
    font-size: 25px;
}

body {
    background-color: black;
    height: 100vh;
}

.interface {
    max-width: 1600px;
    margin: 0 auto;
}

/* Isso vai substituir o bloco que você me mandou */
button:hover {
    transform: scale(1.05);
    /* O !important garante que o roxo vença qualquer outra cor branca */
    background-color: #730599 !important;
    box-shadow: 0px 0px 15px #730599;
}

/* Garante que o ícone dentro do botão não mude de cor no hover */
.pdr-social button:hover i {
    color: #000 !important;
}

/* Se você tiver outros botões que devem ter texto branco (como o de contato) */
.pdr-contato button:hover {
    color: #fff !important;
}

/* Ajuste na classe flex para alinhar os itens no meio */
.flex {
    display: flex;
    align-items: center;
    /* Isso centraliza a imagem e o texto verticalmente */
    justify-content: space-between;
}

/* Ajuste no seletor da seção (removendo o espaço extra) */
section.topo-do-site {
    padding: 80px 4%;
    /* Aumentei um pouco o padding para dar mais respiro */
}

.txt-topo-site {
    flex: 1;
    /* Faz o texto ocupar o espaço disponível */
}
.txt-topo-site {
  flex: 1;
  max-width: 480px;
}
.topo-do-site .txt-topo-site p {
  color: #fff;
  font-weight: 500;
  margin: 40px 0;
}

.img-topo-site {
    flex: 1;
    /* Faz a div da imagem ocupar espaço igual */
    text-align: right;
    /* Garante que a imagem encoste no canto direito */
}

.img-topo-site img {
    max-width: 100%;
    /* Evita que a imagem ultrapasse o tamanho da div */
    height: auto;
}

.pdr-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #730599;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

h2.titulo {
    color: #fff;
    font-size: 38px;
    text-align: center;
    line-height: 1.1;
    margin-top: 60px;

}

h2.titulo span {
    color: #730599;
}

/*ESTILO DO CABEÇARIO*/
header {
    padding: 40px 4%;

}

header img {
    width: 150px;
    /* Isso vai fazer a logo ficar pequena como a do vídeo */
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #7d7d7d;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header a:hover {
    color: #fff;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
}

/* MOBILE */
.overlay-menu {
    background-color: #000000a7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
    display: none;
}

.pdr-abrir-menu i {
    color: #730599;
    font-size: 40px;
}

.pdr-abrir-menu {
    display: none;
}

.menu-mobile {
    background-color: #000000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .2s;
}

.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile.abrir-menu~.overlay-menu {
    display: block;
}

.menu-mobile nav ul {
    text-align: right;
}

.menu-mobile nav ul li a {
    color: fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}

.menu-mobile .pdr-fechar {
    padding: 20px 5%;
}

.menu-mobile .pdr-fechar i {
    color: #730599;
    font-size: 20px;
}

.menu-mobile nav ul li a:hover {
    background-color: #730599;
    color: #000;
}

/* ESTILO TOPO SITE */
section .topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #fff;
    font-size: 42px;
    line-height: 40px;

}



.topo-do-site .txt-topo-site h1 span {
    color: #730599;
}

.topo-do-site .txt-topo-site p {
    color: #fff;
    margin: 40px 0;

}

.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 1.5s ease-in-out infinite alternate;
}

@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

/* Estilo das Especialidades */
section.especialidades {
    padding: 40px 4%;
}

section.especialidades .flex {
    gap: 60px;
    display: flex;
    align-items: stretch;
    /* Isso obriga todas as caixas a terem a mesma altura */
    gap: 20px;
    /* Garante um espaço entre elas */
}

.especialidades .especialidades-box {
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff78;
}

.especialidades-box i {
    color: #730599;
    font-size: 70px;
    display: block;
    margin-bottom: 20px;
    transition: .3s;
    flex: 1;
}

.especialidades-box:hover i {
    color: #fff;
    transform: scale(1.05);
}

.especialidades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

section p {
    font-size: 15px;
}

/* Estilo do Sobre */
section .sobre {
    padding: 80px 4%;
}

section .sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre {
    color: #fff;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre h2 span {
    color: #730599;
    display: block;

}

.sobre .txt-sobre p {
    margin: 10px 0;
    text-align: justify;
    flex: 1;
}

section.sobre .flex {
    display: flex;
    align-items: center;
    /* Centraliza verticalmente o texto e a imagem */
    justify-content: center;
    gap: 80px;
    /* Espaço entre a foto e o texto */
    padding: 60px 0;
}

.img-sobre img {
    width: 70%;
    max-width: 420px;
    /* Tamanho da foto conforme o exemplo */
    border-radius: 30px;
    /* Bordas arredondadas idênticas */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    /* Sombra leve para profundidade */
}

.txt-sobre {
    flex: 1;
    color: #fff;
}

.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
    line-height: 1.6;
    /* Melhora a leitura, deixando o texto menos apertado */
    max-width: 600px;
    /* Evita que as linhas fiquem longas demais em telas grandes */
}

section.sobre .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Traz os dois para o meio */
    gap: 80px;
    /* Define a distância exata entre a foto e o texto */
    max-width: 1200px;
    /* Limita a largura máxima do conjunto */
    margin: 0 auto;
    /* Centraliza o bloco inteiro na tela */
}

.img-sobre {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Garante que a imagem "aponte" para o texto */
}

/* Ajuste na seção Sobre para mover a imagem e o texto */
section.sobre .flex {
    display: flex;
    align-items: center;
    /* Mantém o alinhamento vertical */
    justify-content: space-between;
    /* Novo: Empurra a imagem para a esquerda e o texto para a direita */
    max-width: 1400px;
    /* Mantém a largura máxima controlada */
    margin: 0 auto;
    padding: 60px 4%;
    /* Respiro lateral na seção inteira */
    gap: 0;
    /* Remove o gap fixo, pois o justify-content já faz o trabalho */
}

.img-sobre {
    flex: 1;
    /* Novo: Permite que a div da imagem ocupe espaço proporcionalmente */
    display: flex;
    justify-content: flex-start;
    /* Novo: Alinha a div da imagem no início (esquerda) do flex item */
}

.img-sobre img {
    width: 100%;
    max-width: 420px;
    /* Novo: Mantém a imagem num tamanho proporcional e não excessivo */
    border-radius: 45px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-right: auto;
    /* Novo: Garante que a imagem empurre o espaço excedente para a direita */
}

.txt-sobre {
    flex: 1.5;
    /* Novo: Dá mais espaço para o texto em relação à imagem (ajuste conforme necessário) */
    color: #fff;
    padding-left: 5%;
    /* Novo: Espaço lateral para o texto, equilibrando com a imagem */
}

.txt-sobre p {
    margin: 20px 0;
    text-align: left;
    /* Novo: Alinhamento de texto à esquerda é mais natural e fácil de ler */
    line-height: 1.6;
    /* Melhora a legibilidade */
}

.pdr-social button {
    color: #000 !important;
    /* Adicione o important para o celular obedecer */
    -webkit-text-fill-color: #000;
    /* Garante que o preenchimento seja preto */
    font-size: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #730599;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

/* ESTILO PORTFOLIO */
/* Container que segura o título e as fotos */
section.portfolio {
    padding: 80px 4%;
    /* Margem interna para não encostar no topo/baixo */
    display: flex;
    flex-direction: column;
    /* Coloca o título em cima e as fotos embaixo */
    align-items: center;
    /* Centraliza o título e o bloco de fotos */
}

/* Onde as 3 imagens ficam */
section.portfolio .flex {
    display: flex;
    justify-content: center;
    /* Centraliza os itens horizontalmente */
    gap: 40px;
    /* Espaçamento igual entre as 3 imagens */
    flex-wrap: wrap;
    /* Se a tela for pequena, elas pulam para baixo */
    max-width: 1400px;
    /* Limita a largura para não espalhar demais em monitores gigantes */
    width: 100%;
    margin: 0 auto;
    /* Centraliza o bloco todo na página */
}

.img-port {
    width: 360px;
    height: 550px;
    /* Aumentei a altura para o print aparecer melhor */
    background-color: #730599;
    background-size: cover;
    /* Tente 'cover' agora, ele força preencher a largura */
    background-position: top center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 40px;
    flex-shrink: 0;
    /* Impede que o navegador amasse as imagens */
    margin-top: 60px;
    position: relative;
}

.img-port:hover {
    background-position: bottom center;
}

/* Tempo para a primeira imagem (Tapioca) */
.img-port:nth-child(1) {
    transition: background-position 7s ease-in-out;
}

/* Tempo para a segunda imagem (Café) */
.img-port:nth-child(2) {
    transition: background-position 10s ease-in-out;
}

/* Tempo para a terceira imagem (Pastel) */
.img-port:nth-child(3) {
    transition: background-position 10s ease-in-out;
}

/* O efeito de hover continua igual para todas */
.img-port:hover {
    background-position: bottom center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #110101ab;
    height: 100%;
    border-radius: 8%;
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 600px;
    align-items: center;
    opacity: 0;
    transform: .5s;
}

.overlay:hover {
    opacity: 1;
}

/* ESTILO FOOTER */
footer {
    padding: 60px 4% 20px 4%;
    /* Respiro maior em cima e menor embaixo */
    background-color: #000;
}

footer .line-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Empurra logo para esquerda e ícones para direita */
    padding: 20px 0;
}

footer .logo-footer img {
    width: 150px;
    /* Mantém o padrão do seu cabeçalho */
}

/* Estilização dos Botões Sociais */
.pdr-social button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #730599;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
    transition: .3s;
}

/* Estado Normal: Círculo roxo com símbolo preto */
.pdr-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #730599;
    /* Fundo roxo sólido */
    border: none;
    cursor: pointer;
    margin: 0 5px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Cor do ícone (o desenho) em preto */
.pdr-social button i {
    color: #000;
    /* Isso faz o "buraco" preto no meio do roxo */
    font-size: 25px;
}

/* Efeito de Hover: Inverte ou brilha */
.pdr-social button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #730599;
    background-color: #fff;
    /* Opcional: muda para branco ao passar o mouse */
}

/* Linha do E-mail (Borda e Texto) */
footer .line-footer.borda {
    border-top: 2px solid #730599;
    margin-top: 10px;
    justify-content: center;
    /* Centraliza o e-mail na linha de baixo */
}

footer .line-footer p {
    color: #fff;
    font-size: 18px;
}

footer .line-footer p i {
    color: #730599;
    margin-right: 10px;
}

footer .line-footer p a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

footer .line-footer p a:hover {
    color: #730599;
    text-decoration: underline;
}

@media screen and (max-width: 1020px) {
    .pdr-banner-destaque h2 {
        font-size: 26px !important;
        /* Diminuí para o "DESTAQUE" ter espaço lateral */
        line-height: 1.1;
        text-align: center;
        font-weight: 900;
        text-transform: uppercase;

        /* Importante: Ajuste a largura para o texto ocupar quase a tela toda */
        width: 95%;
        max-width: none;
        margin: 0 auto 20px auto;

        /* Isso ajuda a não quebrar palavras no meio */
        word-break: keep-all;
    }

    .overlay {
        font-size: 16px !important;
        /* Diminui o tamanho para não estourar a largura */
        white-space: nowrap !important;
        /* Força o texto a ficar em uma única linha */
        padding: 0 5px !important;
        /* Dá um pequeno respiro lateral */
        letter-spacing: 0px !important;
        /* Garante que as letras não fiquem muito afastadas */
    }

    .pdr-abrir-menu {
        position: fixed;
        top: 20px;
        /* Ajuste a altura se quiser mais para cima ou para baixo */
        right: 4%;
        /* Mantém alinhado com a lateral da sua interface */
        background-color: transparent;
        /* Remove o fundo preto */
        z-index: 10000;
        /* Valor bem alto para ficar na frente de tudo mesmo */
        cursor: pointer;
    }

    .pdr-abrir-menu i {
        color: #730599;
        /* O roxo da Agência PDR */
        font-size: 45px;
        /* Tamanho do ícone */
        /* Sombra leve para o ícone não sumir quando passar por cima de algo escuro */
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }

    /* CLASSES GERAIS */
    h2.titulo {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 50px;
        /* Adicione essa linha para criar o espaço */
    }


    /* Garante que a imagem do portfólio não tenha uma margem negativa que anule o espaço */
    .flex {
        flex-direction: column-reverse;
    }

    h2.titulo {
        font-size: 30px;
        line-height: 30px;
    }

    /* CABEÇALHO */
    .menu-desktop,
    .pdr-contato {
        display: none;
    }

    /* TOPO DO SITE */
    section.topo-do-site .flex {
        flex-direction: column-reverse;
        /* Coloca a foto em cima e o texto embaixo */
        gap: 40px;
        /* Cria um espaço entre a foto e o texto */
        text-align: center;
        /* Centraliza o texto para combinar com o mobile */
    }

    .img-topo-site {
        text-align: center;
        /* Centraliza a div da imagem */
    }

    .img-topo-site img {
        max-width: 80%;
        /* Diminui um pouco a foto para não ocupar a tela toda */
        margin: 0 auto;
    }

    .txt-topo-site h1 {
        font-size: 32px;
        /* Diminui o título para não empurrar tudo para baixo */
        line-height: 1.2;
        margin-top: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    /* Estilo das Especialidades */
    section.especialidades {
        padding: 40px 8%;
    }

    /* SOBRE */
    .selection.sobre {
        padding: 80px 8px;
    }

    .sobre .txt-sobre h2 {
        font-size: 32px;
        line-height: 35px;
        text-align: center;
    }

    /* Espaço entre o texto e os ícones sociais */
    .pdr-social {
        text-align: center;
        margin-top: 30px;
        /* Cria espaço acima dos ícones */
        margin-bottom: 30px;
        /* Cria espaço abaixo dos ícones (antes da foto) */
    }

    /* Espaço entre a imagem e o que estiver acima dela */
    .img-sobre img {
        width: 100%;
        margin-top: 20px;
        /* Garante que a foto não grude nos ícones */
    }

    /* Caso você esteja usando a seção flex para empilhar tudo */
    section.sobre .flex {
        flex-direction: column-reverse;
        /* Foto embaixo, texto em cima */
        gap: 40px;
        /* Essa é a forma mais moderna de dar espaço entre itens flex */
    }

    .img-sobre img {
        width: 100%;
    }

    /* PORTFOLIO */
    .selection.portfolio {
        padding: 80px 8%;
    }

    /* PORTFOLIO - CORRIGIDO E ANIMADO */
    .img-port {

        width: 100% !important;

        max-width: 380px !important;

        height: 450px !important;

        margin: 20px auto !important;

        display: block !important;

        background-size: cover !important;



        /* O segredo: desliga o transition e define os detalhes da animação sem o tempo */

        transition: none !important;

        animation-name: scrollAutomático !important;

        animation-timing-function: none !important;

        animation-iteration-count: infinite !important;

        animation-direction: alternate !important;

    }

    /* Tapioca - Ocupa a primeira posição no seu HTML */

    .img-port:nth-child(1) {

        animation-duration: 100s !important;

    }



    /* Café - Ocupa a segunda posição */

    .img-port:nth-child(2) {

        animation-duration: 80s !important;

    }



    /* Pastel - Ocupa a terceira posição */

    .img-port:nth-child(3) {

        animation-duration: 80s !important;

    }


    section.portfolio .flex {
        display: flex;
        flex-direction: column;
        /* Empilha os projetos um embaixo do outro */
        gap: 40px;
    }

    /* RODAPÉ RESPONSIVO */
    footer .line-footer {
        flex-direction: column;
        /* Coloca um em cima do outro */
        align-items: center;
        /* Centraliza horizontalmente */
        gap: 30px;
        /* Dá um espaço entre a logo e os ícones */
    }

    footer .logo-footer {
        text-align: center;
    }

    .pdr-social {
        display: flex;
        justify-content: center;
        /* Garante que os ícones fiquem centralizados */
        margin: 0;
    }

    .img-topo-site img {
        max-width: 90%;
        /* Evita que a imagem ultrapasse o tamanho da div */
    }

    .pdr-abrir-menu {
        display: block;
    }

}

/* REGRA DE MOVIMENTO */
@keyframes scrollAutomático {
    0% {
        background-position: top center;
    }

    100% {
        background-position: bottom center;
    }
}

/* NOVO*/
/* SEÇÃO CONTATO WHATSAPP AGÊNCIA PDR - CORRIGIDO ALINHAMENTO */
section.contato-whatsapp {
    padding: 80px 4%;
    background-color: #000;
}

.titulo-contato {
    color: #fff;
    font-size: 38px;
    text-align: center;
    line-height: 35px;
    /* Aumentei um pouco para dar mais respiro entre as 3 linhas */
    margin-bottom: 25px;
}

.titulo-contato span {
    color: #730599;
}

.form-container {
    max-width: 600px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background-color: #0f0f0f;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #730599;
    box-shadow: 0 0 10px rgba(115, 5, 153, 0.3);
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.btn-enviar-whats {
    padding: 18px;
    background-color: #730599;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-enviar-whats:hover {
    background-color: #25d366 !important;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media screen and (max-width: 1020px) {
    section.contato-whatsapp {
        padding: 60px 8%;
    }

    .titulo-contato {
        font-size: 30px;
    }
}

/* INICIO NOVO */
section.pdr-banner-destaque {
    padding: 80px 4%;
    text-align: center;
}

section.pdr-banner-destaque .banner-sub {
    color: #fff;
    font-size: 15px;
    margin: 30px auto;
    max-width: 600px;
    line-height: 1.7;
}

section.pdr-banner-destaque .pdr-contato {
    text-align: center;
}

@media screen and (max-width: 1020px) {
    section.pdr-banner-destaque {
        padding: 60px 8%;
    }
}

.pdr-banner-destaque {
    padding: 100px 4%;
    background-color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge-vagas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #730599;
    border-radius: 30px;
    padding: 8px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #730599;
    display: inline-block;
    box-shadow: 0 0 8px #730599;
    flex-shrink: 0;
}

.banner-titulo {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.banner-destaque-italico {
    font-style: italic;
    color: #730599;
    font-weight: 800;
}

.banner-sub {
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 50px;
    text-align: center;
}

.banner-btn {
    display: inline-block;
    background-color: #730599;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.banner-btn:hover {
    background-color: #730599 !important;
    transform: scale(1.05);
    box-shadow: 0px 0px 20px #730599;
    color: #fff !important;
}

@media screen and (max-width: 1020px) {
    .banner-titulo {
        font-size: 40px;
    }

    .banner-sub br {
        display: none;
    }

    .pdr-banner-destaque {
        padding: 70px 8%;
    }
}

/* CARROSSEL */
.pdr-carrossel {
  overflow: hidden;
  padding: 48px 0;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}
.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.carousel-track .card {
  width: 320px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: none;
}

.carousel-track .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.carousel-track .card img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.carousel-track .card img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.carousel-track .card img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.carousel-track .card img:hover {
  transform: scale(1.05) rotate(3deg);
  filter: brightness(1.1);
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ── SERVIÇOS ── */
section.pdr-servicos {
    padding: 80px 4%;
    background-color: #000;
}

section.pdr-servicos h2.titulo {
    margin-bottom: 50px;
}

.servicos-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.servico-card {
    flex: 1;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    transition: .2s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.servico-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff78;
}

.servico-card i {
    color: #730599;
    font-size: 70px;
    display: block;
    margin-bottom: 20px;
    transition: .3s;
}

.servico-card:hover i {
    color: #fff;
    transform: scale(1.05);
}

.servico-card h3 {
    font-size: 28px;
    margin: 15px 0;
}

.servico-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.servico-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.servico-card ul li {
    font-size: 14px;
    color: #ccc;
}

.servico-card button {
    margin-top: 10px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    background-color: #730599;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: 0.2s;
    width: 100%;
}

@media screen and (max-width: 1020px) {
    .servicos-grid {
        flex-direction: column;
    }

    .carrossel-item {
        width: 240px;
        height: 300px;
    }
}
/* TRABALHOS */
/* PROJETOS SHOWCASE */
section.projetos-showcase {
  padding: 80px 4%;
  background-color: #000;
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.projeto-card {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s ease;
}

.projeto-card:hover {
  transform: scale(1.02);
}

.projeto-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.projeto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  transition: background 0.3s ease;
}

.projeto-img:hover .projeto-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.btn-parecido {
  background-color: #730599 !important;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-parecido:hover {
  box-shadow: 0 0 20px #730599 !important;
  transform: scale(1.05);
}

.projeto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: none;
}

.projeto-img:hover .btn-parecido {
  opacity: 1;
  transform: translateY(0);
}

.projeto-info {
  padding: 16px 20px 20px;
}

.projeto-tag {
  font-size: 11px;
  color: #888;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.projeto-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #730599;
  display: inline-block;
  box-shadow: 0 0 6px #730599;
  flex-shrink: 0;
}

.projeto-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.projeto-bottom h3 {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.btn-ver-site {
  background: transparent !important;
  border: 1px solid #555 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-ver-site:hover {
  border-color: #730599 !important;
  box-shadow: 0 0 10px #730599 !important;
  transform: scale(1.05);
}

/* BOTÃO VER TODOS */
.ver-todos-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-ver-todos {
  background-color: #730599 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 16px 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}

.btn-ver-todos:hover {
  box-shadow: 0 0 20px #730599;
  transform: scale(1.05);
}

/* MODAL */
.modal-projetos {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-projetos.aberto {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.modal-content {
  position: relative;
  z-index: 2;
  background: #111;
  border-radius: 20px;
  padding: 50px 40px;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent !important;
  border: none;
  color: #fff !important;
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: none !important;
}

.modal-fechar:hover {
  color: #730599 !important;
  transform: scale(1.2);
  background: transparent !important;
  box-shadow: none !important;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.modal-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.modal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.modal-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

/* RESPONSIVO */
@media screen and (max-width: 1020px) {
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .projetos-grid {
    grid-template-columns: 1fr;
  }

  .modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
    padding: 40px 20px;
  }
}
/* Qualidade */
/* PROCESSO CRIATIVO */
section.processo-criativo {
  padding: 80px 4%;
  background-color: #000;
}

.processo-flex {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.processo-txt {
  flex: 1;
  color: #fff;
}

.processo-txt h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.processo-txt h2 span {
  color: #730599;
  font-style: italic;
  font-weight: 700;
}

.processo-txt p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.processo-citacao {
  color: #fff !important;
  font-style: italic;
  font-size: 15px !important;
  border-left: 3px solid #730599;
  padding-left: 16px;
  margin: 30px 0 !important;
}

.processo-perfil {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.processo-perfil img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.processo-perfil strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.processo-perfil span {
  color: #730599;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.processo-etapas {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.etapa-card {
  background: transparent;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid #222;
  transition: 0.3s;
}

.etapa-card:hover {
  border-color: #730599;
  box-shadow: 0 0 20px rgba(115, 5, 153, 0.15);
}

.etapa-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.etapa-num {
  color: #730599;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.etapa-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.etapa-linha {
  width: 100%;
  height: 1px;
  background: #730599;
  margin-bottom: 16px;
  opacity: 0.5;
}

.etapa-card p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

/* RESPONSIVO */
@media screen and (max-width: 1020px) {
  .processo-flex {
    flex-direction: column;
    gap: 50px;
  }

  .processo-txt h2 {
    font-size: 28px;
  }
}
/* BANNER PARALLAX */
.banner-parallax {
  position: relative;
  height: 450px;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  background-image: url(images/nootbook.webp);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.parallax-content h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}


.parallax-content h2 span {
  color: #730599;
  
}

.parallax-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-parallax {
  background-color: #730599 !important;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.btn-parallax:hover {
  box-shadow: 0 0 20px #730599;
  transform: scale(1.05);
}

/* RESPONSIVO - parallax fixo não funciona bem no mobile */
@media screen and (max-width: 1020px) {
  .banner-parallax {
    background-attachment: scroll;
    height: auto;
    padding: 80px 8%;
  }

  .parallax-content h2 {
    font-size: 28px;
  }
}
.processo-txt {
  flex: 1;
  color: #fff;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.parallax-content p {
  color: #ccc;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 1020px) {

  /* STICKY DESATIVA NO MOBILE */
  .processo-txt {
    position: static;
  }

  /* CARROSSEL MENOR NO MOBILE */
  .carousel-track .card {
    width: 180px;
    height: 180px;
  }

}
