/* Reset básico */
/* Reset box-sizing para evitar cálculo estranho de largura */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* evita scroll horizontal e possíveis deslocamentos */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'FontDev';
    src: url('fonts/defraud.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Cor de fundo do site */
body {
    font-family: 'FontDev', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-y: auto; /* Permite rolar a página */
    width: 100%;
}

/* Gradiente de fundo */
html {
    height: 100%;
    background: radial-gradient(ellipse at bottom, #030b13 0%, #090A0F 100%);
    overflow: hidden; /* Impede o transbordamento da página */
    width: 100%;
}

/* Estrelas animadas */
#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -2;
}

#stars {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        1000px 200px #FFF, 1200px 400px #FFF, 800px 600px #FFF,
        150px 900px #FFF, 400px 1100px #FFF, 700px 1300px #FFF,
        300px 1700px #FFF, 900px 1900px #FFF, 200px 2100px #FFF,
        1200px 2400px #FFF, 500px 2700px #FFF, 1300px 2800px #FFF,
        700px 2900px #FFF, 900px 3200px #FFF, 1000px 3500px #FFF,
        1100px 3700px #FFF, 1400px 3800px #FFF, 800px 4100px #FFF,
        1200px 4300px #FFF, 1500px 4400px #FFF, 100px 4600px #FFF,
        1300px 4800px #FFF, 500px 5000px #FFF, 700px 5300px #FFF,
        900px 5500px #FFF, 1500px 5600px #FFF, 300px 5900px #FFF,
        1200px 6000px #FFF, 800px 6200px #FFF, 1300px 6300px #FFF;
    animation: animStar 50s linear infinite;
}

#stars:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 100%;
    height: 100%;
    box-shadow: inherit;
}

#stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 
        500px 300px #FFF, 100px 700px #FFF, 300px 1000px #FFF,
        900px 1200px #FFF, 600px 1500px #FFF, 200px 1600px #FFF,
        700px 1700px #FFF, 1200px 1800px #FFF, 1300px 1900px #FFF,
        800px 2100px #FFF, 1500px 2200px #FFF, 1100px 2300px #FFF,
        300px 2400px #FFF, 700px 2500px #FFF, 1300px 2600px #FFF,
        800px 2800px #FFF, 1200px 3000px #FFF, 1500px 3100px #FFF,
        1100px 3300px #FFF, 600px 3500px #FFF, 1000px 3700px #FFF,
        1200px 3800px #FFF, 1500px 3900px #FFF, 100px 4000px #FFF,
        500px 4200px #FFF, 700px 4300px #FFF, 800px 4500px #FFF;
    animation: animStar 100s linear infinite;
}

#stars2:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 100%;
    height: 100%;
    box-shadow: inherit;
}

#stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 
        200px 400px #FFF, 600px 800px #FFF, 1000px 1000px #FFF,
        400px 1400px #FFF, 900px 1600px #FFF, 1200px 1700px #FFF,
        1500px 1800px #FFF, 1100px 2000px #FFF, 600px 2200px #FFF,
        1500px 2300px #FFF, 800px 2400px #FFF, 1300px 2500px #FFF,
        900px 2700px #FFF, 1100px 2900px #FFF, 500px 3000px #FFF,
        1300px 3200px #FFF, 700px 3300px #FFF, 800px 3500px #FFF,
        1200px 3600px #FFF, 1500px 3800px #FFF, 600px 4000px #FFF,
        1000px 4100px #FFF, 500px 4200px #FFF, 700px 4400px #FFF,
        800px 4600px #FFF, 1000px 4700px #FFF;
    animation: animStar 150s linear infinite;
}

#stars3:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 100%;
    height: 100%;
    box-shadow: inherit;
}


/* Título estilizado */
#title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #FFF;
    text-align: center;
    font-family: 'lato', sans-serif;
    font-weight: 300;
    font-size: 50px;
    letter-spacing: 10px;
    margin-top: -60px;
    padding-left: 10px;
}

#title span {
    background: -webkit-linear-gradient(white, #38495a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animação das estrelas */
@keyframes animStar {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2000px);
    }
}


/* Container geral */
.container {
    width: 90vw;         /* igual à largura da whyme-section */
    max-width: 1600px;   /* igual ou maior que whyme-section */
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Seção de perfil (imagem e nome) */
.profile-section {
    margin-top: 60px; /* Move a profile-section mais para cima */
        text-align: center;
}

/* Estilo da imagem do perfil */
.profile-image {
    width: 150px;
    height: 155px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    align-items: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logos-section {
    text-align: center;
}

.logo {
    height: 50px; /* ou ajuste conforme seu gosto */
    margin: 0 3px; /* espaço horizontal entre ícones */
    vertical-align: middle; /* ajuda a alinhar se tiverem textos ao lado */
}


/* Estilo do card */

.card {
    background-color: #000000; /* Fundo preto do card */
    color: white; /* Cor do texto do card */
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px; /* Limita o tamanho do card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}


/* Estilo da lista dentro do card */
ul {
    list-style-type: none;
    font-size: 1rem;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #f4a300; /* Cor de destaque para o hover */
}

.social-icons {
    display: flex;
    justify-content: center; /* Centraliza os ícones */
    margin: 20px 0; /* Espaçamento entre o perfil e os ícones */
    align-items: center;
}

.social-icon {
    font-size: 50px; /* Aumenta o tamanho do ícone */
    color: white; /* Cor branca para o ícone */
    margin: 0 20px; /* Aumenta o espaço entre os ícones */
    transition: color 0.3s ease; /* Transição suave na mudança de cor */
}

.social-icon:hover {
    color: #0086f4; /* Cor de destaque quando passar o mouse */
}

/* Estilo geral do card-container */
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

/* Estilo do card-menu (o container das seções) */
.card-menu {
    background-color: #000000; /* Fundo preto do card */
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    max-height: 92.5px;
}

/* Estilo das seções (links) */
/* Aplica à tag <a> que envolve .section */
a {
  text-decoration: none;
}

/* Estiliza a div clicável */
.section {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #000000;
  border: 1px solid #ffffff33;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer; /* Mostra a mãozinha */
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}


/* Cor do texto */
.section a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    display: block; /* Para que o link ocupe toda a área da seção */
    text-align: center;
}

/* Efeito hover nas seções */
.section:hover {
    transform: translateY(-5px); /* Move a seção para cima */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Efeito de sombra suave */
    background-color: rgba(255, 255, 255, 0.1); /* Leve alteração na cor de fundo no hover */
    z-index: 2; /* Garante que a seção fique acima das outras ao passar o mouse */
}

/* Adicionando o efeito de fade nas bordas */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), transparent);
    z-index: -1; /* Coloca o gradiente atrás do conteúdo */
    border-radius: 5px;
}


/* Estilo do título principal */
h1 {
    display: inline-flex;
    align-items: center;
    margin-top: 15px; /* Espaço acima do título */
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Estilo do subtítulo */
h2 {
    margin-top: 15px; /* Espaço entre o h1 e o h2 */
    font-size: 1.5rem;
    font-weight: normal;
    color: white;
    margin-bottom: 10px;
}
.verified {
    color: #0095F6; /* Cor azul do ícone de verificação */
    margin-left: 8px; /* Pequeno espaçamento entre o ícone e o texto */
    font-size: 1.2rem; /* Tamanho do ícone */
}

.pitch-section {
    background-color: #0f0f0f; /* Fundo cinza */
    padding: 20px;
    border-radius: 12px; /* Bordas arredondadas */
    max-width: 800px;
    margin: 20px auto; /* Centraliza a seção */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra suave */
}

h3 {
    text-align: justify;
    font-size: 1rem; /* Fonte menor */
    line-height: 1.5;
    color: #f8f7f7; /* Cor do texto */
    margin-bottom: 15px; /* Espaçamento entre os parágrafos */
    font-weight: 100;
}

h3:last-child {
    margin-bottom: 0; /* Remove o espaçamento do último parágrafo */
}

.portfolio-section {
    margin-top: 40px;
    background-color: transparent; /* Fundo preto */
    padding: 20px;
    border-radius: 12px; /* Bordas arredondadas */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.6); /* Sombra suave */
    text-align: center; /* Centraliza o conteúdo */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente */
    min-height: 100vh; /* Garante que ocupe a altura total da tela */
}

.portfolio-title {
    font-size: 70px; /* Tamanho do título */
    color: white; /* Cor do texto */
    margin-bottom: 20px; /* Espaçamento abaixo do título */
    text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.8);

}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 80px; /* Espaçamento entre os itens */
    max-width: auto; /* Largura máxima do grid */
    margin-top: 40px;
    margin-left: 0px; /* Mantido como estava */
    margin-right: 00px; /* Mantido como estava */
    justify-items: center; /* Garante que os itens dentro da grid fiquem centralizados */
}

/* Estilo dos itens do portfólio */
.portfolio-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    width: 800px; /* Largura fixa */
    height: 450px; /* Altura fixa ou ajuste para "auto" dependendo do conteúdo */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Isso garante que os itens fiquem distribuidos verticalmente */
    position: relative; /* Garante que o botão fique dentro do contêiner */
    opacity: 0;
}

.portfolio-item:hover {
    transform: translateY(-5px); /* Efeito de levantar ao passar o mouse */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Sombra mais intensa no hover */
}

.project-title {
    background-color: #323435; /* Cor de destaque para o título */
    color: white; /* Cor do texto */
    padding: 10px;
    margin: 0;
    font-size: 1.2rem; /* Tamanho da fonte */
    text-align: center; /* Centraliza o texto */
    width: 100%; /* Garante que o título ocupe toda a largura */
    position: relative; /* Garante que o título fique acima da imagem */
    z-index: 2; /* Garante que o título fique visível acima da imagem */
}

/* Imagem normal */
.portfolio-banner {
    width: 100%; /* Ocupa toda a largura do container */
    height: 100%; /* Ocupa toda a altura do container */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: block;
    transition: opacity 0.3s ease; /* Transição suave de opacidade */
}

/* Imagem de hover (inicialmente invisível) */
.portfolio-banner-hover {
    width: 100%; /* Ocupa toda a largura do container */
    height: 100%; /* Ocupa toda a altura do container */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: none;
    position: absolute; /* Posiciona a imagem sobre a outra */
    top: 0;
    left: 0;
    opacity: 0; /* Começa invisível */
    transition: opacity 0.3s ease; /* Transição suave */
    z-index: 1; /* Coloca a imagem de hover abaixo do título e do conteúdo */
}

/* Efeito de hover: quando passar o mouse sobre o item, a imagem normal desaparece e a de hover aparece */
.portfolio-item:hover .portfolio-banner {
    opacity: 0; /* Esconde a imagem normal */
}

.portfolio-item:hover .portfolio-banner-hover {
    opacity: 1; /* Exibe a imagem de hover */
    display: block;
}

.portfolio-item {
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}


.project-button {
    display: block;
    padding: 15px 15px 22px; /* Ajuste o padding para esticar para baixo */
    background-color: #323435;
    color: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    width: 100%;
    border-radius: 0 0 10px 10px; /* Bordas arredondadas no final */
    position: absolute;
    bottom: -5px; /* Ajusta o botão para ficar 5px abaixo da parte inferior do contêiner */
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}


.project-button:hover {
    background-color: #000000; /* Cor de fundo no hover */
    color: #ffffff;
}


/* Estilos para a animação fade-in do portfólio */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    background-color: #1a1a1a; /* Fundo escuro para os itens */
    border-radius: 10px; /* Bordas arredondadas */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Sombra suave */
    width: 800px; /* Largura fixa */
    height: 450px; /* Altura fixa (se necessário ajuste para "auto" em casos dinâmicos) */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; /* Para garantir que o botão fique posicionado dentro do item */
}

/* Classe para animação de fade-in ao ser visível */
.portfolio-item.animate {
    animation: fadeIn 2s ease-out forwards;
}

/* Imagem normal */
.portfolio-banner {
    width: 100%; /* Ocupa toda a largura do container */
    height: 100%; /* Ocupa toda a altura do container */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: block;
    transition: opacity 0.3s ease; /* Transição suave de opacidade */
}

/* Imagem de hover (inicialmente invisível) */
.portfolio-banner-hover {
    width: 100%; /* Ocupa toda a largura do container */
    height: 100%; /* Ocupa toda a altura do container */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: none;
    position: absolute; /* Posiciona a imagem sobre a outra */
    top: 0;
    left: 0;
    opacity: 0; /* Começa invisível */
    transition: opacity 0.3s ease; /* Transição suave */
    z-index: 1; /* Coloca a imagem de hover abaixo do título e do conteúdo */
}

/* Efeito de hover: quando passar o mouse sobre o item, a imagem normal desaparece e a de hover aparece */
.portfolio-item:hover .portfolio-banner {
    opacity: 0; /* Esconde a imagem normal */
}

.portfolio-item:hover .portfolio-banner-hover {
    display: block; /* Exibe a imagem de hover */
    opacity:1;
}

.portfolio-item:hover .portfolio-banner-hover {
    animation: playVideo 0.1s forwards; /* Inicia o vídeo ao passar o mouse */
}

/* Animação para garantir que o vídeo comece a rodar ao ativar o hover */
@keyframes playVideo {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        align-items: center; /* Alinha horizontalmente ao centro */
        justify-content: flex-start;
        width: 90%;
        padding: 0 10px;
        margin: 0 auto; /* Centraliza o container inteiro */
        box-sizing: border-box;
    }

    .portfolio-item {
        width: 350px;
        height: 300px;
        max-width: 800px; /* Limita largura do item */
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .portfolio-banner,
    .portfolio-banner-hover {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-button {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Responsividade para TELA TABLET MAIOR QUE 768 WIDTH */
@media (min-width: 800px) and (max-width: 1025px) {
    .portfolio-section {
    width: 800px; /* Aumenta para caber as colunas do grid */
    max-width: 100%; /* Para não ultrapassar o tamanho da tela */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 0 10px; /* Pequeno padding para evitar que encoste na borda */
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 460px);
    gap: 20px;
    max-width: calc(2 * 460px + 20px);
    margin: 40px auto 0 auto; /* centraliza horizontalmente e remove margens laterais */
    box-sizing: border-box;
    justify-content: start;
    align-items: start; /* start costuma funcionar melhor para grids */ /* empurra o grid 40px para a esquerda */
  }

  .portfolio-item {
    width: 460px !important; /* !important para sobrescrever o 800px fora do media */
    height: 300px !important; /* altura menor */
    margin: 0 auto;
    opacity: 1 !important; /* garantir visibilidade */
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
}

@media (min-width: 820px) and (max-width: 850px) {
    .portfolio-section {
    width: 800px; /* Aumenta para caber as colunas do grid */
    max-width: 100%; /* Para não ultrapassar o tamanho da tela */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 0 10px; /* Pequeno padding para evitar que encoste na borda */
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: calc(2 * 460px + 20px);
    margin: 40px auto 0 auto; /* centraliza horizontalmente e remove margens laterais */
    box-sizing: border-box;
    justify-content: start;
    align-items: start; /* start costuma funcionar melhor para grids */
  }

  .portfolio-item {
    width: 450px !important; /* !important para sobrescrever o 800px fora do media */
    height: 290px !important; /* altura menor */
    margin: 0 auto;
    opacity: 1 !important; /* garantir visibilidade */
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
}

/* WHY ME SECTION */
.whyme-section {
  position: relative;
  width: 90vw;
  max-width: 1600px;
  padding: 80px 40px;
  margin: 30px auto;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent; /* fundo base transparente */
  z-index: 1;
}

.whyme-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 20px;
  background: linear-gradient(
    270deg,
    rgba(17, 16, 16, 0.08),
    rgba(3, 5, 49, 0.06),
    rgba(49, 46, 46, 0.08),
    rgba(59, 57, 57, 0.06)
  );
  background-size: 800% 800%;
  animation: gradientShift 20s ease infinite;
}


@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.whyme-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.whyme-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.whyme-title {
  flex: 1 1 auto;
  font-size: 40px;
  font-weight: bold;
  color: #ece6e6;
  line-height: 1.4;
  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: left;
}

.separator {
  flex: 0 0 2px;
  background-color: #555;
  height: 100%;
  align-self: center;
  display: block;
}

/* NOVO: Grid com 4 cards */
.whyme-grid {
  flex: 2 1 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* força 2 colunas */
  gap: 20px;
  max-width: 700px;
}

.whyme-card {
  background-color: rgb(50, 52, 53);
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribui topo e base */
  align-items: center;
  min-height: 180px; /* altura mínima responsiva */
  text-align: center;
}

.whyme-card i {
  font-size: 32px;
  color: #f1f1f1;
  margin-bottom: 12px;
  margin-top: 37px;
  line-height: 32px;
}

.whyme-card i {
  font-size: 32px !important;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
}

.whyme-card span {
  font-size: 18px;
  color: #ece6e6;
  font-weight: 600;
  margin-bottom: 4px;
}


.whyme-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 10px rgba(8, 108, 216, 0.4),  /* brilho mais próximo */
    0 0 20px rgba(1, 52, 107, 0.3),  /* brilho médio */
    0 6px 15px rgba(0, 0, 0, 0.3);    /* sombra normal de elevação */
}


.whyme-desc {
  font-size: 14px;
  color: #cccccc;
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.4;
  max-width: 90%;
  letter-spacing: -0.9px; 
}

/* Responsivo */
@media (max-width: 768px) {
  .whyme-content {
    flex-direction: column;
    gap: 20px;
  }

  .whyme-title {
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .separator {
    display: none;
  }

  .whyme-grid {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .whyme-grid {
    grid-template-columns: 2fr; /* 2 por linha em celular */
    max-width: 90vw; /* aumenta a largura nos celulares */
  }

  .whyme-card {
    width: 100%; /* garante que o card ocupe toda a largura disponível */
  }
}

@media (max-width: 768px) {
  .pitch-section {
    display: none;
  }
  .portfolio-title {
    font-size: 50px;
  }
  .whyme-section {
    margin-top: -40px;
  }
  .portfolio-section {
    margin-top: 15px;
  }
  .portfolio-title{
    margin-bottom: 40px;
  }

}


/*
===============================================
CSS para Seção de Cards - Planos Landing Page
===============================================
*/

        .plans-section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .plans-section {
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.plans-section.animate {
    opacity: 1;
    transform: translateY(0);
}


        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    background-clip: text;
    margin-bottom: 20px;

    /* Glow maior e suave atrás do texto */
    text-shadow: 5px 5px 6px rgba(7, 48, 64, 0.8);
}

@media (min-width: 1024px) {
  .section-title {
    letter-spacing: -2.5px;
    word-spacing: -20px;
  }
}


        .section-subtitle {
            font-size: 1.2rem;
            color: #a0a0a0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: rgba(0, 0, 0, 0.58);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 212, 255, 0.5);
            backdrop-filter: blur(10px);
            min-height: 650px;
            display: flex;
            flex-direction: column;
            transform: scale(1.05);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00d4ff, #0099cc, #0066ff);
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .card-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #00d4ff;
            margin-bottom: 10px;
        }

        .card-subtitle {
            font-size: 0.9rem;
            color: #a0a0a0;
            margin-bottom: 25px;
        }

        .card-content {
            flex-grow: 1;
            margin-bottom: 30px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #e0e0e0;
            line-height: 1.5;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
            font-size: 1.1rem;
        }

 /*       .card-price {
            text-align: center;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .price-value {
            font-family: 'FontDev', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            display: block;
        }

        .price-old {
            font-size: 1.2rem;
            color: #888;
            text-decoration: line-through;
            display: block;
            margin-bottom: 20px;
            font-weight: normal;
        }
*/

        .cta-button {
    background: linear-gradient(45deg, #01aacc, #01526d);
    display: block;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;  /* centraliza o texto horizontalmente */
    line-height: normal; /* garante alinhamento vertical */
}


        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
            background: linear-gradient(45deg, #0099cc, #00d4ff);
        }
            
        .badge {
            position: absolute;
            top: 8px;
            right: 30px;
            background: linear-gradient(45deg, #ff4757, #ff3838);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
            z-index: 10;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .plans-section {
              margin-top: -30px;
            }
            .section-title {
                font-size: 2.5rem;
            }
            
            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card {
                padding: 30px 20px;
                min-height: auto;
                transform: none;
            }
            
            .card:hover {
                transform: translateY(-10px);
            }
            
            .price-value {
                font-size: 2rem;
            }
            
            .price-old {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            
            .card {
                padding: 25px 15px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* Esconde sempre o vídeo dentro da .no-hover */
.no-hover .portfolio-banner-hover {
  display: none !important;
}

/* Garante que a imagem sempre apareça */
.no-hover .portfolio-banner {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}


