/* ===============================
   BARRE 4 ICÔNES FIXES
================================ */
.contact-bar-4 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;

    background: var(--primary);
   

    z-index: 99999;
}

/* ===============================
   ITEM
================================ */
.contact-bar-4 .bar-item {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 3px 0;

    text-decoration: none;
    color:  var(--text-on-primary); 
    font-size: 12px;
    font-weight: 600;
	border: 1px solid #e5e5e5;
    transition: background .2s ease;
}

.contact-bar-4 .bar-item:hover {
    background: rgba(0,0,0,.04);
}

/* ===============================
   ICÔNE
================================ */
.contact-bar-4 .icon {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;
}



.bar-item.whatsapp {
    background-color: #25D366;
    color: #fff;
 
    display: flex;
    align-items: center;
    
    text-decoration: none;
}

.bar-item.whatsapp .icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* ===============================
   MOBILE ONLY
================================ */
@media (max-width: 768px) {
    .contact-bar-4 {
        display: flex;
    }
}

/* ===============================
   DESKTOP : CACHÉ
================================ */
@media (min-width: 769px) {
    .contact-bar-4 {
        display: none;
    }
}
/* ===============================
   MODALES
================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
