@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Poppins', sans-serif;
    /* Fuente elegante y consistente */
    color: #e3f2fd;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Contenedor principal */
.TODO {
    width: 98%;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    padding: 20px;
}

/* Contenedor de las carreras */
.carreras-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    border-radius: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carreras-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

/* Imagen de la carrera */
.imag {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.imag img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: transform 0.4s ease;
}

.imag img:hover {
    transform: scale(1.05);
}

/* Contenido de la carrera */
.carrera-content {
    flex: 2;
    padding: 25px;
}

.carrera-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00e5ff;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
}

.carrera-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #00e5ff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

.carrera-content p {
    margin-bottom: 15px;
    color: #cfd8dc;
    font-weight: 300;
}

/* Lista personalizada */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #e3f2fd;
    font-weight: 400;
}

ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #00e5ff;
    text-shadow: 0 0 6px #00e5ff;
}

/* Partículas */
#particles-js {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .carreras-content {
        flex-direction: column;
        text-align: center;
    }

    .imag img {
        border-radius: 15px 15px 0 0;
    }

    .carrera-content {
        padding: 15px;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .carrera-content {
        padding: 10px;
    }

    .TODO {
        width: 100%;
        padding: 5px;
    }
}