
#faq{
    margin-bottom: 100px;
}
.faq-section{
    width: 100%;
    max-width: 1390px;
    min-height: 90vh; /* Ensures it takes up most of the screen height */
    display: flex;
    flex-direction: column;
    margin: 0 auto; /* Centers the section horizontally */
    font-family: var(--font-bagoss-regular);
}
.faq-container{
    width: 100%;
    max-width: 900px;
    min-height: 70vh; /* Ensures it takes up most of the screen height */
    display: flex;
    flex-direction: column;
    
    margin: 0 auto; /* Centers the section horizontally */
}
.tag {
    color: var(--text-text-default, #1f2733);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 24px;
    letter-spacing: 0.22px;
    font-weight: 800; /* This makes it bold */
    font-family: var(--font-bagoss-regular);
    margin-top: 50px ;
    

}

.title-faq {
    color: var(--text-text-default, #1f2733);
    font-size: 44px;
    font-style: normal;
    font-family: var(--font-bagoss-regular);
    font-weight: 900; /* This makes it bold */

}

.accordion {
    width: 100%;
    border: none;
    overflow: hidden;
}

.item {
    border-bottom: 1px solid #353d47;
}

.item:last-child {
    border-bottom: none;
}

.question {
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss-medium);
    font-size: 22px;
    font-style: bold;
    line-height: 24px;
    letter-spacing: 0.22px;
    width: 100%;
    background: transparent;
    padding: 15px 0px;
    font-weight: 400; /* This makes it bold */
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    
}

.link-content{
    color: var(--text-text-emphasized, #518bff);
    font-size: 18px;
    font-style: regular;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.18px;
    text-decoration-line: underline;
}


.icon {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.show {
    max-height: max-content;
    padding-bottom: 32px;
}


.content a:hover {
    text-decoration: none;
}


/* .content_faq {
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    color: #1f2733;
     */
    /* Equivalentes de Tailwind */
    /*  display: none;hidden */
    /*padding-bottom: 1rem;  pb-4 */
/* } */

/* .content_faq.open{
    max-height: 500px;
} */

.content_faq {
    padding:2px;
    overflow: hidden;
    margin-top: 2px;
    margin-bottom: 10px;
    transition: max-height 0.3s ease;
    max-height: 0px; /* Start hidden */
    /* Remove display: none; so the element is always rendered */
    /* Optional: add padding if needed when open */
    
    /* Your other styles... */
    color: var(--text-text-default, #1f2733);
    font-family: var(--font-bagoss);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    color: #1f2733;
}

/* You can remove this rule if you're setting max-height dynamically in JS */
.content_faq.open{
    max-height: 500px;
}

.note {
    color: var(--text-text-default, #1f2733);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
}

.note a {
    color: var(--text-text-emphasized, #1d53bf);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.18px;
    text-decoration-line: underline;
}

@media (max-width: 1024px) {
    .main-section {
        max-width: 576px;
    }

    .title-faq {
        color: var(--text-text-default, #1f2733);
        font-size: 25px;
        font-style: normal;
        font-family: var(--font-bagoss-regular);
        font-weight: 900; /* This makes it bold */
    
    }
    .tag {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.2px;
    }
    .title {
        font-size: 28px;
        line-height: 32px;
    }
    .question {
        padding: 16px 0;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
    }
}

@media (max-width: 520px) {
    .faq-section {
        
        padding:  20px;
    }

    .question {
        font-family: var(--font-bagoss-regular);
        font-size: 18px;
        font-weight: 800;
        line-height: 30px;
        padding-bottom: 0px;
    }

    .content_faq {
        font-size: 16px;
        font-family: var(--font-bagoss-regular);
        line-height: 24px;
        
    }

    .title-faq {
        color: var(--text-text-default, #1f2733);
        font-size: 28px;
        font-style: normal;
        font-family: var(--font-bagoss-regular);
        font-weight: 900; /* This makes it bold */
        margin-bottom: 10px;
        margin-top: 5px;

    
    }
    .item {
        border-bottom: 1px solid #353d47;
        
        
    }
    
    .item:last-child {
        border-bottom: none;
    }
    
    #faq{
        margin-bottom: 6.8px;
    }

}

   

    

   

    