/* ============================================
   SUPORTE PREMIUM - SOLNER
   Sistema Completo de Atendimento Técnico
============================================ */


.suporte-premium-page {
    background: var(--white);
    overflow-x: hidden;
}


/* ============================================
   HERO COM IMAGEM DE FUNDO + FILTRO PRETO 75%
============================================ */
.hero-suporte {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
    margin-top: 0;
}

/* Imagem de Fundo */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-suporte.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Filtro Preto 75% Opacidade */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 182, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 88, 42, 0.12) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 3;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-cinema {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                0 0 16px rgba(220, 88, 42, 0.4);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 88, 42, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite 1s;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                    0 0 16px rgba(220, 88, 42, 0.4);
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.9;
        box-shadow: 0 0 12px rgba(220, 88, 42, 1),
                    0 0 24px rgba(220, 88, 42, 0.6),
                    0 0 32px rgba(255, 182, 0, 0.3);
    }
}

@keyframes radar-ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    80% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: -8px;
}

.arrow {
    opacity: 0;
    animation: arrow-float 2s ease-in-out infinite;
}

.arrow-1 { animation-delay: 0s; }
.arrow-2 { animation-delay: 0.3s; }
.arrow-3 { animation-delay: 0.6s; }

@keyframes arrow-float {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================
   ATENDIMENTO UNIFICADO - PADRÃO NEUTRO COM BORDA ANIMADA
============================================ */
.atendimento-unificado-section {
    padding: 100px 0;
    background: var(--white);
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.atendimento-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.atendimento-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.atendimento-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg) brightness(92%) contrast(92%);
    transition: var(--transition-base);
}

.atendimento-card:hover .atendimento-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.atendimento-card:hover .atendimento-icon img {
    filter: brightness(0) invert(1);
}

.atendimento-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0;
    position: relative;
    z-index: 2;
}

.atendimento-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.atendimento-contato {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

/* ============================================
   SEÇÕES SEPARADAS COM BACKGROUNDS DIFERENTES
============================================ */

/* SEÇÃO 2: SOLUÇÕES - Background Cinza */
.atendimento-unificado-section.solucoes-only {
    background: var(--gray-50);
    padding: 100px 0 0 0;
}

.atendimento-unificado-section.solucoes-only .atendimento-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* SEÇÃO 4: CANAIS - Background Branco */
.atendimento-unificado-section.canais-only {
    background: var(--white);
    padding: 100px 0;
}

.canais-header {
    text-align: center;
    margin-bottom: 64px;
}

.canais-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.canais-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.atendimento-unificado-section.canais-only .atendimento-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

/* ============================================
   FORMULÁRIO
============================================ */
.formulario-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.formulario-header {
    text-align: center;
    margin-bottom: 48px;
}

.formulario-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.formulario-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-main);
    transition: var(--transition-base);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(220, 88, 42, 0.1);
}

.form-field input.valid {
    border-color: var(--success-green);
    padding-right: 48px;
}

.form-field input.invalid {
    border-color: var(--error-red);
    padding-right: 48px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23737373" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.input-feedback {
    position: absolute;
    right: 20px;
    top: 48px;
    font-size: 20px;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-field input.valid ~ .input-feedback::before {
    content: '✓';
    color: var(--success-green);
    opacity: 1;
}

.form-field input.invalid ~ .input-feedback::before {
    content: '✗';
    color: var(--error-red);
    opacity: 1;
}

.input-error {
    font-size: 12px;
    color: var(--error-red);
}

.input-hint {
    font-size: 12px;
    color: var(--gray-500);
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
    max-height: 300px;
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

/* ============================================
   CHECKBOX INLINE
============================================ */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.form-checkbox-inline {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 28px;
}

.form-checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--accent-orange);
    flex-shrink: 0;
    margin: 0;
}

.form-checkbox-inline label {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    display: inline;
}

.form-checkbox-inline a {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* ============================================
   BOTÃO PADRÃO - EFEITO DO MENU
============================================ */
.btn-enviar,
.btn-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(220, 88, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-enviar::before,
.btn-modal-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enviar:hover::before,
.btn-modal-close:hover::before {
    left: 100%;
}

.btn-enviar:hover,
.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 88, 42, 0.4);
}

.btn-enviar:active,
.btn-modal-close:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 88, 42, 0.3);
}

.btn-enviar {
    width: 100%;
    padding: 18px 40px;
    font-size: 17px;
    margin-bottom: 16px;
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-enviar.loading .btn-text {
    display: none;
}

.btn-enviar.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.security-badge img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* ============================================
   MODAL
============================================ */
.modal-sucesso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-sucesso.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    text-align: center;
}

.modal-sucesso.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 32px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(60%) sepia(97%) saturate(401%) hue-rotate(85deg);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 12px;
}

.modal-header p {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.modal-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 32px;
}

.modal-info img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg);
}

.btn-modal-close {
    width: 100%;
    padding: 16px 32px;
}

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
    .atendimento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .atendimento-unificado-section.solucoes-only .atendimento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .atendimento-unificado-section.canais-only .atendimento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-suporte {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .atendimento-unificado-section {
        padding: 60px 0;
    }
    
    .atendimento-unificado-section.solucoes-only {
        padding: 60px 0 0 0;
    }
    
    .atendimento-unificado-section.canais-only {
        padding: 60px 0;
    }
    
    .atendimento-grid {
        grid-template-columns: 1fr;
    }
    
    .atendimento-unificado-section.solucoes-only .atendimento-grid {
        grid-template-columns: 1fr;
    }
    
    .canais-header h2 {
        font-size: 28px;
    }
    
    .formulario-section {
        padding: 60px 0;
    }
    
    .formulario-header h2 {
        font-size: 28px;
    }
    
    .form-card {
        padding: 32px 20px;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-content {
        padding: 32px 20px;
    }
}