/* ====== Ajustes para setas do carrossel do modal de imóveis ====== */
#modalImovelCarousel .carousel-control-prev,
#modalImovelCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20,20,20,0.45);
    border-radius: 50%;
    opacity: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#modalImovelCarousel .carousel-control-prev:hover,
#modalImovelCarousel .carousel-control-next:hover {
    background: rgba(20,20,20,0.75);
}
#modalImovelCarousel .carousel-control-prev-icon,
#modalImovelCarousel .carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 2px #000);
    width: 2rem;
    height: 2rem;
}

/* ====== Tipografia e Elementos Básicos ====== */
body {
    font-family: 'Roboto', sans-serif;
}
a{
    text-decoration: none;
    color: #0d2c4e; /* Navy Blue */
}


h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* ====== Navbar ====== */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease;
    z-index: 3;
}
.navbar.scrolled {
    background-color: #0d2c4e; /* Navy Blue */
}


.nav-link {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
#navBrand{
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    margin-left: 10px;
}
.nav-link:hover {
    color: #d4af37; /* Gold */
}

/* ====== Hero Section ====== */
.hero-section {
    min-height: 100vh;
    background: url('../assets/hero-bg.webp') no-repeat center center/cover;
}
.hero-section .container {
    position: relative;
    width: 100%;
    min-height: 100%;
    z-index: 2;
}
.hero-section .overlay {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    z-index:1;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-section .display-3 {
    color: #fff;
    font-weight: 700;
}


/* ====== Hero Section - Detalhes ====== */
.hero-section .lead {
    color: #d4af37; /* Gold */
    font-size: 1.5rem;
}

/* ====== Botões ====== */
.btn-primary {
    background-color: #d4af37; /* Gold */
    border-color: #d4af37;
    color: #0d2c4e; /* Navy Blue */
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 50px;
}


.btn-primary:hover {
    background-color: #b89b30;
    border-color: #b89b30;
}
.btn-outline-primary {
    color: #0d2c4e;
    border-color: #0d2c4e;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
}

.btn-outline-primary:hover {
    background-color: #0d2c4e;
    color: #fff;
}



/* ====== Seções ====== */
section {
    padding: 80px 0;
}
.display-5 {
    color: #0d2c4e; /* Navy Blue */
    font-weight: 700;
    margin-bottom: 20px;
}



/* ====== Cards de Imóveis ====== */
#imoveis .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#imoveis .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
#imoveis{
    background-color: #e2e2e2;
}

/* ====== Cores e Utilidades ====== */
.text-primary {
    color: #0d2c4e !important;
}



/* ====== Formulário de Contato ====== */
#contato .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 15px;
}
#contato .form-control:focus {
    box-shadow: none;
    border-color: #0d2c4e;
}



/* ====== Footer ====== */
footer {
    background-color: #a5851a; /* Navy Blue */
}


footer .bi {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
footer a:hover .bi {
    color: #d4af37 !important; /* Gold */
}
