*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: url('assets/img/fondoEstrellado.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

.top-section {
    height: 100vh;
    /* Altura fija para evitar que el contenido empuje el carrusel */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    /* Oculta el contenido si excede los 50vh fijos */
    overflow: hidden;
}

.bottom-section {
    padding-top: 0;
}

h1 {
    font-family: 'Actor', sans-serif;
    /* ➡️ AUMENTADO: Mayor tamaño para fajao */
    font-size: 12rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.1;
}

h1 a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p {
    /* ➡️ DISMINUIDO: Se reduce para liberar espacio vertical */
    font-size: 1rem;
    max-width: 900px;
    margin: 5px auto;
    text-align: justify;
}


/* ------------------------------------------------ */
/* ESTILOS DE RESPONSIVO PARA MÓVILES (PANTALLAS PEQUEÑAS) */
/* ------------------------------------------------ */
@media (max-width: 768px) {
    h1 {
        /* Aumentado para mantener la proporción */
        font-size: 5rem;
    }

    p {
        /* Reducido para ahorrar espacio */
        font-size: 0.85rem;
        padding: 0 10px;
        text-align: justify;
    }
}

/* Altura del Carrusel */
.carousel-item img {
    height: 100vh;
    object-fit: cover;
}