/* ==================================================
   JLServers Premium Theme
   Parte 1/3
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --black:#080808;
    --black2:#111111;
    --card:#181818;

    --gold:#d4af37;
    --gold-light:#f4d46a;

    --red:#b30000;
    --red-light:#d60000;

    --white:#ffffff;
    --gray:#cfcfcf;

    --border:rgba(212,175,55,.15);

    --transition:.3s;
}

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:var(--black);

    color:var(--white);

    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/* ======================================
   NAVBAR
====================================== */

.navbar{

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--border);

    padding:15px 0;

    min-height:90px;
}
.logo{

    font-size:34px;

    font-weight:800;

    color:var(--gold)!important;

    letter-spacing:2px;

    text-transform:uppercase;
}

.nav-link{

    color:#fff!important;

    margin-left:15px;

    font-weight:500;

    transition:var(--transition);
}

.nav-link:hover{

    color:var(--gold)!important;
}

.btn-login{

    background:var(--gold);

    color:#000;

    padding:10px 24px;

    border-radius:8px;

    font-weight:700;

    transition:var(--transition);
}

.btn-login:hover{

    background:var(--gold-light);

    color:#000;

    transform:translateY(-2px);

    box-shadow:0 0 20px rgba(212,175,55,.4);
}

/* ======================================
   HERO
====================================== */

.hero{

    min-height:100vh;

    padding-top:140px;

    padding-bottom:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(
    rgba(0,0,0,.82),
    rgba(0,0,0,.92)
    ),
    url('../images/hero-bg.jpg');

    background-size:cover;

    background-position:center;
}

.hero-overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:
    radial-gradient(
    circle at center,
    rgba(179,0,0,.15),
    transparent 60%
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:950px;

    margin-top:50px;
}

.badge-jl{

    display:inline-block;

    padding:10px 25px;

    border:1px solid var(--gold);

    border-radius:50px;

    color:var(--gold);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:2px;
}

.hero h1{

    font-size:90px;

    font-weight:800;

    color:var(--gold);

    text-shadow:
    0 0 15px rgba(212,175,55,.4),
    0 0 35px rgba(212,175,55,.2);
}

.hero h2{

    font-size:38px;

    margin-top:15px;

    margin-bottom:25px;

    font-weight:600;
}

.hero p{

    max-width:850px;

    margin:auto;

    color:var(--gray);

    font-size:18px;

    line-height:1.9;
}

/* ======================================
   BUTTONS
====================================== */

.hero-buttons{

    margin-top:40px;
}

.btn-main{

    display:inline-block;

    background:var(--red);

    color:#fff;

    padding:15px 35px;

    border-radius:8px;

    font-weight:600;

    transition:var(--transition);

    margin-right:15px;
}

.btn-main:hover{

    color:#fff;

    background:var(--red-light);

    transform:translateY(-3px);

    box-shadow:
    0 0 25px rgba(214,0,0,.45);
}

.btn-second{

    display:inline-block;

    border:1px solid var(--gold);

    color:var(--gold);

    padding:15px 35px;

    border-radius:8px;

    transition:var(--transition);
}

.btn-second:hover{

    background:var(--gold);

    color:#000;
}
/* ==================================================
   Parte 2/3
================================================== */

.section{

    padding:100px 0;
}

.section-dark{

    padding:100px 0;

    background:var(--black2);
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    color:var(--gold);

    font-size:45px;

    font-weight:700;

    margin-bottom:15px;
}

.section-title p{

    color:var(--gray);
}

/* ======================================
   SERVICES
====================================== */

.service-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    transition:var(--transition);
}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
    0 0 30px rgba(212,175,55,.15);
}

.service-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:20px;
}

.service-card h3{

    color:var(--gold);

    margin-bottom:15px;

    font-size:24px;
}

.service-card p{

    color:var(--gray);

    line-height:1.8;
}

/* ======================================
   STATS
====================================== */

.stats-section{

    padding:90px 0;

    background:
    linear-gradient(
    rgba(179,0,0,.08),
    rgba(0,0,0,.08)
    );
}

.stat-box{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    padding:40px 20px;

    transition:.3s;
}

.stat-box:hover{

    border-color:var(--gold);

    transform:translateY(-5px);
}

.stat-box h3{

    color:var(--gold);

    font-size:48px;

    font-weight:700;
}

.stat-box span{

    color:var(--gray);

    font-size:18px;
}

/* ======================================
   PORTFOLIO
====================================== */

.portfolio-card{

    background:var(--card);

    border-radius:15px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.3s;
}

.portfolio-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.portfolio-image{

    height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    45deg,
    #111,
    #2a0000
    );

    color:var(--gold);

    font-size:22px;

    font-weight:700;
}

.portfolio-content{

    padding:25px;
}

.portfolio-content h3{

    color:var(--gold);

    margin-bottom:10px;
}

.portfolio-content p{

    color:var(--gray);
}
/* ==================================================
   Parte 3/3
================================================== */

/* ======================================
   PLANES
====================================== */

.plan-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    padding:40px;

    height:100%;

    text-align:center;

    transition:.3s;
}

.plan-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.featured{

    border:2px solid var(--gold);

    transform:scale(1.03);

    box-shadow:
    0 0 25px rgba(212,175,55,.15);
}

.plan-card h3{

    color:var(--gold);

    margin-bottom:30px;
}

.plan-card ul li{

    padding:12px 0;

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

    color:var(--gray);
}

.btn-plan{

    display:inline-block;

    margin-top:30px;

    background:var(--red);

    color:#fff;

    padding:12px 30px;

    border-radius:8px;

    transition:.3s;
}

.btn-plan:hover{

    color:#fff;

    background:var(--red-light);
}

/* ======================================
   CONTACT
====================================== */

.contact-section{

    padding:120px 0;

    background:
    linear-gradient(
    rgba(0,0,0,.85),
    rgba(0,0,0,.95)
    );
}

.contact-section h2{

    color:var(--gold);

    font-size:48px;

    margin-bottom:20px;
}

.contact-section p{

    color:var(--gray);

    margin-bottom:35px;

    font-size:18px;
}

/* ======================================
   FOOTER
====================================== */

footer{

    background:#050505;

    border-top:1px solid var(--border);

    padding:50px 0;
}

footer h3{

    color:var(--gold);

    font-weight:700;
}

footer p{

    color:#999;
}

/* ======================================
   SCROLLBAR
====================================== */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#111;
}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:30px;
}

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

@media(max-width:1200px){

    .hero h1{

        font-size:72px;
    }
}

@media(max-width:992px){

    .hero h1{

        font-size:60px;
    }

    .hero h2{

        font-size:30px;
    }

    .nav-link{

        margin-left:0;
    }

    .btn-login{

        display:block;

        margin-top:15px;

        text-align:center;
    }
}

@media(max-width:768px){

    .hero{

        padding:120px 20px;
    }

    .hero h1{

        font-size:48px;
    }

    .hero h2{

        font-size:24px;
    }

    .hero p{

        font-size:16px;
    }

    .btn-main,
    .btn-second{

        display:block;

        width:100%;

        margin-bottom:15px;

        margin-right:0;
    }

    .section{

        padding:80px 0;
    }

    .section-dark{

        padding:80px 0;
    }

    .section-title h2{

        font-size:34px;
    }

    .contact-section h2{

        font-size:34px;
    }
}

@media(max-width:576px){

    .logo{

        font-size:26px;
    }

    .hero h1{

        font-size:42px;
    }

    .hero h2{

        font-size:20px;
    }

    .badge-jl{

        font-size:12px;
    }

    .stat-box h3{

        font-size:36px;
    }

    .portfolio-image{

        height:180px;
    }
}


/* ======================================
   PORTAFOLIO
====================================== */

.portfolio-card{

    height:100%;

    display:flex;

    flex-direction:column;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    overflow:hidden;

    transition:.3s;
}

.portfolio-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.portfolio-image{

    height:280px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:25px;

    background:#101010;

    overflow:hidden;
}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    object-position:center;

    transition:.3s;
}

.portfolio-card:hover .portfolio-image img{

    transform:scale(1.05);
}

.portfolio-content{

    flex:1;

    padding:25px;

    text-align:center;
}

.portfolio-content h3{

    color:var(--gold);

    margin-bottom:10px;
}

.portfolio-content p{

    color:var(--gray);
}

/* ==========================
   CONTACT BOX
========================== */

.contact-box{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:15px;

    padding:40px;

    margin-top:40px;
}

.contact-box h3{

    color:var(--gold);

    margin-bottom:15px;
}

.contact-box p{

    color:var(--gray);

    margin-bottom:25px;
}

/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    z-index:9999;

    box-shadow:0 0 25px rgba(37,211,102,.4);

    transition:.3s;
}

.whatsapp-float:hover{

    transform:scale(1.1);

    color:#fff;
}

@media(max-width:768px){

    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:28px;

        right:15px;

        bottom:15px;
    }
}