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

.navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.office-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.office-card:hover {
    transform: translateY(-10px);
}

/* Altura para fotos horizontales de áreas comunes */
.img-horizontal {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Altura para el slider de oficinas (Vertical) */
.carousel-item img {
    width: 100%;
    height: auto; /* Ajusta según prefieras el alto vertical */
    object-fit: cover;
    border-radius: 12px;
}

/* Etiqueta flotante sobre el slider */
.office-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(13, 110, 253, 0.9); /* Azul Bootstrap */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Personalización de flechas del slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    background-size: 60%;
}

.btn-whatsapp-main {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp-main:hover {
    background-color: #128c7e;
    color: white;
}

.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    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 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
}

.amenity-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 10px;
}

footer {
    background-color: #212529;
    color: white;
    padding: 40px 0;
}