/* Home */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
}

html,
body {
  overflow-x: hidden;
}

section {
  scroll-margin-top: 100px;
  /* corrige scroll para seções */
}



@media (max-width: 991px) {
  header#cabecalho {
    height: 80px;
  }

  section {
    scroll-margin-top: 20px;
  }
}

@media (max-width: 575px) {
  header#cabecalho {
    height: 60px;
  }

  section {
    scroll-margin-top: 20px;
  }
}



/* cabeçalho fixo */
header#cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;            /* fica acima do conteúdo */
  background: #fff;         /* cor de fundo para não ficar transparente */
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); /* opcional: sombra */
}




#cabecalho .navbar {
  min-height: 100px;
  /* altura fixa do header */
}


.logo span {
  color: #800000;
}

/* Aumenta a fonte dos itens do menu */
.navbar .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  /* deixa mais marcante */
  letter-spacing: 0.5px;
  /* melhora a legibilidade */
}

/* Fundo vermelho no botão hamburguer */
.navbar-toggler {
  border-color: #800000;
  /* borda do mesmo tom */
  color: #800000;
}

.navbar-nav .nav-link.active {
  color: #fff !important;
  background-color: #800000;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
  background-color: rgba(128, 0, 0, 0.85);

}

.nav-link {
  color: #707373;
  text-align: center;
  padding: 0.5rem 1rem;
}

.navbar-toggler {
  border: 1px solid #800000;
  padding: 6px 10px;
  border-radius: 6px;
}

ul li::marker {
    color: #800000; /* cor bordô */
  }


#menu {
  padding-top: 1rem;
}



@media (max-width: 991.98px) {

  /* Aplica margem no logo e no botão hamburguer */
  .navbar-brand,
  .navbar-toggler {
    margin-top: 1rem;
    /* espaço acima */
    margin-left: 1rem;
    /* espaço à esquerda */
    margin-right: 1rem;
    /* espaço à direita */
  }

  /* Se o logo for imagem ou span interno */
  .navbar-brand img,
  .navbar-brand span {
    margin-left: 0.5rem;
    /* pequeno respiro interno */
  }
}




/* Cabeçalho Hellen */

.logo {
  font-weight: bold;
  color: #800000;
  font-size: 1.8rem;
}

.hero {
  height: 100vh;
  background-image: url('/public/imagens/helen.jpg');
  /* <-- barra no início */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* centraliza verticalmente */
  align-items: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;


}

.scroll-down-arrow {
  margin-bottom: 100px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;

  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);


}


.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  animation-play-state: paused;

  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);



}

.scroll-down-arrow {
  display: inline-block;
  margin-top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  animation-play-state: paused;
  position: relative;

  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);


}

.scroll-down-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-right: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.scroll-down-arrow:hover::before {
  transform: rotate(45deg) translateY(3px);
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .scroll-down-arrow {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .scroll-down-arrow {
    width: 22px;
    height: 22px;
  }
}


@media (max-width: 540px) {
  h2 {
    font-weight: 700 !important;
    font-size: 2rem !important;
    color: #800000 !important;
    padding: 0.3rem 0.7rem !important;
  }
}



@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ativa animações quando a classe animate está no body */
body.animate .hero-title,
body.animate .hero-subtitle,
body.animate .scroll-down-arrow {
  animation-play-state: running;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}




/* Imagem no "Sobre" */
#sobre img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
}


.sobre-img {
  width: 100%;
  overflow: hidden;
  display: block;
  /* Altera de flex para block */
  height: 100%;
  /* Garante que acompanhe a altura do texto */
}

.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  /* para visual arredondado */
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Produções */

.production-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.production-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px -5px rgb(0 0 0 / 50%);
}

.production-item:hover .production-img {
  transform: scale(1.05);
}

.production-link {
  color: #800000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.production-item:hover .production-link {
  color: #601E1E;
  text-decoration: underline;
}

.production-item {
  height: auto;
}

.production-img {
  width: 100% !important;
  height: 22vw !important;
  max-height: 340px !important;
  min-height: 250px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  transition: transform 0.3s ease !important;
}





/* fato ou cao */



.hero-fato-cao {
  width: 100%;
  height: 60vh;
  background: url("/imagens/fato_ou_cao.avif") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
}

.hero-fato-cao-content {
  backdrop-filter: blur(4px);
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 600px;
  /* altura visível */
}

.video-container iframe {
  position: absolute;
  top: -50px;
  /* deslocamento para cima */
  left: 0;
  width: 100%;
  height: 600px;
  /* maior que o container para permitir corte */
  border-radius: 16px;
}

#conteudo-fato-cao {
  padding: 3rem 1rem 1.5rem;
  /* top right/left bottom */
}


#conteudo-fato-cao p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .video-container {
    height: 250px;
  }

  .video-container iframe {
    height: 350px;
    top: -50px;
  }

  #conteudo-fato-cao {
    padding: 3rem 1rem;
  }
}

.btn-outline-dark:hover {
  background-color: #800000;
  border-color: #800000 !important;
  color: #fff;
}

button.btn-outline-dark {
  border-color: #800000 !important;
  color: #800000;

}

.section-spacing-tight {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

#reconhecimento h2 {
  margin-top: 0px;
}



/* Unimedia */
.video-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.uniform-img {
  height: 100%;
  object-fit: cover;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

.uniform-img {
  max-height: 600px;
  object-fit: cover;
}

.carousel-img-wrapper {
  position: relative;
  width: 100%;
}

.carousel-caption-outside {
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 20px;
  color: #601E1E;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 10px;
  border-radius: 8px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.carousel-caption-outside p {
  margin: 0;
}

@media (max-width: 768px) {
  .carousel-caption-outside {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

#carouselCounter {
  text-align: center;
  color: #800000;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #carouselGaleria .carousel-item img.uniform-img {
    max-height: 300px;
    /* ajuste a altura conforme necessário */
    object-fit: cover;
    width: 100%;
  }
}

/* === Telas pequenas (celulares): sobe mais as setas === */
@media (max-width: 576px) {

  .carousel-control-prev,
  .carousel-control-next {
    top: -10%;
    /* ✅ sobe bem as setas em carrossel comum */
    width: 12%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 0.8rem;
  }
}


/* Troca de conteudo */


.video-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.episode-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.episode-title {
  font-size: 1.4rem;
  color: #800000;
  font-weight: 600;
}

.section-title {
  color: #800000;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #601E1E;
  margin: 0 auto 40px auto;
  border-radius: 4px;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: bold;
  color: #800000;
  font-size: 1.4rem;
}

.navbar-brand:hover {
  color: #601E1E;
}

.nav-link {
  color: #800000 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #601E1E !important;
}

.custom-carousel-icon {
  font-size: 3rem;
  color: #800000;
  /* cor que você quiser */
  font-weight: bold;
}


.uniform-img-discurso {
  max-height: 600px;
  object-fit: contain;
  /* agora não vai mais cortar a imagem */
  width: 100%;
  background-color: #f7f7f7;
  /* cor de fundo para preencher espaços vazios, se desejar */
}


/* Discurso Indigesto */

.carousel-caption-outside-discurso {
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 20px;
  color: #601E1E;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 10px;
  border-radius: 8px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.carousel-caption-outside-discurso p {
  margin: 0;
}


@media (max-width: 768px) {
  .carousel-caption-outside-discurso {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}


/* EBAC */


.sublegenda {
  color: #800000;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem !important;
    font-weight: 600;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  .sublegenda {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.3rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  .sublegenda {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .uniform-img {
    height: 260px;
    object-fit: cover;
    width: 100%;
  }
}


/* === Estilo base do depoimento === */
#carouselDepoimentos .depoimento-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  position: relative;
  height: auto;
  /* remove altura fixa */
}

/* Imagem responsiva sem corte */
#carouselDepoimentos .depoimento-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
}

/* Texto e autor */
#carouselDepoimentos .depoimento-text {
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow: auto;
  flex-grow: 1;
}

#carouselDepoimentos .depoimento-autor {
  flex-shrink: 0;
  margin-top: 1rem;
}

/* === Setas === */
#carouselDepoimentos .carousel-control-prev,
#carouselDepoimentos .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  opacity: 1;
}

#carouselDepoimentos .carousel-control-prev-icon,
#carouselDepoimentos .carousel-control-next-icon {
  background-color: #800000;
  border-radius: 50%;
  padding: 0.6rem;
}

/* === Responsivo === */
@media (max-width: 768px) {
  #carouselDepoimentos .depoimento-container {
    max-width: 100%;
    padding: 1rem;
  }

  #carouselDepoimentos .depoimento-img {
    max-height: 280px;
  }

  #carouselDepoimentos .carousel-control-prev,
  #carouselDepoimentos .carousel-control-next {
    width: 12%;
    top: 45%;
  }

  #carouselDepoimentos .carousel-control-prev-icon,
  #carouselDepoimentos .carousel-control-next-icon {
    padding: 0.8rem;
  }
}



@media (max-width: 576px) {
  .carousel-counter {
    font-size: 0.8rem;
    padding: 4px 8px;
    right: 10px;
    bottom: 8px;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  #carouselDepoimentos .depoimento-container {
    height: auto;
    max-width: 100%;
    padding: 1rem;
  }

  #carouselDepoimentos .depoimento-img {
    height: auto;
    max-height: 300px;
  }

  #carouselDepoimentos .carousel-control-prev,
  #carouselDepoimentos .carousel-control-next {
    width: 12%;
  }

  #carouselDepoimentos .carousel-control-prev-icon,
  #carouselDepoimentos .carousel-control-next-icon {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  #carouselDepoimentos .depoimento-container {
    height: auto;
    max-width: 100%;
    padding: 1rem 2rem;
    /* 🔧 espaço para evitar colisão com as setas */
  }

  #carouselDepoimentos .depoimento-img {
    height: auto;
    max-height: 300px;
  }

  #carouselDepoimentos .carousel-control-prev,
  #carouselDepoimentos .carousel-control-next {
    width: 8%;
    /* 🔧 menor */
    top: 45%;
    /* 🔧 um pouco acima */
  }

  #carouselDepoimentos .carousel-control-prev-icon,
  #carouselDepoimentos .carousel-control-next-icon {
    padding: 0.7rem;
    /* 🔧 menor */
  }
}

/* NUMEN */


/* Botão com contorno leve */
.btn-numen-soft {
  background-color: transparent;
  color: #800000;
  border: 1px solid #800000;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-numen-soft:hover {
  background-color: #800000;
  color: #fff;
}

/* Grid dos botões */
.btn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

/* Estilo base para qualquer botão */
.btn:hover {
  opacity: 0.9;
  transition: 0.3s ease;
}

/* Responsividade para cartões (opcional se quiser usar com cards) */
@media (max-width: 576px) {
  .min-card-height {
    min-height: auto;
  }
}

/* ícone bordô */
.icon-bordo {
  color: #800000;

}

.icon-bordo {
  color: inherit;
  /* pega a cor atual do botão */
  transition: color 0.3s ease;
}

/* Contato */
#contato .btn-dark {
  background-color: #b8a888;
  border-color: #b8a888;
  color: #fff;
}

#contato .btn-dark:hover {
  background-color: #a19275;
  border-color: #a19275;
}

#contato .btn-outline-success {
  color: #800000;
  border-color: #800000;
}

#contato .btn-outline-success:hover {
  background-color: rgba(128, 0, 0, 0.85);
  color: #fff;
}

#contato .text-dark i {
  transition: color 0.3s;
  color: #6c757d;
}

#contato .text-dark i:hover {
  color: #800000;
}

.choices__item--selectable.is-highlighted {
  background-color: #800000 !important;
  color: #fff !important;
  opacity: 1;
}

a.text-dark {
  color: #6c757d !important;
}

a.text-dark:hover {
  color: #800000 !important;
}

#contato .form-control:focus,
#contato .form-select:focus {
  border-color: #800000;
  box-shadow: 0 0 0 0.2rem rgba(184, 168, 136, 0.25);
}


@media (max-width: 1024px) {
  #carouselGaleria .carousel-item img.uniform-img {
    max-height: 410px;
    /* ajuste a altura conforme preferir */
    width: 100%;
    object-fit: cover;
  }
}

.btn-outline-success {
  color: #800000;
  border-color: #800000;
}

.btn-outline-success:hover {
  background-color: #800000;
  color: #fff;
  border-color: #800000;

}

.text-maroon {
  color: #800000;
}



#servicos .border>div:first-child {
  color: #800000;
}


.servico-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.production-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.production-img {
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.production-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #800000;
}

.production-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
  .production-img {
    max-height: 160px;
  }

  .production-item p {
    font-size: 0.85rem;
  }
}


.video-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper img {
  display: block;
  width: 100%;
  border-radius: 8px;
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}

.video-wrapper:hover img {
  filter: brightness(0.8);
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  /* antes era 48px */
  height: 32px;
  /* antes era 48px */
  transform: translate(-50%, -50%);
  pointer-events: none;
  fill: white;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.video-wrapper:hover .video-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}


/* Lightbox (fundo escuro ao clicar na imagem) */
.lightbox {
  display: none;
  /* escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}


/* Imagem expandida */
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Botão X de fechar */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: #ff4d4d;
}

/* Responsivo */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 80%;
  }

  .lightbox .close {
    font-size: 2rem;
    top: 15px;
    right: 20px;
  }
}


#carouselGaleria .uniform-img {
  cursor: pointer;
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 768px) {
  .carousel-item img {
    max-height: 300px;
  }

  .hero-content {
    font-size: 1rem;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 75%;
  }
}

@media (max-width: 480px) {
  .carousel-item img {
    max-height: 220px;
  }

  .hero-content {
    font-size: 0.9rem;
  }

  .lightbox .close {
    font-size: 2rem;
    top: 10px;
    right: 15px;
  }
}


.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  justify-content: center;
  align-items: center;
  z-index: 1055;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 1rem;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox .close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}
