/* FONTS */

@font-face {
    font-family: 'Geist';
    src: url('./assets/fonts/Geist[wght].ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura CG Book';
    src: url('./assets/fonts/Futura\ Maxi\ CG\ Book\ Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

h1, h2, h3, h4, h5, p, span {
    margin: 0px;
    line-height: 1;
}

html, body {
    font-family: "Geist";
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

.flex { display: flex; }
.column { flex-direction: column; }
.row { flex-direction: row; }
.center { justify-content: center; align-items: center; }
.jc-center { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-end { justify-content: flex-end; }
.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.wrap { flex-wrap: wrap; }

.purple_section_content{
    position: relative;
    display: flex;
    width: 100%;
    height: 94vh;
    background-color: #A196FC;
    border-radius: 20px;
    overflow: hidden;
}

.nobg_section_content {
    padding: 0px 38px;
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 32px;
}

.section_container {
    padding: 20px;
}

.round_btn {
    position: absolute;
    display: flex;
    right: 6px;
    stroke: #000;
    background-color: #E6E3FE;
    padding: 8px;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.2s ease, stroke 0.2s ease, background-color 0.2s ease;
}

.hero_btn:hover .round_btn{
    background-color: #A196FC;
    stroke: #FFF;
    transform: rotateZ(90deg);
}

.section_title {
    font-size: 48px;
    line-height: 54px;
    font-family: "Geist";
}

.benefits_headline .section_title {
    font-size: 48px;
    line-height: 54px;
    font-family: "Geist";
}

.primary_btn {
    display: flex;
    width: fit-content;
}

.primary_btn_body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 22px;
    background-color: #F5F3FF;
    border-radius: 10px 0px 0px 10px;
}

.primary_btn_body header {
    font-size: 22px;
    font-weight: 500;
}

.primary_btn_body span {
    font-size: 14px;
    line-height: 18px;
}

.primary_btn_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 8px;
    background-color: #E6E3FE;
    border-radius: 0px 10px 10px 0px;
    stroke: #000;
    transition: stroke 0.2s ease, background-color 0.2s ease, padding-right 0.2s ease;
}

.primary_btn_arrow svg {
    transition: transform 0.2s ease;
}

.primary_btn:hover .primary_btn_arrow {
    stroke: #FFF;
    background-color: #A196FC;
    padding-right: 14px;
}

.primary_btn:hover .primary_btn_arrow svg {
    transform: translateX(4px);
}

.fixed_header {
    transform: translateY(-100%);
    will-change: transform;
    position: fixed;
    padding: 20px 32px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    background-color: #FFF;
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 6px 8px 0px rgb(0, 0, 0, 0.1);
}

.comp_name-fixed span:nth-child(1) {
    font-family: "Futura CG Book";
    font-weight: 600;
    color: #A196FC;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.comp_name-fixed span:nth-child(2) {
    color: #A196FC;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 24%;
    text-indent: 2px;
}

.fixed_nav {
    padding: 12px 28px;
    align-items: center;
    gap: 32px;
    color: #FFF;
    background-color: #A196FC;
    box-shadow: inset 0px 4px 12px -2px #4E459A;
    border-radius: 30px;
}

.fixed_nav a {
    transition: color 0.2s ease;
}

.fixed_nav a:hover {
    color: #E6E3FE;
    cursor: pointer;
}

.fixed_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: #A196FC;
    padding: 14px 16px;
    color: #fff;
    border-radius: 30px;
    box-shadow: inset 0px 4px 12px -2px #4E459A;
    gap: 6px;
    transition: filter 0.2s ease;
    stroke: #FFF;
}

.fixed_btn:hover {
    filter: brightness(1.1);
    cursor: pointer;
    color: #E6E3FE;
    stroke: #E6E3FE;
}

.fixed_btn.toggled {
    display: none;
}

.purple_container_bg {
    position: absolute;
    z-index: 0;
    width: 100%;
}

.purple_container_bg_svg svg{
    position: relative;
}

.purple_container_bg_svg_front {
    position: absolute;
    z-index: 1;

    svg {
        fill: #A196FC;
    }
}

.purple_container_bg_svg_back {
    filter: blur(36px);
    z-index: 0;

    svg {
        fill: #9187E3;
    }
}


/* HERO */

.hero_header {
    padding: 28px 32px;
    width: 100%;
    align-self: start;
    z-index: 1;
}

.logo_container {
    gap: 14px;
}

.comp_name span:nth-child(1) {
    font-family: "Futura CG Book";
    font-weight: 600;
    color: #FFF;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.comp_name span:nth-child(2) {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 24%;
    text-indent: 2px;
}

.comp_name_footer span:nth-child(1) {
    font-family: "Futura CG Book";
    font-weight: bold;
    color: #FFF;
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.comp_name_footer span:nth-child(2) {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 24%;
    text-indent: 2px;
}

.nav_container{
    background-color: #FFF;
    border-radius: 30px;
    padding: 6px 8px;
    gap: 54px;
    box-shadow: 0px 2px 12px 0px #7671DDB3;
}

.hero_nav {
    gap: 32px;
    padding: 0px 24px;
    font-weight: 500;
}

.hero_nav a {
    transition: color 0.2s ease;
}

.hero_nav a:hover {
    cursor: pointer;
    color: #A196FC;
}

.nav_btn {
    position: relative;
    padding: 7px 16px;
    background-color: #E6E3FE;
    border-radius: 20px;
    stroke: #000;
    overflow: hidden;
    width: 46px;
    height: 32px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.before {
    transform: translateX(-200%);
    position: absolute;
    transition: transform 0.2s ease;
}

.seen {
    position: absolute;
    transition: transform 0.2s ease;
}

.nav_btn:hover {
    background-color: #A196FC;
}

.nav_btn:hover .before {
    transform: translateX(0%) rotateZ(90deg);
    stroke: #FFF;
}

.nav_btn:hover .seen{
    transform: translateX(200%) rotateZ(90deg);
}

.hero_headline {
    margin: 116px auto;
    width: 696px;
    gap: 28px;
    z-index: 1;
}

.headline_text {
    gap: 28px;
    color: #FFF;
}

.headline_title {
    gap: 16px;
    font-size: 52px;
    line-height: 0.8;
    font-weight: 500;
}

.headline_subtitle {
    gap: 6px;
    font-size: 20px;
    line-height: 0.8;
    font-weight: 300;
}

.hero_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: #F5F3FF;
    border-radius: 40px;
    width: 232px;
    height: 48px;
    font-size: 18px;
    font-weight: 500;
}

.hero_btn span {
    position: absolute;
    left: 34px;
}

.purple_container_bg.hero {
    left: -200px;
    bottom: -608px;
}

/* FLAGS S1*/

.flags_container {
    gap: 20px;
    flex-direction: column;
}

.flag_card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 152px;
    height: 152px;
    border-radius: 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.flag_card.activated {
    box-shadow: 0px 6px 20px 0px rgb(0, 0, 0, 0.25);
    transform: translateY(-4%)
}

/* HOW IT WORKS SECTION S2 */

#hiw{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin: auto auto;
    z-index: 999;
}

.hiw_header {
    z-index: 0;
    position: absolute;
    font-family: "Futura CG Book";
    color: rgb(0, 0, 0, 0.1);
    font-size: 162px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.hiw_container{
    display: flex;
    width: 1366px;
    margin: auto auto;
    display: flex;
    gap:120px;
}

.hiw_steps{
    display:flex;
    flex-direction:column;
    gap: 42px;
    font-size: 100px;
}

.hiw_steps span{
    opacity:0.4;
    transition: opacity 0.2s ease;
}

.hiw_steps span.active{
    opacity: .7;
}

.hiw_icons{
    position: relative;
    width: 348px;
}

.hiw_icon {
    opacity:0;
    position: absolute;
}

.hiw_icon.active {
    opacity: 1;
}

.hiw_content {
    position: relative;
    justify-content: end;
    display: flex;
    align-items: center;
    width: 672px;
}

.hiw_item{
    position: absolute;
    justify-self: end;
    display: none;
    flex-direction: column;
    gap: 24px;
}

.hiw_item.active{
    display: flex;
}

.hiw_item header {
    color: rgb(0, 0, 0, 0.7);
    overflow: hidden;
    height: fit-content;
    font-weight: 500;
    font-size: 48px;
    filter: blur(2px);
    opacity: 0;
    transition: opacity .2s ease, filter .5s ease;
}

.hiw_item.active header {
    filter: blur(0px);
    opacity: 1;
}

.hiw_item a {
    opacity: 0;
}

.hiw_item.active a {
    opacity: 1;
}

.phrase{
    display: block;
    overflow: hidden;
}

.hiw_item .text {
    font-weight: 400;
    color: rgb(0, 0, 0, 0.6);
    font-size: 20px;
    opacity: 0;
}

.hiw_item.active .text{
    opacity: 1;
}

.purple_container_bg.hiw {
    left: 700px;
    bottom: -640px;
}

/* ABOUT */

.about_title {
    gap: 8px;
    font-size: 34px;
    line-height: 44px;
    font-weight: 400;
}

.about_subtitle {
    gap: 8px;
    font-size: 24px;
    line-height: 44px;
    font-weight: 400;
}

.about_card_container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.about_card {
    position: relative;
    gap: 34px;
    padding: 30px;
    width: 344px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E6E3FE, #CEC8FE);
    font-size: 18px;
    font-weight: 500;
}

.about_card header {
    z-index: 99;
    align-items: center;
    font-size: 20px;
    gap: 12px;
}

.about_card span {
    z-index: 99;
    width: 288px;
}

.section_header_dot {
    height: 12px;
    width: 12px;
    background-color: #A196FC;
    border-radius: 50%;
}

.about_card_bg {
    position: absolute;
    top: 15;
    left: 58px;
    z-index: 1;
}

.purple_container_bg.abt {
    left: 25%;
}

/* BENEFITS */

.benefits_bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.benefits_container {
    z-index: 1;
    justify-content: space-between;
    margin: auto auto;
    padding: 106px 70px;
}

.benefits_bg .bg_icon:nth-child(2) {
    transform: rotateY(180deg);
}

.benefits_headline {
    width: 478px;
    gap: 24px;
}

.benefits_headline header {
    font-weight: 500;
}

.benefits_headline .text {
    font-size: 22px;
    line-height: 1.2;
    color: rgb(0, 0, 0, 0.6);
}

.benefits_card_container {
    display: flex;
    width: 670px;
    flex-wrap: wrap;
    gap: 40px;
}

.benefits_card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 315px;
}

.benefits_card_header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #E6E3FE;
    width: 44px;
    height: 44px;
}

.benefits_card_title {
    font-weight: 500;
    font-size: 22px;
    color: #000000cc;
}

.benefits_card_text {
    color: #00000099;
    font-size: 18px;
}

/* FAQ */

.faq_header {
    font-size: 146px;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #000;
    font-family: "Futura CG Book";
    text-transform: uppercase;
    display: flex;
    margin-bottom: 32px;
}

.faq_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq_item {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.faq_question {
    background-color: #F5F3FF;
    color: #000;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 66px;
    font-size: 56px;
    font-weight: 500;
}

.question_header {
    display: flex;
    gap: 30px;
    align-items: center;
}

.question_n {
    background-color: #E6E3FE;
    font-size: 22px;
    padding: 12px;
    border-radius: 8px;
    font-family: "Geist";
}

.faq_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.faq_answer {
    max-height: 0px;
    background-color: #E6E3FE;
    font-size: 30px;
    color: #000000cc;
    font-weight: 500;
    overflow: hidden;
}

.faq_item.active .faq_answer {
    max-height: fit-content;
    padding: 42px 64px;
}

/* FOOTER */

footer {
    overflow: hidden;
    min-height: 100vh;
    background-color: #A196FC;
    position: relative;
    display: flex;
    width: 100%;
}

.footer_info {
    gap: 18px;
}

.footer_info.text{
    align-items: center;
    width: 550px;
    font-size: 22px;
}

.footer_content {
    display: flex;
    gap: 80px;
    flex-direction: column;
    z-index: 99;
    margin: auto auto;
    padding: 0px 70px;
    width: 100%;
}

.footer_headline {
    text-align: center;
    gap: 2;
    color: #0000001a;
    text-transform: uppercase;
    font-size: 82px;
    font-family: "Futura CG Book";
}

.footer_headline span:nth-child(2) {
    font-size: 120px;
}

.btn_me {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff80;
    font-weight: 500;
    transition: color 0.2s ease;
}

.btn_me:hover {
    color: #fff;
}

.purple_container_bg.footer{
    left: -200px;
    bottom: 208px;
    transform: rotateX(180deg);
}

.comp_loc span:nth-child(1){
    font-size: 20px;
}

.comp_loc span:nth-child(2){
    font-size: 18px;
}

/* Media Queries */

/* NAV FIX */
@media (max-width: 980px) {
    .fixed_nav {
        display: none;
    }

    .fixed_btn {
        display: none;
    }

    .fixed_btn.toggled {
        display: flex;
    }

    .fixed_header.active{
        min-height: 400px;
    }

    .hero_nav {
        display: none;
    }
}

/* FIX FLAGS */
@media (max-width: 1326px) {
    .flag_card {
        width: 116px;
        height: 116px;
    }

    .flag_card svg {
        width: 74px;
    }

    .flags_container {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
}

/* Tablets */

@media (max-width: 1104px) {
    .section_title {
        font-size: 32px;
        line-height: 1;
    }

    .flag_card {
        width: 80px;
        height: 80px;
    }

    .flag_card svg {
        width: 52px;
    }

    .flags_container {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        align-items: center;
    }

    .purple_container_bg.abt{
        left: -10px;
    }

    /* HIW */
    .hiw_container {
        width: 607px;
        gap: 40px;
    }

    .hiw_header {
        font-size: 68px;
    }

    .hiw_icons {
        display: none;
    }

    .hiw_item {
        width: 439px;
    }

    .hiw_item header{
        font-size: 32px;
    }

    .hiw_item .text {
        font-size: 16px;
    }

    .about_title {
        font-size: 26px;
        line-height: 1;
    }

    .about_subtitle {
        font-size: 22px;
    }

    .purple_container_bg.hiw {
        left: -80px;
    }

    .about_card {
        width: 314px;
    }
    

    /* BENEFITS */
    .benefits_headline {
        width: fit-content;
        text-align: center;
    }

    .benefits_headline .section_title {
        font-size: 32px;
        line-height: 1;
    }

    .benefits_headline .text {
        font-size: 18px;
    }

    .benefits_card_container {
        width: 520px;
        justify-content: space-evenly;
        padding: 0px 0px;
        margin: 0 auto;
    }

    .benefits_card {
        width: 240px;
    }

    .benefits_card_header {
        width: 28px;
        height: 28px;
    }

    .benefits_card_header svg {
        height: 14px;
        width: 14px;
    }

    .benefits_card_title {
        font-size: 13px;
    }

    .benefits_card_text {
        font-size: 12px;
    }

    .benefits_headline a {
        display: none;
    }

    .benefits_container {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }

    /* FAQ */
    .faq_header{
        font-size: 60px;
    }

    .question_header span {
        font-size: 22px;
    }

    .faq_answer {
        font-size: 24px;
    }

    .faq_question {
        padding: 18px 66px;
    }

    .footer_headline span:nth-child(1) {
        font-size: 39px;
    }

    .footer_headline span:nth-child(2) {
        font-size: 57px;
    }

    .footer_info.text{
        display: none;
    }
}

/* Telas pequenas / celulares grandes */
@media (max-width: 768px) {
    .hero_headline {
        margin: 116px auto;
        width: 396px;
    }

    .headline_title {
        gap: 4px;
        font-size: 26px;
    }

    .headline_subtitle {
        gap: 4px;
        font-size: 18px;
    }

    .hero_headline a {
        transform: scale(0.8);
    }

    /* FLAGS */
    .section_title {
        width: 100%;
    }

    .flags_container {
        flex-direction: column;
    }

    /* HIW */

    .hiw_container {
        width: 441px;
        padding: 0px 16px;
        gap: 40px;
    }

    .hiw_header {
        font-size: 48px;
    }

    .hiw_steps {
        font-size: 80px;
    }

    .hiw_item {
        width: fit-content;
    }

    .hiw_item header{
        font-size: 22px;
    }

    .hiw_item .text {
        font-size: 16px;
    }

    .hiw_container {
        justify-content: space-around;
    }

    /* ABOUT */
    .about_title {
        font-size: 20px;
    }

    .about_subtitle {
        line-height: 1;
    }

    /* BENEFITS */

    .purple_section_content.benefits{
        height: fit-content;
    }

    .benefits_card_container {
        width: 240px;
    }

    /* FAQ */
    .faq_question {
        padding: 16px 40px 16px 40px;
    }

    .question_header {
        gap: 12px;
    }

    .faq_header {
        font-size: 40px;
    }

    .question_header span {
        font-size: 20px;
        text-align: start;
    }

    .faq_answer {
        font-size: 16px;
    }

    /* FOOTER */
    .logo_container svg{
        height: 30px;
    }

    .comp_loc span:nth-child(1){
        font-size: 15px;
    }

    .comp_loc span:nth-child(2){
        font-size: 13px;
    }

    .logo_container {
        gap: 0px;
    }

    .comp_name_footer span:nth-child(1) {
        font-size: 24px;
    }

    .comp_name_footer span:nth-child(2) {
        font-size: 18px;
    }

    .footer_container{
        width: 381px;
    }
    
}

/* Celulares */
@media (max-width: 480px) {
    .hero_headline {
        margin: 116px auto;
        width: 296px;
    }

    .hiw_container {
        width: 350px;
    }

    .hiw_container {
        gap: 12px;
    }
    
    .hiw_header {
        font-size: 58px;
    }

    .hiw_item {
        width: 185px;
    }

    .hiw_item .text {
        font-size: 16px;
    }

    .hiw_item a {
        transform: scale(0.8) translateX(-30px);
    }

    .primary_btn_body header {
        font-size: 14px;
    }

    .nobg_section_content {
        padding: 0px;
    }

    .benefits_container {
        padding: 40px 20px;
    }

    .faq_header {
        font-size: 36px;
    }

    .footer_container {
        width: 350px;
    }

    .footer_content {
        padding: 0px 20px;
    }

    .comp_loc span:nth-child(1){
        font-size: 14px;
    }

    .comp_loc span:nth-child(2){
        font-size: 12px;
    }
}
/* ============================================
   MELHORIAS ADICIONADAS
   ============================================ */

/* Skip to content - Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #A196FC;
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus visível para navegação por teclado */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #A196FC;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Animação suave de transição para itens do FAQ */
.faq_answer {
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq_icon {
    font-size: 28px;
    font-weight: 300;
    min-width: 28px;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_icon {
    transform: rotate(45deg);
}

/* Melhoria no hover dos cards de about */
.about_card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(161, 150, 252, 0.3);
}

/* Melhoria no hover dos cards de benefits */
.benefits_card {
    transition: transform 0.2s ease;
}

.benefits_card:hover .benefits_card_header {
    background-color: #A196FC;
    transition: background-color 0.2s ease;
}

.benefits_card:hover .benefits_card_header svg path {
    fill: #fff;
    transition: fill 0.2s ease;
}

/* Scroll suave para todos os navegadores */
html {
    scroll-behavior: smooth;
}

/* Seleção de texto com cor da marca */
::selection {
    background-color: #A196FC;
    color: #fff;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #A196FC;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9187E3;
}

/* Melhorias mobile adicionais */
@media (max-width: 480px) {
    /* Footer headline responsivo */
    .footer_headline span:nth-child(1) {
        font-size: 22px;
    }

    .footer_headline span:nth-child(2) {
        font-size: 32px;
    }

    /* About cards em mobile */
    .about_card {
        width: 100%;
        max-width: 344px;
    }

    /* HIW steps menor em mobile */
    .hiw_steps {
        font-size: 60px;
        gap: 28px;
    }

    /* Flags em grid no mobile */
    .flags_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }

    .flag_card {
        width: 100%;
        height: 80px;
    }

    /* Padding das sections no mobile */
    .section_container {
        padding: 12px;
    }

    .nobg_section_content {
        padding: 0px 12px;
        gap: 20px;
    }

    /* FAQ menor */
    .faq_question {
        padding: 16px 20px;
    }

    .question_n {
        font-size: 16px;
        padding: 8px;
    }

    .question_header span {
        font-size: 16px;
    }

    .faq_answer {
        font-size: 14px;
    }

    .faq_item.active .faq_answer {
        padding: 20px 24px;
    }

    /* Benefits no mobile */
    .benefits_container {
        padding: 40px 16px;
        flex-direction: column;
        align-items: center;
    }

    .benefits_headline {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .benefits_card_container {
        width: 100%;
        justify-content: center;
    }

    .benefits_card {
        width: 100%;
        max-width: 315px;
    }
}

/* Reduced motion para respeitar preferências do usuário */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .fixed_header,
    .purple_container_bg,
    .hero_btn,
    .primary_btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
