/* style.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
}

/* Header */
header {
  position: absolute;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent; /* começa transparente */
    transition: background 0.3s ease, padding 0.3s ease;
  z-index: 1000; 
}

header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  background: #111;
  padding: 15px 30px; 
}

.logo {
    display: flex;
    align-items: center;
}

#log {   
    transition: 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.nav-links li a {
    color: #fff;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #1db9b1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffff;
}

/*----- HOME -----*/
.home {
    height: 100vh;
    display: flex;
    justify-content: center; /* Centraliza na horizontal */
    align-items: center; /* Centraliza na vertical */
    text-align: center; /* Alinha o texto */
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    z-index: -1;
}

.background-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta a opacidade para escurecer */
}

.text-home{
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.chevron-down {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.4s ease-out;
    opacity: 0;
    user-select: none;
}

.chevron-down img {
    width: 20px;
}

/* Animação para o movimento suave do chevron */
@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/*----- SOBRE NOS -----*/
.sobre-nos {
    background: black;
    display: flex;
    padding: 195px 410px;
}

.lado-1 {
    display: flex;
    gap: 50px;
}

.text-about {
    color: white;
}

.text-about h1 {
    margin-left: 306px;
    font-size: 40px;
    font-weight: 700;
}

.text-about h2 {
    margin-top: 30px;
    justify-content: space-between;
    text-align: justify;
}

.text-about p {
    margin-top: 15px;
    font-weight: 400;
    justify-content: space-between;
    text-align: justify;
    font-size: 20px;
}

.img-sobre {
    position: relative; 
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
}

.img-sobre:hover {
    filter: grayscale(0%);
}

.lado-2 {
    margin-top: 80px;
    display: flex;
    gap: 50px;
}

.text-2-about p{
    font-weight: 400;
    justify-content: space-between;
    text-align: justify;
    font-size: 20px;
}

.text-2-about {
    color: white;
}

.numbers {
    margin-top: 200px;
}

.number {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 90px;
}

.numbers h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: white;
}

.start-item h4 {
    color: white;
    font-size: 94px;
}

.start-item p {
    color: white;
    font-size: 24px;
}

.p-client {
    margin-left: 75px;
}

.cliente-10 {
    margin-left: 20px;
}

.serv-500 {
    margin-left: 35px;
}

.avali-99 {
    margin-left: 42px;
}

.p-avali {
    margin-left: 75px;
}

.cliente-happy {
    margin-left: 80px;
}

/*----- NOSSO TIME -----*/
.nosso-time {
    padding: 0 410px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.nosso-time h1 {
    justify-content: center;
    display: flex;
    font-size: 50px;
}

.text-time-p {
    display: grid;
    margin-top: 50px;
    gap: 100px;
    font-weight: 600;
}

.text-time-p .p-nosso {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.text-time-p .p-time {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/*----- SOCIO -----*/
.socio {
    background-color: black;
    margin-top: 100px;
    padding: 90px 410px 180px;
}

.mancha {
    display: flex;
    margin-left: 250px;
    margin-top: -170px;
}

.arrow-line {
    top: -150px;
    margin-left: 530px;
    position: relative;
}

.socio h1 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.img-socio {
    margin-left: 350px;
    margin-top: 90px;
}

/* FOOTER */

footer {
    background-color: #222222;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* centraliza todo conteúdo */
    align-items: center;
    padding: 80px 40px; /* mais espaço interno */
    gap: 60px; /* mais respiro entre as seções */
  }

  .footer-top {
    text-align: center;
    padding: 30px 20px 10px;
  }

  .footer-top img {
    width: 260px;
    max-width: 80%;
    margin-bottom: 20px;
  }

  /* Menu de navegação */
  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
  }

  .footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-nav a:hover {
    color: #1db9b1;
  }

  /* Informações em colunas */
  .footer-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
  }

  .footer-info div {
    min-width: 200px;
  }

  .footer-info h4 {
    color: #1db9b1;
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-info a {
    color: #1db9b1;
    text-decoration: none;
  }

  /* Redes sociais */
  .footer-social {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-social a {
    color: #fff;
    font-size: 40px;
    margin: 0 10px;
    transition: all 0.3s ease;
  }

  .footer-social a:hover {
    color: #1db9b1;
    transform: scale(1.2);
  }

  /* Faixa inferior */
  .footer-bottom {
    border-top: 1px solid #333;
    padding: 10px 20px;
    font-size: 16px;
    align-items: center;
    display: flex;
    color: #aaa;
    gap: 10px;
  }


  /* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
}