/* Suporte - Visual unificado */
.sp-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    overflow: hidden;
}

.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 25%, #000 120%),
        linear-gradient(90deg, rgba(0, 255, 234, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 234, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.sp-title {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.sp-lede {
    font-size: 1.1rem;
    max-width: 680px;
    margin-bottom: 1.75rem;
    color: var(--text-tech);
}

.sp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.sp-chip {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-tech);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sp-hero .tech-card,
.sp-section .tech-card {
    border-radius: 0;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.sp-hero-card {
    padding: 1.8rem;
}

.sp-step-list,
.sp-info-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.sp-step,
.sp-info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.sp-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    background: rgba(0, 255, 234, 0.1);
}

.sp-step strong,
.sp-info-item strong {
    display: block;
    font-size: 0.95rem;
}

.sp-step span,
.sp-info-item span {
    color: var(--text-tech);
    font-size: 0.9rem;
}

.sp-card-note {
    margin: 1rem 0 0;
    color: var(--text-tech);
}

.sp-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.sp-section-head {
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.sp-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.sp-section-head p,
.sp-text {
    color: var(--text-tech);
}

.sp-form-card {
    padding: 1.75rem;
}

.sp-form-head h2 {
    margin-bottom: 0.4rem;
}

.sp-form-head p {
    margin-bottom: 1.5rem;
    color: var(--text-tech);
}

.sp-input {
    background: rgba(5, 11, 20, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.sp-input:focus {
    border-color: rgba(0, 255, 234, 0.6) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 234, 0.15) !important;
}

.sp-field label {
    color: var(--text-tech);
}

.sp-icon {
    margin-right: 6px;
}

.sp-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.sp-info-card {
    padding: 1.5rem;
}

.sp-contact-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sp-contact-card {
    text-decoration: none;
    color: var(--text-tech);
    padding: 0.75rem 0.9rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    transition: all 0.2s ease;
    clip-path: polygon(12px 0,
            100% 0,
            100% calc(100% - 12px),
            calc(100% - 12px) 100%,
            0 100%,
            0 12px);
}

.sp-contact-card i {
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.sp-contact-card:hover {
    color: #fff;
    border-color: rgba(0, 255, 234, 0.4);
    box-shadow: 0 0 12px rgba(0, 255, 234, 0.2);
    transform: translateY(-2px);
}

.sp-alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 255, 234, 0.06);
    color: #fff;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.sp-alert--success {
    border-color: rgba(0, 255, 157, 0.4);
}

.sp-alert--error {
    border-color: rgba(255, 77, 29, 0.4);
    background: rgba(255, 77, 29, 0.08);
}

.sp-alert--info {
    border-color: rgba(0, 255, 234, 0.3);
    background: rgba(0, 255, 234, 0.08);
    color: #fff;
}

.sp-alert--info i {
    margin-right: 0.5rem;
}

.sp-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0.75rem;
    border-radius: 0;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.sp-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
}

.sp-accordion .accordion-button:not(.collapsed) {
    color: var(--neon-blue);
    box-shadow: none;
}

.sp-accordion .accordion-body {
    color: var(--text-tech);
}

.sp-faq-title {
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.sp-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.sp-split--reverse .sp-media {
    order: 2;
}

.sp-media {
    padding: 1.2rem;
    background: rgba(7, 14, 24, 0.6);
}

.sp-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.sp-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.sp-mini {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.sp-mini i {
    font-size: 1.1rem;
    color: var(--neon-blue);
}

.sp-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.sp-diff-card {
    padding: 1.4rem;
    text-align: left;
}

.sp-diff-card h3 {
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
}

.sp-diff-card p {
    margin: 0;
    color: var(--text-tech);
}

.sp-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.sp-video-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sp-video-feature {
    margin-bottom: 2rem;
}

.sp-video-feature-card {
    padding: 1.5rem;
}

.sp-video-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1.5rem;
    align-items: center;
}

.sp-video-feature-body h3 {
    margin-bottom: 0.5rem;
}

.sp-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 234, 0.35);
    color: var(--neon-blue);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.sp-video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sp-video-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-video-thumb {
    position: relative;
    overflow: hidden;
    background: rgba(7, 14, 24, 0.7);
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
    aspect-ratio: 16 / 9;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.sp-video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.sp-video-play {
    position: absolute;
    inset: auto auto 14px 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 234, 0.18);
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.35);
}

.sp-video-title {
    font-size: 1.05rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sp-video-desc {
    color: var(--text-tech);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-video-btn {
    align-self: flex-start;
}

.btn-prioridade {
    color: var(--neon-blue) !important;
    border-color: var(--neon-blue) !important;
    justify-content: center;
    text-align: center;
    min-width: 190px;
}

.btn-prioridade:hover {
    background: rgba(0, 255, 234, 0.15);
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.45);
    color: #fff !important;
}

@media (max-width: 991px) {
    .sp-form-actions {
        justify-content: stretch;
    }

    .sp-video-feature-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .sp-hero {
        padding: 2.5rem 0;
    }

    .sp-cta {
        flex-direction: column;
        align-items: stretch;
    }
}
