* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.justificar {
  text-align: justify;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: transparent;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  width: 100%;
  padding: 32px;
}

.logo {
  font-weight: bold;
  font-size: 2rem;
  color: white;
  cursor: pointer;

  img {
    height: 2rem;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  font-size: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-contato {
  background: #5d5a57;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 300;
  width: 244px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-contato:hover {
  background: rgba(93, 90, 87, 1);
}

.btn-icon {
  display: flex;
  align-items: center;
  margin-left: 6px;
  margin-right: 4px;
}

.btn-text {
  letter-spacing: 0.5px;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.overlay {
  position: absolute;
  top: -5%;
  left: -5%;
  background: url("assets/CINZA.png") no-repeat center center/cover;
  height: 110%;
  width: 110%;
  
}

.hero {
  position: relative;
  height: 920px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img{
  position: absolute;
  top: -100%;
  left:  -100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.47);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  padding: 32px;
  font-size: 32px;
  width: 1200px;
}
.hero-content .tag {
  background: white;
  color: #3e3c3a;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 9999px;
  width: 244px;
  height: 44px;
  font-size: 1rem;
}

span.tag {
  font-weight: 600;
}

.hero-title {
  font-family: "Georama", sans-serif;
  font-size: 72px;
}

.subtitle-hero {
  font-size: 28px !important;
  max-width: 800px;
  overflow: hidden;
  display: -webkit-box;
  /* line-clamp: 3;
  -webkit-line-clamp: 3; */
  -webkit-box-orient: vertical;
  line-height: 1.2em;
  margin-top: 1rem;
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1rem;
}

.areas {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 48px;
}

.areas article {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}

.areas article:nth-child(even) {
  flex-direction: row-reverse;
}

.areas article img {
  width: 450px;
  height: 250px;
  background: #e0e0e0;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.areas article div {
  max-width: 600px;
  margin: 0;
  padding: 0;
}

.area-title {
  font-family: "Georama", sans-serif;
  font-size: 40px;
}

.area-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.sobre-title {
  font-family: "Georama", sans-serif;
  font-size: 48px;
  align-items: flex-start;
  margin: 0 auto;
  /* margin-bottom: 32px;
  margin-top: 32px; */
}

.experiencia {
  width: 100%;
  background-color: #e7e4e1;
  align-items: flex-start;
}

.exp-content {
  width: 1200px;
  display: flex;
  gap: 48px;
  padding: 32px;
  margin: 0 auto;
  align-items: flex-start;
}

.experiencia img {
  width: 387px;
  height: 516px;
  object-fit: cover;
  display: block;
}

.experiencia h2 {
  align-items: flex-start;
  justify-content: start;
  margin-left: 48;
}

.experiencia p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-left: 48;
}
.texto-exp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 32px;
}

.exp-p {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato {
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  height: 314px;
  position: relative;
  overflow: hidden;
}

.contato-overlay {
  position: absolute;
  top: -5%;
  left: -5%;
  background: url("assets/FotoAgenda.png") no-repeat center center/cover;
  filter: blur(6px);
  height: 110%;
  width: 110%;
  z-index: -1;
}

.contato-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.47);
}

.btn-contato2 {
  background: #5d5a57;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 300;

  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 16px;
}

.contato-title {
  font-family: "Georama", sans-serif;
  font-size: 48px;
}

footer {
  background: #756f6b;
  padding-bottom: 32px;
  color: #fff;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 6rem 0;
  border-radius: 2px;
}

.footer-map iframe {
  width: 337px;
  height: 188px;
  border-radius: 12px;
  display: block;
  background: #dadad9;
}

.footer-info {
  display: flex;
  flex: 1;
  gap: 64px;
  justify-content: space-between;
  align-items: flex-start;

  & > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.footer-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.footer-info p {
  font-size: 15px;
  color: #f1f1f1;
  margin: 0;
  line-height: 1.8;
}

.footer-copy {
  font-size: 14px;
  color: #cacaca;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .experiencia {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  header {
    width: 100%;
    padding: 2rem 1rem 1rem 1rem;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;

    .container {
      padding: 0;
    }
  }

  .container {
    padding: 1.5rem 0;
  }

  .hero {
    height: 800px;
    padding: 16px;
  }

  .hero-content {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .subtitle-hero {
    font-size: 16px !important;
    max-width: 100%;
    line-clamp: unset;
    -webkit-line-clamp: unset; 
  }

  .areas {
    height: auto;
    margin: 32px 0;
    gap: 32px;
  }

  .areas article {
    flex-direction: column !important; 
    text-align: center;
    padding: 16px;
  }

  .areas article img {
    width: 100%;
    height: auto;
  }

  .experiencia {
    height: auto;
    padding: 32px 16px;
  }

  .exp-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0;

    .foto {
      width: 100%;
    }
  }

  .experiencia img {
    width: 100%;
    height: auto;
  }

  .texto-exp {
    width: 100%;
    margin-left: 0;
    align-items: center;
    gap: 18px;
  }

  .contato {
    height: auto;
    padding: 2rem 1rem;
  }

  .contato-title {
    font-size: 32px;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 1rem;
  }

  .footer-map iframe {
    width: 100%;
    height: 220px;
  }

  .footer-info {
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    justify-content: space-between;
    /* align-items: center; */

    & > div {
      max-width: calc(50% - 24px);
      

    }
  }

  .footer-copy {
    padding: 0;
    text-align: center;
  }
}

p a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.divider-team-ig {
  height: 0.25rem;
  width: 100%;
  background-color: #cacaca;
  border: none;
}

#instagram {
  display: flex;
  max-width: none;
  background-color: WHITE;
  gap: 3rem;
  justify-content: center;
  height: 40rem;
  overflow: hidden;
  padding: 4rem 0;

  .icon-xl {
    width: 4rem;
    height: 4rem;
  }

  .hidden {
    display: none;
  }

  .insta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 39rem;
    height: 100%;
    justify-content: center;

    h2 {
      font-family: "Georama", sans-serif;
      font-size: 48px;
      align-items: flex-start;

      span.highlight {
        --gbs-color-highlight-font: var(--gbs-color-neutral-10);
      }
    }

    .btn-instagram {
      background-color: #3e3c3a;
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 9999px;
      width: 244px;
      height: 44px;
      font-size: 14px;
      font-family: "Montserrat", sans-serif;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-decoration: none;

      &:hover {
        background-color: #333;
      }
    }
  }

  .device-mockup {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140%;
    border-radius: 3rem;
    overflow: hidden;

    .mockup-device {
      max-width: 25rem;
      aspect-ratio: 412 / 833;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 98%;
      width: 95%;
      border-radius: 3rem;
      overflow: hidden;

      .mockup-track {
        display: flex;
        align-items: center;
        justify-content: start;
        height: 100%;
        width: 100%;
        transition: transform 0.8s ease;
        border-radius: 3rem;

        video {
          flex: 0 0 100%;
          width: 100%;
          height: 100%;
          aspect-ratio: 412 / 833;
          object-fit: cover;
        }
      }
    }

    .phone-mockup {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .play-pause {
      position: absolute;
      z-index: 2;
      top: 50%;
      right: 50%;
      background-color: transparent;
      transform: translate(50%, -50%);
      border: none;
      outline: none;
      cursor: pointer;
      color: #e5e5e5;

      .pause {
        color: transparent;
      }

      &:hover {
        color: white;

        .pause {
          color: currentColor;
        }
      }
    }

    .prev-video {
      position: absolute;
      z-index: 99;
      top: 50%;
      left: 20%;
      transform: translateY(-50%);
      background-color: transparent;
      border: none;
      outline: none;
      cursor: pointer;
      color: #e5e5e5;

      &:hover {
        color: #fff;
      }
    }

    .next-video {
      position: absolute;
      z-index: 99;
      top: 50%;
      right: 20%;
      transform: translateY(-50%);
      background-color: transparent;
      border: none;
      outline: none;
      cursor: pointer;
      color: #e5e5e5;

      &:hover {
        color: #fff;
      }
    }

    @media (max-width: 700px) {
      display: none;
    }
  }
}

@media (max-width: 768px) {
  #instagram .insta-content {
    padding: 1rem;
    align-items: center;

    h2 {
      text-align: center;
    }
  }
}

.team-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;       
  text-align: center;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.equipes {
  display: flex;
  justify-content: center;   
  gap: 128px;
  width: 100%;
}

.foto-team{
  width: 387px;
  height: 516px;
  border-radius: 4px;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
}

.advs{
  max-width: 387px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nome-advs{
  font-size: 29px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
}

.posicao{
  font-size: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #807D79;
}

.team-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: justify;
}

/* ===========================
   RESPONSIVO (CELULAR / TABLET)
   =========================== */
@media (max-width: 768px) {
  .team-container {
    padding: 48px 16px;
    align-items: stretch;
  }

  .equipes {
    flex-direction: column; 
    gap: 40px;
  }

  .advs {
    max-width: 100%;
  }

  .foto-team {
    width: 100%;            
    /* max-width: 320px;         */
    /* height: auto;             */
    align-self: center;       
  }

  .nome-advs {
    font-size: 24px;
    text-align: center;
  }

  .posicao {
    font-size: 18px;
  }

  .team-details p {
    font-size: 0.95rem;
    text-align: left;        
  }
}
@media (max-width: 768px) {

  .hero {
    height: 100vh;
    min-height: 100svh;
  }

 
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    transform: scale(1.10) translateY(120px) !important;  
  }

  
  .hero-content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
  }

  
  .card {
    width: 100%;
    max-width: 520px;
    background: rgba(43, 37, 33, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 100px;
    overflow: hidden;
    background-clip: padding-box;
  }

  .card .hero-title {
    font-size: 26px; 
    margin: 0 0 10px;
    text-transform: uppercase;
    text-align: center;
  }

  .card .subtitle-hero {
    font-size: 15px; 
    margin: 0;
  }
}

