/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050816;

    color:white;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    flex-direction:column;
}

/* ======================================== */
/* PAGE CONTENT */
/* ======================================== */

.page-content{

    flex:1;

    height:calc(100vh - 252px);

    overflow:hidden;
}

/* ========================================= */
/* AMBIENT LIGHT */
/* ========================================= */

body::before{

    content:"";

    position:fixed;

    width:620px;
    height:620px;

    background:
    radial-gradient(
    circle,
    rgba(45,140,255,0.10),
    transparent 70%
    );

    top:-240px;
    right:-240px;

    pointer-events:none;

    z-index:-2;

    filter:blur(90px);
}

body::after{

    content:"";

    position:fixed;

    width:520px;
    height:520px;

    background:
    radial-gradient(
    circle,
    rgba(0,255,180,0.05),
    transparent 70%
    );

    bottom:-240px;
    left:-200px;

    pointer-events:none;

    z-index:-2;

    filter:blur(90px);
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.container{

    width:100%;

    max-width:1240px;

    margin:auto;

    padding-left:28px;
    padding-right:28px;
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.custom-navbar{

    background:
    rgba(5,8,22,0.82);

    backdrop-filter:blur(14px);

    padding:10px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.05);

    z-index:9999;
}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo-navbar{

    height:64px;

    width:auto;

    object-fit:contain;
}

/* ========================================= */
/* NAV LINKS */
/* ========================================= */

.navbar-nav{

    display:flex;

    align-items:center;

    gap:4px;

    list-style:none;

    margin-left:auto;
}

.nav-link{

    color:white !important;

    margin-left:12px;

    font-size:14px;

    font-weight:500;

    transition:0.3s;

    position:relative;
}

.nav-link:hover{

    color:#2d8cff !important;
}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:#2d8cff;

    transition:0.3s;
}

.nav-link:hover::after{

    width:100%;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn-clientes{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#dbe5ff;

    padding:10px 20px;

    border-radius:14px;

    text-decoration:none;

    transition:0.35s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:500;
}

.btn-clientes:hover{

    border-color:#2d8cff;

    color:white;

    transform:translateY(-2px);

    box-shadow:
    0 8px 18px rgba(45,140,255,0.18);
}

/* ========================================= */
/* ASSISTANT LINK */
/* ========================================= */

.assistant-link{

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    padding:10px 16px;

    border-radius:14px;

    transition:0.35s;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(12px);
}

.assistant-link img{

    width:16px;
    height:16px;
}

.assistant-link span{

    color:white;

    font-size:13px;

    font-weight:500;
}

.assistant-link:hover{

    transform:translateY(-2px);

    border-color:#2d8cff;

    box-shadow:
    0 8px 18px rgba(45,140,255,0.18);
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero-section{

    flex:1;

    display:flex;

    align-items:center;

    position:relative;

    padding-top:60px;

    padding-bottom:30px;

    background:
    radial-gradient(
    circle at top right,
    rgba(45,140,255,0.10),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom left,
    rgba(0,255,180,0.08),
    transparent 30%
    ),

    #050816;

    overflow:hidden;
}

/* ========================================= */
/* HERO TAG */
/* ========================================= */

.hero-tag{

    display:inline-block;

    margin-bottom:18px;

    color:#2d8cff;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* ========================================= */
/* HERO TITLE */
/* ========================================= */

.hero-title{

    font-size:58px;

    font-weight:700;

    line-height:0.95;

    letter-spacing:-2px;

    margin-bottom:24px;

    max-width:760px;
}

/* ========================================= */
/* HERO TEXT */
/* ========================================= */

.hero-text{

    color:#aeb9d6;

    font-size:18px;

    line-height:1.75;

    margin-bottom:34px;

    max-width:520px;
}

/* ========================================= */
/* HERO BUTTONS */
/* ========================================= */

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;
}

/* ========================================= */
/* PRIMARY BUTTON */
/* ========================================= */

.btn-primary-custom{

    background:#2d8cff;

    color:white;

    padding:14px 26px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:0.35s;

    font-size:15px;
}

.btn-primary-custom:hover{

    background:#1f6fd1;

    color:white;

    transform:translateY(-2px);

    box-shadow:
    0 10px 22px rgba(45,140,255,0.28);
}

/* ========================================= */
/* OUTLINE BUTTON */
/* ========================================= */

.btn-outline-custom{

    border:
    1px solid rgba(255,255,255,0.16);

    color:white;

    padding:14px 26px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:0.35s;

    font-size:15px;
}

.btn-outline-custom:hover{

    border-color:#2d8cff;

    color:#2d8cff;

    transform:translateY(-2px);
}

/* ========================================= */
/* HERO RIGHT */
/* ========================================= */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:flex-start;
}

/* ========================================= */
/* DASHBOARD */
/* ========================================= */

.hero-dashboard{

    width:100%;

    max-width:540px;

    min-height:430px;

    background:
    linear-gradient(
    135deg,
    rgba(9,17,31,0.95),
    rgba(13,24,48,0.96)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    padding:28px;

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(14px);

    box-shadow:
    0 0 50px rgba(0,0,0,0.35);
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.site-footer{

    padding:8px 0 6px;

    border-top:
    1px solid rgba(255,255,255,0.05);

    background:
    rgba(255,255,255,0.01);
}

/* ========================================= */
/* FOOTER CONTENT */
/* ========================================= */

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;
}

/* ========================================= */
/* FOOTER LEFT */
/* ========================================= */

.footer-left{

    display:flex;

    align-items:center;

    gap:18px;
}

.footer-logo{

    height:48px;

    width:auto;

    opacity:0.92;
}

/* ========================================= */
/* FOOTER TEXT */
/* ========================================= */

.footer-text h4{

    font-size:18px;

    margin-bottom:4px;
}

.footer-text p{

    color:#94a3b8;

    font-size:14px;

    line-height:1.5;

    max-width:440px;
}

/* ========================================= */
/* FOOTER RIGHT */
/* ========================================= */

.footer-right{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:4px;
}

.footer-right p{

    color:#94a3b8;

    font-size:14px;

    margin:0;
}

/* ========================================= */
/* COPYRIGHT */
/* ========================================= */

.footer-bottom{

    margin-top:8px;

    padding-top:8px;

    border-top:
    1px solid rgba(255,255,255,0.04);

    text-align:center;

    color:#64748b;

    font-size:12px;
}

/* ======================================== */
/* NAVBAR FIX */
/* ======================================== */

.navbar-actions{

    display:flex;

    align-items:center;

    gap:4px;

    margin-left:20px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:991px){

    body{

        overflow:auto;
    }

    .hero-section{

        padding-top:90px;

        padding-bottom:50px;
    }

    .footer-content{

        flex-direction:column;

        align-items:flex-start;
    }

    .footer-right{

        align-items:flex-start;
    }

    .page-content{

        height:auto;

        overflow:visible;
    }
}

@media(max-width:768px){

    .logo-navbar{

        height:52px;
    }

    .hero-title{

        font-size:38px;

        line-height:1;
    }

    .hero-text{

        font-size:16px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .btn-primary-custom,
    .btn-outline-custom{

        width:100%;
    }
}

