
/* ESTILO GERAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }

body{
    background-color: black;
    height: 100vh;  
    padding-top: 120px; /* para que o conteúdo não fique escondido atrás do header fixo */
}
.interface{
    max-width: 1280px;
    margin: 0 auto;
}

/* ESTILO DO VÍDEO */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Escurecimento do vídeo */
}
/* ESTILO HEADER */
header {
    position: fixed; /* Fixa no topo */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 7% 20px 7%; /* topo, direita, baixo, esquerda */
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Header escurecido ao rolar */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
/* Header escondido ao rolar para baixo */
header.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

header a:hover {
    color: white;
    transform: scale(1.03);
}

/* LINKS DO MENU COM LINHA ANIMADA */
header nav.menu-desktop  ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    margin-left: -400px;
}

header nav.menu-desktop  ul li {
    display: inline-block;
    padding: 0 25px;
    font-family: 'Bebas Neue';
}

header nav.menu-desktop  ul li a {
    position: relative;
    transition: color 0.3s ease;
}

header nav.menu-desktop  ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: red;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}
.logo img {
    max-height: 90px; /* ajuste conforme necessário */
    height: auto;
    width: auto;
    display: block;
  }
  

/* BOTÃO DE CONTATO */
header .btn-contact button {
    padding: 12px 40px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    background-color: red;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

header .btn-contact {
    padding-right: 6%;
}

header .btn-contact button:hover {
    box-shadow: 0 0 6px #474646;
}

/* ESTILO HERO SECTION */
.hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 80vh;
    text-align: left;
    color: white;
    padding: 20px 6%;
    max-width: 1280px;
}

.subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title {
    font-size: 80px;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Impact', sans-serif;
}
.title span{
    font-family: 'Times New Roman', Times, serif;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #474646;
    color: white;
}

.btn-primary:hover {
    box-shadow: 0px 0px 8px ;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: red;
    color: black;
}

.btn-separator {
    font-size: 20px;
    font-weight: bold;
    color: black;
    background-color: red;
    border-radius: 40px;
}
/* ESTILO ABOUT SECTION */
.about {
    padding: 80px 6%;
    text-align: left;
    color: white;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

/* NOVO BLOCO: GRADE DE LOGOS */
.about-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-row img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-row img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);

}
/* ESTILO ABOUT-DETAILS SECTION */
.about-details {
    padding: 80px 6%;
    color: white;
}

.about-details-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    max-width: 50%;
    text-align: left;
}
.about-heading-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .about-icon-selo {
    max-height: 32px;
    margin-top: 4px; /* alinhamento fino com o topo do texto */
  }
  
.about-heading {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-subheading {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
}

.about-paragraph {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.about-image {
    max-width: 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(80%);
    transition: filter 0.3s ease;
    border-radius: 4px;
}
.about-image img:hover {
    filter: brightness(100%);
}
/* Ajuste específico para imagem da seção 'Nossa Missão' */
.imagem-missao img {
  width: 100%;
  height: 600px;
  max-width: 500px; /* ajuste conforme necessário */
  margin: 0 auto;
  display: block;
}

/* NÚMEROS EXPRESSIVOS COM VISUAL PADRÃO */
.about-stats {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  color: white;
}

.stat-box {
  text-align: left;
  min-width: 120px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.stat-box p small {
  font-size: 20px;
  color: #ccc;
}
/* IMAGENS FINAIS DA SEÇÃO ABOUT */
.about-logos-final {
    padding: 60px 6%;
    background-color: black;
    text-align: center;
  }
  
  .logo-final-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .logo-final-row img {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo-final-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  

/* PORTFOLIO COM VÍDEOS LOCAIS */
.portfolio {
    padding: 80px 6%;
    color: white;
    text-align: left;
    background: black;
}

.portfolio-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.portfolio-video {
    position: relative;
    overflow: hidden;
    background-color: #111;
    cursor: pointer;
}

.portfolio-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
}

/* TAMANHOS DIFERENCIADOS */
.portfolio-video.horizontal {
    aspect-ratio: 16 / 9;
    flex: 1 1 calc(50% - 20px);
    max-width: 600px;          /* controla a largura máxima */
}

.portfolio-video.vertical {
    aspect-ratio: 9 / 16;
    flex: 1 1 calc(20% - 20px);
    max-width: 285px;          /* controla a largura máxima */
}

.video-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 3px;
    z-index: 2;
}

/* ESTILO FORMULÁRIO */
.contact {
    padding: 80px 6%;
    color: white;
    text-align: left;
    background-color: black;
}

.contact-title {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}

.contact textarea {
    height: 150px;
}

.contact button {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.contact button:hover {
    background-color: white;
    transform: scale(1.02);
}
/* ESTILO RODAPÉ */
.footer {
    background-color: #111;
    color: white;
    padding: 60px 6% 30px;
    text-align: center;
}

.footer-logo img {
    max-width: 160px; 
    height: auto;
    display: block;
    margin: 0 auto;    /* centraliza horizontalmente se necessário */
  }

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 0;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.footer-nav ul li a:hover {
    color: red;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: red;
}

.footer-mission {
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 12px;
    color: #ccc;
}
/* ESTILO MENU-MOBILE */
.btn-abrir-menu i{
  color: red;
  font-size: 40px;
}
.menu-mobile{
  background-color: black;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 60%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.menu-mobile.ativo {
  transform: translateX(0);
}
.menu-mobile .btn-fechar{
  padding: 20px 4%;
}
.menu-mobile .btn-fechar i{
  color: red;
  font-size: 30px;
}
.menu-mobile nav ul{
  text-align: right;
  list-style: none;
}
.menu-mobile nav ul li a{
  color: white;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 4%;
  display: block;
}
.menu-mobile nav ul li a:hover{
  background-color: red;
}
.overlay-menu{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.overlay-menu.ativo {
  display: block;
}

@media (max-width:1200px){
  /* HERO */
  .title {
    font-size: 48px;
  }
  /* HEADER */
  .menu-desktop, .btn-contact{
    display: none;
  }
  .about-details-content,
    .about-details.alternate .about-details-content {
      flex-direction: column;
    }
    .about-text, .about-image{
      max-width: 100%;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .portfolio-grid .portfolio-video.horizontal {
      aspect-ratio: 16 / 9;
      grid-column: span 2; /* ocupa linha inteira por padrão */
    }
}
@media (min-width: 1201px) {
  .menu-mobile,
  .overlay-menu,
  .btn-abrir-menu {
    display: none;
  }
}


  