/* =====================================
   RESET
===================================== */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* =========================
HEADER FIXO
========================= */

.header {

    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;

}

.header-fixed {

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

}

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



/* overlay */

.hero-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);

}

/* conteúdo */

.hero-content {

    position: relative;
    z-index: 2;

}

.hero-whatsapp h1 {

    font-size: 60px;

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 20px;

}

.hero-whatsapp p {

    font-size: 20px;

    margin-bottom: 30px;

    max-width: 520px;

}

.hero-buttons .btn {

    margin-right: 15px;

}

/* =====================================
   BODY
===================================== */

body {

    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;

}


/* =====================================
   CONTAINER
===================================== */

.container {

    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;

}



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

.navbar-nav li {

    margin-left: 25px;

}

.navbar-nav a {

    color: #333;
    font-weight: 500;

}

.navbar-nav a:hover {

    color: #8541ea;

}


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

.hero {

    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f0ff 100%
    );

}

.hero h1 {

    font-size: 48px;
    font-weight: 700;
    color: #42187e;
    margin-bottom: 20px;

}

.hero p {

    font-size: 18px;
    color: #555;
    margin-bottom: 30px;

}


/* =====================================
   BUTTON
===================================== */

.btn-primary {

    background: #8541ea;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;

}

.btn-primary:hover {

    background: #42187e;

}


/* =====================================
   SECTIONS
===================================== */

.section {

    padding: 100px 0;

}

.section-title {

    font-size: 36px;
    font-weight: 700;
    color: #42187e;
    text-align: center;
    margin-bottom: 20px;

}

.section-subtitle {

    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;

}


/* =====================================
   CARDS
===================================== */

.card-feature {

    padding: 30px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #eee;
    transition: 0.3s;

}

.card-feature:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}


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

.footer {

    padding: 40px 0;
    background: #f5f0ff;
    text-align: center;
    font-size: 14px;

}

/* =========================
ANIMAÇÃO SCROLL
========================= */

.fade-up {

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;

}

.fade-up.active {

    opacity: 1;
    transform: translateY(0);

}

/* =========================
MOCKUP CRM
========================= */

.crm-mockup {

    perspective: 1000px;

}

.crm-mockup img {

    transform: rotateY(-12deg) rotateX(4deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-radius: 12px;

}

/* =========================
PRICING
========================= */

.pricing-card {

    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    background: #fff;

}

.price {

    font-size: 36px;
    font-weight: 700;
    color: #42187e;
    margin: 20px 0;

}

.destaque {

    border: 2px solid #8541ea;

}

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

@media (max-width: 768px) {

    .hero h1 {

        font-size: 32px;

    }

}