/* =====================================
   COMPONENTS.CSS - PADCONTROL LANDING
===================================== */

/* NAVBAR */

.navbar{
    padding:20px 0;
    transition:.3s;
    background:transparent;
}

.navbar.scrolled{
    background:#0f172a;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.navbar-brand{
    font-size:1.5rem;
    font-weight:700;
    color:#fff !important;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    radial-gradient(circle at top right,#f59e0b 0%,transparent 35%),
    #0f172a;

    color:#fff;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:1.15rem;
    color:#cbd5e1;
    margin-bottom:30px;
}

.hero-image img{
    width:100%;
    border-radius:20px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.35);
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.badge-custom{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    margin-bottom:20px;
}

/* BOTÕES */

.btn-primary{
    background:#f59e0b;
    color:#fff;
    text-decoration:none;

    padding:14px 28px;
    border-radius:12px;

    font-weight:600;
}

.btn-primary:hover{
    background:#d97706;
    color:#fff;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);

    color:#fff;
    text-decoration:none;

    padding:14px 28px;
    border-radius:12px;
}

.btn-secondary:hover{
    background:#fff;
    color:#111827;
}

.btn-white{
    display:inline-block;

    background:#fff;
    color:#d97706;

    text-decoration:none;

    padding:15px 35px;
    border-radius:12px;

    font-weight:700;
}

/* SECTIONS */

.section{
    padding:100px 0;
}

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

.section-title h2{
    font-size:2.5rem;
    font-weight:800;
}

.section-title p{
    color:#6b7280;
}

/* STATS */

.stats{
    padding:80px 0;
    background:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-item{
    text-align:center;
}

.stat-item h2{
    color:#d97706;
    font-size:3rem;
    font-weight:800;
}

.stat-item p{
    color:#6b7280;
}

/* CARDS */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:30px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

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

.feature-card h3{
    margin-bottom:15px;
    font-weight:700;
}

/* PREVIEW */

.preview{
    padding:100px 0;
    background:#f8fafc;
}

.preview h2{
    font-weight:800;
    margin-bottom:20px;
}

.preview-img{
    width:100%;
    max-width:1100px;

    border-radius:20px;

    margin-top:40px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

/* PLANOS */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.pricing-card{
    background:#fff;
    border-radius:20px;
    padding:40px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    position:relative;
}

.pricing-card h3{
    font-weight:700;
}

.price{
    font-size:2.5rem;
    font-weight:800;
    color:#d97706;
    margin:20px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card li{
    margin:12px 0;
}

.featured{
    border:3px solid #f59e0b;
    transform:scale(1.05);
}

.popular{
    position:absolute;
    top:-12px;
    left:50%;

    transform:translateX(-50%);

    background:#f59e0b;
    color:#fff;

    padding:8px 15px;
    border-radius:50px;

    font-size:12px;
    font-weight:700;
}

/* FAQ */

.faq-item{
    background:#fff;

    padding:25px;
    margin-bottom:20px;

    border-radius:15px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.05);
}

.faq-item h4{
    margin-bottom:10px;
    font-weight:700;
}

/* CTA */

.cta{
    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #f59e0b,
        #d97706
    );

    color:#fff;
}

.cta h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.cta p{
    font-size:1.2rem;
    margin-bottom:35px;
}

/* FOOTER */

footer{
    background:#111827;
    color:#fff;
    padding:60px 0;
}

footer p{
    color:#cbd5e1;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    background:rgba(15,23,42,.85);

    backdrop-filter:blur(15px);

    padding:18px 0;
}

.navbar-brand{

    font-size:1.7rem;
    font-weight:800;

    color:#fff !important;
}

.nav-link{

    color:#fff !important;
    font-weight:500;

    margin-left:15px;
}

.nav-link:hover{

    color:#f59e0b !important;
}

/* FOOTER */

footer{

    background:#0f172a;
    color:white;

    padding:80px 0 30px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:40px;
}

.footer-grid h3,
.footer-grid h4{

    margin-bottom:20px;
}

.footer-grid p{

    color:#cbd5e1;
}

.footer-grid ul{

    list-style:none;
    padding:0;
}

.footer-grid li{

    margin-bottom:10px;
}

.footer-grid a{

    color:#cbd5e1;
    text-decoration:none;
}

.footer-grid a:hover{

    color:#f59e0b;
}

.footer-bottom{

    text-align:center;
    margin-top:20px;
}

.footer-bottom p{

    color:#94a3b8;
    margin:0;
}

/* WHATSAPP */

.whatsapp-btn{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25d366;
    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;
}

.whatsapp-btn:hover{

    transform:scale(1.1);
    color:white;
}