/*========== Css Pai - Início ==========*/
@import url('style.css');
/*========== Css Pai - Fim ==========*/

/*========== Top Page ==========*/
.top-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--accent-blue);
    margin: -50px 0 1px;
}

.top-text h1 strong {
    color: var(--dark-blue);
}

/*========== Mobile Top Page - APP ==========*/
@media (max-width: 768px) {
    .top-text {
        margin-top: -3rem;
    }

    .top-text h1 {
        margin: 30px 0 1px;
    }
}

/*========== About ==========*/
.about-section {
    position: relative;
    text-align: center;
    margin-top: -7rem;
}

.about-choose {
    text-align: center;
}

.about-section h2,
.about-choose h2 {
    letter-spacing: 0.6px;
    margin-bottom: 1.5rem;
}

.about-section p {
    line-height: 1.75;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.about-section p:first-of-type {
    max-width: 760px;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.top-container {
    margin-top: 4.5rem;
    display: grid;
    gap: 2.8rem;
}

.box {
    position: relative;
    padding: 2.6rem 2.2rem;
    text-align: center;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-app);
    backdrop-filter: blur(16px);
    transition: 0.35s ease;
    overflow: hidden;
}

.box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 150, 255, 0.6),
            transparent 70%);
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: none;
}

.box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 150, 255, 0.45);
}

.box:hover::after {
    opacity: 0.45;
}

.box i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 0.8rem;
}

.box-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.about-choose {
    position: relative;
}

.steps {
    margin-top: 3rem;
    display: grid;
    gap: 2.4rem;
}

.step {
    padding: 2.2rem;
    border-radius: var(--radius);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-app);
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 150, 255, 0.45);
}

.step .icon i {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.step p {
    line-height: 1.55;
    font-weight: 500;
}

/*========== Mobile About - APP ==========*/
@media (max-width: 768px) {
    .about-section {
        color: var(--dark);
    }

    .top-container .box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        background: var(--white);
        border: 1px solid var(--border-hover);
        box-shadow: var(--shadow-app);
    }

    .about-choose h2 {
        color: var(--dark);
    }

    .about-choose .steps {
        gap: 20px;
    }

    .about-choose .steps .step {
        border: 1px solid var(--border-hover);
        box-shadow: var(--shadow-app);
    }
}

/*========== Media Query ==========*/
@media (min-width: 768px) {
    .top-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .about-section {
        margin-top: -2rem;
    }
}

/*========== FAQ ==========*/
.faq-section {
    position: relative;
    text-align: center;
    margin-top: -7rem;
}

.faq-section h2 {
    letter-spacing: 0.6px;
    margin-bottom: 3rem;
}

.faq-list {
    display: grid;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    padding: 2.2rem 2.4rem;
    text-align: left;
    border-radius: var(--radius);
    background: var(--white);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-app);
    transition: 0.35s ease;
    overflow: hidden;
}

.faq-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(0, 160, 255, 0.45),
            transparent 70%);
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 160, 255, 0.45);
}

.faq-item:hover::after {
    opacity: 0.4;
}

.faq-item h3 {
    color: var(--accent-blue);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.faq-item p {
    line-height: 1.65;
    font-size: 1rem;
    opacity: 0.95;
}

/*========== Mobile Faq - APP ==========*/
@media (max-width: 768px) {

    .faq-section h2,
    .faq-item h3 {
        color: var(--dark);
    }

    .faq-item h3 {
        color: var(--accent-blue);
    }

    .faq-item p {
        color: var(--dark);
    }

    .faq-item {
        border: 1px solid var(--border-hover);
        box-shadow: var(--shadow-app);
    }

}

/*========== Media Query ==========*/
@media (min-width: 768px) {
    .faq-list {
        gap: 2.4rem;
    }

    .faq-item {
        padding: 2.6rem 3rem;
    }
}

@media (min-width: 1200px) {
    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: -3rem;
    }
}