:root{
    --verde:#1E8E5A;
    --verde-escuro:#146C43;
    --azul:#0F172A;
    --cinza:#F1F5F9;
    --destaque:#F59E0B;
    --branco:#FFFFFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body{
    background:#fff;
    color:#111827;
    overflow-x:hidden;
}

.navbar{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    padding:18px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--verde);
}

.logo span{
    color:var(--azul);
}

.nav-link{
    color:var(--azul);
    font-weight:600;
    margin-left:20px;
}

.btn-principal{
    background:var(--verde);
    border:none;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
    text-decoration:none;
    display:inline-block;
}

.btn-principal:hover{
    background:var(--verde-escuro);
    transform:translateY(-2px);
    color:#fff;
}

.btn-secundario{
    border:2px solid var(--verde);
    color:var(--verde);
    padding:14px 28px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
}

.btn-secundario:hover{
    background:var(--verde);
    color:#fff;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#F8FAFC,#E2F7EC);
    padding-top:120px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    color:var(--azul);
    line-height:1.1;
}

.hero h1 span{
    color:var(--verde);
}

.hero p{
    font-size:20px;
    margin:25px 0;
    color:#475569;
    line-height:1.8;
}

.dashboard-box{
    background:var(--azul);
    border-radius:24px;
    padding:30px;
    color:#fff;
}

.dashboard-card{
    background:#fff;
    border-radius:18px;
    padding:18px;
    margin-bottom:18px;
    color:#111;
}

.dashboard-card h5{
    font-size:14px;
    color:#64748B;
}

.dashboard-card h2{
    font-size:28px;
    font-weight:800;
    margin-top:10px;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:44px;
    font-weight:800;
    color:var(--azul);
}

.section-title p{
    font-size:18px;
    color:#64748B;
    margin-top:15px;
}

.feature-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(30,142,90,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--azul);
}

.feature-card p{
    color:#64748B;
    line-height:1.8;
}

.planos{
    background:#F8FAFC;
}

.plano-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
    position:relative;
}

.plano-card:hover{
    transform:translateY(-10px);
}

.plano-destaque{
    border:3px solid var(--verde);
}

.badge-popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:var(--destaque);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.preco{
    font-size:38px;
    font-weight:800;
    color:var(--verde);
    margin:25px 0;
}

.preco span{
    font-size:18px;
    color:#64748B;
}

.plano-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.plano-card ul li{
    margin-bottom:15px;
    color:#475569;
}

.cta{
    background:linear-gradient(135deg,var(--verde),var(--verde-escuro));
    color:#fff;
    border-radius:40px;
    padding:80px 50px;
    text-align:center;
}

.cta h2{
    font-size:48px;
    font-weight:800;
}

.cta p{
    margin:20px 0 35px;
    font-size:20px;
}

.footer{
    background:var(--azul);
    color:#fff;
    padding:60px 0 30px;
}

.footer h4{
    font-weight:700;
    margin-bottom:20px;
}

.footer p,
.footer a{
    color:#CBD5E1;
    text-decoration:none;
    line-height:2;
}

.copy{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
    color:#94A3B8;
}

.titulo-modal{
    color:var(--azul);
}

.link-cadastro{
    color:var(--verde);
    font-weight:700;
    text-decoration:none;
}

@media(max-width:991px){

.hero{
    text-align:center;
    padding-bottom:80px;
}

.hero h1{
    font-size:42px;
}

.section-title h2{
    font-size:34px;
}

.cta h2{
    font-size:34px;
}

}



.home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 15px;
    padding: 12px 16px;

    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    font-family: system-ui, -apple-system, sans-serif;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.status-time {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* bolinha pulsando estilo fintech */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;

    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    border-radius: 50%;

    background: #22c55e;
    animation: pulse 1.5s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* animação da hora atualizando */
@keyframes fadeUpdate {
    0% { opacity: 0.3; transform: translateY(-2px); }
    100% { opacity: 1; transform: translateY(0); }
}

.time-update {
    animation: fadeUpdate 0.4s ease;
}



/*==== botão do whatsapp==========*/
.btn-whatsapp-pulse {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 1.5s infinite;
    z-index: 9999;
}

.btn-whatsapp-pulse:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}