/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-gutter: stable; /* impede empurrão da barra de rolagem */

}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

body, html{
    overflow-x: hidden;
    width: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.5;
    overflow-y: clip; /* bloqueia vazamento lateral */

}

section, div, main {
    max-width: 100vw;
    overflow-x: clip; /* bloqueia vazamento lateral */
}

/* LINKS E BOTÕES */
a {
  text-decoration: none;
  color: inherit;
    justify-content: center;
    align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: bold;
  border-radius: 999px;
  text-align: center;
  transition: all 0.7s ease;
}

.btn-white {
  background-color: #fff;
  color: #000;
}

.btn-white:hover {
  background-color: #c4c2c2;
    transition: all 0.7s ease;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}

/* HEADER */
.header {
    display: flex;
    position: relative;
    height: 85px;
    justify-content: space-between;
    align-items: center;
    padding: 24px 64px;
    border-bottom: 2px solid #0c0c0c;
    background-color: #1A1A1A;
    box-shadow: #111111 4px 4px 4px 4px;
}

.header h1 {
  font-size: 28px;
  font-weight: 800;
}

.header nav {
  display: flex;
  gap: 32px;
}

.header nav a {
  font-size: 14px;
  color: #ccc;
}

.header nav a:hover {
    color: #0cc3f0;
    transition: color 1.2s ease;
}

.header img{
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 20px;
    opacity: 0.85;
    padding-top: 5px;
}

.header img:hover {
    transform: scale(1.02);
    transition: 0.4s;
    opacity: 1;
}

/* HERO */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 64px;
    flex-wrap: wrap;
    overflow: hidden;

    /* === Fundo com imagem e overlay === */
    background-image: url("img/background-home.png"); /* substitua pelo nome da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .stats{
    padding-top: 30px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  margin-top: 20px;
  color: #ccc;
  font-size: 18px;
}

.buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.hero-image img {
  width: 580px;
  height: 580px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.85;
    padding-top: 20px;
}

/* MARCAS */
.brands {
    width: 100%;
    overflow-x: auto; /* 👈 permite a rolagem horizontal */
    white-space: nowrap; /* 👈 impede quebra de linha das logos */
    padding: 70px 0;
    background: #111;
    user-select: none;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* <-- adiciona snap */
    -webkit-overflow-scrolling: touch;
    justify-items: center;
    overflow-y: clip; /* bloqueia vazamento lateral */

}

.brands-track {
    display: flex;
    gap: 80px;
    align-items: center;
    transition: transform 0.3s ease;
    padding: 0 60px;
    scroll-behavior: smooth;
    scroll-snap-type: none; /* track em si não precisa do snap */
    overflow-y: clip; /* bloqueia vazamento lateral */
}

.brands.grabbing {
    cursor: grabbing;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    scroll-snap-align: center; /* <-- item alinha ao centro */
    -webkit-user-drag: none;

}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    -webkit-user-drag: none;
}

.brand:hover img {
    transform: scale(1.15);
    transition: 0.7s;
}

.brand:hover {
    opacity: 0.85;
}

.brands::-webkit-scrollbar {
    display: none;
}



/* SOBRE */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 64px;
    gap: 40px;
}

/* Parte superior (título e subtítulo) */
.about-left {
    display: flex;
    text-align: center;
    max-width: 800px;
    flex-direction: row;
}

.about-left .tag {
    background-color: #111;
    color: #ccc;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 20px;
    margin-bottom: 20px;
    width: auto;
    letter-spacing: 2px;
    text-align: center;
}

.about-left .tag:hover {
    background-color: #222222;
    transition: 1s;
}

.about-left h3 {
    font-size: 2rem;
    margin-top: 5px;
    color: #fff;
    margin-left: 50px;
}

/* Linha com imagem + texto */
.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Imagem */
.about-bottom img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Texto “SOBRE NÓS” */
.about-right {
    text-align: left;
}

.about-right h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.about-right p {
    line-height: 1.6;
    color: #ccc;
}

.about-right .stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.about-right .stats div {
    text-align: center;
}

.about-right .stats strong {
    font-size: 1.8rem;
    color: #ffff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stats strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
}

.stats p {
  color: #ccc;
  font-size: 12px;
}

/* O QUE ENTREGAMOS PARA AS MARCAS */
.entregas {
    background-color: #111;
    padding: 100px 64px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1); /* borda sutil e elegante */
    border-radius: 24px; /* cantos levemente arredondados */
    margin: 80px auto;
    max-width: 1200px; /* mantém o retângulo centralizado na tela */
}

.entregas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.entregas-header h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.entregas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.entrega-card {
    position: relative;
    background-color: #0c0c0c;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.entrega-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.entrega-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.entrega-card:hover img:hover {
    transform: scale(1.08); /* aumenta levemente a imagem (zoom pra frente) */
    opacity: 1; /* opcional: deixa mais nítido no hover */
    z-index: 2; /* garante que fique acima de outros elementos */
}

.entrega-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.entrega-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.entrega-card i {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s ease;
}

.entrega-card:hover i {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsividade */
@media (max-width: 900px) {
    .entregas-header {
        flex-direction: column;
        text-align: center;
    }

    .entregas-header h3 {
        font-size: 28px;
    }

    .entregas-grid {
        gap: 24px;
    }

    .entrega-card img {
        height: 140px;
    }
}

/* DIFERENCIAIS */
.features {
  padding: 100px 64px;
  text-align: center;
  position: relative;
    background-image: url("img/background-home.png"); /* substitua pelo nome da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-content h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.features-content h4 {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 20px;
}

.features-content p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #aaa;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.features-grid div {
  background-color: #181818;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-grid div:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.05);
}

.features-grid h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.features-grid p {
  color: #aaa;
  font-size: 14px;
}

.counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.counter svg {
  width: 60px;
  height: 60px;
  opacity: 0.9;
}

.counter .count {
  font-size: 48px;
  font-weight: 800;
}

.counter p {
  color: #aaa;
  font-size: 14px;
}

.plus {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 4px;
    color: #0cc3f0; /* ou qualquer cor da sua identidade visual */
}
#count {
    font-size: 2rem;
    font-weight: 600;
}

/* CASTING */
.casting {
  padding: 100px 64px;
  text-align: center;
}

.casting h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
}

.casting-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.casting-grid div {
  text-align: center;
}

.casting-grid img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.casting-grid img:hover {
    width: 182px;
    height: 182px;
    cursor: pointer;
    transition: 0.8ms;
    box-shadow: 0 0 20px #ffffff;

}

.casting-grid p {
  font-size: 14px;
  color: #ccc;
}

/* FINAL SECTION */
.final {
  background-color: #090909;
  text-align: center;
  padding: 100px 64px;
}

.final h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.final p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #ccc;
}

.subfooter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 80px;
  text-align: left;
}

.subfooter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.subfooter p,
.subfooter a {
  color: #aaa;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.subfooter a:hover {
  color: #0cc3f0;
    transition: ease 0.6s;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
  }

  .features-content h3 {
    font-size: 32px;
  }

  .casting-grid img {
    width: 140px;
    height: 140px;
  }

    .casting-grid img:hover {
        width: 142px;
        height: 142px;
        cursor: pointer;
        transition: 0.8ms;
        box-shadow: 0 0 20px #ffffff;

    }

  .final h2 {
    font-size: 26px;
  }
}

/* ================================

   RESPONSIVIDADE GERAL

   ================================ */



/* Para telas maiores (Laptops / Tablets landscape) */

@media (max-width: 1200px) {

    /* Diminuir padding lateral geral */

    .header, .hero, .about, .entregas, .features, .casting, .final {

        padding-left: 40px;

        padding-right: 40px;

    }



    /* Header */

    .header img {

        width: 150px; /* Reduzir um pouco o logo */

        height: 150px;

    }



    /* Hero Section */

    .hero-text h2 {

        font-size: 52px;

    }



    .hero-image img {

        width: 500px;

        height: 500px;

    }



    /* About Section */

    .about-left h3 {

        font-size: 1.8rem;

        margin-left: 30px;

    }



    /* Entregas */

    .entregas {

        padding: 80px 40px;

    }

    /* MARCAS */
    .brands {
        padding: 60px 0;
    }

    .brands-track {
        gap: 60px;
        padding: 0 40px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand {
        font-size: 1.2rem;
        gap: 10px;
    }
}



/* Para tablets (Portrait) e smartphones grandes */

@media (max-width: 768px) {

    /* Diminuir padding lateral geral ainda mais */

    .header, .hero, .about, .entregas, .features, .casting, .final {

        padding-left: 20px;

        padding-right: 20px;

    }



    /* Header */

    .header {

        flex-direction: column; /* Empilha logo e navegação */

        height: auto; /* Altura automática */

        padding: 20px;

    }

    .header img {

        width: 120px; /* Reduzir logo para celular */

        height: 120px;

        margin-bottom: 15px; /* Espaço entre logo e nav */

    }

    .header nav {

        flex-direction: column; /* Links da navegação em coluna */

        gap: 10px; /* Espaço entre os links */

        text-align: center; /* Centraliza links */

        width: 100%;

    }

    .header nav a {

        font-size: 16px;

        padding: 8px 0; /* Aumenta área clicável */

        border-bottom: 1px solid rgba(255,255,255,0.1); /* Separador */

    }

    .header nav a:last-child {

        border-bottom: none; /* Remove borda do último item */

    }





    /* Hero Section */

    .hero {

        flex-direction: column; /* Empilha texto e imagem */

        text-align: center; /* Centraliza texto */

        padding-top: 50px;

        padding-bottom: 50px;

    }

    .hero-text {

        max-width: 100%; /* Ocupa toda a largura */

    }

    .hero-text h2 {

        font-size: 42px; /* Reduz tamanho do título */

    }

    .hero-text p {

        font-size: 16px;

    }

    .buttons {

        flex-direction: column; /* Botões empilhados */

        gap: 10px;

    }

    .hero-image {

        margin-top: 40px;

        order: -1; /* Coloca a imagem acima do texto no mobile, se desejar */

    }

    .hero-image img {

        width: 100%; /* Imagem ocupa toda a largura */

        height: auto; /* Altura automática para manter proporção */

        max-width: 400px; /* Limite máximo para a imagem */

    }



    /* Brands Section */

    .brands {
        padding: 50px 0;
    }

    .brands-track {
        gap: 40px;
        padding: 0 20px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand {
        font-size: 1rem;
        gap: 8px;
    }



    /* About Section */

    .about {

        padding: 60px 20px;

    }

    .about-left {

        flex-direction: column; /* Tag e título empilhados */

        margin-left: 0; /* Reseta margin */

    }

    .about-left .tag {

        width: fit-content; /* Ajusta a largura ao conteúdo */

        margin: 0 auto 15px auto; /* Centraliza a tag */

    }

    .about-left h3 {

        font-size: 1.5rem;

        margin-left: 0;

    }

    .about-bottom {

        grid-template-columns: 1fr; /* Uma coluna para imagem e texto */

        gap: 30px;

    }

    .about-right {

        text-align: center; /* Centraliza texto da seção "sobre" */

    }

    .about-right .stats {

        justify-content: space-around; /* Distribui estatísticas */

        flex-wrap: wrap; /* Permite quebrar linha */

        gap: 20px;

    }

    .about-right .stats div {

        min-width: 100px; /* Garante um tamanho mínimo para cada stat */

    }



    /* Entregas Section */

    .entregas {

        padding: 60px 20px;

        margin: 40px auto;

    }

    .entregas-header {

        flex-direction: column;

        text-align: center;

        margin-bottom: 40px;

    }

    .entregas-header h3 {

        font-size: 32px;

    }

    .entregas-grid {

        grid-template-columns: 1fr; /* Uma coluna por padrão */

        gap: 20px;

    }

    .entrega-card img {

        height: 120px;

    }



    /* Diferenciais Section */

    .features {

        padding: 60px 20px;

    }

    .features-content h3 {

        font-size: 32px;

    }

    .features-content h4 {

        font-size: 18px;

    }

    .features-content p {

        font-size: 16px;

        margin-bottom: 40px;

    }

    .features-grid {

        grid-template-columns: 1fr; /* Uma coluna */

        gap: 20px;

    }

    .counter .count {

        font-size: 38px;

    }

    .counter svg {

        width: 40px;

        height: 40px;

    }



    /* Casting Section */

    .casting {

        padding: 60px 20px;

    }

    .casting h3 {

        font-size: 28px;

        margin-bottom: 30px;

    }

    .casting-grid {

        gap: 20px;

    }

    .casting-grid img {

        width: 120px;

        height: 120px;

    }
    .casting-grid img:hover {
        width: 122px;
        height: 122px;
        cursor: pointer;
        transition: 0.8ms;
        box-shadow: 0 0 20px #ffffff;

    }



    /* Final Section */

    .final {

        padding: 60px 20px;

    }

    .final h2 {

        font-size: 28px;

    }

    .final p {

        font-size: 15px;

    }

    .subfooter {

        grid-template-columns: 1fr; /* Uma coluna */

        gap: 30px;

        text-align: center; /* Centraliza o texto do subfooter */

    }



    /* Footer */

    .footer {

        padding: 20px;

        font-size: 12px;

    }

}



/* Para smartphones pequenos */

@media (max-width: 480px) {

    /* Diminuir ainda mais o padding lateral */
    .header, .hero, .about, .entregas, .features, .casting, .final {

        padding-left: 15px;

        padding-right: 15px;

    }


    /* Header */
    .header nav a {

        font-size: 14px; /* Volta para o tamanho original ou um pouco menor */

    }


    /* Hero Section */
    .hero-text h2 {

        font-size: 36px;

    }

    .hero-text p {

        font-size: 14px;

    }

    .btn {

        padding: 12px 24px;

        font-size: 14px;

    }


    /* Brands Section */
    .brands {
        padding: 40px 0;
    }

    .brands-track {
        gap: 25px;
        padding: 0 10px;
    }

    .brand img {
        width: 30px;
        height: 30px;
    }

    .brand {
        font-size: 0.9rem;
        gap: 6px;
    }


    /* About Section */
    .about-left .tag {

        font-size: 16px;

        padding: 10px 20px;

    }

    .about-left h3 {

        font-size: 1.3rem;

    }

    .about-right h4 {

        font-size: 1.3rem;

    }

    .about-right p {

        font-size: 14px;

    }

    .about-right .stats strong {

        font-size: 1.5rem;

    }


    /* Entregas Section */
    .entregas-header h3 {

        font-size: 28px;

    }

    .entrega-card h4 {

        font-size: 16px;

    }

    .entrega-card p {

        font-size: 13px;

    }


    /* Diferenciais Section */
    .features-content h3 {

        font-size: 28px;

    }

    .features-content h4 {

        font-size: 16px;

    }

    .features-content p {

        font-size: 14px;

    }


    /* Casting Section */
    .casting h3 {

        font-size: 24px;

    }

    .casting-grid img {

        width: 100px;

        height: 100px;

    }

    .casting-grid img:hover {
        width: 102px;
        height: 102px;
        cursor: pointer;
        transition: 0.8ms;
        box-shadow: 0 0 20px #ffffff;
    }


    /* Final Section */
    .final h2 {

        font-size: 24px;

    }
}

/* ===== CORREÇÃO DEFINITIVA DO OVERFLOW DO AOS ===== */

/* Garante que nenhuma animação do AOS empurre o layout */
[data-aos^="fade"][style*="translate3d("],
[data-aos^="fade"][style*="translate("],
[data-aos^="slide"][style*="translate("] {
    transform: translate3d(0,0,0) !important;
}

/* Evita que animações vazias causem deslocamento lateral */
[data-aos] {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Seção Diferenciais */
#diferenciais, .diferenciais {
    overflow-x: hidden !important;
    position: relative;
}