/*
Theme Name: pe-direito
*/
@font-face {
  font-family: "Thunder-BoldLC";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/Thunder-BoldLC.otf") format("opentype");
}

/* Fonte MADE Outer Sans Thin */
@font-face {
  font-family: "MADE Outer Sans Thin";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/MADE Outer Sans Thin.otf") format("opentype");
}

/* Fonte TrashHand */
@font-face {
  font-family: "TrashHand";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/TrashHand.TTF") format("truetype");
}
@font-face {
  font-family: "MADE Outer Sans Bold PERSONAL USE";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/MADE Outer Sans Bold PERSONAL USE.otf") format("truetype");
}

@font-face {
  font-family: "MADE Outer Sans Bold PERSONAL USE";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/MADE Outer Sans Bold PERSONAL USE.otf") format("truetype");
}

@font-face {
  font-family: "MADE Outer Sans Medium PERSONAL USE";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/MADE Outer Sans Medium PERSONAL USE.otf") format("truetype");
}

@font-face {
  font-family: "MADE Outer Sans Alt Light PERSONAL USE";
  src: url("https://pedireitofilmes.com.br/wp-content/themes/pedireitofilmes/assets/fonts/MADE Outer Sans Alt Light PERSONAL USE.otf") format("truetype");
}

/* INICIO */
#logo-amarelo {
  position: relative;
  max-width: 100%;
  /*left: 8px;*/
  transition: all 0.3s ease-in-out;
  opacity: 0; /* Em vez de display: none */
  visibility: hidden; /* Esconde sem remover do fluxo */
}

#logo-amarelo.show {
  opacity: 1;
  visibility: visible;
}

/* Quando o logo atinge o topo, ele fica fixo */
#logo-amarelo.fixed {
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 1000;
    width: auto;
}

.menu-fixo {
    position: fixed !important;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: black;
    padding: 10px;
}

#logo-amarelo img {
  position: absolute;
  top: -22px;
  width: 31px;
  /*left: -8px;*/
  height: auto;
  transition: all 0.3s ease-in-out;
  z-index: 100000;
}
.header.desktop-menu {
  transition: opacity 0.3s ease-in-out;
}

/* Esconde no mobile */
@media (max-width: 768px) {
  #logo-amarelo img {
    width: 25px;
}
}

.mobileLogo {
  width: 350px;
}

/* Ajuste do ícone do menu mobile */
#menu-icon {
  width: 40px;
  cursor: pointer;

  z-index: 200; /* Garante que fique sempre visível */
}

/* Estilização do menu mobile */
#menu-list {
  display: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background: #222; /* Cinza escuro */
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  min-width: 180px;
}

/* Lista sem marcadores */
#menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Itens do menu */
#menu-list li {
  margin: 10px 0;
}

#menu-list a {
  color: #F8B317; /* Letras amarelas */
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}

/* Ícone de fechar */
#close-menu {
  position: absolute;
  top: 77px;
  right: 29px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  z-index: 1000;
  display: none; /* Oculta por padrão */
}

/* Exibir quando o menu estiver aberto */
#menu-list.show + #close-menu {
  display: block;
}
/* Pop-up ocupa 75% da tela com fundo preto */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
}

.popup-overlay {
  display: none; /* Escondido por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Fundo escuro com transparência */
  z-index: 999; /* Fica abaixo do pop-up */
}


#videoContainer {
  display: flex;
  position: relative;
  width: 100%;
  
  margin: 0 auto;
  justify-content: center;}

  #videoContainer iframe {
    width: 800px !important;
    height: 450px !important;
}


.popup-active .gallery-item {
  pointer-events: none;
}

/* Botão de fechar (X) branco, fixo no topo e fora do pop-up */
.close-btn {
  position: fixed;
  top: -40px;
  right: 15px;
  background: none;
  color: white;
  border: none;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1500;
}

.close-btn:hover {
  opacity: 0.7;
}

/* Botões de navegação */
/* .prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.prev-btn svg, .next-btn svg {
  width: 35px; 
  height: 35px;
} */

/* Aplicar estilo somente quando o vídeo for no formato de celular dentro do pop-up */
#videoContainer iframe.formato-celular {
  max-width: 320px;
  aspect-ratio: 16 / 9;
  outline: 3px solid red; /* Teste visual — apenas no pop-up */
}
/*


.prev-btn:hover, .next-btn:hover {
  background: transparent;
}

/* Estilo para o contador do vídeo */
.video-counter {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 20px;
}

.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button {
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  opacity: 0.7;
  background-color: #000000;
  border-radius: 5px;
  color: #ffffff;
  font-size: 24px;
  display: none;
}

.eael-ext-scroll-to-top-button {
  position: fixed;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eael-ext-scroll-to-top-button:hover {
  opacity: 1;
}

/* fim popup */

.video-title{
  font-size: 70px;
  font-family: 'Thunder-BoldLC';
}
/*
.eael-filterable-gallery-loadmore {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.eael-gallery-load-more {
  margin-top: -10px !important; /* Ajuste o valor conforme necessário 
}

.video-container, .video-item {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
*/

/* Faz o título, subtítulo e botão "Assistir" ficarem ocultos por padrão */
.gallery-item-thumbnail-wrap .video-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2); /* Começa pequeno */
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0; /* Inicialmente invisível */
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  z-index: 10;
}

/* Faz a exibição do conteúdo quando o item é hoverado */
.gallery-item:hover .video-info {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); /* Cresce ao tamanho normal */
}

/* Estiliza o fundo amarelo ao passar o mouse */
.video-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FEB100C4;
  opacity: 0; /* Começa invisível */
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* Faz o fundo amarelo aparecer quando o item é hoverado */
.gallery-item:hover .video-popup-bg {
  opacity: 1;
}

/* Estiliza o botão "Assistir" */
.watch-button {
  background-color: #7A50A3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'MADE Outer Sans Thin';
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transform: scale(1); /* Mantém o botão normal dentro do .video-info */
}

/* Suaviza o efeito quando o botão é hoverado */
.watch-button:hover {
  background-color: #9b68c5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Thunder-BoldLC';
}

h2, span, a {
  font-family: 'Thunder-BoldLC';
}
p {
  font-family: 'MADE Outer Sans Thin';
}

.section {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px); 
  overflow: hidden;
}

.section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover; 
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0; /* Garantir que o header esteja alinhado à esquerda */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10;
}

.header .logo {
  height: 50px;
}
.header .logo img{
  width: 50%;
}

.menu {
  position: absolute;
  top: 68%; /* Centraliza verticalmente */
  right: 20px; /* Ajuste conforme necessário */
  transform: translateY(-50%); /* Corrige a centralização */
  font-size: 25px;
}

.menu button {
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #F8B317;
}

.menu ul {
  position: static; /* Remove a posição absoluta do dropdown */
  background: transparent; /* Remove o fundo preto */
  padding: 0; /* Remove o padding extra */
  width: auto; /* Evita que o menu fique com largura fixa */
}

.menu ul li {
  display: inline-block; /* Mantém os itens lado a lado */
  padding: 0 15px; /* Ajusta o espaçamento entre os itens */
}

.menu ul li a {
  color: #F8B317;
  text-decoration: none;
  font-weight: bold;
  font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
  font-size: 16px;
}

.menu ul li a:hover {
  color: white; 
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.center-logo img {
  max-width: 550px;
  width: 100%;
  height: auto;
}
.new-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 0; 
}

.new-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 64%); 
  z-index: 1;
}

.new-section * {
  position: relative; 
  z-index: 2;
}

.elementor-container {
  width: 100%;
  margin: 0 auto;
}

.elementor-column {
  width: 100%;
}

.elementor-widget-wrap {
  text-align: center; 
}

.elementor-heading-title {
  color: rgb(255, 255, 255);
  font-family: "Thunder-BoldLC";
  font-size: 58px;
  font-weight: bold;
  letter-spacing: 1.8px;
}

.elementor-spacer {
  height: 40px; 
}

.elementor-spacer-inner {
  height: 100%;
}

.gallery-section {
  padding: 0;
  background-color: #f4f4f4;
}

.container-fluid {
  width: 100%;
  padding: 0 !important;
}

.col-md-4.col-sm-6 {
  padding: 0;
  /* height: 380px; */
}
  
.row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
  
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item-thumbnail-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.gallery-item-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .video-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FEB100C4;
  transition: opacity 0.3s ease; 
  z-index: 5;
} */

.small-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2); 
  width: 270px; 
  height: auto;
  z-index: 10;
  opacity: 0; 
  transition: transform 0.4s ease, opacity 0.4s ease; 
}

.gallery-item:hover .video-popup-bg {
  opacity: 1; 
}

.gallery-item:hover .small-img {
  transform: translate(-50%, -50%) scale(1); 
  opacity: 1; 
}
/* Esconder o menu mobile por padrão */
.mobile-menu {
  display: none;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .desktop-menu {
    display: none; /* Esconder o menu desktop */
  }
  .mobile-menu {
    display: flex; /* Exibir o menu mobile */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    padding-left: 19px;
  }
}
  @media (max-width: 1200px) {
    .col-md-4 {
      width: 33.33%; 
    }
  }
  
  @media (max-width: 768px) {
    .col-sm-6 {
      width: 50%; 
    }
  }
  
  @media (max-width: 576px) {
    .col-sm-6 {
      width: 100%; 
    }
  }
  .row.no-gutters {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

.image-column {
    background-image: url('../img/oquefazemos-hero.jpg');
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .image-title {
    font-size: 70px;
    margin-bottom: 20px;
    color: #F8B317;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.9px;
    font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .image-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 547px;
    margin: 0 auto;
    font-family: 'MADE Outer Sans Thin';
  }
  
  .contact-title {
    font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .contact-info {
    font-size: 14px;
    margin-bottom: 20px;
    color: #000;
    font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
  }
  
  .contact-info span {
    margin: 0 5px;
  }
  
  /* Estilização do formulário */
  .contact-form {
    padding: 30px;
    font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
  }
  

  .form-fields-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .half-width input {
    width: 100%;
  }
  
  .full-width textarea {
    width: 100%;
  }
  
  .form-field input,
  .form-field textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .form-field textarea {
    height: 120px;
  }
  
  .submit-button {
    background-color: #999999;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
  }
  
  .submit-button:hover {
    background-color: #F8B317;
  }

.footer {
    background-color: #021212;
    color: white;
    padding: 40px 0;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .logo-img {
    max-width: 150px; 
    height: auto;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;  
  }
  
  .social-icon {
    margin: 0 15px;
    display: inline-block;
  }
  
  .social-icon img {
    width: 30px; 
    height: auto;
  }
  
  .footer-rights p {
    font-size: 14px;
    margin-top: 20px;
  }
  .eael-gallery-load-more:hover .eael-filterable-gallery-load-more-icon i {
    color: white;
}
 
  .eael-filterable-gallery-loadmore {
    text-align: center;
  }
  
  #load-more1 {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #7a50a3;
    color: #F8B317;
    padding: 10px 0;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Made Outer Sans";
    font-weight: 400;
  }

  #load-more1:hover {
    color: #FFF;
  }

  .spacesize {
    height: 50px;
  }

  .spaceform {
    padding: 20px 100px 20px 100px;
  }

  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }

    .spaceform{
      padding: 20px;
    }

    .elementor-heading-title {
      font-size: 40px;
    }
  }
  
@media (max-width: 768px) {
  .watch-button {
    font-size: 16px;
    padding: 8px 16px;
  }
}


/* .next-btn, .prev-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.next-btn:hover, .prev-btn:hover {
  background-color: transparent;
}

.next-btn {
  right: 23px;
}

.prev-btn {
  left: 10px;
} */

.category-slider {
  background-color: #f8f8f8;
  padding: 10px 0;
  overflow: hidden;
}

.swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  transition-timing-function: linear !important; 
}

.swiper-slide {
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}


.swiper-slide:nth-child(1) { color: #000; }
.swiper-slide:nth-child(2) { color: #000; }
.swiper-slide:nth-child(3) { color: #000; }
.swiper-slide:nth-child(4) { color: #000; }
.swiper-slide:nth-child(5) { color: #000; }
.swiper-slide:nth-child(6) { color: #000; }
.swiper-slide:nth-child(7) { color: #000; }
.swiper-slide:nth-child(8) { color: #000; }
.swiper-slide:nth-child(9) { color: #000; }
.swiper-slide:nth-child(10) { color: #000; }
.swiper-slide:nth-child(11) { color: #000; }

.swiper-slide:hover {
  color: #7A50A3 !important; /* Cor roxa */
  transition: color 0.3s ease;
}
.swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}


.swiper::before,
.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%; 
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.swiper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.swiper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.header .logo2 img {
  width: 24%;
}



.portfolio-section[style*="background-color: #fdcb05;"] {
  padding-top: 100px;
  padding-bottom: 100px;
}

.portfolio-section[style*="background-color: #fdcb05;"] .titlePortifolio {
  max-width: 500px;
  margin-right: auto;
}

.portfolio-section[style*="background-color: #fdcb05;"] .text {
  max-width: 500px;
  margin-left: auto;
}


.portfolio-section.row.align-items-center {
  flex-direction: row;
}

.portfolio-section.row.align-items-center .col-md-6.order-md-1.order-2 {
  order: 1;
}

.portfolio-section.row.align-items-center .col-md-6.order-md-2.order-1 {
  order: 2;
}


.portfolio-section .col-md-6.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 768px) {
  .portfolio-section {
      flex-direction: column;
      text-align: center;
  }

  .portfolio-section .col-md-6 {
      order: 1;
      margin-bottom: 30px;
  }

  .portfolio-section .col-md-6.order-md-1.order-2,
  .portfolio-section .col-md-6.order-md-2.order-1 {
      order: 1;
  }

  .portfolio-section .text {
      max-width: 100%;
  }

  .portfolio-section iframe {
      max-width: 100%;
  }
}

.text {
  color: #fff;
  font-weight: 400;
  font-family: 'thunder-boldlc';
}

.text p {
  font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    font-family: "MADE Outer Sans Thin";
}

.text h2 {
  color: rgb(248, 179, 23);
}

.portfolio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: justify;
}

.pdmobile {
  padding: 0 50px !important;
}



@media (max-width: 768px) {
  .portfolio-section {
    flex-direction: column;
    text-align: left;
  }

  .portfolio-section .col-md-6 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .portfolio-section .text {
    max-width: 100%; 
  }

  .pdmobile {
    padding: 0 40px !important;
  }
}

@media (max-width: 575px) {

  .gallery-item .video-info {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

 
  .video-popup-bg {
    background-color: #000000C4 !important; 
    opacity: 1 !important; 
    transition: none !important; 
  }

 
  .watch-button {
    transform: scale(1) !important; 
  }
  
 
  .watch-button:hover {
    background-color: #9b68c5 !important; 
  }
}


.footer-rights a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  font-family: "MADE Outer Sans Thin";
  font-size: 14px;

}


.eael-filterable-gallery-loadmore {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #7a50a3;
  
  padding: 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  border: none;

}

.eael-filterable-gallery-loadmore a {
  cursor: pointer;
  text-decoration: none;
  font-family: "Made Outer Sans";
  font-weight: 400;
  color: #F8B317;
}

.form-row1 {
	width: 100%;
}


.video-hero {
  position: relative;
  width: 100%;
  height: 60vh; 
  overflow: hidden;
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: "thunder-boldlc";
  width: 100%;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.video-overlay h1 {
  font-size: 60px;
  text-align: left;
  padding: 0px 150px;
}

.text2-2 {
  margin-right: auto;
}

.portfolio-section {
  display: flex;
  align-items: center;
  padding: 100px 50px;
  box-sizing: border-box;
}

.portfolio-section-1 {
  background-color: #F8B317;
  flex-direction: row;
}

.portfolio-section-2 {

  color: #fff;
  justify-content: center;
}

.portfolio-section-3 {
  background-color: #ecedef;
  flex-direction: row;
}

.portfolio-section-4 {
  background-color: #000;
  color: #fff;
  flex-direction: row-reverse;
}

.text-container, .video-container {
  flex: 1;
  padding: 0 80px;
}

.text-container h2 {
  margin-bottom: 20px;
}

.video-container iframe {
  width: 100%;
  height: 315px;
}

@media (max-width: 768px) {
  .portfolio-section {
      flex-direction: column;
      padding: 50px 30px;
  }

  .video-overlay h1 {
    padding: 0px 30px;
  }

  .portfolio-section-1, .portfolio-section-3, .portfolio-section-4 {
      flex-direction: column;
  }

  .text-container, .video-container {
      width: 100%;
      padding: 0;
  }

  .video-container iframe {
      height: 200px;
  }

  .header .logo2 img {
    width: 30%;
  }

  .menu {
    
    top: 50%;
   ;
  }
}

.swiper-wrapper a{
  font-family: 'MADE Outer Sans Alt Light PERSONAL USE';
}

.eael-filterable-gallery-loadmore span {
  font-family: 'made outer sans thin';
  font-size: 15px;
  letter-spacing: 3px;
}

.swiper.swiper-initialized.swiper-horizontal.swiper-free-mode.swiper-backface-hidden {
  z-index: 0;
}

@media (max-width: 568px) {
  .logo-img {
    max-width: 130px;
}

.footer {
  padding: 40px 10px;
}

.social-icon {
  margin: 0px 7px;
  display: inline-block;
}
.prev-btn svg, .next-btn svg {
  width: 25px;
  height: 50px;
}

#videoContainer iframe {
width: 100% !important;
height: 225px !important;
}

div#videoCounter {
  display: none !important;
}

.popup {
  width: 400px;
  height: 400px;
}
}

.custom-title-home {
  font-size: 70px !important;
  margin-bottom: -8px;
}

@media (max-width: 768px) {
  .custom-title-home {
    font-size: 48px !important;
  }
}

.category-slider .swiper {
    overflow: visible !important;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
    transition-timing-function: unset !important;
    transition-duration: 0s !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
}

.swiper-slide {
    margin-right: 0px !important;
    flex-shrink: 0;
    flex-basis: auto;
    width: auto !important;
    white-space: nowrap;
}

.video-subtitulo {
  margin-top: -27px;
  margin-bottom: 25px;
}

@media (max-width:1222px) and (min-width:1101px) {
  .video-title {
    font-size: 53px;
  }
}

@media (max-width:1100px) and (min-width:576px) {
  .video-title {
    font-size: 35px;
    padding-bottom: 8px;
  }
}

@media (max-width:575px){
  .video-title {
    font-size: 47px;
    margin-bottom: 15px;
  }
}

.custom-tamanho-letra-categorias {
  font-size: 22px !important;
}

@media (max-width: 687px) {
  .category-slider .swiper-wrapper {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;

   
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }

  .category-slider .swiper-wrapper::-webkit-scrollbar {
    display: none; 
  }

  .category-slider .swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

.custom-title-categorias {
  font-size: 70px;
  margin-top: 43px;
  margin-bottom: -10px
}

@media (max-width: 768px) {
    .custom-title-categorias {
        font-size: 48px !important;
    }
}

.custom-padding-elementos-footer {
  padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 375px) {
  .custom-padding-elementos-footer {
    padding-left: 0;
    padding-right: 0;
  }
}


@media (max-width: 767px) {
  .image-content {
    margin-bottom: 50px;
  }
}

@media(max-width: 768px) {
  .custom-titulos-padronizar {
    font-size: 38px !important;
  }
}

/* ===== Aviso de Cookies ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;   /* nunca maior que a largura da tela */
  background: #000;
  color: #fff;
  padding: 20px 40px;
  box-sizing: border-box; /* inclui padding dentro da largura */
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-size: 15px;
  text-align: center;
  flex-wrap: wrap;
  overflow-x: hidden; /* impede estourar horizontalmente */
}

#cookie-banner p {
  margin: 0;
  font-family: inherit;
  word-wrap: break-word; /* quebra texto se necessário */
}

#cookie-banner a {
  color: #f1c40f;
  text-decoration: underline;
  font-family: inherit;
}

#cookie-banner button {
  background: #f1c40f;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

#cookie-banner button:hover {
  background: #d4ac0d;
}

/* Desktop */
@media (min-width: 992px) {
  #cookie-banner p {
    flex: 0 1 1000px;
  }
  #cookie-banner button {
    margin-left: 6px;
  }
  #cookie-banner {
    gap: 8px;
  }
}

/* Tablet e mobile */
@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px 20px;
  }
  #cookie-banner button {
    width: 100%;
    max-width: 250px;
  }
}

/* Smartphones bem pequenos */
@media (max-width: 361px) {
  #cookie-banner {
    padding: 12px 10px; /* menos padding para caber */
    font-size: 13px;
  }
  #cookie-banner button {
    width: 100%;
    max-width: 200px;
  }
}


.custom-titles-politica {
  font-size: 30px !important;
  margin-top: 50px;
}


@media (max-width: 365px) {
  .custom-titulo-principal-politicas {
    font-size: 35px;    
    margin-bottom: 55px !important;
  }

  .custom-titles-politica {
    font-size: 20px !important;
  }
}

.custom-padding-section-politias {
  padding-top: 50px;
  padding-bottom: 15px;
}

.custom-recaptcha {
  margin-top: -8px;
  margin-bottom: 15px;
  max-width: 100%;
  overflow: hidden;
}