* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #000;
    overflow-x: hidden; 
    position: relative;
}

.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    z-index: 1000;
}

.top-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.top-nav a:hover {
    background-color: #000;
    color: #fff;
}

.content-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 130px;
    padding-bottom: 150px;
}

.title-section {
    position: relative;
    margin-bottom: 80px;
    display: inline-block;
}

.huge-title {
    font-size: 15vw; 
    font-weight: 700;
    line-height: 0.82; 
    letter-spacing: -0.04em;
}

.star {
    position: absolute;
    transition: transform 0.6s ease-in-out;
    cursor: default;
}

.star:hover {
    transform: rotate(90deg);
}

/* Posiciones de las estrellas (Ajusta los % según veas) */
.star-1 { top: 18%; left: 23%; width: 45px; }
.star-2 { top: 58%; left: 48%; width: 40px; }
.star-3 { bottom: 35%; right: -15%; width: 65px; }


/* === GRID DE ILUSTRACIONES 3x3 === */
.illustration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas exactas */
    gap: 60px; /* Hueco entre las imágenes */
    width: 100%;
}

/* Contenedor estándar para las imágenes */
.grid-item {
    width: 100%;
    aspect-ratio: 3 / 4; /* Proporción rectangular (más altas que anchas) */
    position: relative;
    z-index: 1; /* Nivel base */
}

/* La imagen dentro de la caja */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* === RESPONSIVE (MÓVILES) === */
@media (max-width: 768px) {
    .illustration-grid {
        grid-template-columns: 1fr; /* 1 sola columna en móviles */
        gap: 30px;
    }
    
    /* Reseteamos la imagen central para que no se salga de la pantalla en el móvil */
    .featured-item img {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: none;
    }
    
    .huge-title {
        font-size: 20vw;
    }
}

/*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;
}