*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Tahoma,sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ===================== */
/* NAVBAR */
/* ===================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(20px);
    background:rgba(5,8,22,.80);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 40px rgba(212,175,55,.06);
}

.navbar .container{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-wrapper{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-wrapper img{
    width:72px;
    height:72px;
    object-fit:contain;
}

.logo-text{
    font-size:22px;
    font-weight:800;
    letter-spacing:2px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

.whatsapp-btn{
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    padding:14px 28px;
    border-radius:14px;
    font-weight:bold;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

/* ===================== */
/* HERO */
/* ===================== */

.hero{
    min-height:100vh;
    position:relative;
    background-image:url("../assets/hero/hero.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding-top:90px;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(5,8,22,.10),
        rgba(5,8,22,.40)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1400px;
    margin:auto;
}

.badge{
    display:inline-block;
    color:#D4AF37;
    border:1px solid rgba(212,175,55,.35);
    padding:12px 20px;
    border-radius:40px;
    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero h1 span{
    color:#D4AF37;
}

.hero p{
    max-width:700px;
    color:#CBD5E1;
    font-size:22px;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

/* ===================== */
/* BUTTONS */
/* ===================== */

.btn-gold{
    display:inline-block;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    padding:16px 32px;
    border-radius:14px;
    font-weight:bold;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.2);
    padding:16px 32px;
    border-radius:14px;
}
/* ===================== */
/* TEMPLATES */
/* ===================== */

.templates-section{
    padding:180px 0 120px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:56px;
    margin-bottom:15px;
}

.section-title p{
    color:#94A3B8;
    font-size:20px;
}

.templates-grid{
    width:99%;
    max-width:2200px;
    margin:auto;

    display:grid;
   grid-template-columns:repeat(5,minmax(220px,1fr));

    gap:20px;
}

.template-card{
    background:#0F172A;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);
    transition:.4s;
}

.template-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(212,175,55,.15);
}

.template-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    transition:.4s;
}

.template-card:hover img{
    transform:scale(1.05);
}

.template-content{
    padding:20px;
    text-align:center;
}

.template-content h3{
    font-size:16px;
    margin-bottom:10px;
}

.template-btn{
    display:inline-block;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    padding:8px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:bold;
}

/* ===================== */
/* DASHBOARD */
/* ===================== */

.dashboard-section{
    padding:140px 0;
}

.dashboard-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 1fr;

    gap:70px;
    align-items:center;
}

.dashboard-image{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(212,175,55,.15);
    border-radius:30px;
    padding:20px;
    box-shadow:0 30px 80px rgba(0,0,0,.4);
}

.dashboard-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.dashboard-badge{
    display:inline-block;
    background:rgba(212,175,55,.12);
    color:#D4AF37;
    padding:12px 20px;
    border-radius:30px;
    margin-bottom:25px;
}

.dashboard-content h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.dashboard-content p{
    color:#CBD5E1;
    line-height:2;
    font-size:20px;
    margin-bottom:35px;
}

/* ===================== */
/* FEATURES */
/* ===================== */

.features-section{
    padding:140px 0;
}

.features-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);

    padding:35px;
    border-radius:24px;

    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
    0 20px 50px rgba(212,175,55,.12);
}

.feature-card h3{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#CBD5E1;
    line-height:1.8;
}
/* ===================== */
/* STATISTICS */
/* ===================== */

.stats-section{
    padding:140px 0;
}

.stats-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stat-card{
    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
    0 20px 50px rgba(212,175,55,.12);
}

.stat-card h3{
    color:#D4AF37;

    font-size:58px;

    margin-bottom:15px;
}

.stat-card span{
    color:#CBD5E1;

    font-size:18px;
}

/* ===================== */
/* CTA */
/* ===================== */

.cta-section{
    padding:140px 0;
}

.cta-box{
    width:90%;
    max-width:1200px;

    margin:auto;

    text-align:center;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    border-radius:30px;

    padding:80px 50px;
}

.cta-box h2{
    font-size:56px;

    margin-bottom:25px;
}

.cta-box p{
    color:#CBD5E1;

    font-size:20px;

    line-height:2;

    max-width:800px;

    margin:auto auto 40px;
}

.cta-box .hero-buttons{
    justify-content:center;
}

/* ===================== */
/* FOOTER */
/* ===================== */

.footer{
    padding:100px 0 40px;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;
}

.footer-brand img{
    width:90px;

    margin-bottom:20px;
}

.footer-brand h3{
    font-size:30px;

    margin-bottom:20px;
}

.footer-brand p{
    color:#CBD5E1;

    line-height:2;
}

.footer-links,
.footer-contact{
    display:flex;

    flex-direction:column;
}

.footer-links h4,
.footer-contact h4{
    color:#D4AF37;

    margin-bottom:25px;
}

.footer-links a,
.footer-contact a{
    color:#CBD5E1;

    text-decoration:none;

    margin-bottom:15px;
}

.footer-contact span{
    color:#94A3B8;
}

.footer-bottom{
    text-align:center;

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94A3B8;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media(max-width:1200px){

    .templates-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:1100px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:48px;
    }

    .templates-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .dashboard-container{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-content{
        grid-template-columns:1fr;
    }

    .dashboard-content h2{
        font-size:42px;
    }

    .cta-box h2{
        font-size:42px;
    }
}

@media(max-width:700px){

    .hero h1{
        font-size:36px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .templates-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:32px;
    }

    .section-title h2{
        font-size:34px;
    }
}
.floating-whatsapp{
    position:fixed;
    bottom:25px;
    left:25px;

    width:70px;
    height:70px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 10px 30px rgba(37,211,102,.45);

    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

.floating-whatsapp svg{
    width:34px;
    height:34px;
}

.dashboard-image a{
    display:block;
    border-radius:24px;
    overflow:hidden;
}

.dashboard-image img{
    width:100%;
    border-radius:24px;
    transition:.4s;
    cursor:pointer;
}

.dashboard-image:hover img{
    transform:scale(1.03);
}