/** boton english at fixed bottom*/
.lang-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.speech-bubble {
    background-color: #dc143c; /* Scarlet red */
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.speech-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}
/** fin boton english at fixed bottom */
