/* RESET BÁSICO */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f2f4f8;
    color: #333;
}

/* CONTENEDOR */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #212529;
    color: #ddd;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.top-bar a {
    color: #ddd;
    text-decoration: none;
    margin-left: 10px;
}

.top-bar a:hover {
    text-decoration: underline;
}

* {
    box-sizing: border-box;
}

/* NAV */
nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0d6efd;
    text-decoration: none;
}

.menu a {
    text-decoration: none;
    margin-left: 20px;
    color: #333;
    font-weight: 500;
}

.menu a:hover {
    color: #0d6efd;
}

/* HERO */
header {
    background: linear-gradient(135deg, #198754, #0d6efd);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.15rem;
    max-width: 720px;
    margin: auto;
    line-height: 1.6;
}

.cta {
    margin-top: 30px;
}

.cta a {
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 30px;
    margin: 5px;
    font-weight: bold;
    display: inline-block;
}

.cta-primary {
    background: #ffc107;
    color: #000;
}

.cta-secondary {
    background: #ffffff;
    color: #0d6efd;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0 30px;
}

.tab {
    cursor: pointer;
    padding: 12px 20px;
    background: #e9ecef;
    border-radius: 20px;
    font-weight: bold;
}

.tab.active {
    background: #0d6efd;
    color: #fff;
}

.tab-content {
    display: none;
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.tab-content.active {
    display: block;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* FOOTER */
footer {
    background: #212529;
    color: #bbb;
    text-align: center;
    padding: 25px 10px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    margin: 0 8px;
}
        .registro-container {
            text-align: center;
            padding: 60px 20px;
        }

        .registro-opciones {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .registro-card {
            border: 1px solid #ddd;
            padding: 30px;
            width: 280px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .registro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .registro-card h3 {
            margin-bottom: 15px;
        }

        .registro-card p {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .registro-card a {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            color: #fff;
        }

        .btn-empresa {
            background-color: #007bff;
        }

        .btn-candidato {
            background-color: #28a745;
        }

        a, .registro-card {
    transition: all 0.3s ease;
}