/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --gold:#f7c948;
    --gold2:#ffdd75;
    --dark:#0b0b0b;
    --dark2:#111111;
    --card:#161616;
    --white:#ffffff;
    --gray:#b7b7b7;
    --shadow:0 10px 35px rgba(0,0,0,.35);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#050505,#111);
    color:var(--white);
    overflow-x:hidden;
}

/* animated background */

body::before{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:radial-gradient(circle,var(--gold),transparent 70%);
    top:-250px;
    right:-200px;
    opacity:.08;
    z-index:-1;
    animation:floatBg 8s ease-in-out infinite;
}

@keyframes floatBg{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(40px);
    }
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(10,10,10,.75);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.site-nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:white;
}

.brand-mark{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:linear-gradient(135deg,var(--gold),#c78f00);
    color:black;
    font-weight:700;
    box-shadow:0 0 25px rgba(247,201,72,.35);
}

.nav-links{
    display:flex;
    gap:28px;
}

.nav-links a{
    color:var(--gray);
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:linear-gradient(135deg,var(--gold),#c99700);
    color:black;
    box-shadow:0 10px 30px rgba(247,201,72,.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(247,201,72,.45);
}

.btn-secondary{
    background:#1a1a1a;
    color:white;
    border:1px solid rgba(255,255,255,.1);
}

.btn-dark{
    background:black;
    color:white;
}

.btn-secondary:hover,
.btn-dark:hover{
    transform:translateY(-4px);
    border-color:var(--gold);
}

/* HERO */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-content{
    text-align:center;
    animation:fadeUp 1s ease;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:25px;
}

.hero-content h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    margin:auto;
    color:var(--gray);
    line-height:1.8;
    margin-bottom:35px;
}

.gradient-text{
    background:linear-gradient(90deg,var(--gold),var(--gold2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-actions{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

/* floating symbols */

.icon-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
}

.glyph{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:28px;
    color:var(--gold);
    animation:float 3s ease-in-out infinite;
}

.glyph:nth-child(2){
    animation-delay:.6s;
}
.glyph:nth-child(3){
    animation-delay:1.2s;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* SECTIONS */

.section{
    padding:100px 0;
}

.section-light{
    background:#0d0d0d;
}

.section-gold-soft{
    background:linear-gradient(180deg,#131313,#0f0f0f);
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

.section-heading p{
    color:var(--gray);
}

/* CARDS */

.card-grid,
.feature-grid,
.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.pair-card,
.feature-card,
.step-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(14px);
    padding:30px;
    border-radius:24px;
    transition:.4s;
    box-shadow:var(--shadow);
}

.pair-card:hover,
.feature-card:hover,
.step-card:hover{
    transform:translateY(-10px);
    border-color:rgba(247,201,72,.5);
    box-shadow:0 20px 45px rgba(247,201,72,.12);
}

.pair-icon,
.feature-icon,
.step-icon{
    font-size:2rem;
    color:var(--gold);
    margin-bottom:15px;
}

.step-badge{
    width:45px;
    height:45px;
    border-radius:50%;
    background:var(--gold);
    color:black;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:15px;
}

/* FLOW */

.process-flow{
    margin-top:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.flow-block,
.flow-center{
    background:rgba(255,255,255,.04);
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.flow-arrow{
    font-size:2rem;
    color:var(--gold);
}

/* CONTACT */

.contact-card{
    text-align:center;
    background:linear-gradient(135deg,#171717,#0d0d0d);
    border-radius:30px;
    padding:60px;
    border:1px solid rgba(255,255,255,.05);
}

.contact-pill{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(247,201,72,.12);
    color:var(--gold);
    margin-bottom:18px;
}

/* FOOTER */

.site-footer{
    background:black;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:35px 0;
    flex-wrap:wrap;
    gap:20px;
}

.footer-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:var(--gray);
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

.footer-copy{
    text-align:center;
    padding:18px;
    color:#777;
    border-top:1px solid rgba(255,255,255,.05);
}

/* FLOAT WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(37,211,102,.4);
    z-index:1000;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* entrance animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero-content h1{
        font-size:2.6rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .footer-inner{
        text-align:center;
        justify-content:center;
    }

    .contact-card{
        padding:35px 25px;
    }
}