:root {
    --primary-gradient: linear-gradient(180deg, #ffffff 0%, #4c91ff 45.83%);
    --cta-gradient: linear-gradient(121deg, #4e4aff 0%, #ffffff 49.34%, #ffffff 70.39%, #005ff8 118.41%);
    --text-light: #ffffff;
    --text-medium: rgba(255, 255, 255, 0.7);
    --text-dark: #000000;
    --background-dark: #020103;
    --background-section: #0d162e;
    --border-light: rgba(255, 255, 255, 0.15);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}

section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-light {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-light:hover {
    opacity: 0.9;
}

.section-subtitle {
    font-family: 'Asap', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 16px;
    letter-spacing: 0.68px;
    background: linear-gradient(209deg, #3381ff 0%, #71d0ff 95.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-title {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 56px;
    margin-bottom: 24px;
}

.section-description {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 38px;
}

.whatsapp-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-fab img {
    width: 68px;
    height: 70px;
}


@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 36px;
        line-height: 44px;
    }
    .section-description {
        font-size: 18px;
        line-height: 28px;
    }
}