/* =====================================================================
   SIMO · Página de entrada (marketing, antes del login)
   Paleta: gris oscuro + amarillo taxi, coherente con TaxiWeb Admin
   (--tw-brand / --tw-brand-dark definidos en site.css).
   ===================================================================== */

.simo-page {
    background-color: #11151c;
    color: #eef1f6;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.simo-page a {
    text-decoration: none;
}

.simo-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------------- Barra superior ---------------- */
.simo-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    background: rgba(17, 21, 28, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.simo-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: .02em;
    color: #fff;
}

.simo-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: .8rem;
    background: linear-gradient(135deg, #f5a623, #d68c0f);
    color: #1a1a1a;
    font-size: 1.3rem;
}

.simo-brand small {
    display: block;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9aa4b2;
}

.simo-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.simo-nav-links a:not(.btn) {
    color: #c3cad6;
    font-weight: 500;
    font-size: .95rem;
    transition: color .15s ease-in-out;
}

.simo-nav-links a:not(.btn):hover {
    color: #f5a623;
}

/* ---------------- Botones ---------------- */
.btn-simo-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #f5a623, #d68c0f);
    color: #1a1a1a !important;
    font-weight: 700;
    border: none;
    border-radius: .65rem;
    padding: .7rem 1.4rem;
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: 0 .5rem 1.5rem rgba(245, 166, 35, .25);
}

.btn-simo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 1.75rem rgba(245, 166, 35, .35);
    color: #1a1a1a !important;
}

.btn-simo-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: .65rem;
    padding: .68rem 1.4rem;
    transition: var(--tw-transition);
}

.btn-simo-outline:hover {
    border-color: #f5a623;
    color: #f5a623 !important;
}

/* ---------------- Hero ---------------- */
.simo-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(110deg, rgba(17, 21, 28, .96) 28%, rgba(17, 21, 28, .55) 62%, rgba(17, 21, 28, .25) 100%),
        url('/imagenes/iStock-2.jpg');
    background-size: cover;
    background-position: center;
}

.simo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 166, 35, .15);
    border: 1px solid rgba(245, 166, 35, .35);
    color: #f5c069;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .4rem 1rem;
    margin-bottom: 1.25rem;
}

.simo-hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    max-width: 720px;
    color: #fff;
}

.simo-hero h1 span {
    background: linear-gradient(135deg, #f5a623, #ffd273);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.simo-hero p.lead {
    max-width: 560px;
    color: #c3cad6;
    font-size: 1.1rem;
    margin: 1.25rem 0 2rem;
}

.simo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.simo-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.simo-hero-stats .num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f5a623;
}

.simo-hero-stats .lbl {
    font-size: .82rem;
    color: #9aa4b2;
}

/* ---------------- Secciones generales ---------------- */
.simo-section {
    padding: 5.5rem 0;
}

.simo-section-alt {
    background: #161b24;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.simo-kicker {
    color: #f5a623;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.simo-section h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    max-width: 640px;
}

.simo-section p.simo-sub {
    color: #9aa4b2;
    max-width: 620px;
    font-size: 1.02rem;
    margin-top: .85rem;
}

.simo-rounded-img {
    border-radius: 1.1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .08);
}

/* ---------------- Tarjetas de audiencia (pasajero / conductor / organización) ---------------- */
.simo-card {
    background: #1b212c;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 1.1rem;
    padding: 1.85rem;
    height: 100%;
    transition: transform .18s ease-in-out, border-color .18s ease-in-out;
}

.simo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, .4);
}

.simo-card .simo-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: .85rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, .22), rgba(214, 140, 15, .12));
    color: #f5a623;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.simo-card h3 {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.simo-card p {
    color: #9aa4b2;
    font-size: .94rem;
    margin-bottom: 0;
}

.simo-card ul {
    margin: .9rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .5rem;
}

.simo-card ul li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: #c3cad6;
    font-size: .9rem;
}

.simo-card ul li i {
    color: #f5a623;
    margin-top: .2rem;
}

/* ---------------- Pasos "Cómo funciona" ---------------- */
.simo-step {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.6rem;
}

.simo-step .num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a623, #d68c0f);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.05rem;
}

.simo-step h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .25rem;
}

.simo-step p {
    color: #9aa4b2;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ---------------- Banda CTA final ---------------- */
.simo-cta {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background-image:
        linear-gradient(120deg, rgba(17, 21, 28, .92), rgba(17, 21, 28, .75)),
        url('/imagenes/iStock-1.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(245, 166, 35, .25);
}

.simo-cta h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: .65rem;
}

.simo-cta p {
    color: #c3cad6;
    max-width: 540px;
    margin: 0 auto 1.75rem;
}

/* ---------------- Footer ---------------- */
.simo-footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #9aa4b2;
    font-size: .85rem;
}

.simo-footer .simo-brand {
    font-size: 1rem;
    margin-bottom: .35rem;
}

.simo-footer-links {
    display: flex;
    gap: 1.5rem;
}

.simo-footer-links a {
    color: #9aa4b2;
}

.simo-footer-links a:hover {
    color: #f5a623;
}

@media (max-width: 767.98px) {
    .simo-nav-links {
        display: none;
    }

    .simo-hero {
        min-height: auto;
        padding: 7rem 0 3.5rem;
    }

    .simo-section {
        padding: 3.5rem 0;
    }
}
