@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: -0.7px;
    color: #FF0066;
    background-color: #350040;
}

img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    display: block;
}

/* UTILITY */

.d-flex__column {
    display: flex;
    flex-direction: column;
}

.d-grid {
    display: grid;
    gap: 1em;
}

.d-flex__row {
    display: flex;
}

@media screen and (max-width: 741px) {
    .d-flex__column-mobile {
        display: flex;
        flex-direction: column !important;
    }
}

.align-items-center {
    align-items: center;
}

.align-items-flex-end {
    align-items: flex-end !important;
}

.justify-content-center {
    justify-content: center;
}

.color__green {
    color: #23CE6B;
}

.color__pink {
    color: #FF0066;
}

/* TYPOGRAPHY */

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.7px;
    background: linear-gradient(to bottom, #FF0066, #FFC2DA);
    -webkit-background-clip: text; background-clip: text; 
    color: transparent;
    text-shadow: 0px 0px 8px #FFFCF250;
}

h2 {
    margin-top: 20px;
    font-size: 19px;
    color: #FFFCF2;
}

h3 {
    margin: 20px 0;
    font-size: 36px;
    font-weight: bold;
    color: #FFFCF2;
    line-height: 1.15;
}

/* BUTTONS */

.btn-principal {
    max-width: 300px;
    display: block;
    margin: 30px 0 20px 0;
    padding: 15px 30px;
    color: #FFFCF2;
    background: #3772FF;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

.btn-principal:hover {
    opacity: 90%;
}

/* HEADER */

header > section > div {
    padding: 25px 25px 0 25px;
}

header img {
    width: 240px;
    display: block;
    margin: 0 auto;
}

section > div {
    max-width: 1200px;
    margin: 0 auto;
}

/* MAIN */

main > section > div {
    padding: 25px 15px;
}

/* STEPS */

.steps {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1em;
    row-gap: 1em;
    justify-items: center;
}

.steps__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 0 10px;
    color: #FFFCF2;
    font-size: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #350040, #6e376c);
    border: 1px solid #6e376c;
    border-radius: 10px;
}

.steps__item p {
    margin-bottom: 20px;
}

@media screen and (max-width: 741px) {
    .steps {
        width: 100%;
    }
}

/* PLAN AND PRICES */

.plans-and-prices h3 {
    text-align: center;
}

.prices {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 741px) {
    .prices{
        grid-template-columns: repeat(1, 1fr);
    }
}

.prices__item p {
    font-size: 20px;
}

.prices__item s {
    margin-left: 15px;
    font-style: italic;
    color: #89909F;
}

.prices__item--price-highlight {
    font-size: 36px;
    font-weight: bold;
}

.prices__item .text-with-image {
    height: 125px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: #FFFCF2 !important;
    background-color: #FFC2DA15;
    border-radius: 10px 10px 0 0;
    border-top: 1px solid #6e376c;
    border-left: 1px solid #6e376c;
    border-right: 1px solid #6e376c;
}

.prices__item .text-with-image p {
    line-height: 1.2;
}

.prices .benefits {
    display: block;
    padding: 20px;
    font-size: 20px;
    color: #FFFCF2;
    border-radius: 0 0 10px 10px;
    border: 1px solid #6e376c;
}

.prices .benefits > .btn-principal {
    margin: 30px auto 0 auto;
}

.prices .benefits > span {
    display: flex;
    margin: 5px 0;
}

.prices .mais-vendido-badge {
    max-width: fit-content;
    position: absolute;
    display: block;
    padding: 7px 10px;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: #FFFCF2;
    background-color: #FF0066;
    border-radius: 10px 0 10px 0;
    z-index: 1000;
}

.prices .mais-vendido > .text-with-image,.prices .mais-vendido > .benefits {
    border-color: #FF0066;
}

/* FAQ */

.faq-container {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    color: #FFFCF2;
    background: #FFC2DA15;
    border: none;
}

.faq-answer {
    display: none;
    padding: 15px;
    color: #FFFCF2;
    font-size: 14px;
    border-left: 3px solid #FF0066;
}

/* FOOTER */

footer {
    margin-top: 30px;
    color: #89909F;
    border-top: 1px solid #6e376c;
    text-align: center;
}

footer > section > div {
    padding: 25px 15px;
}

footer a {
    color: #89909F75;
    text-decoration: none;
}

footer a:hover {
    opacity: 90%;
}

.footer__links {
    display: block;
    margin-top: 10px;
    color: #89909F75; 
}