    /* Reset e configurações base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #ffffff;
        background-color: #000000;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Animações */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .fade-in {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo h2 {
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 2px;
    }

    .logo span {
        font-size: 12px;
        color: #888888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .whatsapp-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-btn i {
        width: 18px;
        height: 18px;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        padding: 140px 0 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .profile-img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #333333;
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .profile-img:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
    }

    .hero-text h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ffffff, #cccccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 20px;
        color: #888888;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .description {
        font-size: 18px;
        color: #cccccc;
        margin-bottom: 50px;
        line-height: 1.7;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        display: block;
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
        color: #888888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Video Section */
    .video-section {
        background: #111111;
        padding: 100px 0;
    }

    .section-title {
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 60px;
        color: #ffffff;
    }

    .video-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .video-placeholder {
        background: #1a1a1a;
        border-radius: 20px;
        aspect-ratio: 16/9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid #333333;
        position: relative;
        overflow: hidden;
    }

    .video-placeholder:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        border-color: #555555;
    }

    .play-button {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ffffff, #cccccc);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .play-button:hover {
        transform: scale(1.1);
    }

    .play-button i {
        width: 32px;
        height: 32px;
        color: #000000;
        margin-left: 4px;
    }

    .video-placeholder p {
        color: #888888;
        font-size: 16px;
        font-weight: 500;
    }

    /* Projects Section */
    .projects {
        background: #000000;
        padding: 100px 0;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .project-card {
        cursor: pointer;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: #1a1a1a;
        border: 1px solid #333333;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
        border-color: #555555;
    }

    .project-image {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.1);
    }

    .project-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 40px 25px 25px;
        color: white;
    }

    .project-overlay h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .project-overlay p {
        font-size: 14px;
        color: #cccccc;
        opacity: 0.9;
    }

    /* Contact Section */
    .contact {
        background: #111111;
        padding: 100px 0;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        background: #1a1a1a;
        padding: 50px;
        border-radius: 20px;
        border: 1px solid #333333;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 18px 20px;
        background: #000000;
        border: 2px solid #333333;
        border-radius: 12px;
        color: #ffffff;
        font-size: 16px;
        font-family: inherit;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #666666;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #666666;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #ffffff, #cccccc);
        color: #000000;
        border: none;
        padding: 18px 30px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    .submit-btn i {
        width: 18px;
        height: 18px;
    }

    /* Footer */
    .footer {
        background: #000000;
        padding: 40px 0;
        text-align: center;
        border-top: 1px solid #333333;
    }

    .footer p {
        color: #666666;
        font-size: 14px;
        margin-bottom: 5px;
    }

    /* Floating WhatsApp */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .whatsapp-float:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float i {
        width: 28px;
        height: 28px;
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .container {
            padding: 0 15px;
        }

        .header {
            padding: 15px 0;
        }

        .logo h2 {
            font-size: 20px;
        }

        .whatsapp-btn span {
            display: none;
        }

        .whatsapp-btn {
            padding: 12px;
            border-radius: 50%;
            width: 48px;
            height: 48px;
        }

        .hero {
            padding: 120px 0 80px;
            min-height: auto;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .profile-img {
            width: 200px;
            height: 200px;
        }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-stats {
            justify-content: center;
            gap: 30px;
        }

        .stat-number {
            font-size: 24px;
        }

        .section-title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .video-section,
        .projects,
        .contact {
            padding: 60px 0;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .contact-form {
            padding: 30px 20px;
            margin: 0 15px;
        }

        .whatsapp-float {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }

        .whatsapp-float i {
            width: 24px;
            height: 24px;
        }
    }

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 28px;
        }

        .description {
            font-size: 16px;
        }

        .hero-stats {
            flex-direction: column;
            gap: 20px;
        }

        .projects-grid {
            grid-template-columns: 1fr;
        }

        .project-card {
            margin: 0 10px;
        }
    }

    .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* espaço entre logo e texto */
    }

    .logo-img {
    width: 80px;   /* ajuste o tamanho do logo */
    height: 80px;
    border-radius: 50%; /* deixa arredondado */
    object-fit: cover; /* evita distorção */
    }

    .logo-text h2 {
    margin: 0;
    font-size: 20px;
    }

    .logo-text span {
    font-size: 14px;
    color: #555;
    }


    .hero-content {
        display: flex;
        align-items: flex-start; /* mantém a imagem e texto alinhados no topo */
        gap: 2rem;
    }

    .hero-image {
        display: flex;
        flex-direction: column; /* permite empilhar subtítulo abaixo da imagem */
        align-items: center;
    }


    .subtitle-below-img {
        margin-top: 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #555;
        text-align: center;
    }

    .highlighted-word{
        padding: 200px;
    }
    .hero-content {
        display: flex;
        align-items: flex-start; /* mantém imagem e texto alinhados no topo */
        gap: 4rem; /* aumenta a distância entre imagem e texto */
    }
    .hero-stats {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #009879;
    }
/* ===== RESPONSIVIDADE MOBILE ===== */
@media screen and (max-width: 768px) {
  /* Ajustes gerais */
  .container {
    padding: 0 20px;
  }
  
  /* Header mobile - esconder botão WhatsApp e ajustar altura */
  .header {
    position: relative; /* Muda de fixed para relative */
    height: auto;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header .container {
    flex-direction: row;
    justify-content: center;
    padding: 0 20px;
  }
  
  .whatsapp-btn {
    display: none; /* Esconde o botão WhatsApp no header */
  }
  
  .logo {
    justify-content: center;
  }
  
  /* Hero section - reordenação para imagem primeiro */
  .hero {
    padding: 40px 0 30px; /* Adiciona espaço no topo e embaixo */
    margin-top: 0; /* Remove qualquer margem superior */
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-image {
    order: -1; /* Coloca a imagem primeiro */
    margin: 0 auto 25px; /* Centraliza e adiciona espaço abaixo */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  
  .subtitle-below-img {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
  }
  
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #2c3e50;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    color: #546e7a;
  }
  
  /* Estatísticas em coluna */
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }
  
  .stat {
    padding: 15px;
    background: #0d0d0d;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
  
  /* Seção de vídeo */
  .video-section {
    padding: 40px 0;
  }
  
  .video-container {
    padding: 0 10px;
  }
  
  /* Grid de empreendimentos */
  .projects {
    padding: 40px 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card {
    max-width: 100%;
  }
  
  /* Formulário de contato */
  .contact {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 25px 20px;
    border-radius: 12px;
    background: rgb(26, 26, 26);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  input, textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
  }
  
  /* Botão flutuante do WhatsApp */
  .whatsapp-float {
    right: 20px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    z-index: 1000;
  }
  
  /* Ajustes de fonte menores */
  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }
}

/* Ajustes para telas muito pequenas (menos de 480px) */
@media screen and (max-width: 480px) {
  .hero {
    padding: 30px 0 20px;
  }
  
  .hero-text h1 {
    font-size: 24px;
  }
  
  .profile-img {
    width: 180px;
    height: 180px;
  }
  
  .subtitle-below-img {
    font-size: 16px;
  }
  
  .stat {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 26px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .projects-grid {
    gap: 15px;
  }
}

/* Adicionando uma transição suave para a imagem */
.profile-img {
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.03);
}

.projects-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}

.projects-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Página de empreendimentos */
.projects-page {
  padding-top: 60px;
}

/* Grid maior (2 colunas) */
.projects-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Cards mais altos */
.projects-grid-large .project-image {
  height: 320px;
}

/* Responsivo */
@media (max-width: 900px) {
  .projects-grid-large {
    grid-template-columns: 1fr;
  }

  .projects-grid-large .project-image {
    height: 260px;
  }
}
/* Garante que o card controle o tamanho */
.project-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Imagem sempre preenchendo o card */
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 🔥 chave do problema */
  object-position: center; /* centraliza o corte */
  display: block;
}

/* Cards grandes (página de empreendimentos) */
.projects-grid-large .project-card {
  height: 320px;
}

.projects-grid-large .project-image {
  height: 100%;
}

/* Overlay continua funcionando */
.project-overlay {
  position: absolute;
  inset: 0;
}

/* Layout geral */
.projects-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Filtro lateral */
.projects-filter {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}

.projects-filter h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

/* Grupos de filtro */
.filter-group {
  margin-bottom: 20px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.filter-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: inherit;
  background: #fff;
}

/* Área dos cards */
.projects-content {
  width: 100%;
}
@media (max-width: 1024px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .projects-filter {
    position: relative;
    top: auto;
  }
}


.projects-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.projects-filter {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 16px;
  color: #fff;
  position: sticky;
  top: 140px; /* 🔥 desce o filtro */
}

.projects-filter h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

.projects-filter label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.projects-filter select {
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #2a2a2a;
  color: #fff;
}
.projects-page .container {
  max-width: 1400px;   /* mais largo */
  padding-left: 8px;  /* 🔥 reduz MUITO o espaço */
  padding-right: 20px;
}
.projects-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;              /* 🔥 antes era 40px */
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .projects-filter {
    position: relative;
    top: 0;
  }

  .projects-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-image {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .projects-filter {
    padding: 20px;
    border-radius: 10px;
  }

  .projects-filter h3 {
    font-size: 16px;
  }

  .projects-grid-large {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .project-overlay h3 {
    font-size: 16px;
  }

  .project-overlay p {
    font-size: 13px;
  }

  .project-image {
    height: 200px;
  }
}

/* Remove sublinhado e cor padrão dos links do header */
.header a {
  text-decoration: none;
  color: inherit;
}

.video-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Mantém proporção 16:9 */
.video-placeholder,
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto da política */
.privacy-text {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.privacy-text span {
  color: #2e7d32;
  cursor: pointer;
  text-decoration: underline;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: #fff;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal h3 {
  margin-top: 0;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}


.politc{
  color: black;
}

