* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #ffffff;
    --color-primary: #004eff;
    --color-secound: #ffde00;
    --color-thrid: rgba(48, 137, 142, 1);
    --color-thrid-hover: rgba(48, 137, 142, 0.9);
    --color-primary-hover: rgba(175, 53, 137, 0.8);
    --color-white-hover: rgba(255, 255, 255, 0.9);
    --color-white: #fff;
    --black-900: #000;
    --black-700: #222;
}

@keyframes glow-up {
    from {
        filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));
    }

    to {
        filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
    }
}

;

@keyframes load {
    from {
        width: 100%;
    }

    to {
        width: 0px;
    }
}

@keyframes pulse-animation {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes fadeIn {

    0%,
    50% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes progress-forward {
    0% {
        width: 0%;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 75%;
    }

    75% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

;

a {
    color: initial;
    text-decoration: none;
}

button {
    cursor: pointer;
    background: initial;
    border: none;
}

li {
    list-style: none;
}

body {
    background: #E0E6F4;
}

body,
input,
button,
textarea,
select {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5 strong {
    font-weight: 600;
}

.container {
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
}

.title-h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 78px;
}

#page-wrapper {
    min-height: 100vh;
    max-height: -webkit-fill-available;
    position: relative;
}

.hide {
    visibility: hidden;
    height: 0;
    opacity: 0;
    display: none !important;
    overflow: hidden;
}

.glowUp {
    animation: glow-up 1s ease-in-out infinite alternate;
}

.btn-item {
    font-weight: 500;
    font-size: 1.5rem;
    padding: 12px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    border-bottom: 3px solid var(--color-primary);
    background: var(--color-white);
    color: #000;
    border-radius: 5px;
}

.btn-item.active {
    background: var(--color-secound);
}

.btn-item:hover {
    background: var(--color-white-hover);
}

.background-image-sign {
    position: absolute;
    height: -webkit-fill-available;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    z-index: -1;
}

.background-image-sign img {
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
    line-height: 0;
}

.section-wrapper {
    min-height: 100vh;
    max-height: -webkit-fill-available;
    flex-direction: column;
    display: flex;
    /*align-items: center;*/
    align-items: start;
    justify-content: center;
}

.section-wrapper .section-paragraph {
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-wrapper .section-form {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.section-header-form {
    text-align: center;
    color: #fff;
}

.section-header-form h2.section-heading {
    display: block;
    font-weight: 700;
    font-size: 3.125rem;
    letter-spacing: -2px;
    line-height: 78px;
    margin-bottom: 20px;
}

p.section-subheading {
    font-size: 1.25rem;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 30px;
    text-align: center;
}

.section-moon-sign.remove-subtitle .section-subheading {
    display: none;
}


.section-wrapper .section-form .form-container {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 378px;
    gap: 25px;
}

.section-form .form-content {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-content: inherit;
    grid-template-columns: 1fr;
    align-items: baseline;
    justify-items: center;
    min-height: 246px;
    position: relative;
    text-align: center;
}

.sing-moon-step-fourth {
    display: grid;
    grid-template-rows: 1fr auto !important;
}

.sing-moon-step-five {
    display: grid;
    grid-template-rows: auto 1fr !important;
}

.sing-moon-step-fourth .field-first-name,
.sing-moon-step-five .field-first-name {
    text-align: center;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    justify-content: center;
    align-items: center;
}

.section-form .form-content.sing-moon-step-five,
.section-form .form-content.sing-moon-step-six {
    grid-template-rows: inherit;
}

.section-form .form-content.sing-moon-step-seventh,
.section-form .form-content.moon-phases-step-two {
    display: grid;
    grid-template-rows: 1fr auto;
}

.form-content .btn-back {
    background: #ff938d;
    color: #fff;
    padding: 10px 24px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    min-width: 100px;
    border-radius: 12px;
    position: absolute;
    left: 0;
    bottom: -50px;
}

.form-content .btn-back:hover,
.form-content .step-back:hover {
    background: #ce352c;
}

.btn-back .far {
    font-family: 'fontawesome';
    font-size: 1.25rem;
    margin-bottom: -4px;
}

.form-content h3.title-mobile {
    display: none;
}

.form-content h3 {
    display: block;
    margin-bottom: 20px;
    font-size: 2.5rem;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
}

.form-content.sing-moon-step-one h3 {
    margin-bottom: 40px;
}

.form-button {
    text-align: center;
}

.form-button .button-form {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0px auto;
    background-color: var(--color-primary);
    color: #fff;
    max-width: 450px;
    border-radius: 30px;
    padding: 10px 30px;
    animation: pulse-animation 2s infinite;
}

.form-button .button-form:hover {
    background-color: #ce352c;
    animation: shake 2s infinite;
}

.frame {
    font-style: normal;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 1.2;
    display: inline-block;
    text-align: center;
    font-size: 1.75rem;
    max-width: calc(100% - 32px);
}

.sign-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    max-width: 790px;
}

.sign-buttons-container .button-sing {
    width: calc(25% - 18px);
    background-color: #ffffff;
    background-position: center center;
    background-size: 55px 55px;
    border-radius: 0px;
    padding: 10px;
}

.sign-buttons-container .button-sing.active {
    border-color: var(--color-secound);
    background-color: var(--color-secound);
}

.sign-buttons-container .button-sing:hover {
    background-color: var(--color-white-hover);
}

.sign-buttons-container .button-sing p {
    line-height: 1;
    text-transform: capitalize;
    color: #000;
}

.sign-buttons-container .button-sing img {
    height: 65px;
    margin-bottom: 6px;
}


.alert-modal.error {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: 4px auto;
    border-radius: 0px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
    background-color: rgb(206, 53, 44);
    color: rgb(255, 255, 255);
    width: 310px;
    cursor: pointer;
    min-height: 59.9297px;
    padding: 0px;
    list-style-type: none;
    z-index: 10000000;
}

.alert-modal.error .alert-mensage {
    font-size: 14px;
    font-weight: 400;
    font-family: open sans, sans-serif;
    color: #eee;
    text-align: center;
    padding: 1.25rem;
    width: auto;
    position: relative;
}

.alert-modal.error .alert-scroll {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 4px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.2;
    transition: all 100ms linear 0s;
    animation: load 2s linear;
}

.alert-modal.error .alert-scroll:hover {
    width: 100%;
}

.date-sign-control .date-header {
    text-align: center;
}

.date-sign-container {
    display: flex;
    gap: 15px;
}

.date-sign-container .date-sign-control {
    width: 100%;
    max-width: 395px;
}

.date-sign-control .date-list li {
    width: calc(20% - 16px);
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--color-primary);
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    margin-bottom: 5px;
    transition: 0.2s;
    background: #fff;
    color: #000;
    border-radius: 5px;

}

.date-sign-control .date-list li:hover {
    background: var(--color-white-hover);
}

.date-sign-container .date-header {
    background: var(--color-primary);
    padding: 5px;
    border-radius: 35px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.date-sign-container .date-header h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.date-sign-control .date-list li.active {
    background: var(--color-secound);
    color: #000;
}

.section-form .decade-sign-container,
.section-form .years-sign-container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
}

.decade-sign-container ul {
    max-width: 600px;
    justify-content: center;
    /*margin-top: -20px;*/
    margin: 0 auto;
}

.years-sign-container ul {
    max-width: 600px;
    /*margin-top: -20px;*/
    margin: 0 auto;
    justify-content: center;
}

.list-itens {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hours-birthdate-quest {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    height: 100%;
    align-items: center;
}

.hours-birthdate-quest span,
.country-quest span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.5px;
}

.buttons-control {
    display: flex;
    gap: 24px;
}

.btn-secound {
    width: 136px;
    height: 52px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    color: #fff;
    background-color: var(--color-primary);
}

.btn-secound:hover {
    background-color: #ce352c;
}

/* .btn-true{
    background-color: #43BF0D;
}
.btn-false{
    background-color: #EE4242;
} */

.hours-birthdate-container {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    height: 100%;
}

.hours-birthdate-container .title-hours-field {
    margin-bottom: 10px;
}

.hours-birthdate-container .title-hours-field h4 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.hours-birthdate-container .hours-fields span {
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    max-width: 700px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.hours-birthdate-container .hours-fields {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    max-width: 100%;
    align-items: center;
}

.hours-birthdate-container .hours-fields input[type="time"] {
    border: none;
    font-size: 1.125rem;
    padding: 4px 10px;
    outline: none;
    border-radius: 5px;
    width: 116px;
    color: #000;
}

.hours-birthdate-container .field-control-hours {
    display: flex;
    gap: 10px;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hours-birthdate-container .btn-hours-confirm {
    background: var(--color-primary);
    color: #fff;
    height: 55px;
    padding: 0px 18px;
    border-radius: 5px;
    animation: pulse-animation 2s infinite;
}

.hours-birthdate-container .btn-hours-confirm i {
    font-size: 1.5rem;
}

.hours-birthdate-container .btn-hours-confirm:hover {
    background: var(--color-primary-hover);
}

.sing-moon-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sing-moon-loading img {
    width: 170px;
}

.country-quest {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    width: 100%;
    justify-items: center;
    gap: inherit;
}

.country-quest .btns-modal-country {
    /*margin-top: -20px;*/
    align-items: center;
    margin: 0 auto;

}

.modal-wrapper-container {
    position: relative;
}

.modal-wrapper-container.active .modal-wrapper-list {
    display: flex;
}

.country-selector-container .country-modal {
    margin: auto;
    max-width: 220px;
}

.modal-wrapper-list {
    background-color: #000000;
    max-width: 200px;
    width: 100%;
    flex-direction: column;
    position: absolute;
    margin-top: 2px;
    max-height: 320px;
    overflow-y: scroll;
    display: none;
}

.modal-wrapper-list.civil-status-list,
.modal-wrapper-list.gender-list {
    position: relative;
    left: calc(50% - 100px);
    margin-top: -8px;
    margin-bottom: 10px;
}

.modal-wrapper-list::-webkit-scrollbar-thumb {
    background: #ccc;
    height: 90%;
}

.modal-wrapper-list::-webkit-scrollbar {
    width: 5px;
}

.modal-wrapper-head.country-modal-head {
    position: relative;
    margin-top: 40px;
}

.modal-wrapper-head .modal-wrapper-icons {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 1.25rem;
    cursor: pointer;
}

.modal-wrapper-container .modal-wrapper-icons .fa-chevron-down {
    transform: rotate(0deg);
    transition: 0.4s;
    color: #000;
}

.modal-wrapper-container.active .modal-wrapper-icons .fa-chevron-down {
    transform: rotate(180deg);
}

.modal-wrapper-list.gender-list {
    overflow: inherit;
}

.modal-wrapper-list li {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-bottom: 1px solid #3a3a3a;
}

.modal-wrapper-list li.active {
    background-color: rgba(175, 53, 137, 0.9);
}

.modal-wrapper-list li:hover {
    background-color: var(--color-primary-hover);
}

.modal-wrapper-list li img {
    width: 25px;
    border: 1px solid #000;
}

.modal-wrapper-list li span {
    padding-left: 6px;
    font-weight: 500;
    font-size: 0.875rem;
}

.modal-wrapper-head {
    width: 100%;
    max-width: 220px;
    margin: auto;
    position: relative;
}

.modal-wrapper-head:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.modal-wrapper-head input {
    width: 100%;
    background: var(--color-white);
    color: #000;
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid var(--color-primary);
    cursor: pointer;
    padding: 10px 15px;
    text-transform: capitalize;
}

.modal-wrapper-head input::placeholder {
    color: #000;
}

.input-control {
    position: relative;
}

.modal-wrapper-list.country-list {
    background-color: #222;
    border: 1px solid var(--color-primary);
    width: 200px;
    margin: -7px 10px 0;
    padding: 10px 0;
}

.modal-wrapper-list.country-list li {
    padding: 7px 20px;
}

.input-control .field-input {
    background-color: #fff;
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid var(--color-primary);
    padding: 10px 15px;
    outline: none;
    color: #000;
}

.input-control .field-input::placeholder {
    color: #000;
}

.input-control.error-field .field-input {
    border-color: #cc1006;
}

.input-control .error-field {
    color: #cc1006;
    font-size: 0.75rem;
    position: absolute;
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

.loading-container {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sing-moon-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-container h3,
.sing-moon-loading h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.progress-bar {
    position: relative;
    height: 30px;
    width: 85%;
    max-width: 300px;
    background: var(--color-white);
    border-radius: 5px;
}

.progress-fill {
    position: absolute;
    height: 100%;
    width: 0%;
    animation: progress-forward 2s 1;
    animation-fill-mode: forwards;
    background: var(--color-primary);
    border-radius: 3px;
}

.section-modal-pitch .modal-pitch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.section-modal-pitch .modal-pitch-container {
    width: 100%;
    margin: auto;
    max-width: 600px;
    padding: 15px;
}

.section-modal-pitch .modal-pitch-title h3 {
    text-align: center;
    font-size: 2.75rem;
    line-height: 1.3;
    font-weight: 600;
}

.section-modal-pitch .modal-pitch-button {
    text-align: center;
    margin-top: 120px;
}

.section-modal-pitch .modal-pitch-button button {
    padding: 15px 40px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.375rem;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: 40px;
    transition: 0.3s;
    animation: pulse-animation 2s infinite;
}

.section-modal-pitch .modal-pitch-button button:hover {
    animation: shake 2s infinite;
    background: transparent;
}

.section-wrapper .animation-section {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.animation-section .animation-container {
    height: calc(100vh - 200px);
    width: 100%;
    max-height: 700px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
    padding: 30px 0 0;
    overflow-y: hidden;
}

.animation-section .animation-container .modal-animation {
    width: 100%;
}

.animation-section .modal-animation .modal-audio-container {
    /*border: 2px solid #ffffff;*/
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #77297838;
}

#audio-astrology {
    height: 150px;
    width: 100%;
    background: #222;
    position: relative;
    border: 2px solid #ffffff;
}

#audio-astrology .audio-astrology-container {
    height: 100%;
    width: calc(100% - 70px);
}

#audio-astrology .video-js {
    padding: 0 !important;
    height: 100% !important;
    background: #222;
}

#audio-astrology .vjs-has-started .vjs-control-bar {
    display: none;
}

#audio-astrology .vjs-text-track-cue {
    height: 100% !important;
    top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#audio-astrology .vjs-text-track-cue>div {
    font-family: 'Poppins' !important;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    background: initial !important;
}

#audio-astrology .buttons-audio-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 69px;
    height: fit-content;
    padding: 25px 20px;
    border-left: 4px solid #ffffff;
    position: absolute;
    right: 0;
    top: calc(50% - 55.5px);
}

#audio-astrology .button-video .fas {
    display: none;
    color: #fff;
}

#audio-astrology .start-pause-audio .fas {
    font-size: 1.375rem;
}

#audio-astrology .volume-video .fas {
    font-size: 1.5rem;
}

#audio-astrology .start-pause-audio.active .fa-pause,
#audio-astrology .start-pause-audio.false .fa-play {
    display: block;
}

#audio-astrology .volume-video.active .fa-volume-up,
#audio-astrology .volume-video.false .fa-volume-off {
    display: block;
}

#audio-astrology .vjs-text-track-display {
    bottom: initial !important;
    position: static;
    height: 100%;
}

#audio-astrology .vjs-text-track-display>div {
    position: static !important;
    height: 100%;
    margin: 0 !important;
}

.modal-warning {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.modal-warning .btn-play {
    font-size: 1.375rem;
    color: #fff;
    width: 100%;
    max-width: 280px;
    padding: 13px 0;
    font-weight: 500;
    border-radius: 30px;
    background: var(--color-primary);
    letter-spacing: 1.1px;
    outline: none;
    transition: opacity 1s;
    animation: pulse-animation 2s infinite;
}

.modal-warning .btn-play:hover {
    background: #ce352c;
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.modal-warning p {
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-warning h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.modal-warning .content-warning {
    text-align: center;
    margin-bottom: 40px;
    max-width: 620px;
    padding: 0 20px;
    color: #fff;
}

.section-header-form h2.section-heading-mobile {
    display: none;
}

.gender-modal .gender-modal-container {
    display: flex;
    gap: 36px;
}

.gender-modal .gender-modal-container button.gender-button {
    padding: 6px 36px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--color-primary);
}

.gender-modal .gender-modal-container .gender-control {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
    line-height: 1;
    margin-top: 9px;
}

.gender-modal .gender-control label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
    color: #000;
}

.gender-modal .gender-control input {
    background: transparent;
    appearance: none;
    border: 1px solid #000;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    position: relative;
}

.gender-modal .gender-control input:checked::before {
    content: "";
    background-color: #000;
    border-radius: 50%;
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
}

.modal-hours-controls {
    display: flex;
    gap: 20px;
    max-width: 300px;
    align-items: center;
}

.cta-astrologia-section .cta-image-product {
    padding: 0px 30px 0px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-astrologia-section .cta-image-product img {
    width: 100%;
}

.cta-astrologia-section .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-astrologia-section .cta-paragraph h3 {
    color: #000;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
}

.cta-astrologia-section .cta-content {
    padding: 15px 30px;
}

.cta-astrologia-section .cta-product {
    display: grid;
    grid-template-columns: minmax(100px, 335px) minmax(100px, 300px);
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-astrologia-section .cta-warranty h3 {
    color: #000;
    font-weight: 600;
    font-size: 10px;
}

.cta-astrologia-section .cta-warranty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.cta-astrologia-section .cta-warranty img {
    max-width: 75px;
}

.cta-astrologia-section .cta-button {
    text-align: center;
    width: 100%;
}

.cta-astrologia-section .cta-button .cta-btn {
    color: #fff;
    background: #ff4700;
    padding: 12px 0;
    max-width: 240px;
    width: 100%;
    display: inline-block;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(0.75rem, 3vw, 1rem);
    box-shadow: 0px 1px 5px #6f6f6f;
    text-decoration: none;
}

.cta-btn:hover {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.cta-astrologia-section .cta-security {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.cta-astrologia-section .cta-security img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cta-astrologia-section .cta-security p {
    font-size: clamp(0.5rem, 3vw, 0.75rem);
    text-align: center;
}

.cta-astrologia-section .cta-payments {
    width: clamp(90%, 17vw, 95%);
}

.cta-astrologia-section .cta-payments img {
    object-fit: contain;
    object-position: center;
}

.cta-astrologia-section .cta-user {
    display: flex;
    align-items: center;
    border: 1px dotted #000;
    width: 100%;
}

.cta-astrologia-section .cta-user img {
    width: 62px;
    height: auto;
    object-position: center;
    object-fit: contain;
}

.cta-astrologia-section .cta-user p {
    font-size: 9px;
    font-style: italic;
    color: #000;
    background: #fff;
    padding: 4px 8px;
}

.cta-header {
    text-align: center;
    font-weight: 500;
    padding: 8px;
    font-size: 11px;
    width: calc(100% + 21px);
    background: #007c4f;
}

.cta-header span {
    color: yellow;
    display: block;
}

.cta-astrologia-section .cta-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1;
    padding: 0px 10px 10px 10px;
    border-radius: 0px;
    height: fit-content;
    max-height: 90vh;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    background-color: #e3e3e3;
    border: none;
}


@media (min-width: 768px) {
    .container {
        max-width: 950px;
        padding: 0 2.15rem;
    }

    .sing-moon-step-seventh .field-first-name #first-name {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1030px;
    }
}

@media (max-width: 768px) {

    .section-header-form h2.section-heading,
    .form-content h3 {
        display: none;
    }

    .section-header-form h2.section-heading-mobile {
        display: block;
        font-size: 2.125rem;
        /*letter-spacing: -1.7px;*/
        font-weight: 900;
        /*line-height: 1.1;*/
        margin-bottom: 40px;
    }

    .form-content.sing-moon-step-one h3.title-mobile {
        background: #004eff;
        padding: 6px;
        border-radius: 0px;
        /*margin-top: 8px;*/

    }

    .form-content h3.title-mobile {
        display: block;
        font-size: 1.20rem;
        /*letter-spacing: -1px;*/
        line-height: 1;
        width: 100%;
        font-weight: 600;
        margin-bottom: 40px;
    }

    p.section-subheading {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0px;
        margin-bottom: 10px;
    }

    .sign-buttons-container {
        gap: 4px;
        max-width: 390px;
    }

    .sign-buttons-container .button-sing {
        width: calc(30% - 5px);
        padding: 5px 0;
        aspect-ratio: 1/0.7;
    }

    .sign-buttons-container .button-sing img {
        height: 35px;
        margin-bottom: 0;
    }

    .sign-buttons-container .button-sing p {
        font-size: 0.8125rem;
    }

    .section-wrapper {
        padding: 15px 0;
        min-height: calc(100vh - 80px);
        /* display: grid;
        grid-template-rows: 1fr auto;
        grid-template-columns: 1fr; */
    }

    .date-sign-container {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }

    .date-sign-container .list-itens {
        gap: 5px;
    }

    .date-sign-container .date-sign-control {
        max-width: 310px;
    }

    .date-sign-container .date-header {
        margin-bottom: 3px;
        padding: 3px;
    }

    .date-sign-container .date-header h4 {
        font-size: 1.125rem;
    }

    .date-sign-control .date-list li {
        width: calc(17% - 5.5px);
        font-size: 1rem;
        height: auto;
        aspect-ratio: 1.15/1;
        margin-bottom: 0;
    }

    .form-content .btn-back {
        padding: 10px 25px;
        font-size: 1.125rem;
        gap: 5px;
        position: relative;
        top: 10;
        left: inherit;
        margin-left: auto;
    }

    .btn-back .far {
        font-size: 1rem;
    }

    .decade-sign-container ul,
    .years-sign-container ul {
        max-width: 320px;
        gap: 5px;
        justify-content: left;
        margin-top: 0;
    }

    .section-form .years-sign-container,
    .section-form .decade-sign-container {
        margin-bottom: 20px;
        margin-top: 0px;
        align-items: baseline;
    }

    .btn-item {
        width: calc(33% - 3px);
        font-size: 1.25rem;
    }

    .sing-moon-step-seventh .field-first-name #first-name {
        margin: inherit;
    }

    .sing-moon-step-seventh .field-first-name {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .section-form .form-content.sing-moon-step-seventh,
    .section-form .form-content.moon-phases-step-two {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .section-form .form-content.moon-phases-step-two {
        justify-content: space-between;
    }

    .section-form .form-content.moon-phases-step-two .btn-back {
        bottom: -64px;
    }

    .form-button .button-form {
        font-weight: 600;
        line-height: 1.2;
        padding: 10px 15px;
        font-size: 1.25rem;
    }

    .reading-moon-container .field-email-control input {
        max-width: 275px;
        margin-bottom: 30px;
    }

    .section-form .form-content.reading-moon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: initial;
    }

    .section-modal-pitch .modal-pitch-title h3 {
        font-size: 1.5rem;
    }

    .section-modal-pitch .modal-pitch-button button {
        font-size: 1.125rem;
    }

    .hours-birthdate-container .hours-fields {
        align-items: inherit;
        gap: 25px;
    }

    .alert-modal.error {
        bottom: initial;
        left: initial;
        top: 20px;
        width: 100%;
        max-width: 280px;
    }

    #audio-astrology .buttons-audio-container {
        position: initial;
        border-left: initial;
        border-top: 4px solid var(--color-primary);
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        margin: auto;
        width: calc(100% - 32px);
        padding: 20px;
        gap: 22px;
    }

    .modal-hours-controls {
        gap: 10px;
        height: fit-content;
        margin-bottom: 155px;
    }

    #audio-astrology {
        height: 160px;
        display: flex;
        flex-direction: column;
    }

    #audio-astrology .audio-astrology-container {
        width: 100%;
        padding: 0 15px;
    }

    #audio-astrology .vjs-text-track-cue>div {
        font-size: 1rem;
        line-height: 1.2;
    }

    .loading-container h3,
    .sing-moon-loading h3 {
        text-align: center;
        font-size: 1.25rem;
    }

    .animation-section .animation-container {
        height: 100%;
        padding: 0;
    }

    .section-moon-phases .gender-modal {
        width: 100%;
        max-width: 300px;
    }

    .gender-modal .gender-modal-container {
        gap: 15px;
    }

    .gender-modal .gender-modal-container button.gender-button {
        padding: 20px 20px 10px;
        width: 100%;
    }

    .gender-modal button.gender-button img {
        height: 90px;
    }

    .frame {
        font-size: 1.25rem;
    }

    .cta-astrologia-section .cta-user img {
        width: 50px;
    }

    .cta-astrologia-section .cta-modal {
        height: 100%;
        gap: 12px;
        overflow-y: auto;
    }

    .cta-header span {
        color: yellow;
        display: inline-block;
    }

    .cta-astrologia-section .cta-image-product {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        margin-bottom: 6px;
    }

    .cta-astrologia-section .cta-content {
        padding: 0;
    }

    .cta-astrologia-section .cta-product {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .cta-astrologia-section .cta-payments {
        width: 75%;
    }

    .cta-astrologia-section .cta-button .cta-btn {
        padding: 14px 18px;
        font-size: 1rem;
        animation: shake 2s infinite;
    }

    .cta-astrologia-section .cta-paragraph h3 {
        font-size: 0.5rem;
    }

    .cta-astrologia-section .text-content {
        gap: 6px;
    }

    .cta-astrologia-section .cta-user p {
        font-size: 0.5rem;
    }

    .cta-astrologia-section .cta-warranty h3 {
        font-size: 0.5rem;
        letter-spacing: -0.2px;
        line-height: 1.2;
    }

    .cta-astrologia-section .cta-warranty img {
        max-width: 70px;
    }

    .cta-astrologia-section .cta-security img {
        width: 35px;
        height: 35px;
    }

    .cta-astrologia-section .cta-security p {
        font-size: 0.55rem;
    }

    .cta-astrologia-section .cta-image-product img {
        margin: 0 auto;
        width: 100%;
        max-width: 240px;
    }

    .cta-astrologia-section {
        height: 80vh;
    }

    .cta-header span {
        color: yellow;
        display: inline-block;
    }

    .cta-astrologia-section .cta-modal {
        height: 100%;
        gap: 12px;
        overflow-y: auto;
    }

    .modal-wrapper-list {
        max-height: 250px;
    }

    .modal-wrapper-list li {
        padding: 7px 12px;
    }

    .modal-wrapper-list.country-list li {
        padding: 7px 12px;
    }

    .country-selector-container .country-modal {
        margin-bottom: 130px;
    }

    .section-moon-sign.remove-subtitle .section-subheading {
        display: none;
    }

    .section-wrapper .section-form .form-container {
        min-height: initial;
        gap: initial;
        text-align: center;
    }
}