@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf');
    font-weight: normal;
    font-style: normal;
}

/* Geral */

* {
    padding: 0;
    margin: 0;
    font-family: Inter;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */

header {
    max-width: 1280px;
    width: 100%;
    display: flex;
    background-color: #123762;
    padding: 1rem 0.5rem;
    border-radius: 2rem;
}

.logo-header img {
    object-fit: contain;
    height: auto;
    width: 10rem;
}

.left-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 2px solid darkgrey;
    padding-right: 2rem;
    max-width: 100%;
    width: 70%;
}

.buttons-header {
    display: flex;
    gap: 1rem;
}

.buttons-header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.right-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 30%;
    text-align: center;
    gap: 1rem;
}

.right-header p {
    color: white;
    font-size: 0.8rem;
}

.right-header a {
    font-size: 0.8rem;
    color: #F84D24;
    background-color: white;
    padding: 0.5rem;
    font-weight: bold;
    border-radius: 1.5rem;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

/* Section Hero */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.container-faq {
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 3rem;
}

.container-faq a {
    color: #FF4A22;
}

.header-faq {
    display: flex;
    align-items: center;
    gap: 20rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.header-faq .header-logo img {
    width: 12rem;
}

.header-faq .header-text h3 {
    border: 1px solid #FF4A22;
    background-color: #FF4A22;
    padding: 0.3rem;
    color: white;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
}

.header-faq .header-text h2 {
    color: #123762;
    font-weight: bold;
    font-size: 2rem;
}

.header-faq .header-text h2 span {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border: 1px solid #FF4A22;
    background-color: #FF4A22;
    border-radius: 50%;
    padding: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.faq-question {
    background-color: #123762;
    color: white;
    border: none;
    padding: 0.7rem;
    width: 85%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2rem;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e03d1c;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 4px solid #FF4A22;
    border-right: 4px solid #FF4A22;
    border-radius: 5px;
    font-size: 1.2rem;
    color: #123762;
    margin-bottom: 1rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* Section Options */

.options {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-benefits-list.png);
    background-position: center;
    background-size: cover;
    padding: 3rem 0;
}

.options-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.options-container span {
    margin-bottom: 3rem;
    align-self: flex-start;
    color: #e03d1c;
    font-weight: bold;
    background-color: white;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 2rem;
}

.options-cards {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    max-width: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.options-cards img {
    object-fit: contain;
    height: auto;
    width: 7rem;
    margin-bottom: 1rem;

}

.card {
    height: 10rem;
    width: 10rem;
    gap: 1rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0.2px) saturate(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card p {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.options-cards:nth-child(3) .card:nth-child(4) {
    justify-content: center;
}

.options-cards:nth-child(3) .card:nth-child(4) img {
    width: 10rem;
}

.card:hover {
    background-color: #023859;
    transition: background 0.2s;
}

.card {
    transition: background 0.2s;
}

/* Section Legal-Advert */

.legal-advert {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 3rem 0;
}

.legal-advert-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.partners-logos img {
    width: 10rem;
    height: 4rem;
    object-fit: contain;
    display: block;
}

.legal-advert-container p {
    max-width: 100%;
    width: 90%;
    text-align: justify;
    color: #023859;
    margin: 2rem 0;
}

#logoIxer {
    object-fit: contain;
    height: auto;
    width: 16rem;
}

/* Footer */

footer {
    background-color: #123762;
    color: white;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

footer .container-footer {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem;
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

footer .footer-info {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

footer .footer-info p {
    margin: 0.5rem 0;
}

footer .apps-img {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

footer .apps-img img {
    width: 10rem;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

footer .apps-img img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #f5f5f5;
    text-align: center;
    border-top: 1px solid #FF4A22;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom a {
    text-decoration: none;
    color: #FF4A22;
}

.contacts a {
    color: #FF4A22;
}

.contacts .whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts .whatsapp img {
    object-fit: contain;
    height: 30px;
    width: 30px;
    margin-right: 0.5rem;
}

/* Responsividade para tablets */

@media (max-width: 900px) {
    /* Geral */

    * {
        overflow-x: hidden;
    }

    /* Header */

    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        border-radius: 0 0 2rem 2rem;
    }

    .logo-header img {
        width: 6rem;
    }

    .buttons-header a {
        font-size: 0.7rem;
    }

    .buttons-right {
        height: 2rem;
        padding-top: 0.4rem;
    }

    /* Section Hero */

    .hero {
        padding-top: 0;
    }

    .container-faq {
        width: 90%;
    }

    .header-text h3 {
        font-size: 1rem;
    }

    .header-faq .header-text h2 {
        font-size: 1.5rem;
    }

    .header-faq .header-text h2 span {
        font-size: 1rem;
        padding: 0.2rem;
    }

    .header-faq {
        max-width: 100%;
        width: 100%;
        gap: 0;
        align-items: center;
        justify-content: space-between;
    }

    /* Section Options */

    .options-container {
        width: 90%;
    }

    /* Footer */

    .container-footer {
        flex-direction: column;
    }
}

/* Responsividade para smartphones */

@media (max-width: 480px) {
    /* Header */

    .buttons-header {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #123762;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 2rem;
        border-radius: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 10000;
    }

    .buttons-header.active {
        display: flex;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .left-header {
        width: 90%;
        border: none;
        padding-right: 0;
        justify-content: flex-start;
    }

    .buttons-right {
        height: 5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;;
    }

    .buttons-right a {
        font-size: 0.6rem;
    }

    /* Section Hero */

    .header-faq {
        flex-direction: column;
        gap: 2rem;
    }

    /* Section Options */

    .options-cards {
        flex-direction: column;
    }

    /* Footer */

    .container-footer {
        font-size: 1rem !important;
    }

    .apps-img img {
        width: 8rem !important;
    }
}