﻿:root {
    --brand-primary: #1514a5;
    --brand-blue: #287dff;
    --brand-accent: #6dbed7;
    --brand-light: #c3ebf0;
    --navy-950: #020713;
    --navy-900: #050d1b;
    --navy-850: #071222;
    --navy-800: #0a1729;
    --white: #ffffff;
    --surface: #f5f8fc;
    --surface-blue: #edf5ff;
    --text: #172135;
    --muted: #667287;
    --border: #dce4ef;
    --border-dark: rgba(255, 255, 255, 0.12);
    --whatsapp: #16c96b;
    --container-width: 1280px;
    --header-height: 84px;
    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 26px;
    --shadow-small: 0 12px 30px rgba(7, 18, 34, 0.08);
    --shadow-large: 0 26px 70px rgba(7, 18, 34, 0.15);
    --transition-fast: 180ms ease;
    --transition: 240ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

main {
    min-height: 60vh;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

ul {
    padding-left: 0;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 105px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--navy-950);
    background: var(--white);
    border-radius: 8px;
    transform: translateY(-160%);
}

    .skip-link:focus {
        transform: translateY(0);
    }

:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 4px;
}
