/* FONDO GENERAL */

.soft-body{
    background:
    linear-gradient(135deg,#071a12,#0f3d2e,#071a12);

    color:white;
    min-height:100vh;
}

/* 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/soft1.jpg");

    background-size:cover;
    background-position:center;
}

.subhero h1{

    font-size:4rem;

    color:#22c55e;

    margin-bottom:20px;

    text-shadow:0 0 20px rgba(34,197,94,0.5);
}

.subhero p{

    font-size:1.2rem;

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:#d1fae5;
}

/* GALERÍA */

.gallery{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:40px;

    padding:80px 10%;
}

.gallery img{

    width:450px;

    border-radius:25px;

    transition:0.4s;

    box-shadow:0 0 25px rgba(34,197,94,0.3);
}

.gallery img:hover{

    transform:scale(1.05);

    box-shadow:0 0 40px rgba(34,197,94,0.7);
}

/* INFO */

.info{

    margin:60px auto;

    width:80%;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(10px);

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.1);

    box-shadow:0 0 30px rgba(34,197,94,0.15);
}

.info h2{

    font-size:2.5rem;

    color:#22c55e;

    margin-bottom:30px;
}

.info ul{

    list-style:none;
}

.info ul li{

    margin:20px 0;

    padding:20px;

    border-radius:15px;

    background:rgba(255,255,255,0.05);

    transition:0.3s;

    font-size:1.1rem;
}

.info ul li:hover{

    background:#22c55e;

    color:black;

    transform:translateX(10px);
}

/* BOTÓN */

.volver{

    display:inline-block;

    margin:60px;

    padding:16px 40px;

    background:#22c55e;

    color:black;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

    transition:0.3s;
}

.volver:hover{

    transform:scale(1.08);

    box-shadow:0 0 25px #22c55e;
}

/* RESPONSIVE */

@media(max-width:768px){

    .subhero h1{
        font-size:2.5rem;
    }

    .gallery img{
        width:100%;
    }

    .info{
        width:90%;
        padding:30px;
    }

}