/**
 * GUS Sticky Elements - Frontend Styles
 * 
 * @package GUS_Manager
 * @subpackage Sticky_Elements
 */

/* ===== CONTAINER PRINCIPAL ===== */
.gus-sticky-elements {
    position: fixed;
    z-index: 999999;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== RESET COMPLETO PARA EVITAR CONFLITOS COM TEMAS/PLUGINS ===== */
.gus-sticky-elements *,
.gus-sticky-elements *::before,
.gus-sticky-elements *::after {
    box-sizing: border-box !important;
}

.gus-sticky-elements button,
.gus-sticky-elements input[type="button"],
.gus-sticky-elements input[type="submit"] {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-indent: 0 !important;
    text-shadow: none !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: baseline !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
    /* NÃO remover background e color - deixar para os elementos específicos */
}

/* ===== POSICIONAMENTO ===== */
.gus-sticky-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    padding-right: 150px; /* Espaço para expansão do texto */
}

.gus-sticky-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    padding-left: 150px; /* Espaço para expansão do texto */
}

.gus-sticky-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    padding-top: 60px; /* Espaço para expansão do texto */
}

/* ===== CONTAINER DOS ELEMENTOS (BARRA ÚNICA) ===== */
.gus-sticky-container {
    display: flex;
    border-radius: 25px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.gus-sticky-left .gus-sticky-container,
.gus-sticky-right .gus-sticky-container {
    flex-direction: column;
}

.gus-sticky-bottom .gus-sticky-container {
    flex-direction: row;
}

/* ===== ELEMENTOS INDIVIDUAIS ===== */
.gus-sticky-element {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #7761DF !important;
    color: white !important;
    text-decoration: none !important;
    padding: 12px !important;
    margin: 0 !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    width: 50px !important;
    height: 50px !important;
    position: relative !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
}

/* ===== CORREÇÃO ESPECÍFICA PARA CONFLITOS COM ELEMENTOR ===== */
.gus-sticky-elements .gus-sticky-element,
.gus-sticky-elements button.gus-sticky-element,
.gus-sticky-elements .gus-contact-form-trigger,
.gus-sticky-elements .gus-toggle-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
}

/* ===== ÍCONES ===== */
.gus-sticky-icon {
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 20;
    color: var(--icon-color, #FFFFFF);
}

/* ===== TEXTO (INICIALMENTE OCULTO) ===== */
.gus-sticky-text {
    position: absolute;
    background: inherit;
    color: white;
    padding: 12px 16px 12px 60px;
    border-radius: 0 25px 25px 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
}

/* ===== POSICIONAMENTO DO TEXTO ===== */
.gus-sticky-left .gus-sticky-text {
    left: -10px;
    top: 0;
    transform: translateX(-20px);
    padding: 12px 16px 12px 60px;
    border-radius: 0 25px 25px 0 !important;
}

.gus-sticky-right .gus-sticky-text {
    right: -10px;
    top: 0;
    padding: 12px 60px 12px 16px;
    transform: translateX(20px);
    border-radius: 25px 0 0 25px !important;
}

.gus-sticky-bottom .gus-sticky-text {
    bottom: 0;
    left: 0;
    padding: 12px 16px 12px 60px;
    transform: translateY(20px);
    width: auto;
    min-width: 120px;
}

/* ===== BORDAS ARREDONDADAS APENAS NAS PONTAS ===== */
.gus-sticky-left .gus-sticky-element:first-child,
.gus-sticky-right .gus-sticky-element:first-child {
    border-radius: 25px 25px 0 0;
}

.gus-sticky-left .gus-sticky-element:last-child {
    border-radius: 0 0 20px 0 !important;
}

.gus-sticky-right .gus-sticky-element:last-child {
    border-radius: 0 0 25px 0 !important;
}

.gus-sticky-bottom .gus-sticky-element:first-child {
    border-radius: 0 0 0 25px !important;
}

.gus-sticky-bottom .gus-sticky-element:last-child {
    border-radius: 0 0 25px 0 !important;
}

/* ===== ELEMENTO ÚNICO (TOTALMENTE ARREDONDADO) ===== */
.gus-sticky-element:only-child {
    border-radius: 25px 25px 0 0 !important;
}

/* ===== SEPARADORES ENTRE ELEMENTOS ===== */
.gus-sticky-left .gus-sticky-element:not(:last-child),
.gus-sticky-right .gus-sticky-element:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gus-sticky-bottom .gus-sticky-element:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BOTÃO DE TOGGLE ===== */
.gus-toggle-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(92, 92, 92, 0.8) !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    width: 50px !important;
    height: 50px !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    margin: 0 !important;
    border-radius: 0;
}

.gus-sticky-left .gus-toggle-button {
    border-radius: 0 20px 0 0 !important;
}

.gus-sticky-right .gus-toggle-button {
    border-radius: 20px 0 0 0 !important;
}

.gus-sticky-bottom .gus-toggle-button {
    border-radius: 20px 0 0 0 !important;
}

.gus-toggle-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gus-sticky-elements.gus-hidden .gus-sticky-container {
    display: none;
}

.gus-sticky-elements.gus-hidden .gus-toggle-button {
    border-radius: 15px !important;
    background: rgba(119, 97, 223, 0.9);
}

/* ===== EFEITOS DE HOVER ===== */
.gus-sticky-element:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
    z-index: 10;
    position: relative;
}

.gus-sticky-element:hover .gus-sticky-text {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(0);
}

/* ===== ANIMAÇÕES ESPECÍFICAS POR POSIÇÃO ===== */
.gus-sticky-left .gus-sticky-element:hover .gus-sticky-text {
    transform: translateX(0);
    animation: slideInLeft 0.3s ease-out;
}

.gus-sticky-right .gus-sticky-element:hover .gus-sticky-text {
    transform: translateX(0);
    animation: slideInRight 0.3s ease-out;
}

.gus-sticky-bottom .gus-sticky-element:hover .gus-sticky-text {
    transform: translateY(0);
    animation: slideInUp 0.3s ease-out;
}

/* ===== KEYFRAMES PARA ANIMAÇÕES ===== */
@keyframes slideInLeft {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== ANIMAÇÃO CLICK (ALTERNATIVA AO HOVER) ===== */
.gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(0);
}

.gus-sticky-left .gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    transform: translateX(0);
}

.gus-sticky-right .gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    transform: translateX(0);
}

.gus-sticky-bottom .gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    transform: translateY(0);
}

.gus-sticky-element:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ===== ÍCONES ===== */
.gus-sticky-icon {
    font-size: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.gus-sticky-element.gus-minimized .gus-sticky-icon {
    margin-right: 0;
}

/* ===== TEXTO ===== */
.gus-sticky-text {
    white-space: nowrap;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gus-sticky-element.gus-minimized .gus-sticky-text {
    width: 0;
    opacity: 0;
    margin-left: 0;
}

/* ===== ANIMAÇÕES ===== */
.gus-sticky-element.gus-animation-hover .gus-sticky-text {
    width: 0;
    opacity: 0;
    margin-left: 0;
}

.gus-sticky-element.gus-animation-hover:hover .gus-sticky-text {
    width: auto;
    opacity: 1;
    margin-left: 8px;
}

.gus-sticky-element.gus-animation-click .gus-sticky-text {
    width: 0;
    opacity: 0;
    margin-left: 0;
}

.gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    width: auto;
    opacity: 1;
    margin-left: 8px;
}

/* ===== CORES DOS CANAIS ===== */
.gus-sticky-whatsapp {
    background: #25D366;
}

.gus-sticky-facebook {
    background: #1877F2;
}

.gus-sticky-email {
    background: #EA4335;
}

.gus-sticky-phone {
    background: #0088CC;
}

.gus-sticky-contact-form {
    background: #7761DF;
}

/* ===== POSICIONAMENTO BOTTOM ===== */
.gus-sticky-bottom .gus-sticky-element {
    margin-bottom: 0;
    margin-right: 10px;
}

.gus-sticky-bottom .gus-sticky-element:last-child {
    margin-right: 0;
}

/* ===== MODAL DO FORMULÁRIO ===== */
.gus-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
}

/* ===== POSICIONAMENTO DO FORMULÁRIO BASEADO NA BARRA ===== */
.gus-form-modal.gus-position-left {
    justify-content: flex-start;
    align-items: center;
    padding-left: 70px;
}

.gus-form-modal.gus-position-right {
    justify-content: flex-end;
    align-items: center;
    padding-right: 70px;
}

.gus-form-modal.gus-position-bottom {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 70px;
}

.gus-form-modal.gus-active {
    display: flex;
}

.gus-form-content {
    background: white !important;
    border-radius: 10px !important;
    padding: 20px !important;
    max-width: 450px !important;
    width: 100% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
    animation: gusModalSlideIn 0.3s ease-out !important;
}

@keyframes gusModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gus-form-header {
    position: relative !important;
    margin-bottom: 15px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #eee !important;
}

.gus-form-title {
    margin: 0 0 5px 0 !important;
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    padding-right: 40px !important;
}

.gus-form-close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background: #7761DF !important;
    border: none !important;
    font-size: 14px !important;
    cursor: pointer !important;
    color: white !important;
    padding: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.gus-form-close:hover {
    background: #6651CC !important;
    transform: scale(1.05) !important;
}

/* ===== FORMULÁRIO ===== */
.gus-contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.gus-form-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

.gus-form-field label {
    margin-bottom: 0 !important;
    font-weight: 500 !important;
    color: #555 !important;
    font-size: 13px !important;
}

.gus-form-field input,
.gus-form-field textarea,
.gus-form-field select {
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 36px !important;
    max-height: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease !important;
    font-family: inherit !important;
    background: white !important;
    color: #333 !important;
}

.gus-form-field input:focus,
.gus-form-field textarea:focus,
.gus-form-field select:focus {
    outline: none;
    border-color: #7761DF;
    box-shadow: 0 0 0 2px rgba(119, 97, 223, 0.1);
}

.gus-form-field textarea {
    resize: vertical !important;
    min-height: 70px !important;
    max-height: 150px !important;
}

/* ===== CORREÇÃO: Garantir campos consistentes independente do tema ===== */
.gus-form-modal .gus-form-field input[type="text"],
.gus-form-modal .gus-form-field input[type="email"],
.gus-form-modal .gus-form-field input[type="tel"],
.gus-form-modal .gus-form-field textarea,
.gus-form-modal .gus-form-field select {
    background: white !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    min-height: 36px !important;
    height: auto !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.gus-form-field.gus-required label::after {
    content: ' *';
    color: #dc3232;
}

.gus-form-field.gus-error input,
.gus-form-field.gus-error textarea,
.gus-form-field.gus-error select {
    border-color: #dc3232;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.1);
}

.gus-form-error {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
}

/* ===== BOTÃO DE ENVIO ===== */
.gus-form-submit {
    background: #7761DF !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 5px !important;
}

.gus-form-submit:hover {
    background: #6651CF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(119, 97, 223, 0.3);
}

.gus-form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gus-form-submit .gus-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== MENSAGENS ===== */
.gus-form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.gus-form-message.gus-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gus-form-message.gus-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
    .gus-sticky-elements.gus-mobile-hide {
        display: none !important;
    }
    
    .gus-sticky-elements.gus-mobile-adapt.gus-sticky-left,
    .gus-sticky-elements.gus-mobile-adapt.gus-sticky-right {
        left: 50%;
        right: auto;
        bottom: 20px;
        top: auto;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gus-sticky-elements.gus-mobile-adapt .gus-sticky-element {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .gus-sticky-elements.gus-mobile-adapt .gus-sticky-element:last-child {
        margin-right: 0;
    }
    
    .gus-sticky-left {
        left: 0 !important;
        right: auto !important;
    }
    
    .gus-sticky-right {
        right: 0 !important;
        left: auto !important;
    }
    
    .gus-sticky-bottom {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .gus-form-content {
        margin: 10px;
        padding: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .gus-form-title {
        font-size: 20px;
    }
    
    .gus-sticky-element {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .gus-sticky-icon {
        font-size: 16px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .gus-sticky-element .gus-sticky-text {
        display: none;
    }
    
    .gus-sticky-element .gus-sticky-icon {
        margin-right: 0;
    }
    
    .gus-sticky-element {
        min-width: 44px;
        padding: 12px;
    }
}

/* ===== SUPORTE RTL ===== */
[dir="rtl"] .gus-sticky-left {
    left: auto;
    right: 20px;
}

[dir="rtl"] .gus-sticky-right {
    right: auto;
    left: 20px;
}

[dir="rtl"] .gus-sticky-icon {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] .gus-sticky-element.gus-minimized .gus-sticky-icon {
    margin-left: 0;
}

[dir="rtl"] .gus-sticky-element.gus-animation-hover:hover .gus-sticky-text {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .gus-sticky-element.gus-animation-click.gus-expanded .gus-sticky-text {
    margin-left: 0;
    margin-right: 8px;
}

/* ===== ACESSIBILIDADE ===== */
.gus-sticky-element:focus-visible {
    outline: 2px solid #7761DF;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .gus-sticky-element,
    .gus-sticky-text,
    .gus-form-content {
        transition: none;
        animation: none;
    }
}

/* ===== ESTADOS DE LOADING ===== */
.gus-sticky-elements.gus-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ===== CUSTOMIZAÇÕES AVANÇADAS ===== */
.gus-sticky-elements.gus-custom-font {
    font-family: var(--gus-font-family, inherit);
}

.gus-sticky-element.gus-custom-color {
    background: var(--gus-bg-color, #7761DF);
}

/* ===== UPLOAD DE ARQUIVO ===== */
.gus-file-upload {
    margin-top: 10px;
}

.gus-file-upload input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gus-file-upload input[type="file"]:hover {
    border-color: #7761DF;
    background: #f0f0ff;
}

.gus-file-upload input[type="file"]:focus {
    outline: none;
    border-color: #7761DF;
    box-shadow: 0 0 0 3px rgba(119, 97, 223, 0.1);
}

.gus-file-info {
    margin-top: 8px;
}

.gus-file-info small {
    color: #666;
    font-size: 12px;
}

.gus-file-preview {
    margin-top: 10px;
}

.gus-image-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f0f0ff;
    border: 1px solid #7761DF;
    border-radius: 8px;
    margin-top: 8px;
}

.gus-image-preview img {
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.gus-file-name {
    flex: 1;
    font-size: 12px;
    color: #333;
    word-break: break-word;
}

.gus-remove-file {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gus-remove-file:hover {
    background: #ff3742;
}

/* ===== SELETORES SUPER ESPECÍFICOS PARA SOBREPOR ELEMENTOR E OUTROS TEMAS ===== */
body .gus-sticky-elements .gus-sticky-element,
body .gus-sticky-elements button.gus-sticky-element,
body .gus-sticky-elements .gus-contact-form-trigger,
body .gus-sticky-elements .gus-toggle-button,
html body .gus-sticky-elements .gus-sticky-element,
html body .gus-sticky-elements button.gus-sticky-element,
html body .gus-sticky-elements .gus-contact-form-trigger,
html body .gus-sticky-elements .gus-toggle-button,
.elementor-kit-45 .gus-sticky-elements .gus-sticky-element,
.elementor-kit-45 .gus-sticky-elements button.gus-sticky-element,
.elementor-kit-45 .gus-sticky-elements .gus-contact-form-trigger,
.elementor-kit-45 .gus-sticky-elements .gus-toggle-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    /* NÃO forçar background e color - deixar os elementos definirem suas próprias cores */
}

/* ===== CORREÇÃO ESPECÍFICA PARA BOTÃO TOGGLE ===== */
body .gus-sticky-elements .gus-toggle-button,
html body .gus-sticky-elements .gus-toggle-button,
.elementor-kit-45 .gus-sticky-elements .gus-toggle-button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    padding: 12px !important;
    font-size: 14px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
}

/* ===== CAMPO LGPD ===== */
.gus-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gus-checkbox-label input[type="checkbox"] {
    margin: 0 !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
}

.gus-checkbox-text {
    flex: 1 !important;
    color: #333 !important;
}

/* ===== SUBTÍTULO DO FORMULÁRIO ===== */
.gus-form-subtitle {
    margin: 0 0 0 0 !important;
    font-size: 13px !important;
    color: #666 !important;
    font-weight: normal !important;
    line-height: 1.4 !important;
    padding-right: 40px !important;
}

/* ===== PRINT STYLES ===== */
@media print {
    .gus-sticky-elements,
    .gus-form-modal {
        display: none !important;
    }
}
