*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body{

background:white;
color:#161c24;

}

.hero{

background:#2797ff;
min-height:70vh;

display:flex;
align-items:center;
justify-content:space-between;

padding:80px 100px;

gap:100px;

max-width:1500px;

margin:auto;

}

.hero-left{

max-width:550px;

}

.logo{

width:90px;

margin-bottom:30px;

}

h1{

font-size:72px;

color:white;

margin-bottom:20px;

}

.subtitle{

font-size:24px;

line-height:1.6;

color:white;

margin-bottom:50px;

}

.buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.apple{

background:white;

color:#161c24;

padding:20px 38px;
font-size:18px;

border-radius:14px;

font-weight:bold;

text-decoration:none;

}

.google{

border:2px solid white;

color:white;

padding:20px 38px;
font-size:18px;

border-radius:14px;

text-decoration:none;

}

.apple,
.google{

transition:all .25s ease;

}

.apple:hover,
.google:hover{

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.hero-right img{

width:420px;

max-width:100%;

height:auto;

}

.screens{

padding:100px 80px;

}

.screens h2{

text-align:center;

font-size:46px;

margin-bottom:70px;

}

.gallery{

display:flex;

gap:25px;

overflow-x:auto;

padding-bottom:20px;

}

.gallery img{

height:680px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

footer{

padding:50px;

display:flex;

justify-content:center;

gap:40px;

border-top:1px solid #eee;

}

footer a{

text-decoration:none;

color:#161c24;

}

footer p{

color:#777;

}


.page{

max-width:900px;

margin:0 auto;

padding:70px 40px 100px;

color:#161c24;

line-height:1.8;

font-size:18px;

}

.page h1{

font-size:54px;

color:#161c24;

margin-bottom:10px;

}

.page .fecha{

color:#666;

margin-bottom:50px;

font-size:16px;

}

.page h2{

margin-top:45px;

margin-bottom:15px;

font-size:30px;

color:#2797ff;

}

.page p{

margin-bottom:18px;

}

.page ul{

margin:15px 0 25px 30px;

}

.page li{

margin-bottom:10px;

}

.page a{

color:#2797ff;

font-weight:600;

text-decoration:none;

}

.page a:hover{

text-decoration:underline;

}

.page .volver{

display:inline-block;

margin-top:40px;

}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {

.hero{

flex-direction:column;

text-align:center;

padding:60px 25px;

gap:50px;

min-height:auto;

}

.hero-left{

max-width:100%;

}

.logo{

width:80px;

margin:0 auto 25px;

display:block;

}

h1{

font-size:42px;

line-height:1.15;

margin-bottom:20px;

}

.subtitle{

font-size:20px;

margin-bottom:35px;

}

.buttons{

justify-content:center;

flex-direction:column;

align-items:center;

}

.apple,
.google{

width:100%;

max-width:320px;

text-align:center;

}

.hero-right img{

width:100%;

max-width:320px;

height:auto;

}

.screens{

padding:70px 20px;

}

.screens h2{

font-size:34px;

margin-bottom:40px;

}

.gallery{

gap:18px;

}

.gallery img{

height:auto;

width:240px;

flex-shrink:0;

}

footer{

padding:35px 20px;

flex-direction:column;

align-items:center;

gap:18px;

text-align:center;

}

.page{

padding:50px 25px 80px;

font-size:17px;

}

.page h1{

font-size:40px;

}

.page h2{

font-size:28px;

}

}

