/* Portal Web Comercial - OLMerp Inmobiliario */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #333;
}

.hero-section {
    padding: 4rem 0;
    color: #fff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.project-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.project-card .card-body {
    padding: 1.5rem;
}

.unit-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.unit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.unit-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.unit-details .badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
}

.page-header {
    color: #fff;
}

.portal-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
}

.portal-footer h5, .portal-footer h6 {
    color: #fff;
    font-weight: 600;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.search-form .input-group {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}

.sticky-top {
    z-index: 1020;
}

/* === Mapa === */
.portal-mapa-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background: #f0f4f8;
}

.portal-mapa-container #portalMap {
    width: 100%;
    height: 100%;
}

.mapa-overlay-search {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 90%;
    max-width: 500px;
}

.mapa-overlay-search .search-form .input-group {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* InfoWindow personalizado */
.gm-style-iw {
    border-radius: 12px !important;
    padding: 4px !important;
}

.gm-style-iw-d {
    overflow: visible !important;
}

.gm-ui-hover-effect {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-section h1 {
        font-size: 1.75rem;
    }
    .portal-mapa-container {
        height: 50vh;
        min-height: 300px;
    }
    .mapa-overlay-search {
        top: 10px;
        width: 95%;
    }
}
