/* Versão 1.0.0 */

/* Hero Section */
#hero-nossa-empresa {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-image: var(--bg-hero-nossa-empresa);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  @media only screen and (max-width: 768px) {
    height: 70vh;
    min-height: 500px;
  }

  & .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  & .hero-titulo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    line-height: 1.2;

    @media only screen and (max-width: 768px) {
      font-size: 32px;
      letter-spacing: 1px;
    }

    @media only screen and (max-width: 480px) {
      font-size: 24px;
    }
  }
}

/* Sobre a Eagle Section */
#sobre-a-eagle {
  padding: 100px 0;
  background-color: #ffffff;

  & .suptitulo {
    width: fit-content;
    margin: 0 auto 10px 0;
    color: var(--cor-fundo);
    border-left-color: var(--cor-fundo);
  }

  & .titulo {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    color: #1f1e1f;
    margin-bottom: 30px;

    @media only screen and (max-width: 768px) {
      font-size: 32px;
    }
  }

  & .sobre-texto {
    & p {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0px;
      text-transform: none;
      color: #6d6a6a;
      line-height: 1.8;
      margin-bottom: 20px;

      @media only screen and (max-width: 768px) {
        font-size: 16px;
      }
    }
  }

  & .sobre-imagem-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 10%;

    @media only screen and (max-width: 1200px) {
      padding-right: 20px;
      margin-left: 5%;
    }

    @media only screen and (max-width: 768px) {
      margin-top: 30px;
      padding-right: 14%;
    }

    & .sobre-imagem-grafico {
      position: relative;
      width: 100%;
      height: auto;
      z-index: 2;

      & img {
        width: 100%;
        height: auto;
        display: block;
        filter: grayscale(0.3);
      }
    }

    & .sobre-quadrado-vermelho {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 150px;
      height: 150px;
      background-color: var(--cor-fundo);
      z-index: 1;

      @media only screen and (max-width: 768px) {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
      }
    }
  }
}

/* Missão e Visão Section */
#missao-visao {
  padding: 100px 0;
  background-color: #ffffff;

  & .missao-content,
  & .visao-content {
    padding: 20px 0;

    & h4 {
      font-size: 14px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cor-fundo);
      margin-bottom: 15px;
      line-height: 1;
      display: block;

      & .circle-icon {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--cor-fundo);
        margin-right: 10px;
      }
    }

    & .mvv-texto {
      color: #6d6a6a;
      font-size: 16px;
      text-align: left;
      line-height: 1.8;

      & em {
        font-style: italic;
        color: #999;
      }
    }
  }

  & .divisor-vermelho {
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background-color: var(--cor-fundo);
      min-height: 200px;
    }

    @media only screen and (max-width: 768px) {
      display: none;
    }
  }
}

/* Valores Section */
#valores {
  padding: 100px 0;
  background-color: #ffffff;

  & .suptitulo {
    width: fit-content;
    margin: 0 auto 10px 0;
    color: var(--cor-fundo);
    border-left-color: var(--cor-fundo);
  }

  & .titulo {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    color: #1f1e1f;
    margin-bottom: 30px;

    @media only screen and (max-width: 768px) {
      font-size: 32px;
    }
  }

  & .valores-imagem-wrapper {
    width: 100%;
    height: auto;
    margin-top: 40px;

    & .valores-imagem {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }
  }

  & .valores-content {
    position: relative;
    padding: 20px 0;

    & .valores-lista {
      list-style: none;
      padding: 0;
      margin: 30px 0 0 0;

      & li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        color: #1f1e1f;
        font-size: 18px;
        line-height: 1.6;

        @media only screen and (max-width: 768px) {
          font-size: 16px;
        }

        & .icone-check-circle {
          color: var(--cor-fundo);
          width: 19px;
          height: 19px;
          display: inline-block;
          margin-right: 10px;
          flex-shrink: 0;
          margin-top: 2px;
        }

        & span {
          flex: 1;
        }
      }
    }

    & .valores-quadrado-vermelho {
      position: absolute;
      bottom: -20px;
      right: 0;
      width: 150px;
      height: 150px;
      background-color: var(--cor-fundo);
      z-index: 1;

      @media only screen and (max-width: 768px) {
        width: 100px;
        height: 100px;
        bottom: -10px;
      }
    }
  }
}

/* Nosso Time Section */
#nosso-time {
  padding: 100px 0;
  background-color: #ffffff;

  & .suptitulo {
    width: fit-content;
    margin: 0 auto 10px auto;
    color: var(--cor-fundo);
    border-left-color: var(--cor-fundo);
    text-align: center;
    display: block;
  }

  & .titulo {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    color: #1f1e1f;
    text-align: center;
    margin-bottom: 30px;

    @media only screen and (max-width: 768px) {
      font-size: 32px;
      margin-bottom: 40px;
    }
  }

  & .time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;

    @media only screen and (max-width: 1024px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    @media only screen and (max-width: 600px) {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  & .time-card {
    text-align: center;

    & .time-imagem-wrapper {
      width: 100%;
      height: auto;
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 0px;

      & .time-imagem {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;

        &:hover {
          transform: scale(1.05);
        }
      }
    }

    & .time-nome {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0px;
      text-transform: none;
      color: #1f1e1f;
      margin-bottom: 8px;

      @media only screen and (max-width: 768px) {
        font-size: 18px;
      }
    }

    & .time-cargo {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #6d6a6a;
      margin-bottom: 0;
    }
  }
}

#time-eagle {
  padding: 100px 0;
  background-color: #1f1e1f;
  background-image: var(--bg-secao4);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;

  & .suptitulo {
    margin-top: 100px;
    color: #b67328;
    border-left-color: #b67328;
  }

  & .titulo {
    color: #fff;
  }

  & p {
    color: #fff;
    width: 90%;
  }

  & img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

/* CTA Section */
#cta-nossa-empresa {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: var(--bg-cta-montanhas);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  @media only screen and (max-width: 768px) {
    height: 400px;
  }

  & .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  & .cta-titulo {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

    @media only screen and (max-width: 768px) {
      font-size: 28px;
      margin-bottom: 30px;
    }

    @media only screen and (max-width: 480px) {
      font-size: 24px;
    }
  }

  & .cta-botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--cor-fundo);
    border-radius: 33px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    height: 52px;
    letter-spacing: 0px;
    line-height: 1.7;
    padding: 5px 33px;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s ease;

    & i {
      transition: transform 0.3s ease;
    }

    &:hover {
      background-color: #a55a1f;
      letter-spacing: 1px;

      & i {
        transform: translateX(5px);
      }
    }
  }
}


/* ============================================
   Estilos Comuns para Seções MVV
   ============================================ */
   .mvv-section {
    padding: 100px 0;

    & .suptitulo {
      width: fit-content;
      margin: 0 auto 5px auto;
    }

    & .titulo {
      text-align: center;
    }

    & p {
      text-align: center;
    }

    & h4 {
      font-size: 14px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cor-fundo);
      margin-bottom: 5px;
      line-height: 1;
      display: block;
      margin-bottom: 15px;

      & .circle-icon {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--cor-fundo);
        margin-right: 10px;
      }
    }

    & .mvv-texto {
      color: #6d6a6a;
      font-size: 16px;
      text-align: left;
    }
  }

  /* ============================================
     Layout em Timeline Vertical (Opção 2)
     ============================================ */
  .mvv-layout-2 {
    & .mvv-timeline {
      max-width: 800px;
      margin: 60px auto 0;
      position: relative;
      padding-left: 40px;

      &::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--cor-fundo), rgba(182, 115, 40, 0.3));
      }

      @media only screen and (max-width: 768px) {
        padding-left: 30px;
      }
    }

    & .mvv-timeline-item {
      position: relative;
      margin-bottom: 50px;
      padding-left: 40px;

      @media only screen and (max-width: 768px) {
        padding-left: 30px;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }

    & .mvv-timeline-marker {
      position: absolute;
      left: -34px;
      top: 5px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--cor-fundo);
      border: 4px solid #ffffff;
      box-shadow: 0 0 0 4px rgba(182, 115, 40, 0.2);
      transition: all 0.3s ease;

      @media only screen and (max-width: 768px) {
        left: -15px;
        width: 16px;
        height: 16px;
      }
    }

    & .mvv-timeline-item:hover .mvv-timeline-marker,
    & .mvv-timeline-item.in-view .mvv-timeline-marker {
      transform: scale(1.3);
      box-shadow: 0 0 0 8px rgba(182, 115, 40, 0.1);
    }

    & .mvv-timeline-content {
      background: #ffffff;
      padding: 30px;
      border-radius: 0px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;

      &:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateX(10px);
      }

      & h4 {
        margin-bottom: 15px;
      }

      & .mvv-texto {
        line-height: 1.8;
      }

      & .mvv-valor-item {
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;

        &::before {
          content: '→';
          position: absolute;
          left: 0;
          color: var(--cor-fundo);
          font-weight: bold;
        }

        &:last-child {
          margin-bottom: 0;
        }
      }
    }

    & .mvv-timeline-item.in-view .mvv-timeline-content {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      transform: translateX(10px);
    }
  }
