.hero-section-empresas {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.imgur.com/placeholder_business_solutions.jpg') no-repeat center center/cover; /* Placeholder image */
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-content-empresas {
    position: relative;
    z-index: 2;
}

.hero-title-empresas {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle-empresas {
    font-size: 1.5rem;
    font-weight: 400;
}

.plans-section .section-header h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
}

.content-section-empresas {
    padding: 80px 0;
}

.content-grid-empresas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card-empresas {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-card-empresas:hover {
    transform: translateY(-10px);
}

.content-card-empresas img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card-empresas h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem;
}

.content-card-empresas p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.btn-empresas {
    display: inline-block;
    background: linear-gradient(90deg, #ff9900, #ff00c1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 1.5rem 1.5rem;
    transition: transform 0.3s ease;
}

.btn-empresas:hover {
    transform: scale(1.05);
}
