    * {
        box-sizing: border-box;
    }

    body * {
        font-family: "Source Sans 3", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }

    .container {
        max-width: 1120px;
        margin: 0 auto;
    }

    :root {
        --primary-color: #a10d3d;
        --secondary-color: #FFD700;
    }

    .color-primary {
        color: var(--primary-color);
    }

    .color-secondary {
        color: var(--secondary-color);
    }

    body {
        font-family: Arial, sans-serif;
    }

    .header-logo {
        background-color: var(--primary-color);
        text-align: center;
    }

    .header h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .content {
        padding: 20px;
        text-align: center;
    }

    .form-section {
        background-color: #fff;
        padding: 20px 0;
        /* border-radius: 10px; */
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
        margin: 0 auto;
        max-width: 550px;

        & form {
            & label {
                font-size: 24px;
            }

            & input,
            & select {
                font-size: 18px;
                border: var(--primary-color) 1px solid;
                border-radius: 25px;
                padding: 10px 20px;
            }

            & input[type="radio"] {
                width: 20px !important;
                height: 20px !important;
                border-radius: 50% !important;
                border: 2px solid #ccc !important;
                padding: 0 !important;
                margin-right: 8px;
                accent-color: var(--primary-color);
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                position: relative;

                &:checked {
                    border-color: var(--primary-color) !important;
                    background-color: var(--primary-color) !important;
                }

                &:checked::before {
                    content: '';
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    background-color: white;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }
    }

    .footer {
        background-color: var(--primary-color);
        color: white;
        padding: 20px;
        text-align: center;
    }

    .btn-primary {
        background-color: var(--primary-color);
        border: none;
        border-radius: 25px;
        max-width: 340px;
        width: 100%;
        font-size: 26px;
        font-weight: bolder;

        &:hover {
            background-color: var(--secondary-color);
            color: black;
        }
    }

    .bg-header {
        min-height: 540px;

        & .row {
            min-height: 540px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    .bg-header {

        background-image: url('../images/header.jpg');
        background-size: cover;
        background-position: center;
        padding: 0;
        color: white;
    }

    .desc-promo {
        font-size: 39px;
        padding: 25px 140px 0;
    }

    .alert {

        max-width: 800px;
        padding: 40px 70px;
        background-color: var(--primary-color);
        border-radius: 30px;
        color: #FFF;
        text-align: center;

        & h4,
        & p {
            font-size: 38px;
            line-height: 110%;
        }
    }

    .helper {
        font-size: 20px;
        color: #3f3f3f;
        font-style: italic;
    }

    .btn-white {
        background-color: white;
        color: var(--primary-color);
        border: none;
        border-radius: 25px;
        max-width: 340px;
        width: 100%;
        font-size: 18px;
        font-weight: bolder;

        &:hover {
            background-color: var(--secondary-color);
            color: #000;
        }
    }

    .promocao-validade {
        & p {
            text-align: start;
            font-size: 38px;
            line-height: 110%;
        }
    }

    @media screen and (max-width: 1024px) {

        .bg-header {
            min-height: 400px;

            & .row {
                min-height: 400px;
            }
        }

        .bg-header img {
            width: 100%;
            max-width: 600px;
        }

        .desc-promo {
            font-size: 28px;
            padding: 25px 20px 0;
        }

        .form-section {
            padding: 20px;
            margin: 0 auto;
            max-width: 90%;
        }

        .alert {
            padding: 30px 50px;
        }

        .alert h4,
        .alert p {
            font-size: 24px;
        }

        .helper {
            font-size: 16px;
        }

        .promocao-validade {
            & img {
                width: 100%;
                max-width: 150px;
            }

            & p {
                font-size: 24px;
            }
        }

    }