
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000;
    height: 100vh; 
    overflow: hidden;
    padding-bottom: 0; 
}

h1, h2, h3, h4, h5, h6, p, span {
    cursor: default; 
    user-select: none; 
}

/* === MENÚ SUPERIOR === */
.top-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    z-index: 10;
}

.top-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.top-nav a:hover {
    background-color: #000;
    color: #fff;
}

/* === CONTENEDOR PRINCIPAL === */
.main-content {
    width: 90%;
    max-width: 1600px;
    margin: 40px auto 0 auto;
}

/* === SECCIÓN DE TÍTULOS === */
.titles-section {
    position: relative;
    margin-bottom: 60px;
}

.massive-title {
    font-size: 15vw; 
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.85;
}

.subtitle {
    font-size: 6vw;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

/* === ESTRELLAS BASE Y ANIMACIÓN === */
.star {
    transition: transform 0.6s ease-in-out;
    cursor: default;
}

.star:hover {
    transform: rotate(90deg) scale(1.1); 
}


.floating-star {
    position: absolute;
    width: 50px;
}

.star-tl { top: 0%; left: 28%; width: 60px; }
.star-bl { bottom: 40%; left: 9%; width: 40px; }
.star-tr { top: -10%; right: 5%; width: 70px; }
.star-question { bottom: 10%; left: 63%; width: 50px; }

/* === MENÚ DE PROYECTOS (LISTA) === */
.projects-list {
    width: 60%; 
    margin-left: auto; 
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 5%;
}


.list-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.4s ease-out, color 0.4s ease-out; 
}

/* Efecto Hover en todo el bloque */
.list-item:hover {
    transform: translateY(-8px); 
    color: #888888; 
}


.list-item:hover .list-line {
    border-bottom-color: #888888;
}


.list-star {
    width: 50px;
    height: 50px; 
    object-fit: contain; 
    margin-right: 15px;
    flex-shrink: 0;
}

.list-num {
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.list-line {
    flex-grow: 1; 
    border-bottom: 3px solid #000;
    margin: 0 20px;
    transition: border-bottom-color 0.4s ease-out; 
}

.list-text {
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* === RESPONSIVE BÁSICO PARA MÓVILES === */
@media (max-width: 768px) {
    .projects-list {
        width: 100%; 
        padding-right: 0;
    }
    .list-num, .list-text {
        font-size: 1.2rem;
    }
    .list-star {
        width: 30px;
    }
}

/*MARCA DE AGUA*/

.watermark {
    position: absolute; 
    bottom: 20px; /* Separación desde el borde inferior */
    width: 100%;
    text-align: center;
    z-index: 1000; /* Asegura que no quede tapado por ninguna imagen */
}

.watermark p {
    font-size: 0.8rem; /* Letra pequeñita y elegante */
    font-weight: 600;
    color: #000000; /* Un gris sutil para que no robe protagonismo */
    letter-spacing: 0.05em;
    cursor: default;
    user-select: none;
}