/* =========================================================
   FAROELOTTO - ABOUT PAGE
   ========================================================= */

.page-hero {
    padding: 48px 0 30px;
}

.page-hero-content {
    max-width: 850px;
}

.page-hero-label {
    color: #ffc43d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.2;
}

.page-hero p {
    margin: 0;
    color: #78a5d2;
    font-size: 14px;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
    padding: 10px 0 70px;
}

.about-wrapper {
    background: #06121f;
    border: 1px solid #1c2c3d;
    border-radius: 16px;
    overflow: hidden;
}


/* =========================================================
   INTRO
   ========================================================= */

.about-card {
    display: flex;
    gap: 22px;
    padding: 32px;
    border-bottom: 1px solid #1c2c3d;
}

.about-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #8b6b1d;
    border-radius: 10px;

    background: #111d28;
    color: #ffc43d;

    font-size: 22px;
    font-weight: 800;
}

.about-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.about-content p {
    margin: 0 0 12px;
    color: #78a5d2;
    line-height: 1.8;
    font-size: 14px;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURES
   ========================================================= */

.about-features {
    padding: 32px;
    border-bottom: 1px solid #1c2c3d;
}

.about-section-title {
    margin-bottom: 22px;
}

.about-section-title h2 {
    margin: 0 0 7px;
    font-size: 22px;
}

.about-section-title p {
    margin: 0;
    color: #78a5d2;
    font-size: 14px;
}


.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


.about-feature-card {
    min-height: 190px;
    padding: 24px 20px;

    background: #071522;
    border: 1px solid #1c2c3d;
    border-radius: 12px;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.about-feature-card:hover {
    border-color: #8b6b1d;
    transform: translateY(-2px);
}


.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid #8b6b1d;
    border-radius: 9px;

    background: #111d28;
    color: #ffc43d;

    font-size: 18px;
    font-weight: 800;
}

.about-feature-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
}

.about-feature-card p {
    margin: 0;
    color: #78a5d2;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   INFO CARDS
   ========================================================= */

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

    padding: 32px;
}


.about-info-card {
    padding: 20px;

    background: #071522;
    border: 1px solid #1c2c3d;
    border-radius: 12px;
}


.about-info-card span {
    display: block;

    margin-bottom: 8px;

    color: #6f9bca;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
}


.about-info-card strong {
    display: block;

    color: #f5f8fc;
    font-size: 14px;
}


/* =========================================================
   INFORMATION NOTICE
   ========================================================= */

.about-note {
    margin: 0 32px 32px;
    padding: 20px 22px;

    background: #0a1826;
    border-left: 3px solid #ffc43d;
    border-radius: 8px;
}


.about-note strong {
    display: block;
    margin-bottom: 8px;

    color: #ffc43d;
    font-size: 14px;
}


.about-note p {
    margin: 0;

    color: #78a5d2;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 32px 0 22px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .about-card {
        flex-direction: column;
        padding: 24px;
    }

    .about-features {
        padding: 24px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-info-grid {
        padding: 24px;
    }

    .about-note {
        margin: 0 24px 24px;
    }

}