/* SISTEMA VISUAL GLOBAL SIVARCLOUD */
:root {
    --sc-font-family: 'Poppins', sans-serif;
    --sc-color-primary: #004AAD;
    --sc-color-primary-dark: #00347A;
    --sc-color-accent: #00C2FF;
    --sc-color-heading: #064EAC;
    --sc-color-text: #334155;
    --sc-color-muted: #64748B;
    --sc-color-surface: #FFFFFF;
    --sc-color-background: #F5F7FA;
    --sc-radius-sm: 12px;
    --sc-radius-md: 18px;
    --sc-radius-lg: 28px;
    --sc-shadow-soft: 0 12px 32px rgba(0, 74, 173, 0.09);
    --sc-shadow-premium: 0 24px 60px rgba(0, 74, 173, 0.14);
    --sc-heading-xl: clamp(2.7rem, 5.7vw, 4.8rem);
    --sc-heading-lg: clamp(2rem, 4vw, 3.35rem);
    --sc-heading-md: clamp(1.45rem, 2.6vw, 2rem);
    --sc-body-lg: clamp(1rem, 1.5vw, 1.14rem);
    --sc-container: 1200px;
    --sc-section-space: clamp(72px, 8vw, 112px);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sc-font-family);
    color: var(--sc-color-text);
    background: var(--sc-color-background);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, button, input, textarea, select {
    font-family: var(--sc-font-family);
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
}

.container {
    width: min(var(--sc-container), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding-block: var(--sc-section-space);
}

.section-title {
    margin: 0 0 22px;
    color: var(--sc-color-heading);
    font-size: var(--sc-heading-lg);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }

@media (max-width: 680px) {
    .container { width: min(var(--sc-container), calc(100% - 28px)); }
}
