/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #97a874; /* Cor de destaque moderna */
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}
body {
    /* background-color: var(--light-color); */
    color: var(--dark-color);
    line-height: 1.6;
    background-image: linear-gradient( to top, #97a874 3%, #fff 20%) !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar::before {
  content: "";
  flex: 1;
}
.menu-toggle {
    display: none; /* Escondido no desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: 0.3s;
    border-radius: 2px;
}
.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- RESPONSIVIDADE (Celular) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .navbar::before { display: none; } /* Remove o espaço vazio do desktop */

    .menu-toggle {
        display: flex; /* Mostra o botão no celular */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Escondido à direita */
        top: 0;
        height: 50vh;
        width: 40%; /* Ocupa 70% da largura da tela */
        background-image: linear-gradient(to left, #97a874, #fff );
        flex-direction: column;
        justify-content: center;
        padding-top: 0 !important;
        margin-top: 0;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;

    }
    .nav-links a {
      /* 1. Fonte moderna e limpa */
      font-family: 'Montserrat',

      /* 2. Remove o sublinhado padrão feio */
      text-decoration: none;

      /* 3. Cor e Tamanho */
      color: var(--dark-color); /* Ou use #333 se a variável falhar */
      font-size: 0.9rem;        /* Um pouco maior para facilitar o toque */
      font-weight: 500;         /* Espessura média (nem muito fino, nem negrito) */

      /* 4. O segredo da sofisticação */
      text-transform: uppercase; /* Deixa tudo em CAIXA ALTA */
      letter-spacing: 2px;       /* Espaçamento entre as letras */

      /* 5. Transição suave */
      transition: all 0.3s ease;
      padding: 10px; /* Aumenta a área de toque */
      display: block; /* Garante que o padding funcione */
  }

/* Efeito ao passar o mouse ou tocar */
    .nav-links a:hover {
      color: #97a874; /* Aquele seu verde elegante */
      letter-spacing: 3px; /* As letras se separam levemente ao passar o mouse */
      font-weight: 600;
  }

    .nav-links.active {
        right: 0; /* Desliza para dentro da tela */
    }

    .nav-links li {
        margin: 20px 0;
        margin-left: 0; /* Reseta o margin do desktop */
    }

    /* Animação do X quando o menu abre */
    #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
.logo {
    display: flex;
    flex-direction: column; /* Coloca um embaixo do outro */
    align-items: center;    /* Centraliza os dois textos */
    justify-content: center;
    line-height: 1.2;       /* Diminui o espaço entre o nome e o cargo */
    flex: 1;                /* Mantém o alinhamento central na navbar */
    font-size: 1.4rem;      /* Tamanho do nome principal */
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle-logo {
    font-size: 0.7rem;     /* Letra significativamente menor */
    font-weight: 400;       /* Letra mais fina para contraste */
    letter-spacing: 4px;    /* Mais espaço entre letras para dar um ar premium */
    text-transform: uppercase;
    color: var(--primary-color); /* Ou a cor que você preferir */
    margin-top: 5px;        /* Pequeno ajuste de distância do nome */
}

.logo span {
    color: var(--primary-color);
}
@media (max-width: 1024px) {
    .logo {
        font-size: 1.2rem; /* Reduz levemente o nome */
    }

    .subtitle-logo {
        font-size: 0.6rem;
        letter-spacing: 3px; /* Reduz o espaçamento para caber na tela */
    }
}

/* --- CELULAR (até 768px) --- */
@media (max-width: 768px) {
    .logo {
        font-size: 1rem; /* Tamanho ideal para não brigar com o menu hambúrguer */
        letter-spacing: 1px;
    }

    .subtitle-logo {
        font-size: 0.45rem; /* Fica bem pequeno e delicado */
        letter-spacing: 1px; /* Espaçamento mínimo para não vazar a tela */
        margin-top: 2px;     /* Aproxima mais do nome */
    }
}



/* Hero Section */
/* efeitos */
/* Estado inicial comum para todos os elementos que vão "chegar" */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Classe ativada pelo JavaScript */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delays específicos para criar o efeito cascata (subtítulo chega antes do h2) */
.subtitle.reveal { transition-delay: 0.1s; }
h2.reveal { transition-delay: 0.3s; }
.bio-container.reveal { transition-delay: 0.2s; }
/* fim efeitos*/
.hero {
    padding: 150px 10% 80px;
    display: flex;
    align-items: center;
    /* background: #fff; */
}
.hero-content p {
  margin-bottom: 20px;
  font-family: sans-serif;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: 1200px;
}

.hero-image img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary-color);
}

.hero-content {
    flex: 1;
    min-width: 300px;

}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content span {
    color: var(--primary-color);
}

/* --- RESPONSIVIDADE (Mobile) --- */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px; /* Aumenta o topo para não cobrir a logo */
    }

    .hero-container {
        flex-direction: column; /* Foto em cima, texto embaixo */
        text-align: center;     /* Centraliza o texto no celular */
        gap: 30px;
    }

    .hero-image {
        order: 1; /* Garante que a foto apareça primeiro se desejar */
    }

    .hero-image img {
        max-width: 250px; /* Diminui a foto no celular */
        margin: 0 auto;
    }

    .hero-content {
        order: 2;
    }

    .hero-content h1 {
        font-size: 1.8rem; /* Diminui o título para caber na tela */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center; /* Centraliza os ícones sociais */
    }
}

.biografia {
    flex: 1;
    min-width: 300px;
}



.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--dark-color);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    display: inline-block;
}

/* Video Banner */
.video-banner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.video-text {
    position: relative; /* Garante que fique acima do overlay */
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

.video-text h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}
/* --- AJUSTES PARA MOBILE --- */
@media (max-width: 768px) {
    .video-banner {
        height: 300px; /* Reduz a altura para não ocupar a tela toda no celular */
    }

    .video-text h2 {
        font-size: 1.3rem; /* Tamanho de fonte mais confortável para celular */
        padding: 0 10px;
    }

    /* Opcional: Ajuste para garantir que o vídeo preencha bem o fundo mobile */
    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Projetos */
.section-header-projects {
    position: relative;
    padding: 60px 20px; /* Dá espaço para a imagem aparecer */
    text-align: center;
    font-size: 1.3rem;


}
.projects {

    overflow: hidden;
    /* background-color: #fff; */
    /* background: url('/images/fundo_projects.png') no-repeat center center; */
    background-size: cover;
    overflow: hidden;

}
.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.project-container {
  /* background: linear-gradient(to top, #97a874, transparent); */
}
.project-slider {
    width: 100%;
    overflow: hidden; /* Importante para não bugar a página */
    padding: 20px 0;
}
.project-info {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.project-grid {
    display: flex !important; /* Força flexbox */
    flex-wrap: nowrap !important; /* PROÍBE quebrar linha */
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content; /* Faz a div ser do tamanho de todos os cards somados */
}

.project-card {
    min-width: 300px; /* Largura fixa de cada card */
    max-width: 300px;
    object-fit: contain;
    flex-shrink: 0; /* Impede que o navegador esprema o card */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

.slider-btn:hover { background: var(--primary-color); color: #fff; }
.prev-slider { left: 10px; }
.next-slider { right: 10px; }

/* Mobile: permitir arrastar com o dedo */
@media (max-width: 768px) {
    .project-grid {
        /* IMPORTANTE: Resetar o alinhamento para o início */
        display: flex !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;

        /* Garante que a esteira tenha espaço para todos */
        width: max-content !important;
        padding: 0 20px; /* Margem para o primeiro card não colar na borda */
        gap: 15px;
    }

    .project-slider {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        /* Esconde a barra de rolagem visual, mas mantém a função */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .project-slider::-webkit-scrollbar {
        display: none; /* Esconde barra no Chrome/Safari */
    }

    .project-card {
        scroll-snap-align: start; /* Mude para 'start' para melhor precisão mobile */
        flex: 0 0 280px; /* Trava o tamanho sem esmagar */
        min-width: 280px;
    }

    .slider-btn { display: none !important; }
}
.mute-toggle-global {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2); /* Fundo sutil */
    backdrop-filter: blur(5px);
    border: none;
    color: grey;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-toggle-global:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.mute-toggle-global i {
    font-size: 18px;
}
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

/* Quando a tela for pequena (celulares), fica 1 por linha */
@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
        padding: 20px 10px;
    }
    .project-card {
        width: 100%;        /* Ocupa a largura disponível */
        max-width: 350px;   /* Impede que fique gigante em telas muito largas */
        margin: 0 auto;     /* Garante centralização se o card for menor que a tela */
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img {
        width: 280px;
        height: auto;
    }
}


.biografia {
    padding: 100px 10%;
    /* background-color: #fff; */
}

.bio-container {
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto com a foto */
    justify-content: space-between;
    gap: 60px; /* Espaço entre o texto e a imagem */
    max-width: 1200px;
    margin: 0 auto;
}

.bio-content {
    flex: 1.2; /* Dá um pouco mais de espaço para o texto */
    text-align: left; /* Garante que o texto fique alinhado à esquerda */
}

.bio-image {
    flex: 0.8; /* A foto fica um pouco menor que o texto */
    display: flex;
    justify-content: center;
}

.bio-image img {
    width: 100%;
    max-width: 400px; /* Limita o tamanho máximo da foto */
    height: auto;
    border-radius: 20px; /* Bordas arredondadas modernas */
    object-fit: cover;
}

/* Estilização do texto para combinar com o layout */
.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.bio-content h2 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.bio-content span {
    color: var(--primary-color);
}

.bio-text p {
    margin-bottom: 10px;
    font-size: 1.0rem;
    color: #444;
    line-height: 1.7;
    font-family: sans-serif;
}

/* Responsividade: No celular, a foto vai para baixo do texto */
@media (max-width: 900px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-content {
        text-align: left;
    }

    .bio-image img {
        max-width: 300px;
    }

}

  /* section de feedbacks */

.feedback-section {
    position: fixed;
    padding: 100px 10%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Garante que o vídeo não saia dos limites */
    color: #fff;
    /* background: linear-gradient(to bottom, #97a874, transparent);Se o vídeo for escuro, mude a cor do texto */
}
.feedback-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.7); Ajuste a opacidade conforme necessário */
    z-index: 1;
}
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Fica atrás de tudo */
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Overlay branco para manter a estética leve */
    z-index: -1; /* Fica entre o vídeo e o texto */
}
/* Centralização do Cabeçalho */
.feedback-section .section-header {
    position: relative;
    z-index: 10;
    text-align: center; /* Centraliza o texto */
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-section .section-header .subtitle {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feedback-section .section-header h2 {
    text-align: center;
    position: relative;
    z-index: 1;
    color: black;
}
.section-header span {
  color: #fff;
}
.section-header-pricing span {
  color: #97a874;
}
.section-header-pricing .subtitle {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.section-header-pricing {
    position: relative;
    z-index: 10;
    text-align: center; /* Centraliza o texto */
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.feedback-grid {
    position: relative;
    z-index: 2;
    column-count: 3;
    column-gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feedback-card {
    background: #fff;
    break-inside: avoid; /* Não deixa o card quebrar entre colunas */
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #efefef;
    transition: 0.3s ease;
}

.feedback-card:hover {
    transform: scale(1.02);
}

.feedback-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.card-insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 992px) {
    .feedback-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .feedback-grid { column-count: 1; }
}

/*section de pacotes */

.pricing {
    padding: 100px 10%;
    /* background-color: #fcfcfc; */
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;           /* Mudamos de Grid para Flex */
    flex-wrap: wrap;         /* Permite que os cards caiam para a linha de baixo */
    justify-content: center; /* O SEGREDO: Centraliza os cards na tela */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.price-card {
    background: #fff;
    flex: 0 1 350px;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    position: relative;
    width: 100%;
}

/* Ajuste para Tablets (até 992px) */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards por linha */
    }
}

/* Ajuste para Celulares (até 600px) */
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* 1 card por linha (tela cheia) */
        padding: 10px;
    }
}

.price-card:hover {
    transform: translateY(-10px);
}

/* Card em Destaque */
.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #888;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; /* Faz o botão ficar sempre alinhado embaixo */
}

.features li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.85rem;
}

.features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-contract {
    text-decoration: none;
    background: var(--dark-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9re;
    transition: 0.3s;
}

.btn-contract:hover {
    background: var(--primary-color);
}

/* Ajuste do botão para o card em destaque */
.featured .btn-contract {
    background: var(--primary-color);
}

.featured .btn-contract:hover {
    filter: brightness(1.1);
}

/* carrossel */
.project-user {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Centraliza o botão no card */
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    text-decoration: none;
    color: var(--dark-color);
    background: #f4f4f4; /* Fundo suave para parecer botão */
    padding: 6px 15px;
    border-radius: 50px;
    transition: 0.3s;
}

.insta-link i {
    font-size: 1.1rem;
    /* Gradiente clássico do Instagram (opcional) */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insta-link h3 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Efeito Hover */
.insta-link:hover {
    background: #ebebeb;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-container {
    /* position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #fcfcfc; */
    width: 100%;
    /* Remova a altura fixa daqui também ou use aspect-ratio */
    aspect-ratio: 1 / 1; /* Isso força a imagem a ser um quadrado perfeito, muito comum no IG */
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slides img {
    min-width: 100%;
    height: 100%;
    object-fit: contain; /* Ou 'contain' se preferir a foto inteira */
    flex-shrink: 0;
}
.carousel-slides video {
    min-width: 100%;
    height: 100%;
    object-fit: contain; /* Ou 'contain' se preferir a foto inteira */
    flex-shrink: 0;
}

/* Botões de Navegação */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent; /* Remove o fundo */
    border: none;            /* Remove o contorno */
    cursor: pointer;
    font-size: 20px;         /* Aumenta o tamanho da seta */
    color: #0000007b; /* Use a cor da sua marca */
    z-index: 10;
    padding: 0;              /* Remove espaços internos */
    transition: 0.3s;
    opacity: 0.6;            /* Deixa levemente transparente para ser discreto */
}

/* Efeito ao passar o mouse: a seta fica mais forte e cresce um pouco */
.prev:hover, .next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.prev { left: 15px; }
.next { right: 15px; }

.project-info {
    padding: 20px;
    text-align: left;
}
 /* fim carrossel */

 /* footer */

.main-footer {
    /* background-color: #ffffff; */
    padding: 60px 10% 30px;
    /* border-top: 1px solid #eee; */
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente o container */
    /* background: linear-gradient(to top, #97a874, #fff); */
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Garante que o conteúdo interno fique no meio */
    margin-bottom: 40px;

}

.footer-contact {
    text-align: center; /* Centraliza o texto e o botão */
    max-width: 400px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: black;
}

.footer-contact p {
    font-size: 0.8rem;
    color: black;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza ícone + texto */
    gap: 10px;
}

.cta-footer {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    border-style: ridge;
}

.cta-footer:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: black;
}
.footer_link {
  color: inherit;
  text-decoration: none;
}
