.web-body{

    background:
    linear-gradient(135deg,#0f172a,#1e1b4b,#0f172a);

    color:white;
}

/* HERO */

.subhero{

    padding:140px 10% 100px;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
    url("imagportada/web1.jpg");

    background-size:cover;
    background-position:center;
}

.subhero h1{

    font-size:4rem;

    color:#a855f7;

    margin-bottom:20px;

    text-shadow:0 0 25px rgba(168,85,247,0.6);
}

.subhero p{

    max-width:700px;

    margin:auto;

    font-size:1.2rem;

    line-height:1.8;

    color:#ddd6fe;
}

/* GALERÍA */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

    padding:80px 10%;
}

.gallery img{

    width:100%;

    border-radius:25px;

    transition:0.4s;

    box-shadow:0 0 25px rgba(168,85,247,0.3);
}

.gallery img:hover{

    transform:translateY(-10px);

    box-shadow:0 0 40px rgba(168,85,247,0.8);
}

/* INFO */

.info{

    width:80%;

    margin:auto;

    padding:60px;

    border-radius:30px;

    background:rgba(255,255,255,0.04);

    backdrop-filter:blur(12px);

    box-shadow:0 0 35px rgba(168,85,247,0.2);
}

.info h2{

    font-size:2.5rem;

    color:#a855f7;

    margin-bottom:30px;
}

.info ul{

    list-style:none;
}

.info li{

    padding:20px;

    margin:20px 0;

    background:rgba(255,255,255,0.05);

    border-left:5px solid #a855f7;

    border-radius:15px;

    transition:0.3s;
}

.info li:hover{

    transform:scale(1.03);

    background:#a855f7;

    color:black;
}

/* BOTÓN */

.volver{

    display:inline-block;

    margin:60px;

    padding:16px 40px;

    background:#a855f7;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

    transition:0.3s;
}

.volver:hover{

    box-shadow:0 0 25px #a855f7;

    transform:scale(1.08);
}