/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 190px 8% 90px;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 17, 0.88) 0%,
            rgba(2, 6, 17, 0.58) 48%,
            rgba(2, 6, 17, 0.70) 100%
        ),
        url("../images/hover.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 820px;
    text-align: left;
}

.tag {
    color: #00aeff;
    font-size: 13px;
    letter-spacing: 7px;
    font-weight: 400;
    margin-bottom: 28px;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 23px;
    font-weight: 300;
    color: #d7e2ef;
    max-width: 780px;
    line-height: 1.65;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

/* SERVICIOS */
.services-section {
    padding: 110px 8%;
    background: #020611;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.section-heading span {
    color: #00aeff;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 230px;
    padding: 34px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.92), rgba(6, 14, 25, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 255, 0.45);
    box-shadow: 0 0 35px rgba(0, 174, 255, 0.12);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.service-card p {
    color: #aebdd0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 170px 24px 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}