/* ════ ABOUT ════ */
.about {
    padding: 10rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    overflow: hidden;
}

.about-img-wrap {
    position: relative;
    height: 680px;
    width: auto;
    border-radius: 100px 100px 10px 10px;
    overflow: hidden;
    background-color: #11004b1a;
    mask-image: linear-gradient(rgba(0, 4, 58, 0.758) 60%, transparent);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.12);
    will-change: transform;
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
}

.about-text h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--light);
}

.about-text p {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.43);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ════ SERVICES ════ */
.services {
    padding: 8rem 5rem;
    overflow: hidden;
}

.services-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 9rem);
}

.services-header h2 span {
    color: var(--light);
    text-transform: uppercase;
}

.services-header p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    overflow: hidden;
}

.service-card {
    background: rgba(10, 42, 102, 0.96);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s;
}

.service-card:hover {
    background: var(--accent-blue);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(94, 174, 255, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 2.5rem;
}

.service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.service-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    text-align: justify;
}

.service-arrow {
    margin-top: 2.5rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover .service-arrow {
    border-color: #fff;
    transform: translate(4px, -4px);
}

/* ================= RESPONSIVE ================= */

/* Tablet grande */
@media (max-width: 1024px) {
    .about {
        padding: 7rem 3rem;
        gap: 4rem;
    }

    .about-img-wrap {
        height: 520px;
    }

    .services {
        padding: 6rem 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3rem;
    }

    .about-img-wrap {
        height: 420px;
        border-radius: 60px 60px 10px 10px;
    }

    .stats-row {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .services {
        padding: 5rem 2rem;
    }

    .services-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about {
        padding: 4rem 1.25rem;
        gap: 2.5rem;
    }

    .about-img-wrap {
        height: 320px;
        border-radius: 40px 40px 10px 10px;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .services {
        padding: 4rem 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-title {
        font-size: 1.5rem;
    }
}