body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0f;
    color: white;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 50px;
    text-align: left;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 5;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #2d6dff;
    position: relative;
}

.hero-content p {
    margin: 20px 0;
    font-size: 18px;
    color: #bbb;
}

/* Imagen circular estilo derecha */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url('../image/pagina_1.png') no-repeat center/cover;
    clip-path: circle(70% at right center);
    filter: brightness(0.7) contrast(1.2);
    overflow: hidden;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #3F5AF3;
    opacity: 0.4; /* ajusta la intensidad */
    mix-blend-mode: multiply; /* mezcla color con la imagen */
    border-radius: 0%; /* mantiene forma circular */
}

.pagina_image_icono{
    width: 80px;
    height: 80px;
}
/* Elementos decorativos */
.circle-bg-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -100px;
    left: -200px;
    z-index: 1;
}

.circle-bg-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: 10%;
    left: 10%;
    z-index: 1;
}

.scroll-down {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid white;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.pagina_1_lista{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none; /* quitamos el círculo en móvil */
        margin-top: 20px;      
    }

    .hero-image::after {
        display: none; /* sin overlay en móviles */
    }

    .circle-bg {
        display: none; /* quitamos los adornos en móvil */
    }

    .scroll-down {
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        height: 200px;
    }
}