﻿
:root {
    --blue-900: #0a2a57;
    --blue-850: #0a2f63;
    --blue-800: #0b3a7a;
    --blue-700: #0c4a9a;
    --card-grad: linear-gradient(135deg, #0a2f63 0%, #0b4aa0 100%);
    --hero-grad: radial-gradient(1200px 700px at 30% 40%, #0c4a9a 0%, #0a2a57 55%, #071f45 100%);
    --radius-xl: 28px;
}


body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
    background-color: #fff;
}

nav {
    position: fixed;
    z-index: 9999;
    background: white;
    width: 100%;
}

    nav .app-bar {
        display: block;
        text-align: end;
        padding: 1rem;
        padding-right: 4rem;
    }

        nav .app-bar .selected {
            font-weight: 700;
            color: white;
            border: 1px solid var(--blue-700);
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            background-color: var(--blue-700);
            margin-left: 2rem;
        }

        nav .app-bar .unselected {
            color: var(--blue-700);
            border: 1px solid var(--blue-700);
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            margin-left: 2rem;
        }

/* ===== Hero ===== */
.hero {
    /*background: linear-gradient(135deg, #003d91, #0a6bff);*/
    background: linear-gradient(90deg, #1F3061 0%, #034EA2 100%);
    color: white;
    padding: 6rem 20px 10px;
}

    .hero img.app-preview {
        max-width: 280px;
        margin-top: 50px;
        /*border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);*/
    }

    .hero img.over-bg{
        position:absolute;
        top:15%;
        left:20%;
    }

    .hero h2 {
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 32px;
    }

.py-5 h3 {
    font-weight: 500;
    font-size: 40px;
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

    .steps-list li {
        margin-bottom: 1.5rem;
    }

/* ===== Feature Cards ===== */
.feature-card {
    border-radius: 15px;
    background: #EBEDF2;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform .2s;
}

    .feature-card h5{
        font-size:36px;
        font-weight: 600;
    }

    .feature-card p {
        font-size: 20px;
        font-weight: 500;
    }

    /*.feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
    }*/

    .feature-card img {
        /*max-height: 80px;*/
        margin-bottom: 15px;
        max-width:100%;
    }

/* ===== CTA Section ===== */
.cta {
    background: #f0f7ff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.final-row {
    display: flex; /* Habilita Flexbox */
    justify-content: center; /* Centra horizontalmente los hijos */
    align-items: center; /* Centra verticalmente los hijos */   
}

.ul-noMark{
    list-style:none;
}

/* ===== Footer ===== */
footer {
    /*background: linear-gradient(135deg, #003d91, #0a6bff);*/
    background: linear-gradient(90deg, #1F3061 0%, #034EA2 100%);
    color: white;
    font-size: 13px;
    padding: 40px 20px;
    margin-top: 40px;
}

    footer a {
        color: #fff;
        text-decoration: underline;
    }

    footer p{
        text-align:justify;
    }



@media screen and (max-width: 768px) {
    .pair-element {
        margin-top: 1rem !important;
    }

    .hero img.over-bg {
        position: relative;
        top: 0;
        left: 0;
    }
    .img-fluid{
        max-width:75%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .hero img.over-bg {
        position: relative;
        left: 27%;
    }
}

@media screen and (min-width: 992px) {
    .hero img.over-bg {
        position: absolute;
        left: 20%;
    }
}

@media screen and (min-width: 1044px) {
    .hero img.over-bg {
        position: absolute;
        left: 23%;
    }
}








