/* =========================================
BOTONES COMPARTIR - GENERAL
========================================= */

.share-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:25px;
}

.share-btn{
color:#fff;
text-decoration:none;
padding:10px 14px;
border-radius:6px;
font-weight:bold;
display:inline-flex;
align-items:center;
gap:8px;
}

/* =========================================
COLORES POR RED SOCIAL
========================================= */

.share-whatsapp{
background:#25D366;
}

.share-facebook{
background:#1877F2;
}

.share-x{
background:#000000;
}

.share-telegram{
background:#229ED9;
}

.share-copy{
background:#6c757d;
border:none;
cursor:pointer;
}

/* =========================================
AJUSTES PARA CELULAR
Modificar aquí tamaños móviles
========================================= */

@media (max-width: 768px){

```
.share-buttons{
    gap:6px;
}

.share-btn{
    padding:6px 8px;      /* tamaño botón */
    font-size:12px;       /* tamaño texto */
    gap:5px;              /* separación icono/texto */
}

.share-btn i{
    font-size:14px;       /* tamaño iconos */
}
```

}

.share-label{
    display:flex;
    align-items:center;
    font-weight:300;
    color:#555;
}