/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar{
    background-color:#000721;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.auth-buttons .btn {
    margin-left: 10px;
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.auth-buttons .btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: #f9f9f9;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 20px;
    color: #555;
}

.hero-image img {
    max-width: 400px;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: #fff;
}

.feature {
    font-weight: bold;
    color: #007bff;
}

/* COMPANIES */
.companies {
    text-align: center;
    padding: 40px;
}

.company-logos img {
    height: 40px;
    margin: 0 15px;
}

/* COURSES */
.courses {
    padding: 40px;
    background: #f9f9f9;
}

.course-card {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.container-full-bg {
    background-image: url("../images/FondoPaginaQF.69d70e789afe.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* UTILITIES */
.min-h-0 {
    min-height: 0 !important;
}
