/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #2A3A4C;
    line-height: 1.6;
  }
  
  h1, h2 {
    font-family: 'Montserrat', sans-serif;
  }

  /*AJUSTAR*/
  section {
    scroll-margin-top: 80px;
    position: relative;
  }

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* HEADER */
  .header {
    background: linear-gradient(-45deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    color: #fff;
    padding: 16px 0 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .logo-img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    filter: brightness(0);
    
  }
  
  .logo-img:hover {
    opacity: 1;
    filter: brightness(1);
    
  }
  
  .nav {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .nav-list {
    background-color: #ffffff;
    list-style: none;
    display: flex;
    gap: 2.5rem;
    font-size: 16px;
  }
  
  .nav-list a {
    color: #17253C;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  .nav-list a:hover {
    color: #FF9800;
    transform: scale(1.1);
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #17253C;
    transition: all 0.3s ease;
  }

  .menu-toggle:hover{
    color: #FF9800;
    transform: scale(1.1);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-left: 40px;
  }
  
  .social-icon {
   /* color: white; */
    transition: color 0.3s ease;
    padding: 8px 0 0px 0;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* HERO SECTION */
  .hero {
    background-color: #000;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    display: inline-block;
    background-color: #FF9800;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e58900;
  }
  
  /* CIDADES */
  .cidades {
    padding: 2rem 0;
    background-color: #fff;
    text-align: center;
  }
  
  .cidades h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #003366;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  
  .cidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cidade-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .cidade-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .cidade-card:hover {
    transform: scale(1.05);
  }
  
  .cidade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    z-index: 2;
  }
  
  .cidade-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  /* COMO FUNCIONA */
  .como-funciona {
    padding: 2rem 0;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .como-funciona .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #003366;
    width: 100%;
    text-align: center;
  }
  
  .etapas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
  }
  
  .etapa-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  

  .etapa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .etapa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003366, #0055a5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
  }
  
  .etapa-card h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .etapa-card h3 a {
    text-decoration: none;
    color: #003366;
  }
  
  .etapa-card p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Setas de navegação */
  .carousel-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border: none;
  }
  
  .carousel-nav:hover {
    background-color: #004080;
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .carousel-nav.prev {
    left: 20px;
  }
  
  .carousel-nav.next {
    right: 20px;
  }
  
  .carousel-nav svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
  
  .quem-somos {
    padding: 2rem 0;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  /* QUEM SOMOS */
  .quem-somos h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #003366;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  
  .quem-somos-nv-1 {
    font-size: 20px;
    text-align: justify;
    line-height: 30px;
    text-indent: 50px;
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .membro {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .membro img {
    width: 100%;
    max-width: 200px;
    border-radius: 100%;
    margin-bottom: 1rem;
  }
  
  .membro h3 {
    font-family: 'Montserrat', sans-serif;
    color: #003366;
    margin-bottom: 0.5rem;
  }
  
  .membro p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* FOOTER */
  .footer {
    background: linear-gradient(90deg, #1d263e, #11192e);
    color: white;
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-sections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .footer-section {
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    height: 30px;
    margin-bottom: 0.8rem;
  }
  
  .footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    text-align: left;
  }
  
  .footer-social {
    display: flex;
    gap: 0.8rem;
  }
  
  .footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.3rem;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF9800;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-contact li {
    /*display: flex;
    align-items: center;
    */
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  }
  
  .footer-contact svg {
    color: #FF9800;
    width: 16px;
    height: 16px;
  }
  
  .whatsapp-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.2s ease;
  }
  
  .whatsapp-flutuante img {
    width: 30px;
    height: 30px;
  }
  
  .whatsapp-flutuante:hover {
    transform: scale(1.1);
  }


/* arquivos adicionais de paginas redirecionada internamente*/

#aptos-list {
  justify-items: center;
  scroll-margin-top: 100px;
 
}


#conteudo-final {
  scroll-margin-top: 90px;
  position: relative;
}

.envelope {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  padding: 20px;
  gap: 20px;
  
}

.card-apto {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 300px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  position: relative;
}

.card-apto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 5px;
}



.tarja {
  position: absolute;
  top: 10;
  right: 19px;
  background-color: #e7160e80; /* Cor da tarja com transparência */
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  border-bottom-right-radius: 5px;
}



.card-apto-content {
  padding: 0px 15px 0px 15px;
  display: flex;
  flex-direction: column;
  height: 50%;
  flex-grow: 1;
}

.card-apto-header {
  min-height: 50px;
  display: flex;
  align-items: flex-start;
}

.card-apto-header h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}


.card-details p i {
  display: inline-block;
  width: 100px;
  height: auto;
  margin: 0px 10px 0px 0px;
}

.card-details p.bairro-apto i {
  width: 300px;
}


.price {
  color: #28a745;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.1em;
}

.button-container {
  padding: 10px 0px 0px 0px;
  
}

.details-button {
  display: inline-block;
  background-color: #1d263e;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.details-button:hover {
  background-color: #0056b3;
}

.ver-mais-container {
text-align: center;
padding: 30px 0;
}

.ver-mais-button {
display: inline-block;
background-color: #1d263e;
color: white;
text-decoration: none;
padding: 12px 24px;
border-radius: 6px;
font-size: 1rem;
transition: background-color 0.3s;
}

.ver-mais-button:hover {
background-color: #0056b3;
}

  /* RESPONSIVO  MOBILE*/

  @media (max-width: 768px) {
    section {
      scroll-margin-top: 70px;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      width: 200px;
      padding: 1rem;
    }
  
    .nav-list.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }

    .social-icons {
      margin: 0;
      margin-top: 2px;
      gap: 40px;
      margin-right: 40px;
    }
  
    .social-icon {
      display: flex;
      padding: 0px;
    }
  
    .logo-img {
      height: 40px;
    }
  
    .hero {
      height: 60vh;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .como-funciona {
      padding: 3rem 0;
      overflow: visible;
      position: relative;
    }
  
    .como-funciona .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .como-funciona h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
      order: -1;
      
    }
  
    .etapas {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      gap: 1rem;
      padding: 0 1rem;
      margin: 0;
      width: 100%;
      -ms-overflow-style: none;
      scrollbar-width: none;
      position: relative;
    }
  
    .etapas::-webkit-scrollbar {
      display: none;
    }
  
    .etapa-card {
      flex: 0 0 85%;
      scroll-snap-align: center;
      margin: 0 auto;
      min-width: 0;
      transform: none;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
  
    .etapa-card:last-child {
      margin-right: 1rem;
    }
  
    .etapa-card:first-child {
      margin-left: 1rem;
     
    }
  
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .carousel-nav.prev {
      left: 10px;
    }
  
    .carousel-nav.next {
      right: 10px;
    }
  
    .footer {
      padding: 1.5rem 0 1rem;
      
    }

    .footer .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      
      flex-direction: column;
      align-items: center;
    }
  
    .footer-sections-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
      width: 100%;
      max-width: 300px;
    }
  
    .footer-section {
      text-align: center;
      width: 100%;
    }
  
    .footer-description {
      text-align: center;
      max-width: 300px;
      margin: 0 auto 1rem;
    }
  
    .footer-section h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-social {
      justify-content: center;
      margin: 0 auto;
    }
  
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .footer-links li {
      width: 100%;
      text-align: center;
    }
  
    .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .footer-contact li {
      justify-content: center;
      text-align: center;
      width: 100%;
    }

    .quem-somos-nv-1 {
      padding: 0px 50px 0px 50px;


    }



    .envelope {
      grid-template-columns: repeat(1, 300px);
    }
  }
  
