body{
font-family: Arial;
margin:0;
background:#0f172a;
color:white;
text-align:center;
}

header{
background:#020617;
padding:20px;
}

h1{
margin:0;
}

/* CARRUSEL */

.carousel-section{
display:flex;
justify-content:center;
padding:30px;
}

.carousel{
width:900px;
height:400px;
position:relative;
overflow:hidden;
border-radius:10px;
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s;
}

.slide.active{
opacity:1;
}

/* DESCARGAS */

.downloads{
padding:40px;
}

.download-card{
display:flex;
align-items:center;
justify-content:center;
background:#1e293b;
padding:20px;
border-radius:10px;
width:350px;
margin:auto;
gap:20px;
}

.app-icon{
width:60px;
height:60px;
}

.download-info{
text-align:left;
}

button{
background:#22c55e;
border:none;
padding:10px 18px;
border-radius:6px;
color:white;
cursor:pointer;
font-weight:bold;
}

button:hover{
background:#16a34a;
}