body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f7f6;
}

/* HEADER */
.header-custom {
    background: #009929;
}

/* LOGO */
.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .logo {
        max-width: 250px;
    }
}

/* BOTONES */
.btn-publicar {
    background: #009929;
    border: none;
    color: white;
}

.btn-publicar:hover {
    background: #CC3333;
    color: white;
}

/* CARDS */
.card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: transform .2s ease;
    background: white;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

/* MODAL */
.modal-content {
    border-radius: 15px;
}

#modalImg {
    max-height: 350px;
    object-fit: cover;
}

/* TEXTOS */
small {
    color: #007A21;
}