html {
  font-size: 16px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    font-weight: 700 !important;
    margin-left: 20px !important;
}

.navbar {
    height: 80px !important;
    padding: 0 !important;
}

.navbar-brand {
    padding: 0 !important;
    margin-left: 20px !important;
    margin-right: 40px !important;
}

.navbar-brand img {
    height: 60px !important;
}

header {
    margin: 0;
    padding: 0;
}

.footer {
    text-align: center;
}

.hero-wrapper {
    margin-top: 30px;
}

.hero-section {
    max-width: 500px;
}
.hero-content {
    margin-left: 40px;
}
.hero-subtitle {
    color: #0d6efd;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 45px;
    font-weight: 800;
    color: #071d49;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-orange {
    color: #ff7a00;
}

.hero-blue {
    color: #1565ff;
}

.hero-description {
    max-width: 600px;
    margin-top: 20px;
    color: #4f5b6b;
    font-size: 14px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color: #071d49;
    font-size: 18px;
    font-weight: 600;
}

    .hero-feature i {
        color: #1565ff;
        font-size: 22px;
        flex-shrink: 0;
    }

.dashboard-section img {
    width: 100%;
    border-radius: 15px;
}

.risk-summary {
    margin-top: 0px;
}

.icon-box {
    width: 90px;
    height: 90px;
    background: #eef3ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-box i {
        font-size: 42px;
        color: #1565ff;
    }

.risk-money {
    font-size: 50px;
    color: #ff4d30;
}

.risk-amount {
    color: #ff4d30;
    font-weight: 800;
}

.risk-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.text-purple {
    color: #8a3ffc;
}

.features-bar {
    background: #001b5e;
    border-radius: 15px;
    padding: 30px;
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    flex: 1;
    display: flex;
    gap: 15px;
    color: white;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,.2);
}

    .feature-item:last-child {
        border-right: none;
    }

    .feature-item i {
        font-size: 42px;
        color: #1565ff;
    }

    .feature-item h5 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
        color: rgba(255,255,255,.85);
        margin: 0;
        line-height: 1.5;
    }
.text-gray {
    color:gray;
}
.text-blue {
    color: blue;
}

.risk-items p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    .navbar {
        height: auto !important;
        padding: 10px 0 !important;
    }

    .navbar-brand {
        margin-left: 10px !important;
        margin-right: 0 !important;
    }

        .navbar-brand img {
            height: 45px !important;
        }

    .navbar-nav .nav-link {
        margin-left: 0 !important;
        padding: 10px 0 !important;
        text-align: left;
    }

    .navbar-collapse {
        padding-top: 10px;
    }

    .navbar-collapse .btn {
        width: 100%;
        margin-top: 10px;
    }
    /* NUEVO PARA FEATURES-BAR */

    .features-bar {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-radius: 10px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 15px 0;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item i {
        font-size: 32px;
    }

    .feature-item h5 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-feature {
        font-size: 16px;
    }

        .hero-feature i {
            font-size: 20px;
        }
}

@media (max-width: 480px) {

    html {
        font-size: 14px;
    }

    /* NAVBAR */

    .navbar {
        padding: 8px 0 !important;
    }

    .navbar-brand {
        margin-left: 5px !important;
    }

        .navbar-brand img {
            height: 38px !important;
        }

    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 8px 0 !important;
    }

    .navbar-collapse {
        padding-top: 5px;
    }

    /* FEATURES */

    .features-bar {
        padding: 15px;
        gap: 15px;
        border-radius: 8px;
    }

    .feature-item {
        padding: 12px 0;
    }

        .feature-item i {
            font-size: 26px;
        }

        .feature-item h5 {
            font-size: 16px;
        }

        .feature-item p {
            font-size: 12px;
            line-height: 1.3;
        }

        .feature-item img {
            width: 30px;
            height: 30px;
        }

    /* BOTONES */

    .btn {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
}