﻿body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-vermelho {
    background-color: #ed1c24;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

    .btn-vermelho:hover {
        background-color: #c5121b;
        color: white;
    }

.btn-vermelho-sm {
    background-color: #ed1c24;
    color: white;
    transition: background-color 0.3s ease;
}

    .btn-vermelho-sm:hover {
        background-color: #c5121b;
        color: white;
    }

h2 {
    font-size: 26px;
    color: #ed1c24;
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fdfaf2;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus {
        border-color: #ed1c24;
        outline: none;
        box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.2);
    }

.form-check {
    margin-top: 15px;
}

.form-check-label {
    font-size: 14px;
    margin-left: 6px;
}

a {
    color: #ed1c24;
    text-decoration: underline;
}

/**form button.btn[type="submit"] {
    background: #ed1c24 !important;
    border: none !important;
    color: white !important;
}

    form button.btn[type="submit"]:hover {
        background: linear-gradient(to right, #ed1c24, #c5121b) !important;
    }**/


.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.col-half {
    flex: 1 1 48%;
}

@media (max-width: 768px) {
    .col-half {
        flex: 1 1 100%;
    }
}

.telefone-caixa {
    background-color: #ffffff;
    border: 1px solid #ed1c24;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #ed1c24;
    box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.form-check-input {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: 2px solid #ed1c24;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
}

    .form-check-input:focus {
        border-color: #ed1c24;
        box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.3);
    }

    .form-check-input:checked {
        background-color: #ed1c24;
        border-color: #ed1c24;
    }

        .form-check-input:checked::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 6px;
            width: 4px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

.stepper {
    display: flex;
    align-items: flex-start;
    margin: 5px auto;
    max-width: 800px;
    position: relative;
}

    .stepper .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        position: relative;
    }

    .stepper .circle {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #ed1c24;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        z-index: 2;
        border: 2px solid #ed1c24;
    }

    .stepper .step.inactive .circle {
        background-color: white;
        color: #ed1c24;
        border: 2px solid #ed1c24;
    }

    .stepper .label {
        margin-top: 8px;
        text-align: center;
        font-size: 14px;
    }

    .stepper .line {
        position: absolute;
        top: 15px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #ed1c24;
        z-index: 1;
    }

    .stepper .step:last-child .line {
        display: none;
    }

.caixa-padrao {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-select {
    background-color: #fdfaf2;
    padding: 12px;
    font-size: 14px;
}

    .form-select:focus {
        border-color: red !important;
        box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25) !important;
        outline: none !important;
    }


.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

