/* =========================================== */
/* TRADUCTOR PERSONALIZADO MBC TECH */
/* =========================================== */

/* Ocultar completamente el widget de Google Translate */
#google_translate_element,
.skiptranslate,
.goog-te-gadget,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* Eliminar el banner superior de Google */
body {
    top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* =========================================== */
/* SELECTOR PERSONALIZADO DE IDIOMAS */
/* =========================================== */

.custom-translate-container {
    position: relative;
    display: inline-block;
}

.custom-translate-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    border: 2px solid #5e9df7;
    border-radius: 8px;
    padding: 8px 12px 8px 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1e3a8a;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 120px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231e3a8a' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}

.custom-translate-select:hover {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(94, 157, 247, 0.1);
}

.custom-translate-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(94, 157, 247, 0.2);
}

/* Icono de globo */
.translate-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #5e9df7;
    pointer-events: none;
    z-index: 1;
}

/* Opciones del select */
.custom-translate-select option {
    background: white;
    color: #1e3a8a;
    font-family: 'Inter', sans-serif;
    padding: 8px;
}

/* =========================================== */
/* ESTILO ALTERNATIVO: BOTONES */
/* =========================================== */

.translate-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.translate-button {
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.translate-button:hover {
    background: #5e9df7;
    color: white;
    border-color: #5e9df7;
}

.translate-button.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

/* =========================================== */
/* RESPONSIVO */
/* =========================================== */

@media (max-width: 768px) {
    .custom-translate-select {
        min-width: 100px;
        font-size: 13px;
        padding: 6px 10px 6px 30px;
    }
    
    .translate-icon {
        width: 14px;
        height: 14px;
        left: 8px;
    }
}