/* GLOBAL.CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

html
{
    scroll-behavior: smooth;
}

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

*
{
    box-sizing: border-box;
}

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

a
{
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.container
{
    width: 100%;
    max-width: calc(var(--container) + 40px);
    margin: 0 auto;
    padding: 0 20px;
}

section
{
    padding: 110px 0;
}

h1,
h2,
h3,
h4
{
    margin: 0;
    font-family: var(--font-title);
    color: var(--color-black);
    line-height: 1.2;
}

h1
{
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 800;
}

h2
{
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
}

h3
{
    font-size: 24px;
    font-weight: 600;
}

p
{
    margin: 0;
}

.btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover
{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204,0,0,.25);
    opacity: .95;
}

.btn-outline
{
    border: 1px solid rgba(255,255,255,.4);
    color: var(--color-white);
}

.btn-outline:hover
{
    background: var(--color-white);
    color: var(--color-black);
}

.section-title
{
    margin-bottom: 18px;
}

.section-intro
{
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.text-center
{
    text-align: center;
}