body {
    background: 
        url("src/logos/todos.png") repeat-y center,  /* Imagem primeiro (mais abaixo) */
        linear-gradient(180deg, rgba(171, 227, 241, 1) 0%, rgba(249, 254, 255, 1) 100%); /* Gradiente por cima */
    background-size: auto;
    font-family: Arial, sans-serif;
    position: relative;
}
.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffffd8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-title {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.checkbox-group,
.radio-group {
    margin-bottom: 10px;
}

.btn-submit {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 20px;
}

.required {
    color: red;
}

.outros-input {
    margin-top: 5px;
    display: none;
}

#formulario-completo {
    display: none;
}

.nuvens {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* permite clicar no form */
    z-index: 1;
}

.cloud {
    -webkit-animation: clouds 60s infinite linear;
    -moz-animation: clouds 60s infinite linear;
    -ms-animation: clouds 60s infinite linear;
    -o-animation: clouds 60s infinite linear;
    animation: clouds 60s infinite linear;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    margin: 33px 0 0 0;
    width: 54px;
    height: 5px;
    background: #f7e7eb;
}

.cloud.tiny {
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}

.cloud.small {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.cloud.normal {
    -moz-transform: scale(2, 2);
    -ms-transform: scale(2, 2);
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
}

.cloud.large {
    -moz-transform: scale(3, 3);
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
}

.cloud div {
    -moz-box-shadow: inset -2px -3px 0 0 #f7e7eb;
    -webkit-box-shadow: inset -2px -3px 0 0 #f7e7eb;
    box-shadow: inset -2px -3px 0 0 #f7e7eb;
    position: absolute;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: -3px;
    bottom: 0;
    background: #fafbf0;
    z-index: 10;
}

.cloud div:first-child + div {
    -moz-transform: scale(1.6, 1.6);
    -ms-transform: scale(1.6, 1.6);
    -webkit-transform: scale(1.6, 1.6);
    transform: scale(1.6, 1.6);
    margin: 0 0 4px 13px;
    z-index: 9;
}

.cloud div:first-child + div + div {
    -moz-transform: scale(2.4, 2.4);
    -ms-transform: scale(2.4, 2.4);
    -webkit-transform: scale(2.4, 2.4);
    transform: scale(2.4, 2.4);
    margin: 0 0 9px 32px;
    z-index: 8;
}

.cloud div:first-child + div + div + div {
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    margin: 0 0 2px 50px;
    z-index: 7;
}

@-webkit-keyframes clouds {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}

@-moz-keyframes clouds {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}

@-ms-keyframes clouds {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}

@keyframes clouds {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}

.cloud-1 {
    -webkit-animation-duration: 263s;
    -moz-animation-duration: 263s;
    -ms-animation-duration: 263s;
    -o-animation-duration: 263s;
    animation-duration: 263s;
    margin-left: 20%;
}

.cloud-2 {
    -webkit-animation-duration: 99s;
    -moz-animation-duration: 99s;
    -ms-animation-duration: 99s;
    -o-animation-duration: 99s;
    animation-duration: 99s;
    margin-left: 90%;
}

.cloud-3 {
    -webkit-animation-duration: 142s;
    -moz-animation-duration: 142s;
    -ms-animation-duration: 142s;
    -o-animation-duration: 142s;
    animation-duration: 142s;
    margin-left: 50%;
}

.cloud-4 {
    -webkit-animation-duration: 152s;
    -moz-animation-duration: 152s;
    -ms-animation-duration: 152s;
    -o-animation-duration: 152s;
    animation-duration: 152s;
    margin-left: 43%;
}

.cloud-5 {
    -webkit-animation-duration: 215s;
    -moz-animation-duration: 215s;
    -ms-animation-duration: 215s;
    -o-animation-duration: 215s;
    animation-duration: 215s;
    margin-left: 83%;
}

.cloud-6 {
    -webkit-animation-duration: 139s;
    -moz-animation-duration: 139s;
    -ms-animation-duration: 139s;
    -o-animation-duration: 139s;
    animation-duration: 139s;
    margin-left: 73%;
}

.cloud-7 {
    -webkit-animation-duration: 109s;
    -moz-animation-duration: 109s;
    -ms-animation-duration: 109s;
    -o-animation-duration: 109s;
    animation-duration: 109s;
    margin-left: 69%;
}

.cloud-8 {
    -webkit-animation-duration: 121s;
    -moz-animation-duration: 121s;
    -ms-animation-duration: 121s;
    -o-animation-duration: 121s;
    animation-duration: 121s;
    margin-left: 100%;
}

.cloud-9 {
    -webkit-animation-duration: 101s;
    -moz-animation-duration: 101s;
    -ms-animation-duration: 101s;
    -o-animation-duration: 101s;
    animation-duration: 101s;
    margin-left: 10%;
}

.cloud-10 {
    -webkit-animation-duration: 126s;
    -moz-animation-duration: 126s;
    -ms-animation-duration: 126s;
    -o-animation-duration: 126s;
    animation-duration: 126s;
    margin-left: 14%;
}

.cloud-11 {
    -webkit-animation-duration: 96s;
    -moz-animation-duration: 96s;
    -ms-animation-duration: 96s;
    -o-animation-duration: 96s;
    animation-duration: 96s;
    margin-left: 73%;
}

.cloud-12 {
    -webkit-animation-duration: 83s;
    -moz-animation-duration: 83s;
    -ms-animation-duration: 83s;
    -o-animation-duration: 83s;
    animation-duration: 83s;
    margin-left: 51%;
}

@media (max-width: 767px) {
    .cloud {
        display: none;
    }
}
