.img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa; 
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
    transition: transform 0.4s ease;
}

.producto-card-mzt:hover .img-container img {
    transform: scale(1.1);
}

.producto-card-mzt {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e1e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.producto-card-mzt:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 68, 0.1);
    transform: translateY(-5px);
}

.card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-info h5 {
    font-size: 1.1rem;
    color: #000044;
    margin-bottom: 5px;
}

.separator-blue-center {
    width: 35px;
    height: 3px;
    background: #3b8fc2; 
    margin: 10px auto;
    border-radius: 2px;
}

.badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3b8fc2;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-family: 'Arial Black', sans-serif;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-mzt-card {
    background: #000044;
    color: white !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Arial Black', sans-serif;
    font-size: 0.75rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-mzt-card:hover {
    background: #3b8fc2;
}

.btn-wsp-small {
    color: #25d366 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.btn-filter {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Arial Black', sans-serif;
    font-size: 0.7rem;
    border: 2px solid #e1e8f0;
    background: white;
    color: #000044;
    transition: all 0.3s ease;
}

.btn-filter.active {
    background: #000044;
    color: white;
    border-color: #000044;
}

.btn-filter:hover:not(.active) {
    border-color: #3b8fc2;
    color: #3b8fc2;
}

.page-title {
    display: none !important;
}

.modal-content {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 68, 0.2) !important;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #3b8fc2;
}

.modal-header h5 {
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -0.5px;
}

.list-group-item {
    border: none; 
    padding-left: 0;
    padding-right: 0;
    color: #444;
}

.list-group-item i {
    color: #000044; 
    font-size: 0.9rem;
    width: 20px;
}

.modal-body img {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.modal-footer .btn-success {
    background-color: #25d366;
    border: none;
    font-family: 'Arial Black', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.modal-footer .btn-success:hover {
    background-color: #1eb956;
    transform: scale(1.02);
}

.btn-close {
    opacity: 0.8;
}

.btn-close:focus {
    box-shadow: none;
}