/* ===================== HERO ===================== */
.hero-section {
    max-width: 600px;
    margin-left: 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    padding: 12px 28px;
    background: #1abc9c;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.hero-button:hover {
    background: #16a085;
}
/* ===================== MEDIA QUERY MÓVIL ===================== */
@media (max-width: 768px) {


    .hero-section {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

}
