/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}


.navbar-brand img {
    height: 50px;
}

/* Hero Section com Parallax */
.hero {
    height: 100vh;
    background: url('corretor-imoveis.jpg') center/cover no-repeat fixed; /* Imagem de fundo */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Camada escura sobre a imagem */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Transparência escura */
    z-index: 1;
}

/* Conteúdo da Hero Section */
.hero .container {
    z-index: 2;
    color: #D3D3D3  !important;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Botões Hero */
.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #1d4ed8;
}

/* Indicador de rolagem */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.scroll-indicator span {
    display: inline-block;
    animation: bounce 1.5s infinite;
}

/* Animação para seta de rolagem */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}
