body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-top: 90px;
    background-color: #f8fafc;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo-navbar {
    height: 130px; /* controla tamanho da logo */
    transition: 0.3s;
}

.logo-navbar:hover {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: #1e293b !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #16a34a !important;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #16a34a, #22c55e, #3b82f6);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    color: white;
    padding: 120px 0;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
	text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ================= BOTÕES ================= */

.btn-primary-custom {
    background: linear-gradient(90deg, #facc15, #f97316);
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ================= SEÇÕES ================= */

section {
    scroll-margin-top: 120px;
}

.section-padding {
    padding: 70px 0;
}

.bg-soft {
    background-color: #e2e8f0;
}

#contato {
    background: linear-gradient(135deg, #e0f2fe, #dcfce7);
}

.list-unstyled li {
    margin-bottom: 12px;
    color: #1e293b;
}

/* ================= FEATURES ICONES ================= */

.feature-icon {
    font-size: 75px;  /* tamanho grande */
    color: #16a34a;
    display: block;
    margin-bottom: 20px;
}

.feature-box {
    padding: 30px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-box p {
    color: #475569;
}

/* ================= PARA QUEM É ================= */

.target-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
}

.target-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.target-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.target-box p {
    color: #475569;
}

/* ================= COMO FUNCIONA ================= */

#como-funciona h5 {
    color: #16a34a;
    font-weight: 600;
}

#como-funciona p {
    color: #475569;
}

/* ================= PROCESSO ================= */

.process-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}

.process-box:hover {
    transform: translateY(-6px);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a34a, #2563eb);
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* ================= PLANOS ================= */

.card-plan {
    border: none;
    border-radius: 18px;
    transition: all 0.3s ease;
    background: white;
}

.card-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.highlight {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border-radius: 18px;
}

.highlight h2,
.highlight h4,
.highlight p {
    color: white;
}

.highlight button {
    background: linear-gradient(90deg, #facc15, #f97316);
    border: none;
    font-weight: 600;
}

/* ================= CTA FINAL ================= */

.section-padding.text-center:last-of-type {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

/* ================= FOOTER ================= */

footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 50px 0;
}

footer p {
    margin-bottom: 5px;
}

/* ================= MOBILE OTIMIZAÇÃO COMPLETA ================= */

@media (max-width: 768px) {

    /* Ajuste geral de seções */
    .section-padding {
        padding: 60px 20px;
    }

    /* Navbar */
    .logo-navbar {
        height: 55px;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 10px;
    }

    /* Hero */
    .hero {
        padding: 90px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Free banner */
    .free-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .free-banner .btn {
        width: 100%;
        margin-top: 10px;
    }

    /* Cards planos */
    .card-plan {
        margin-bottom: 20px;
    }

    .price {
        font-size: 26px;
    }

    /* Process boxes */
    .process-box {
        margin-bottom: 20px;
    }

    /* Target boxes */
    .target-box {
        margin-bottom: 20px;
    }

    /* Feature boxes */
    .feature-box {
        margin-bottom: 20px;
    }

    /* Listas */
    .list-unstyled {
        font-size: 1rem;
    }

    /* Form contato */
    #contato .row {
        flex-direction: column;
    }

    #contato .col-md-6 {
        width: 100%;
    }

    #contato form {
        margin-top: 30px;
    }

}