@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideIn 0.3s ease-out;

}

.dropdown-menu {
    display: none;
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s ease;

}

.dropdown-item:hover {
    background-color: #f8f9fa;
}



.property-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.property-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-info-item i {
    color: #0d6efd;
    width: 20px;
}

:root {
    --primary-color: #0077be;
    --secondary-color: #00a86b;
    --text-color: #333;
    --background-color: #f5f5f5;
}

body {
    font-family: "Arial", sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(0, 120, 190, 0.911) !important;
    padding: 1rem 0;
    height: 100px;
}

.logo-img {
    width: 200px;
    height: 80px;
}

#heroCarousel {
    margin-top: 76px;
}

.carousel-item {
    height: calc(100vh - 76px);
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wave-container {
    position: relative;
    background: #f5f5f5;
    margin-top: -1px;
}

.wave-container svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

footer {
    margin-top: -1px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    /* Elimina la línea */
}

.whatsapp-button:hover {
    color: white;
}