body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fb;
    color: #1f2937;
}

.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef4ff 100%
    );
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
}

.hero-badge,
.section-badge {
    background: rgba(49, 101, 156, .10);
    color: #31659c;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(
        180deg,
        #31659c 0%,
        #1e293b 100%
    ) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(49, 101, 156, .20);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(
        180deg,
        #2b5a8d 0%,
        #17212f 100%
    ) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(49, 101, 156, .28);
}

.btn-outline-primary {
    color: #31659c !important;
    border-color: #31659c !important;
    font-weight: 700;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: linear-gradient(
        180deg,
        #31659c 0%,
        #1e293b 100%
    ) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

.hero-dashboard {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
}

.dashboard-topbar {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.dashboard-content {
    padding: 24px;
}

.mini-card {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.benefits-section,
.how-section,
.plans-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.section-description {
    color: #6b7280;
}

.benefit-card,
.step-card,
.plan-card {
    background-color: white;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon,
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        #31659c 0%,
        #1e293b 100%
    );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(49, 101, 156, .20);
}

.step-number {
    border-radius: 50%;
    font-weight: 700;
}

.featured-badge {
    background: linear-gradient(
        180deg,
        #31659c 0%,
        #1e293b 100%
    );
    color: white;
}

.feature-item i {
    color: #31659c;
}

.plan-price {
    color: #1e293b;
}

.footer-area {
    background-color: white;
    padding: 60px 0 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #6b7280;
}

.footer-links a:hover {
    color: #31659c;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    border-radius: 24px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

/* =========================================
   LOGIN
========================================= */

.login-section {
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef4ff 100%
    );

    padding: 40px 0;
}

.login-card {
    background-color: white;
    border-radius: 32px;
    overflow: hidden;
}

/* LEFT SIDE */

.login-left-area {
    background: linear-gradient(
        180deg,
        #31659c 0%,
        #1e293b 100%
    );

    color: white;

    padding: 60px;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-badge {
    background-color: rgba(255,255,255,0.15);

    padding: 8px 16px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    display: inline-block;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.login-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
}

.login-features {
    margin-top: 40px;
}

.login-feature-item {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-weight: 500;
}

.login-feature-item i {
    font-size: 18px;
}

/* RIGHT SIDE */

.login-form-area {
    padding: 60px;
}

.form-control {
    border-radius: 14px;
    border: 1px solid #dbe3ef;

    padding: 14px 18px;

    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #31659c;

    box-shadow: 0 0 0 0.2rem rgba(49,101,156,0.15);
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.forgot-password {
    color: #31659c;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* DIVIDER */

.login-divider {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.login-divider::before {
    content: '';

    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: #e5e7eb;
}

.login-divider span {
    position: relative;

    background-color: white;

    padding: 0 16px;

    color: #9ca3af;

    font-size: 14px;
}

/* RESPONSIVO */

@media (max-width: 991px) {

    .login-form-area {
        padding: 40px 30px;
    }

    .login-title {
        font-size: 2rem;
    }

}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    z-index: 9999;

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

    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);

    transition: all .2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 32px;
}


/* =========================================
   REGISTER
========================================= */

.register-form-area {
    padding: 50px;
}

.form-check-label {
    color: #6b7280;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #31659c;
    border-color: #31659c;
}

/* RESPONSIVO */

@media (max-width: 991px) {

    .register-form-area {
        padding: 40px 30px;
    }

}


.dv-plan {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 32px;
        padding: 38px;
        height: 100%;
        box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
        position: relative;
    }

    .dv-plan.featured {
        border: 2px solid #31659c;
        transform: translateY(-10px);
    }

    .dv-featured-label {
        position: absolute;
        top: -16px;
        right: 28px;
        background: #31659c;
        color: white;
        border-radius: 999px;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 800;
    }