/* ==============================================
   ESTILOS BASE — PÁGINAS DE SETORES (SV-SYSTEM)
   ============================================== */

/* --- HERO E ESTRUTURA --- */
.sv-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: #0a0f1f;
    color: #fff;
    overflow: hidden;
}

.sv-hero--centered {
    text-align: center;
}

.sv-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sv-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.sv-hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.sv-hero-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -50px;
}

.sv-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sv-hero--centered .sv-hero-inner {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.sv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.sv-hero-badge svg {
    width: 16px;
    height: 16px;
}

.sv-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.sv-gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sv-hero-desc {
    font-size: 1.0625rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
}

.sv-hero--centered .sv-hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.sv-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sv-hero--centered .sv-hero-actions {
    justify-content: center;
}

/* --- BUTTONS --- */
.sv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
}

.sv-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.sv-btn-primary svg {
    width: 18px;
    height: 18px;
}

.sv-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.sv-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.sv-btn-ghost svg {
    width: 18px;
    height: 18px;
}

.sv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #d1d5db;
    transition: all 0.3s;
}

.sv-btn-outline:hover {
    background: #f9fafb;
}

.sv-btn-outline svg {
    width: 18px;
    height: 18px;
}

.sv-btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

/* --- HERO METRICS --- */
.sv-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.sv-hero--centered .sv-hero-metrics {
    margin: 1rem auto 0;
    max-width: 900px;
}

.sv-metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.sv-metric-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.sv-metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-metric-icon svg {
    width: 22px;
    height: 22px;
}

.sv-metric-data strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sv-metric-unit {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
}

.sv-metric-data span {
    font-size: 0.6875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- BREADCRUMB --- */
.sv-breadcrumb {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
}

.sv-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.sv-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.sv-breadcrumb li:not(:last-child)::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.sv-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.sv-breadcrumb a:hover {
    color: #3b82f6;
}

/* --- SECTION HEADER --- */
.sv-sh {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.sv-sh-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.sv-sh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.sv-sh h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.sv-sh p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
}

/* --- USE CASES --- */
.sv-usecases {
    padding: 5rem 0;
    background: #fff;
}

.sv-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sv-uc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.35s ease;
}

.sv-uc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.sv-uc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sv-uc-icon svg {
    width: 26px;
    height: 26px;
    color: #fff !important;
}

.sv-uc-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.sv-uc-card>p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.sv-uc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sv-uc-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.sv-uc-card ul li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* --- PRODUCTS --- */
.sv-products {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.sv-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sv-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.sv-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.sv-pc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.sv-pc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-pc-icon svg {
    width: 24px;
    height: 24px;
    color: #fff !important;
}

.sv-pc-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sv-product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sv-product-card>p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.sv-pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sv-pc-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.sv-pc-features li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sv-pc-cta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    transition: gap 0.2s;
}

.sv-pc-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.sv-product-card:hover .sv-pc-cta svg {
    transform: translateX(4px);
}

/* --- STATS BAR --- */
.sv-stats {
    padding: 4rem 0;
    background: #0a0f1f;
    position: relative;
    overflow: hidden;
}

.sv-stats-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.sv-stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.sv-stat-item {
    text-align: center;
}

.sv-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.sv-stat-number span {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 2px;
}

.sv-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sv-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- TECH STACK --- */
.sv-techstack {
    padding: 5rem 0;
    background: #fff;
}

.sv-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sv-tech-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s;
}

.sv-tech-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.sv-tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.sv-tech-icon svg {
    width: 28px;
    height: 28px;
    color: #fff !important;
}

.sv-tech-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sv-tech-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- VALUE PROPS --- */
.sv-values {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.sv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sv-vp-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s;
}

.sv-vp-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.sv-vp-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.sv-vp-icon svg {
    width: 28px;
    height: 28px;
    color: #fff !important;
}

.sv-vp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.sv-vp-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- CTA FINAL --- */
.sv-cta-final {
    padding: 5rem 0;
    background: #0a0f1f;
    position: relative;
    overflow: hidden;
}

.sv-cta-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sv-cta-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.sv-cta-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sv-cta-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #fff !important;
}

.sv-cta-left h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.sv-cta-left p {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 520px;
}

.sv-cta-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .sv-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sv-hero-metrics {
        max-width: 480px;
    }

    .sv-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-usecase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sv-stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .sv-stat-divider {
        display: none;
    }

    .sv-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .sv-cta-icon-wrap {
        margin: 0 auto 1.25rem;
    }

    .sv-cta-left p {
        margin: 0 auto;
    }

    .sv-sh h2 {
        font-size: 1.75rem;
    }

    .sv-hero h1 {
        font-size: 2rem;
    }

    .sv-products-grid,
    .sv-tech-grid,
    .sv-hero-metrics,
    .sv-values-grid {
        grid-template-columns: 1fr;
    }
}