/* Resetando os estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}


/* Esconde o submenu por padrão */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Exibe o submenu quando o mouse passa sobre o item "Sobre" */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute; /* Garante que o submenu não afete o layout */
    background-color: #fff; /* Cor de fundo do submenu */
    border: 1px solid #ddd; /* Borda do submenu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para o submenu */
}

/* Estilo para os itens do submenu */
.nav-item.dropdown .dropdown-menu a {
    padding: 10px 20px; /* Espaçamento interno */
    color: #333; /* Cor padrão dos itens do submenu */
    text-decoration: none; /* Remove underline */
}

/* Estilo de hover para os itens do submenu (apenas texto fica vermelho) */
.nav-item.dropdown .dropdown-menu a:hover {
    color: red; /* Cor do texto quando passar o mouse */
    background-color: transparent; /* Remove a cor de fundo */
}

/* Navbar fixa no topo da página */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #000000a9, transparent);
  z-index: 1000;
  padding: 10px 20px;
}

/* Tamanho do logo */
.navbar-brand img {
  height: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de hover no logo */
.navbar-brand img:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

/* Estilo de navegação */
.navbar-nav {
  display: flex;
  list-style-type: none;
  flex-grow: 1;
  justify-content: center;
}

/* Estilo para os links */
.navbar-nav .nav-item {
  margin-left: 20px;
  margin-right: 20px;
}

.navbar-nav .nav-link {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

.navbar-nav .nav-link:hover {
  color: #ff3838;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff3838;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.social-icons {
  display: flex;
  justify-content: center; /* ou flex-start / flex-end */
  gap: 3px;


}

.social-icon {
  font-size: 20px;
  color: white;
  background-color: transparent;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  
}

.social-icon:hover {
  background-color: red;
}

.social-icon i {
  color: white;
  font-size: 14px; /* diminua esse valor para reduzir o ícone */
}


#langToggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding-left: 10px;
  padding-bottom: 5px;

}

.lang-icon{
  margin-bottom: 5px;
}


/* Estilo para o botão de hambúrguer */
.navbar-toggler {
  position: absolute;     /* ou fixed, se quiser que fique sempre visível */
  right: 10px;            /* Alinhado à direita */
  top: 25px;              /* Aumente esse valor para descer mais */
  border: none;
  background-color: transparent;
  padding: 5px;
  width: 70px;
  z-index: 999;
}


/* Estilo das barras do hambúrguer */
.navbar-toggler-icon {
  background-color: red;
  padding-top: 20px;
  width: 35px;          /* <-- AJUSTE: antes era 50vh, gigante no mobile */
  height: 1px;
  border-radius: 5px;
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  background-color: red;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}


/* Responsividade - Navbar no celular */
@media (max-width: 768px) {
  /* Navbar collapsible */
  .navbar-nav {
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
  }

  /* Ajustar os itens do menu */
  .navbar-nav .nav-item {
      margin-left: 0;
      margin-right: 0;
      padding: 10px 0;
  }

  /* Esconder os ícones sociais em telas pequenas */
  .social-icons {
      display: none;
  }
}


.carousel-item {
    height: 100vh; /* Garante que cada slide tenha altura total da tela */
    position: relative;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção sem distorcer, preenchendo o slide */
}



/* Seções */
/* Resetando os estilos básicos */.carousel-item {
  height: 70vh; /* Garante que cada slide tenha altura total da tela */
  position: relative;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção sem distorcer, preenchendo o slide */
}

.carousel-caption {
  position: absolute !important;
  left: 20px !important;
  bottom: -38px !important; /* bem colado na parte de baixo */
  right: auto !important;
  top: auto !important;

  max-width: 90%;
}

.carousel-caption h3 {
  font-size: 90px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 1px #0000003a;
}



.custom-control {
  display: inline-block;
  width: auto !important;
  padding: 0 !important;
  background: none !important;
}

.custom-control svg {
  pointer-events: all;
  cursor: pointer;
}







.bloco-ficha {
  display: grid;
  grid-template-columns: 30% 50% 20%; /* proporção exata */
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 4%;
  margin: 0 150px;
  background: #fff;
  font-family: "Urbanist", sans-serif;
  box-sizing: border-box;
}

/* ------------------ COLUNA ESQUERDA (Imagem) ------------------ */
.video-bloco {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* PLAYER RESPONSIVO */
.video-thumb {
  width: 100%;             /* ocupa o espaço disponível */
  max-width: 650px;        /* TAMANHO MÁXIMO visual (igual ao seu monitor) */
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-thumb {
    max-width: 100%;       /* usa a largura TOTAL da tela */
    border-radius: 16px;   /* levemente menor no mobile */
  }
}

/* OVERLAY */
.img-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;           /* começa escondido */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
}

.close-overlay {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}




/* ------------------ COLUNA CENTRAL (Texto) ------------------ */
.col-centro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.col-centro .titulo {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.col-centro .descricao {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  max-width: 90%;
}

/* ------------------ COLUNA DIREITA (Ficha Técnica) ------------------ */
.col-direita {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

}
.titulo-ficha {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
  text-align: left;
}
.lista-ficha {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lista-ficha li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
  flex-wrap: wrap; /* <- PERMITE QUEBRE DE LINHA */
}

.lista-ficha li span:nth-child(1) {
  white-space: nowrap;            /* impede o "Rochas:" de quebrar */
  font-weight: 600;
}

.lista-ficha .icone {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.lista-ficha .icone:hover {
  opacity: 1;
}

/* ------------------ RESPONSIVIDADE ------------------ */
@media (max-width: 1100px) {
  .bloco-ficha {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;

    /* AJUSTE MOBILE/TABLET – evita estourar a largura */
    margin: 20px 16px;
    padding: 24px 16px;
  }
  .col-esquerda img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .col-centro {
    border: none;
    padding: 0 20px;
  }
  .col-direita {
    text-align: center;
    padding-left: 0;
  }
}














.bloco-texto-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;

    border-radius: 12px;
  }
  
  .bloco-texto-imagem .conteudo {
    flex: 1;
  }
  
  .bloco-texto-imagem h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #333;
  }
  
  .bloco-texto-imagem p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  .bloco-texto-imagem .imagem img {
    width: 650px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }


  




/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;                 /* abre via JS (block) */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 4vh 4vw;
  cursor: zoom-out;              /* clique fora fecha */
}
.lightbox.open { display: flex; }

.lightbox .lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  border-radius: 10px;
  cursor: default;
}

/* Botão fechar */
.lightbox .lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  line-height: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.3); }

/* Loader simples enquanto carrega a original */
.lightbox .lb-loader {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg);} }

/* ====== MOSAICO (mantém o seu) ====== */
.gallery { column-count: 4; column-gap: 15px; padding: 0 20px 0 20px; }
.gallery-item { display: inline-block; width: 100%; margin-bottom: 15px; border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* Hover leve na thumb (opcional) */
.gallery-item img { transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.02); }

@media (max-width: 1100px) { .gallery { column-count: 3; } }
@media (max-width: 768px)  { .gallery { column-count: 2; } }
@media (max-width: 500px)  { .gallery { column-count: 1; } }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 15px;
  transition: 0.2s;
  z-index: 999999;
}

.lb-prev:hover, .lb-next:hover {
  color: #ff3838;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

/* ===== Strip de miniaturas no lightbox ===== */
.lb-strip-wrap{
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:18px; width:min(92vw,1200px);
  display:flex; align-items:center; gap:8px; z-index:10000; pointer-events:auto;
}
.lb-strip{
  display:flex; gap:8px; overflow-x:auto; max-width:100%;
  padding:8px; border-radius:12px; background:rgba(0,0,0,.35); backdrop-filter:blur(2px);
  scrollbar-width:thin;
}
.lb-strip::-webkit-scrollbar{height:8px}
.lb-strip::-webkit-scrollbar-thumb{background:#666;border-radius:8px}

.lb-thumb{
  flex:0 0 auto; width:88px; height:66px;  /* ajusta aqui o tamanho da miniatura */
  border:2px solid transparent; border-radius:8px; overflow:hidden; opacity:.75; cursor:pointer; background:#111;
}
.lb-thumb img{width:100%; height:100%; object-fit:cover; display:block}
.lb-thumb:hover{opacity:.95}
.lb-thumb.active{opacity:1; border-color:#ff3838; box-shadow:0 0 0 1px rgba(255,255,255,.35) inset}

/* botões para rolar a faixa */
.lb-strip-btn{
  width:36px; height:36px; border-radius:50%; border:none;
  background:rgba(255,255,255,.18); color:#fff; font-size:22px; line-height:36px; cursor:pointer;
}
.lb-strip-btn:hover{ background:rgba(255,255,255,.3) }

@media (max-height:560px){ .lb-strip-wrap{ display:none; } }  /* some em telas muito baixas */

/* ---- esconder scrollbar da faixa ---- */
.lb-strip{
  -ms-overflow-style: none;   /* IE/Edge antigo */
  scrollbar-width: none;      /* Firefox */
}
.lb-strip::-webkit-scrollbar{ /* Chrome/Safari/Edge novo */
  width: 0; height: 0;
  display: none;
}














  @media (max-width: 768px) {
    /* Navbar */
    .navbar {
      padding: 10px;
    }
  
    .navbar-nav {
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
  
    .navbar-nav .nav-item {
      padding: 10px 0;
      margin: 0;
    }
  
    .social-icons {
      display: none;
    }
  
    .navbar-toggler {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1100;
    }
  
    /* Carousel */
    .carousel-caption h3 {
      font-size: 36px;
    }
  
    /* Ficha técnica */
    .ficha-tecnica {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      padding: 20px;
      font-size: 16px;
    }
  
    .ficha-tecnica h3 {
      margin: 20px 0;
      text-align: center;
      margin-left: 0;
    }
  
    .ficha-tecnica img {
      width: 90%;
    }
  
    /* Bloco texto e imagem */
    .bloco-texto-imagem {
      flex-direction: column;
      text-align: center;
      padding: 20px;
      gap: 20px;
    }
  
    .bloco-texto-imagem .imagem img {
      width: 100%;
    }
  
    /* Botões de filtro */
    .filter-buttons button {
      font-size: 16px;
      margin: 0 10px;
    }
  
    /* Galeria */

  
    /* Vídeo responsivo */
    .video-full {
      padding-bottom: 56.25%;
    }
  
    /* Ajuste geral de container */
    .container-central {
      height: auto;
      padding: 20px;
    }
  }

  

  /* Ajuste para telas menores que 768px (mobile) */
@media (max-width: 768px) {
  #langToggle {
    margin-right: 68px; /* ou use negativo: margin-left: -10px */
padding-bottom: 10px;
  }
}



.titulo-abaixo {
    position: relative;
    left: 20px;
    bottom: 85px;
    max-width: 90%;
    font-size: clamp(40px, 8vw, 90px); /* Responsivo entre 30px e 90px */
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
    line-height: 1.1;

}



@media (max-width: 768px) {
    .titulo-abaixo {
        left: 10px;

    }
}

@media (max-width: 480px) {
    .titulo-abaixo {
        font-size: 40PX;
        left: 5px;
        bottom: 38px;
    }
}

  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

.popup-content {
  background-color: #fff;
  padding: 20px;
  width: 40vw;
  height: 40vh;
  overflow: auto;
  border-radius: 8px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}


  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
  }

#popup-img {
  max-height: 50vh;
  max-width: 100%;
  margin: 20px 0;
  object-fit: contain;
  border-radius: 4px;
}

  #carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #carousel img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    margin: 5px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border 0.2s ease-in-out;
  }

  #carousel img:hover {
    border: 2px solid #ff0000;
  }












.rocha {
  cursor: pointer;
  font-weight: 400;
  color: inherit;        /* mesma cor do texto normal */
  display: inline;       /* garante que não quebra estranho */
  white-space: nowrap;   /* evita quebra no meio dos nomes */
}

.rocha:hover {
  text-decoration: underline;
}


/* POPUP */
.popup-rocha {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.popup-rocha.open {
  display: flex;
}

.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
}


















:root{
  --bg: #f7f8fa;          /* cinza bem claro */
  --panel: #ffffff;       /* branco cartões */
  --text: #202124;        /* preto suave */
  --muted: #6b7280;       /* cinza médio */
  --line: #e5e7eb;        /* divisória */
  --accent: #e10600;      /* vermelho DM */
}

.footer.light{
  background: var(--bg);
  color: var(--text);
  padding: 56px 5% 28px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Linha superior centralizada */
  border-top: none; /* remove a antiga linha total */
  position: relative;
}

.footer.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 2600px);     /* controla comprimento da linha */
  height: 1px;                /* espessura */
  background: var(--accent);  /* vermelho DM */
  border-radius: 1px;
}


.footer-container{
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 28px 36px;
}

.footer-column{
  background: var(--panel);
background-color: #00000000;
}

.footer-column h3{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(225,6,0,.15);          /* sublinhado vermelho suave */
}

.footer-column ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li{
  margin: 8px 0;
  font-size: 15px;
  color: var(--muted);
}

.footer-column a{
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.footer-column a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s ease;
}
.footer-column a:hover::after{ width:100%; }
.footer-column a:hover{ color: var(--accent); }

.footer-column p{
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0;
}

.footer-logo{
  display:flex;
  justify-content:center;
  margin: 17px 0 14px;
}
.footer-logo img{
  width: 120px;      /* ajusta se quiser maior/menor */
  height:auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.08));
  transition: transform .25s ease;
}
.footer-logo img:hover{ transform: scale(1.03); }

.footer-bottom {
  display: flex;                     /* coloca lado a lado */
  justify-content: center;           /* centraliza o conjunto no meio */
  align-items: center;
  gap: 8px;                          /* espaçamento entre logo e texto */
  color: var(--muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  width: min(60%, 900px);            /* mantém linha curta e centralizada */
  margin: 40px auto 0;
  border-radius: 2px;
}

.footer-bottom img {
  width: 100px;                       /* ajusta o tamanho da logo */
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.1));
  margin-right: 6px;
}

.footer-bottom p{
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1200px){
  .footer-container{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }
}
@media (max-width: 768px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-container{ grid-template-columns: 1fr; }
  .footer{ padding-left: 4%; padding-right: 4%; }
}

.footer-column ul.duas-colunas {
  columns: 2;            /* define duas colunas */
  column-gap: 12px;      /* diminui o espaçamento entre elas */
  text-align: left;
}

.footer-column ul.duas-colunas li {
  break-inside: avoid;   /* evita quebra feia entre colunas */
  margin: 0px 0 10px 0px;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  margin: 6px 0;
}

.social-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;                   /* espaço entre ícone e texto */
  transition: color 0.25s ease;
}

.social-list a i {
  color: var(--accent);       /* vermelho DM */
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-list a:hover {
  color: var(--accent);
}

.social-list a:hover i {
  transform: scale(1.15);
}

.footer-column a::after { display: none; }


