/* html{
  font-size: 62.5%;
}
 */

/* ======== SEÇÃO INICIAL COM FUNDO PARALLAX ======== 
#inicio {
  position: relative;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);

   Fundo fixo 
  background-image: url("../fotos/inicio.jpg");  🖼️ altere o caminho conforme sua pasta 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  Parallax 
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: background-position;

  /* Tamanho e alinhamento 
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Camada escura para leitura 
#inicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Garante que o texto fique acima da camada escura 
#inicio * {
  position: relative;
  z-index: 1;
}

/* ======== ANIMAÇÃO SUAVE DO PARALLAX ======== */
/* @keyframes parallaxMove {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 100px;
  }
}

#inicio {
  animation: parallaxMove 20s linear infinite alternate;
} */
/* CTA */
.cta {
  padding: 16.25rem 0; /* Area de visualização */
  position: relative;
  clip-path: inset(0);

  /*   padding: 6.25rem 0;
 position: relative;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);

  /* Fundo fixo 
  background-image: url('../fotos/ChatGPT\ Image\ 5\ de\ nov.\ de\ 2025\,\ 19_57_13.png'); /* 🖼️ altere o caminho conforme sua pasta 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

 Parallax 
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: background-position;

 Tamanho e alinhamento
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; */
}

.cta img {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.cta .container {
  position: relative;
  z-index: 3;
}

.cta::before {
  content: "";
  background: #000d1a;
  position: absolute;
  inset: 0;
  z-index: 0; /* 🔥 manda o fundo pra trás */
  opacity: 0.65; /* opcional: deixa o fundo mais elegante */
}

/* Torna todo o fundo do site cinza escuro */
body {
  background-color: #353535; /* Cinza quase preto */
  color: #e0e0e0; /* Texto branco para contraste */
}

/* Também garante que containers e sections não fiquem com fundo branco */
section,
header,
footer,
.container {
  background-color: transparent !important;
}

.card {
  padding: 20px 20px; /* aumenta o espaço interno do card */
  transition: transform 0.3s ease, box-light 0.3s ease;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.card-custom {
  background-color: #1d1e1f;
  /* Substitua pelo código da cor desejada */
  /* Adicionar outras propriedades se necessário */
}


.contact-btn {
  transition: all 0.3s ease-in-out;
}

.section-hero {
  padding: 0;
}

.hero .carousel {
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.459);
  z-index: 2;
}

.carousel-item {
  background-size: cover;
  overflow: hidden;
  inset: 0;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center;
}

.hero .carousel-container {
  flex-direction: column;
  justify-content: center;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-weight: 700;
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgb(3, 44, 97);
}

.hero p {
  color: white;
  font-size: 20px;
  max-width: 600px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  background: none;
  width: 50px;
  font-size: 2rem;
  line-height: 1;
  transition: 0, 3s;
  opacity: 0;
  color: rgb(0, 68, 255);
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  line-height: 0;
  opacity: 1;
  transition: 0, 3s;
}

/* .fotos img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.fotos img:hover {
  transform: scale(1.03);
  box-shadow: 0px 5px 20px rgba(0,0,0,0.4);
} */

.portfolio-filters {
  list-style: none;
  text-align: center;
  margin: 10 px auto 20px auto;
}

.portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  background: linear-gradient(140deg, rgb(44, 44, 44), rgb(48, 47, 47) 200%);
  font-size: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  padding: 0.26rem;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: rgba(0, 0, 0, 0.459);
  color: rgba(255, 255, 255, 0.938);
  transition: 0.8s;
}

/* Site em telas ate  575px */
@media(max-width: 575px){
  .portfolio-filters li{
    font-size: 1rem;
  }
}

.portfolio-content {
    position: relative;
    overflow: hidden; /* Evita que a sobreposição saia da área da imagem */
}

.portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6); /* fundo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: opacity 0.3s ease;
}

.portfolio-content:hover .portfolio-info {
    opacity: 1; /* Torna visível ao passar o mouse */
}

.portfolio-info a {
    color: white;
    font-size: 2rem; /* Ajuste conforme necessário */
}

