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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#081220;

    color:#F8FAFC;

    overflow-x:hidden;
}

.container{

    width:90%;
    max-width:1280px;

    margin:auto;
}

/* HEADER */

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(8,18,32,.70);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;
}

.logo{

    width:220px;

    height:auto;
}

.btn-header,
.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        #22C55E,
        #34D399
    );

    color:white;

    padding:14px 28px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;
}

.btn-header:hover,
.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(34,197,94,.25);
}

/* HERO */

.hero{

    position:relative;

    padding-top:180px;

    padding-bottom:120px;
}

.hero-glow{

    position:absolute;

    width:900px;

    height:900px;

    background:radial-gradient(
        circle,
        rgba(47,128,237,.18),
        transparent 70%
    );

    top:-250px;

    left:50%;

    transform:translateX(-50%);

    pointer-events:none;
}

.hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}

.eyebrow{

    display:inline-block;

    color:#34D399;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;

    font-weight:700;
}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:25px;
}

.hero p{

    color:#94A3B8;

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;
}

.hero-image{

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;

    max-width:420px;

    border-radius:38px;

    box-shadow:
    0 0 60px rgba(47,128,237,.20);
}

/* SECTIONS */

.section{

    padding:140px 0;
}

.alt{

    background:rgba(255,255,255,.015);
}

.text-block{

    text-align:center;

    max-width:850px;

    margin:auto;
}

.section h2{

    font-size:52px;

    line-height:1.1;

    margin-bottom:25px;
}

.section p{

    color:#94A3B8;

    font-size:19px;

    line-height:1.9;
}

/* PHONE */

.phone-showcase{

    display:flex;

    justify-content:center;

    margin-top:60px;
}

.phone-showcase img{

    width:100%;

    max-width:420px;

    border-radius:36px;

    box-shadow:
    0 0 50px rgba(47,128,237,.15);
}

/* SPLIT */

.split{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;
}

.reverse{

    direction:rtl;
}

.reverse > *{

    direction:ltr;
}

/* GOALS */

.goals{

    text-align:center;
}

.subtitle{

    max-width:800px;

    margin:auto;

    margin-top:15px;
}

.goal-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;
}

.goal-grid div{

    background:#131D2F;

    border:1px solid rgba(255,255,255,.05);

    padding:35px 20px;

    border-radius:24px;

    font-size:20px;

    transition:.3s;
}

.goal-grid div:hover{

    transform:translateY(-6px);

    border-color:#22C55E;
}

/* SECURITY */

.security-card{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:50px;

    background:#131D2F;

    padding:60px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.05);
}

.security-card img{

    width:120px;
}

.security-card h2{

    margin-bottom:15px;
}

/* CTA */

.cta{

    padding:160px 0;

    text-align:center;
}

.cta h2{

    font-size:64px;

    max-width:900px;

    margin:auto;

    margin-bottom:25px;
}

.cta p{

    color:#94A3B8;

    max-width:850px;

    margin:auto;

    margin-bottom:40px;

    line-height:1.9;
}

/* FOOTER */

footer{

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;
}

footer img{

    width:180px;

    margin-bottom:15px;
}

footer p{

    color:#94A3B8;
}

/* RESPONSIVO */

@media(max-width:1000px){

.hero .container,
.split{

grid-template-columns:1fr;
}

.hero{

text-align:center;
}

.hero h1{

font-size:48px;
}

.section h2{

font-size:38px;
}

.cta h2{

font-size:42px;
}

.goal-grid{

grid-template-columns:1fr;
}

.security-card{

flex-direction:column;

text-align:center;
}

.logo{

width:180px;
}

.download-status {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-top: 16px;
    text-align: center;
}
