.smooth-back-to-top-button.btn-right-side {
    display: none;
}
.bloco-flex-line {
    display: flex;
    gap: 10px;
}

.bloco-flex-line .field-group {
    flex-grow: 1;
    flex-basis: 30%;
}


/* ============================================
   INPUT NUMBER
   ============================================ */
.wrapbloco input[type="number"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    background: #fafafc;
    transition: all 0.25s ease;
    color: #1a1a2e;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.wrapbloco input[type="number"]:focus {
    border-color: #6c63ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

/* Remove as setas do Chrome/Safari/Edge/Opera */
.wrapbloco input[type="number"]::-webkit-inner-spin-button,
.wrapbloco input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Container do input number com controles customizados */
.wrapbloco .field-group-number {
    position: relative;
}

.wrapbloco .field-group-number input[type="number"] {
    padding-right: 50px;
}

/* Botões +/- customizados */
.wrapbloco .number-controls {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px;
}

.wrapbloco .number-controls button {
    width: 28px;
    height: 20px;
    border: none;
    background: transparent;
    color: #6c63ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0;
}

.wrapbloco .number-controls button:hover {
    background: rgba(108, 99, 255, 0.1);
    color: #5a52d5;
}

.wrapbloco .number-controls button:active {
    background: rgba(108, 99, 255, 0.2);
    transform: scale(0.95);
}

.wrapbloco .number-controls button::before {
    font-family: 'Dashicons';
    font-size: 14px;
}

.wrapbloco .number-controls .number-up::before {
    content: '\f343'; /* dashicons-arrow-up-alt2 */
}

.wrapbloco .number-controls .number-down::before {
    content: '\f347'; /* dashicons-arrow-down-alt2 */
}

/* ============================================
   SELECT2 PERSONALIZADO
   ============================================ */
/* ============================================
   MULTI-SELECT CUSTOMIZADO
   ============================================ */

/* Container principal */
.wrapbloco .multi-select-custom {
    position: relative;
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Input que mostra as tags e abre o dropdown */
.wrapbloco .multi-select-trigger {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-height: 56px;
    padding: 8px 12px;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    background: #fafafc;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wrapbloco .multi-select-trigger:hover {
    border-color: #d4d4e0;
}

.wrapbloco .multi-select-trigger.active {
    border-color: #6c63ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

/* Placeholder */
.wrapbloco .multi-select-placeholder {
    color: #8e8ea0;
    font-size: 14px;
    padding: 4px 6px;
}

/* Tags selecionadas */
.wrapbloco .multi-select-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #6c63ff;
    color: #fff;
    padding: 6px 10px 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    animation: tagIn 0.2s ease;
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wrapbloco .multi-select-tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.wrapbloco .multi-select-tag-remove:hover {
    background: #ff6b6b;
    transform: scale(1.1);
}

/* Seta */
.wrapbloco .multi-select-arrow {
    margin-left: auto;
    color: #8e8ea0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.wrapbloco .multi-select-trigger.active .multi-select-arrow {
    transform: rotate(180deg);
    color: #6c63ff;
}

/* Dropdown */
.wrapbloco .multi-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: none;
    animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapbloco .multi-select-dropdown.open {
    display: block;
}

/* Campo de busca */
.wrapbloco .multi-select-search {
    padding: 12px;
    border-bottom: 1px solid #f0f0f5;
}

.wrapbloco .multi-select-search input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8e8f0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    background: #fafafc;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.wrapbloco .multi-select-search input:focus {
    border-color: #6c63ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.wrapbloco .multi-select-search input::placeholder {
    color: #b8b8cc;
}

/* Lista de opções */
.wrapbloco .multi-select-options {
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
}

.wrapbloco .multi-select-options::-webkit-scrollbar {
    width: 6px;
}

.wrapbloco .multi-select-options::-webkit-scrollbar-track {
    background: #f5f5fa;
    border-radius: 3px;
}

.wrapbloco .multi-select-options::-webkit-scrollbar-thumb {
    background: #d4d4e0;
    border-radius: 3px;
}

.wrapbloco .multi-select-options::-webkit-scrollbar-thumb:hover {
    background: #b8b8cc;
}

/* Cada opção */
.wrapbloco .multi-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 2px 0;
}

.wrapbloco .multi-select-option:hover {
    background: #f0edff;
    color: #6c63ff;
}

.wrapbloco .multi-select-option.selected {
    background: #6c63ff;
    color: #fff;
    font-weight: 500;
}

/* Checkbox customizado */
.wrapbloco .multi-select-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d4d4e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wrapbloco .multi-select-option:hover .multi-select-checkbox {
    border-color: #6c63ff;
}

.wrapbloco .multi-select-option.selected .multi-select-checkbox {
    background: #fff;
    border-color: #fff;
}

.wrapbloco .multi-select-checkbox::after {
    content: '✓';
    color: #6c63ff;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.wrapbloco .multi-select-option.selected .multi-select-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

/* Label da opção */
.wrapbloco .multi-select-option-label {
    flex: 1;
}

/* Mensagem "nenhum resultado" */
.wrapbloco .multi-select-no-results {
    text-align: center;
    padding: 16px;
    color: #8e8ea0;
    font-size: 14px;
}

/* ============================================
   CAMPOS
   ============================================ */
.wrapbloco  .field-group {
    margin-bottom: 32px;
}

.wrapbloco  .field-group label {
    display: flex;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: #1a1a2e;
    letter-spacing: -0.2px;
}

.wrapbloco  .field-group .required {
    color: #e74c3c;
    margin-left: 2px;
}

.wrapbloco  .field-group .description {
    font-size: 13px;
    color: #8e8ea0;
    margin-top: 8px;
    font-style: italic;
    display: none;
}

/* ============================================
   INPUTS E SELECTS
   ============================================ */
.wrapbloco  input[type="text"],
.wrapbloco  input[type="email"],
.wrapbloco  input[type="url"],
.wrapbloco  input[type="number"],
.wrapbloco  select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    background: #fafafc;
    transition: all 0.25s ease;
    color: #1a1a2e;
    outline: none;
}

.wrapbloco  input[type="text"]:focus,
.wrapbloco  input[type="email"]:focus,
.wrapbloco  input[type="url"]:focus,
.wrapbloco  input[type="number"]:focus,
.wrapbloco  select:focus {
    border-color: #6c63ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.wrapbloco  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%236c7781' d='M7 10L1 4h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
    height: auto;
}

.wrapbloco  select[multiple] {
    background-image: none;
    padding-right: 18px;
    min-height: 140px;
}

/* ============================================
   RADIOS FODAS
   ============================================ */
.wrapbloco  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding: 4px 0;
}

.wrapbloco  .radio-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    margin: 0;
    color: #1a1a2e;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.wrapbloco  .radio-group label:hover {
    color: #6c63ff;
}

.wrapbloco  .radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2.5px solid #d1d5db;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

.wrapbloco  .radio-group input[type="radio"]:checked {
    border-color: #6c63ff;
    border-width: 6px;
    background: #6c63ff;
}

.wrapbloco  .radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.wrapbloco  .radio-group input[type="radio"]:focus {
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.15);
}

.wrapbloco  .radio-group input[type="radio"]:hover {
    border-color: #6c63ff;
}

.wrapbloco  .radio-group input[type="radio"]:hover:checked {
    border-color: #6c63ff;
    background: #6c63ff;
}

/* ============================================
   CHECKBOXES COMO SWITCH FODA
   ============================================ */
.wrapbloco .checkbox-switch-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    padding: 4px 0;
}

.wrapbloco .field-group label.switch-label {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    position: relative;
    padding: 0px 0 2px 52px;
    user-select: none;
    transition: color 0.25s ease;
    min-height: 30px;
    line-height: 1.3em;
    margin: 0;
}

.wrapbloco  .switch-label:hover {
    color: #6c63ff;
}

.wrapbloco  .switch-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Track do switch */
.wrapbloco  .switch-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 24px;
    background: #d1d5db;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Knob do switch */
.wrapbloco  .switch-label::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* Estado checked */
.wrapbloco  .switch-label:has(input:checked)::before {
    background: #6c63ff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.15);
}

.wrapbloco  .switch-label:has(input:checked)::after {
    transform: translate(18px, -50%);
    background: #ffffff;
}

/* Hover no checked */
.wrapbloco  .switch-label:has(input:checked):hover::before {
    background: #7a72ff;
}

/* Foco */
.wrapbloco  .switch-label:focus-within::before {
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.25);
}

/* Animação de clique */
.wrapbloco  .switch-label:active::after {
    width: 22px;
    height: 22px;
    transition: width 0.1s ease, height 0.1s ease;
}

/* Fallback sem :has */
.wrapbloco  .switch-label.checked::before {
    background: #6c63ff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.15);
}

.wrapbloco  .switch-label.checked::after {
    transform: translate(18px, -50%);
    background: #ffffff;
}

.wrapbloco  .switch-label.checked:hover::before {
    background: #7a72ff;
}


@media (max-width: 767px) {
   
.wrapbloco .checkbox-switch-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    padding: 4px 0;
}

.repeater-row-dupla, .wrapbloco .video-file-preview, .wrapbloco .locucao-file-preview {
    display: flex;
    gap: 10px;
    flex-direction: column;
   
}

}