@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap');

body{
    padding: 50px 0;
    background: #ecf0f4;
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    color: #222;
}
.container{
    max-width: 1230px;
    width: 100%;
}

h1{
    font-weight: 700;
    font-size: 45px;
    font-family: 'Roboto', sans-serif;
}

.header{
    margin-bottom: 50px;
}
#description{
    font-size: 24px;
}

.form-wrap{
    background: rgba(255,255,255,1);
    width: 100%;
    max-width: 1100px;
    padding: 50px;
    margin: 0 auto;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.form-wrap:before{
    content: "";
    width: 90%;
    height: calc(100% + 60px);
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    top: -30px;
    background: #419999;
    z-index: -1;
    opacity: 0.8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.form-group{
    margin-bottom: 25px;
}
.form-group > label{
    display: block;
    font-size: 18px;
    color: #000;
}
.custom-control-label{
    color: #000;
    font-size: 16px;
}
.form-control{
    height: 50px;
    background: #ecf0f4;
    border-color: transparent;
    padding: 0 15px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.form-control:focus{
    border-color: #419999;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
    height: 80px;
    padding-top: 15px;
    resize: none;
}

.btn{
    padding: .657rem .75rem;
    font-size: 18px;
    letter-spacing: 0.050em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #419999;
    border-color: #419999;
}

.btn-primary:hover {
    color: #419999;
    background-color: #ffffff;
    border-color: #419999;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:focus, .btn-primary.focus {
    color: #419999;
    background-color: #ffffff;
    border-color: #419999;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #419999;
    background-color: #ffffff;
    border-color: #419999;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
#logo {
    display: block;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
#title{
    color: #4e0f53;
}
@media (max-width:767px){
    #logo {
        display: block;
        width: 280px;
        max-width: 100%;
        margin: 0 auto;
    }
    #title{
        margin: 10px auto;
        font-size: 26px;
        color: #4e0f53;
    }
}

.carousel-item {
    display: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-item.active {
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}





/*css dos eventos checkboxes*/
.checkbox-card {
    position: relative;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 6px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer; /* Exibe a mão ao passar o mouse */
    background-color: #fff;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-card label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkbox-card label span {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.checkbox-card input[type="checkbox"]:checked + label span {
    color: #fff; /* Cor branca quando o checkbox está marcado */
}

.checkbox-card:hover {
    background-color: #f9f9f9;
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.checkbox-card input[type="checkbox"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/*detalhes resultado dos selects dos eventos*/

.info-box {
    background-color: #f8f9fa;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    width: 100%;
}

.info-box h4 {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    color: #333;
}

.info-box ul {
    list-style-type: none;
    padding: 20px;
}

.info-box ul li {
    padding: 5px 0;
    font-size: 16px;
}

.info-box ul li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/*sessão do meio de pagamento*/
.payment-card {
    position: relative;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #fff;
    width: 80%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.payment-card input[type="radio"] {
    display: none;
}

.payment-card label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-card img {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
}

.payment-card:hover {
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* Aplica a borda no quadrado maior */
.payment-card input[type="radio"]:checked + label {
    border: none;
}

.payment-card input[type="radio"]:checked + label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #007bff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.parcelas-container {
    margin-top: 15px;
    display: none; /* Inicialmente oculto */
}

.parcelas-container.active {
    display: block;
}

.parcelas-container select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ddd;
}

.grid-date{
    height: 50px!important;
}