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

body {
    background-color: #000000; /* Fundo preto conforme a imagem */
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header simples para exemplo */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 17px;
}

/* --- ESTILO DO BANNER --- */

.flexa-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 50px 10%;
    gap: 50px;
}

.content-col {
    flex: 1;
}

.brand {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.description {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}
/* ESTILO DO CABEÇALHO (HEADER) */
.header {
    background-color: #000000; 
    color: #ffffff;
    padding: 0px 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link .logo-img {
    max-width: 80px; 
    height: auto;
}

/* NAVEGAÇÃO */
.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.nav-menu ul li a:hover {
    background-color: #d2d2d231;
}

/* MENU HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* BOTÕES GERAIS */
.btn {
    display: inline-block;
    background-color: #1a1a1a; 
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}
.secao-titulo {
    margin-bottom: 60px; /* Distância entre o título e o slide */
}
.btn:hover {
    background-color: #333;
}

/* ==================================== */
/* RESPONSIVIDADE */
/* ==================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header .container { padding: 12px 15px; }

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: #000000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active { display: block; }

    .nav-menu ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-menu ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #000000;
    }

    .hamburger { display: block; }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split-layout .image-content {
        max-width: 100%;
        order: -1;
        margin-bottom: 25px;
    }

    .split-layout .text-content {
        text-align: center;
    }

    /* Em mobile, texto justificado pode ficar estranho → volta para left */
    .split-layout .text-content p {
        text-align: left;
    }

    .contact-info p {
        justify-content: center;
    }

    .product-grid {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }
}
/* Configuração Base do Header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* --- VERSÃO MOBILE (Até 768px) --- */
@media (max-width: 768px) {
    /* Esconde a div de contato com ícones */
    .header-contact {
        display: none;
    }

    /* Mostra o link de contato dentro do menu hambúrguer */
    .mobile-only {
        display: block;
    }

    /* Ajuste do menu para aparecer apenas quando clicado (exemplo) */
    .nav-menu {
        /* Seu estilo de menu mobile aqui */
    }
}
/* --- RESPONSIVIDADE (MOBILE) --- */

@media (max-width: 768px) {
    .flexa-banner {
        flex-direction: column; /* Empilha o conteúdo */
        padding: 40px 20px;
        gap: 30px;
        text-align: center; /* Centraliza o texto no mobile */
    }

    .content-col {
        order: 1; /* Texto primeiro */
    }

    h1 {
        font-size: 32px; /* Reduz o título no celular */
    }

    .description {
        margin: 0 auto 25px auto; /* Centraliza o parágrafo */
    }

    .image-col {
        order: 2; /* Imagem depois */
        width: 100%;
    }

    .image-comparison {
        width: 100%; /* Ocupa a largura total disponível */
        max-width: 400px; /* Limite de tamanho para não ficar gigante */
        height: 350px; /* Altura menor no celular */
        margin: 0 auto;
    }

    .image-comparison img {
        width: 100%; /* Ajusta a imagem de fundo à largura variável */
        height: 100%;
    }

    /* Ajuste crítico: garante que a imagem cortada acompanhe o tamanho do container */
    .img-overlay img {
        width: 400px; /* Deve coincidir com a largura real do container no mobile */
    }
}

/* Ajuste para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 400px) {
    h1 {
        font-size: 28px;
    }
    
    .image-comparison {
        height: 300px;
    }
}
.btn-header {
  /* Cores: Gradiente linear usando sua cor #001e44 */
  background: linear-gradient(135deg, #003a82 0%, #001e44 100%);
  color: #ffffff !important; /* Texto branco garantido */
  
  /* Formato Redondo */
  padding: 12px 32px;
  border-radius: 50px; /* Faz o botão ficar redondo nas pontas */
  
  /* Tipografia */
  font-family: 'sans-serif';
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  
  /* Efeito de Brilho e Sombra */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 30, 68, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Interação ao passar o mouse */
.btn-header:hover {
  transform: scale(1.05); /* Aumenta levemente o tamanho */
  box-shadow: 0 6px 20px rgba(0, 30, 68, 0.5);
  filter: brightness(1.2); /* Dá um "brilho" extra na cor */
}
.texto-brilhante {
    /* Define um gradiente como fundo */
    background: linear-gradient(
        to right, 
        #ffffff 50%, 
        #001e44 50%, 
        #001e44 50%, 
        #ffffff 50%
    );
    background-size: 200% auto;
    
    /* Faz o gradiente preencher apenas o texto */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Adiciona um brilho suave ao redor (Glow) */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.993));
    
    /* Configura a animação */
    animation: brilho-animado 10s linear infinite;
    
    /* Estilização extra para destaque */
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Define o movimento do brilho */
@keyframes brilho-animado {
    to {
        background-position: 200% center;
    }
}

/* --- BARRA DE CATEGORIAS (STICKY) --- */
.categories-bar {
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 25px 0 15px;
    background-color: var(--bg-body);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 999;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.2s;
    font-size: 12px;
    font-weight: 600;
}

.category-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.category-item:hover, .category-item.active {
    color: var(--text-main);
    border-bottom: 2px solid var(--text-main);
    padding-bottom: 10px;
}

/* --- GRID DE IMÓVEIS --- */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 6%;
}

.listing-card {
    transition: transform 0.3s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 15px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.listing-card:hover img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* --- INFO DO CARD --- */
.listing-info {
    padding: 12px 2px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-header h3 {
    font-size: 15px;
    margin: 0;
}

.sub-text {
    color: var(--text-muted);
    font-size: 14px;
    margin: 4px 0;
}

.price-row {
    margin-top: 8px;
}

.price {
    font-weight: 700;
    font-size: 16px;
}

.unit {
    color: var(--text-muted);
    font-weight: 400;
}

/* --- BOTÃO VERDE --- */
.btn-reserve {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-reserve:hover {
    background-color: #27ae60;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

/* --- SEÇÃO CRIPTO --- */
.crypto-info {
    background-color: var(--card-bg);
    margin: 50px 6%;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.crypto-content h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.network-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.network-badges span {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    text-decoration: none;
}
/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column; /* Alinha os itens em coluna */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;    /* Centraliza horizontalmente */
    text-align: center;     /* Centraliza o texto interno */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('imagens/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero-brand {
    color: #2ecc71;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
    width: 100%; /* Garante que ocupe a largura para o text-align funcionar */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 20px; /* O 'auto' nas laterais centraliza blocos com max-width */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px; /* Centraliza o bloco do subtítulo */
}

.hero-buttons {
    display: flex;
    justify-content: center; /* Garante que os botões fiquem centralizados entre si */
    gap: 20px;
    margin-bottom: 60px;
    width: 100%;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block; /* Garante que o padding e transformações funcionem bem */
}

.btn-primary {
    background-color: #2ecc71;
    color: #000;
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-primary:hover { background: #27ae60; }
.btn-secondary:hover { background: white; color: black; }

/* --- BARRA DE PESQUISA AIRBNB --- */
.search-container {
    position: center;
    bottom: -40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-bar {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 15px 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 850px;
}

.search-item {
    display: flex;
    flex-direction: column;
    padding: 5px 20px;
    flex: 1;
}

.search-item label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.search-item input {
    background: transparent;
    border: none;
    color: #888;
    outline: none;
    font-size: 14px;
    padding-top: 10px;
    text-align: center; /* Substitua position por isso */
}

.divider-v {
    width: 1px;
    height: 35px;
    background: #444;
}

.search-icon-btn {
    background: #2ecc71;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.search-icon-btn:hover { background: #27ae60; transform: scale(1.05); }

/* Ajuste na margem do conteúdo abaixo do Hero */
#explore {
    margin-top: 100px;
}
/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    
    /* Ajustes na Hero Section */
    .hero {
        height: auto;
        padding: 100px 20px; /* Aumenta o respiro interno em vez de altura fixa */
    }

    .hero h1 {
        font-size: 2.2rem; /* Reduz o tamanho do título principal */
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Botões empilhados em telas muito pequenas */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%; /* Botões ocupam a largura total no mobile */
        max-width: 300px;
        text-align: center;
    }

    /* --- BARRA DE PESQUISA (VERSÃO MOBILE) --- */
    .search-container {
        position: relative; /* Remove o posicionamento absoluto se houver */
        bottom: 0;
        margin-top: -30px; /* Faz ela "subir" um pouco sobre a hero */
        padding: 0 15px;
    }

    .search-bar {
        flex-direction: column; /* Transforma em lista vertical */
        border-radius: 20px;    /* Arredondamento menos agressivo */
        padding: 20px;
        gap: 15px;
    }

    .search-item {
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #333; /* Linha separadora horizontal no mobile */
    }

    .search-item:last-of-type {
        border-bottom: none;
    }

    .divider-v {
        display: none; /* Esconde os divisores verticais do desktop */
    }

    .search-icon-btn {
        width: 100%; /* Botão de busca ocupa a largura toda */
        border-radius: 8px;
        margin-top: 10px;
    }

    /* Ajuste do conteúdo abaixo */
    #explore {
        margin-top: 0px;
    }
}
/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 768px) {
    
    /* 1. Barra de Categorias com Scroll Horizontal */
    .categories-bar {
        justify-content: flex-start; /* Alinha itens ao início para o scroll */
        gap: 25px;                   /* Reduz o espaço entre ícones */
        padding: 15px 20px;
        overflow-x: auto;            /* Habilita o scroll horizontal */
        white-space: nowrap;         /* Impede que os itens quebrem linha */
        -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
    }

    /* Esconde a barra de rolagem visualmente para um look mais limpo */
    .categories-bar::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        flex: 0 0 auto;              /* Impede que os itens encolham */
        font-size: 11px;
    }

    /* 2. Grid de Imóveis */
    .listings-grid {
        grid-template-columns: 1fr;  /* Um card por linha no mobile */
        padding: 20px 20px;          /* Reduz as margens laterais */
        gap: 25px;
    }

    /* 3. Ajuste de Imagens (proporção melhor para mobile) */
    .image-wrapper {
        aspect-ratio: 16 / 10;       /* Ligeiramente mais retangular que o 1:1 */
    }

    /* 4. Seção Cripto */
    .crypto-info {
        margin: 30px 20px;
        padding: 40px 20px;
    }

    .crypto-content h2 {
        font-size: 1.5rem;           /* Diminui o título */
    }

    .network-badges {
        flex-wrap: wrap;             /* Badges quebram linha se necessário */
        gap: 10px;
    }

    /* 5. WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    /* 6. Botão de Reserva */
    .btn-reserve {
        padding: 14px;               /* Botão maior para facilitar o toque */
        font-size: 15px;
    }
}

/* Ajuste fino para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 480px) {
    .info-header h3 {
        font-size: 14px;
    }
    
    .price {
        font-size: 15px;
    }
}
/* ============================================================
   2. HEADER E NAVEGAÇÃO
   ============================================================ */
.header {
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    max-width: 80px;
    height: auto;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 15px;
    transition: 0.3s;
}

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

/* Botão Redondo no Header */
.btn-header {
    background: linear-gradient(135deg, #003a82 0%, #001e44 100%);
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 30, 68, 0.4);
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ============================================================
   3. HERO SECTION E BUSCA
   ============================================================ */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagens/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.hero-brand {
    color: var(--primary-green);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 20px;
}

/* Texto Animado Brilhante */
.texto-brilhante {
    background: linear-gradient(to right, #ffffff 20%, #003a82 40%, #003a82 60%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brilho-animado 5s linear infinite;
}

@keyframes brilho-animado {
    to { background-position: 200% center; }
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: 10;
}

.search-bar {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.search-item label { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.search-item input { background: transparent; border: none; color: #fff; outline: none; padding-top: 5px; }

/* ============================================================
   5. WHATSAPP E CRIPTO
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    color: white;
    text-decoration: none;
}

/* ============================================================
   6. RESPONSIVIDADE (MOBILE)
   ============================================================ */
@media (max-width: 768px) {
    /* Header Mobile */
    .hamburger { display: block; }
    .nav-menu {
        display: none; /* Requer JS para alternar classe .active */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
    }
    .nav-menu.active { display: flex; }
    .nav-menu ul { flex-direction: column; gap: 15px; }

    /* Hero Section */
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; }

    /* Busca Mobile */
    .search-container { margin-top: 20px; padding: 20px 15px; }
    .search-bar { 
        flex-direction: column; 
        border-radius: 20px; 
        padding: 20px;
        gap: 15px;
    }
    .search-item { 
        width: 100%; 
        padding: 10px 0; 
        border-bottom: 1px solid #333; 
    }
    .search-icon-btn { width: 100%; border-radius: 10px; height: 50px; }

    /* Categorias com Scroll */
    .categories-bar {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 15px 20px;
        white-space: nowrap;
        gap: 25px;
    }
    .categories-bar::-webkit-scrollbar { display: none; }
    .category-item { flex: 0 0 auto; }

    /* Grid de Imóveis */
    .listings-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .image-wrapper { aspect-ratio: 16/10; }

    /* Seção Cripto */
    .crypto-info { margin: 20px; padding: 30px 15px; }
    .crypto-content h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}
/* No seu CSS */
main p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}
main h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}
main ul {
    margin-bottom: 25px;
    padding-left: 20px;
}