
/*
Theme Name: JTInfor Premium
Author: OpenAI
Version: 2.0
Description: Tema WordPress corporativo otimizado
*/

:root{
    --primary:#0A84FF;
    --dark:#0f172a;
    --light:#f8fafc;
    --text:#1e293b;
    --white:#ffffff;
}

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

body{
    font-family:Arial, sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #e2e8f0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:var(--primary);
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:var(--primary);
}

.hero{
    padding:140px 0;
    text-align:center;
    background:linear-gradient(135deg,#ffffff,#edf4ff);
}

.hero h1{
    font-size:56px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:auto;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:var(--primary);
    color:#fff;
    padding:15px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.contact-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

footer{
    background:var(--dark);
    color:#fff;
    text-align:center;
    padding:50px 20px;
    margin-top:60px;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25d366;
    color:#fff;
    padding:16px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    z-index:999;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

}
