/* public/css/carreras.css */
body { /* Asumiendo que index.css maneja el font-family base, background y color */
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #050505; /* Fondo general de la página de carreras */
    color: #e0e0e0;
}

.carreras-page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.carreras-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link-carreras {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.logo-icon-carreras {
    height: 35px;
    width: auto;
    margin-right: 10px;
}

.logo-text-carreras {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text-carreras .gradient-text { /* Hereda .gradient-text de index.css o defínelo */
    font-size: 1.75rem; 
}
/* Si .gradient-text no está en index.css o necesitas uno específico: */
/*
.gradient-text {
    background: linear-gradient(90deg, #8A2BE2, #4A00E0, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
}
*/

.back-home-link-carreras {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.back-home-link-carreras:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #555;
}

.carreras-main-content {
    flex-grow: 1;
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.hero-carreras {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
    background-color: #0d0d0d; /* Un fondo sutil para el hero */
    border-radius: 12px;
}

.hero-carreras h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-carreras h1 span{
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-carreras .subtitle-carreras {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #b3b3b3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-styled {
    background-color: #121212; /* Fondo para secciones individuales */
    padding: 30px 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-styled h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
}
.section-styled h2::after { /* Detalle decorativo opcional para títulos */
    content: '';
    position: absolute;
    bottom: -1px; /* Alineado con el borde */
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8A2BE2, #4A00E0, #00D4FF);
}


.intro-carreras p, .que-buscamos p, .formas-colaborar p, .cultura-lunaversex p, .call-to-action-carreras p {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.valor-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.valor-icon {
    font-size: 2rem; /* Tamaño de los iconos emoji */
    margin-bottom: 15px;
    line-height: 1;
}

.valor-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.habilidades-interes {
    font-style: italic;
    color: #a0a0a0 !important; /* Hacerlo un poco más tenue */
    text-align: center;
    margin-top: 20px;
}

.formas-colaborar ul, .cultura-lunaversex ul {
    list-style: none;
    padding-left: 0;
}

.formas-colaborar li, .cultura-lunaversex li {
    font-size: 1rem;
    color: #c0c0c0;
    padding: 10px 0 10px 25px; /* Espacio para el marcador personalizado */
    position: relative;
    border-bottom: 1px dashed #2a2a2a;
}
.formas-colaborar li:last-child, .cultura-lunaversex li:last-child {
    border-bottom: none;
}

.formas-colaborar li::before, .cultura-lunaversex li::before {
    content: '✓'; /* O usa un SVG o ícono de fuente */
    position: absolute;
    left: 0;
    top: 10px; /* Ajustar para alineación vertical */
    color: #00D4FF; /* Color del marcador */
    font-weight: bold;
}

.linkedin-button-carreras {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0077B5;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
    margin-top: 10px; /* Espacio sobre el botón */
}

.linkedin-button-carreras:hover {
    background-color: #005E8E;
    transform: translateY(-2px);
}

.email-link-carreras {
    color: #5c9ce5;
    text-decoration: none;
    font-weight: 500;
}
.email-link-carreras:hover {
    text-decoration: underline;
    color: #8ab4f8;
}


.carreras-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #1a1a1a;
    color: #7a7a7a;
    font-size: 0.875rem;
    margin-top: 40px; /* Espacio antes del footer */
}

@media (max-width: 768px) {
    .carreras-header {
        padding: 15px 20px;
    }
    .hero-carreras h1 {
        font-size: 2rem;
    }
    .hero-carreras .subtitle-carreras {
        font-size: 1rem;
    }
    .section-styled {
        padding: 25px 20px;
    }
    .section-styled h2 {
        font-size: 1.6rem;
    }
    .valores-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }
}

@media (max-width: 600px) {
     .carreras-header {
        flex-direction: column;
        gap: 10px;
    }
    .logo-text-carreras {
        font-size: 1.3rem;
    }
    .logo-text-carreras .gradient-text {
        font-size: 1.5rem;
    }
    .linkedin-button-carreras {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
