.hero {
    background: linear-gradient(to right, #007BFF, #00d4ff);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
}
.btn-primary {
    margin-top: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-primary:hover {
    background-color: #555;
    transform: translateY(-3px);
}


.features {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.feature {
    display: flex;
    flex-direction: column;
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.feature a.btn-primary {
    margin-top: auto;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.feature h3 {
    margin-bottom: 10px;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    .feature {
        width: 100%;
    }
}