:root {
    --primary: #1a3e72;
    --secondary: #f8b400;
    --accent: #e74c3c;
    --light: #f5f7fa;
    --dark: #2c3e50;
    --text: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seu estilo original do header mantido */
header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  header.scrolled {
    padding: 10px 0;
    background-color: rgba(26, 62, 114, 0.95);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Logos */
  .logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .logo img {
    height: 50px;
    object-fit: contain;
    display: block;
  }
  
  .logo-secondary img {
    height: 30px;
    object-fit: contain;
    display: block;
    opacity: 0.95;
    filter: brightness(1) contrast(1.1);
  }
  
  /* Menu desktop */
  #mainNav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #mainNav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  #mainNav ul li a:hover {
    color: #25d366;
  }
  
  /* Botão menu mobile */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
  }
  
  /* RESPONSIVO */
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
    }
  
    #mainNav {
      display: none;
      width: 100%;
      margin-top: 10px;
    }
  
    #mainNav.open {
      display: block;
    }
  
    #mainNav ul {
      flex-direction: column;
      background-color: var(--primary);
      padding: 10px 0;
      gap: 12px;
    }
  
    #mainNav ul li a {
      padding: 8px 20px;
      display: block;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
  
    .header-container {
      align-items: flex-start;
    }
  
    .logo-group {
      width: 100%;
      justify-content: space-between;
    }
  }
  
.footer-logos-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.footer-logo {
    height: 40px;
    object-fit: contain;
}

.footer-logo.small {
    height: 30px;
    filter: brightness(1.1) contrast(1.1);
}


.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}
/* Estilo para o header */
#header {
    background-color: #fff; /* Ou a cor de fundo desejada */
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo img {
    max-width: 100%; /* Garantir que a imagem ocupe toda a largura disponível */
    height: auto;    /* Manter a proporção original da imagem */
    max-height: 60px; /* Definir a altura máxima do logo */
}

/* Menu mobile */
.mobile-menu-btn {
    display: none; /* Esconder o botão de menu mobile por padrão */
}

/* Navegação */
#mainNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

#mainNav ul li {
    display: inline-block;
}

#mainNav ul li a {
    text-decoration: none;
    color: #333; /* Cor do texto */
    font-weight: bold;
    font-size: 16px;
}

#mainNav ul li a:hover {
    color: #007BFF; /* Cor de destaque ao passar o mouse */
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Organizar o header em coluna no mobile */
        align-items: center;
    }

    .logo img {
        max-height: 50px; /* Ajustar o logo no mobile */
    }

    .mobile-menu-btn {
        display: block; /* Exibir o botão de menu no mobile */
    }

    #mainNav {
        display: none; /* Esconder a navegação por padrão no mobile */
    }

    #mainNav ul {
        flex-direction: column;
        gap: 10px;
    }

    #mainNav.active {
        display: block; /* Exibir a navegação ao ativar o menu */
    }
}
.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.zoom-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.apartment-image {
    position: relative;
}

.apartment-image a {
    display: block;
    position: relative;
}

.apartment-image a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: background 0.3s ease;
}

.apartment-image:hover a::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/img-apt.png') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Numbers Section */
.numbers {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
}

.numbers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.number-item h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.number-item p {
    font-size: 18px;
}

/* Apartments Section */
.apartments {
    background-color: var(--light);
}

.apartment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.apartment-tab {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.apartment-tab.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.apartment-tab:hover:not(.active) {
    background-color: #f0f0f0;
}

.apartment-types {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.apartment-types.active {
    display: grid;
}

.apartment-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-10px);
}

.apartment-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.1);
}

.apartment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.apartment-info {
    padding: 25px;
}

.apartment-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
}

.apartment-info p {
    margin-bottom: 15px;
}

.apartment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
}

.spec-item i {
    margin-right: 5px;
    color: var(--secondary);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-slider {
    margin: 0 auto;
    max-width: 1000px;
}

.gallery-slide {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.gallery-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
/* Estilos para a galeria */
.gallery-slider {
    width: 100%;
    margin: 0 auto;
}

.gallery-slide {
    position: relative;
    margin: 0 10px;
    height: 300px; /* Altura fixa para todas as imagens */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-slide a {
    display: block;
    height: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço mantendo proporção */
    transition: transform 0.3s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Ícone de zoom */
.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-slide:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Ajustes para o Slick slider */
.slick-slide {
    padding: 0 10px;
}

.slick-list {
    margin: 0 -10px;
}

.slick-prev, .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    opacity: 0.7;
}

.slick-prev:hover:before, .slick-next:hover:before {
    opacity: 1;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary);
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    font-size: 50px;
    color: var(--secondary);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

/* Amenities Section */
.amenities {
    background-color: var(--light);
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
}

.amenity-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(255, 255, 255, 9%), rgba(255, 255, 255, 44%)), url('./img/image.png') no-repeat center center/cover;
    color: var(--white);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-top: 100px;
    color:  #000000
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    font-size: 20px;
    color: var(--secondary);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.privacy-text {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dark);
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.privacy-content {
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 30px;
    border-radius: 10px;
    overflow-y: auto;
    position: relative;
}

.close-privacy {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.privacy-content h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .gallery-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .gallery-slide {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery-slide {
        height: 250px;
    }
    
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .slick-prev:before, .slick-next:before {
        font-size: 30px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    line-height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 54px;
      height: 54px;
      font-size: 24px;
      line-height: 54px;
      bottom: 15px;
      right: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 22px;
      line-height: 50px;
      bottom: 10px;
      right: 10px;
    }
  }

  
/* Estilos para o modal personalizado */
#custom-modal {
    font-family: Arial, sans-serif;
}

#custom-modal h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

#custom-modal p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

#close-modal {
    background: #3498db;
    transition: background 0.3s;
}

#close-modal:hover {
    background: #2980b9;
}

#video-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  
  .video-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    display: block;
  }
  