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

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

/* 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{
    background:#081420;
    color:white;
    text-align:center;
    padding:30px 20px;
}

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

.hero p{
    font-size:22px;
    max-width:700px;
    margin:auto;
}

/* SECCIONES */

.info-section{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    padding:70px 10%;
    flex-wrap:wrap;
}

/* COLORES */

.claro{
    background:#f5f1e8;
    color:#111;
}

.oscuro{
    background:#081420;
    color:white;
}

/* TEXTO */

.info-text{
    flex:1;
    min-width:300px;
}

.info-text h2{
    font-size:42px;
    margin-bottom:25px;
}

.claro h2{
    color:#0a4c8b;
}

.oscuro h2{
    color:#d4af37;
}

.info-text p{
    font-size:20px;
    line-height:1.8;
}

/* IMAGEN */

.info-image{
    flex:1;
    min-width:300px;
    text-align:center;
}

.info-image img{
    width:100%;
    max-width:500px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* 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;
    }

}


