* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

   :root {
        --color-primary: #fff349;
        --color-primary-dark: #6da030;
        --color-secondary: #2c3e50;
        --color-accent: #7eb438;
        --color-light: #f8f9fa;
        --color-lighter: #ffffff;
        --color-border: #e9ecef;
        --color-text: #495057;
        --color-muted: #6c757d;
        --color-success: #28a745;
        --color-whatsapp: #25d366;
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
        --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
        --border-radius: 12px;
        --border-radius-lg: 16px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--color-secondary);
    line-height: 1.6;
    overflow: hidden;
    overflow-y: scroll;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.alert {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* For Firefox */
    color: transparent;
}

main {
    padding: 2rem;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title h1,
.section-title h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0rem;
}

@media screen and (max-width: 768px) {

    .section-title h1,
    .section-title h2 {
        font-size: 3rem;
    }
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1rem;
    text-align: center;
}

.section-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.section-bottom .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.section-bottom .dot:nth-child(2) {
    width: 20px;
    height: 20px;
}

.btn-accent {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover,
.btn-accent:focus {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    outline: none;
}