:root {
    --color-ink: #1e3a4c;
    --color-ink-deep: #152d3c;
    --color-accent: #2d7d52;
    --color-accent-dark: #245f3e;
    --color-whatsapp: #25d366;
    --color-text: #24313a;
    --color-muted: #66717a;
    --color-line: #e7eaee;
    --color-soft: #f6f8fa;
    --color-white: #ffffff;
    --font-family-base: Inter, "Helvetica Neue", Arial, sans-serif;
    --container: 1180px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

main {
    width: 100%;
}

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

.section {
    padding: 96px 0;
}

.section--soft {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.section--soft-reverse {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.section--dark {
    color: var(--color-white);
    background: var(--color-ink);
}

.section__header {
    width: min(100%, 780px);
    margin: 0 auto 52px;
    text-align: center;
}

.section__header p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.section--dark .section__header p,
.cta-band .section__header p {
    color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    color: var(--color-white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    color: var(--color-ink);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.section--dark h2,
.cta-band h2 {
    color: var(--color-white);
}

h3 {
    color: var(--color-ink);
    line-height: 1.25;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
    color: var(--color-white);
    background: var(--color-accent);
}

.button--ink {
    color: var(--color-white);
    background: var(--color-ink);
}

.button--whatsapp {
    color: var(--color-white);
    background: var(--color-whatsapp);
}

.button--outline {
    color: var(--color-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.58);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.icon-svg {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
}

.supports-animations [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--delay, 0ms);
}

.supports-animations [data-animate="left"] {
    transform: translateX(-42px);
}

.supports-animations [data-animate="right"] {
    transform: translateX(42px);
}

.supports-animations [data-animate="scale"] {
    transform: scale(0.92);
}

.supports-animations [data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }

    .supports-animations [data-animate] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 72px 0;
    }
}
