
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#081420;
    color:white;
}

/* MENU */

.topbar{
    background:#06111c;
    padding:20px;
    border-bottom:2px solid #d4af37;
}

.topbar nav{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.topbar nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.topbar nav a:hover{
    color:#d4af37;
}

/* HERO */

.hero{
    text-align:center;
    padding:30px 20px;
}

.hero h1{
    font-size:60px;
    color:#d4af37;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
}

/* CONTENIDO */

.legal-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-bottom:80px;
}

/* CAJAS */

.legal-box{
    background:#10263b;

    padding:40px;

    margin-bottom:40px;

    border-radius:15px;

    border-left:5px solid #d4af37;

    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* TITULOS */

.titulo{
    display:flex;
    align-items:center;
    gap:20px;

    margin-bottom:25px;
}

.titulo i{
    font-size:35px;
    color:#d4af37;
}

.titulo h2{
    font-size:30px;
}

/* TEXTO */

.legal-box p{
    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

    color:#e6e6e6;
}

/* IMAGEN FINAL */

.final-image{
    background:#ededed;
    padding:60px 0;
    text-align:center;
}

.final-image img{
    width:80%;
    max-width:1200px;
    border-radius:15px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .info-section{
        flex-direction:column;
        text-align:center;
    }

}
