/* --- BOTÓN FLOTANTE DE IDIOMA --- */
#lang-float-btn {
    position: fixed;
    bottom: 82px;
    right: 24px;
    z-index: 200;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 2px solid #58a6ff;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(88,166,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lang-float-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
#lang-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(88,166,255,0.7);
}

/* --- BOTÓN FLOTANTE DE CONTACTO --- */
#contact-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 2px solid #4f8cff;
    cursor: pointer;
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(79,140,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact-float-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#contact-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(79,140,255,0.7);
}

/* --- MODAL DE CONTACTO --- */
#contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    width: 720px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1003;
    background: #141a24;
    border: 1px solid #253045;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
#contact-modal h4 {
    margin: 0 0 16px 0;
    color: #e6e6e6;
    font-size: 16px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.contact-field label {
    font-size: 12px;
    color: #8899aa;
    font-weight: 600;
}
.contact-field input,
.contact-field textarea {
    background: #0d1117;
    color: #e6e6e6;
    border: 1px solid #253045;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #4f8cff;
    box-shadow: 0 0 0 2px rgba(79,140,255,0.2);
}
.contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.contact-send-btn {
    background: #4f8cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-send-btn:hover {
    background: #3a6fd8;
}
.contact-send-btn:disabled {
    background: #555;
    cursor: not-allowed;
}
#contact-status {
    font-size: 12px;
    color: #8899aa;
}
