/* ============================================================
   JOIN2FLY
   ESTILOS GENERALES
   ============================================================ */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            135deg,
            #07152b 0%,
            #0d2a4b 55%,
            #123e69 100%
        );

    color: white;
}


a {
    color: inherit;
}


button,
input {
    font-family: inherit;
}


/* ============================================================
   CONTENEDOR PRINCIPAL
   ============================================================ */


.contenedor {
    min-height: 100vh;

    display: flex;

    flex-direction: column;
}


/* ============================================================
   CABECERA
   ============================================================ */


.cabecera {
    width: 100%;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        7%;

    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.12
        );
}


.marca {
    display: flex;

    align-items: center;

    gap: 12px;
}


.marca-enlace {
    text-decoration: none;
}


.logo {
    width: 42px;

    height: 42px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    background:
        rgba(
            255,
            255,
            255,
            0.12
        );

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.18
        );
}


.nombre {
    font-size: 25px;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.estado {
    font-size: 13px;

    color: #b7c8db;
}


/* ============================================================
   PORTADA
   ============================================================ */


.contenido {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        60px
        7%;
}


.hero {
    width: 100%;

    max-width: 1180px;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 70px;

    align-items: center;
}


.etiqueta {
    display: inline-block;

    padding:
        8px
        14px;

    margin-bottom: 25px;

    border-radius: 100px;

    background:
        rgba(
            73,
            167,
            255,
            0.12
        );

    border:
        1px
        solid
        rgba(
            100,
            183,
            255,
            0.30
        );

    color: #9dd4ff;

    font-size: 14px;
}


h1 {
    max-width: 680px;

    font-size: 58px;

    line-height: 1.06;

    letter-spacing: -2px;

    margin-bottom: 24px;
}


.destacado {
    color: #74c2ff;
}


.descripcion {
    max-width: 620px;

    color: #bdd0e3;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 36px;
}


/* ============================================================
   BOTONES PORTADA
   ============================================================ */


.acciones {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.boton {
    min-width: 165px;

    height: 52px;

    border-radius: 13px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.boton:hover {
    transform:
        translateY(-2px);
}


.boton.principal {
    background: #ffffff;

    color: #0a2440;

    box-shadow:
        0
        10px
        28px
        rgba(
            0,
            0,
            0,
            0.16
        );
}


.boton.principal:hover {
    box-shadow:
        0
        14px
        32px
        rgba(
            0,
            0,
            0,
            0.24
        );
}


.boton.secundario {
    color: white;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.18
        );
}


.boton.secundario:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.13
        );
}


/* ============================================================
   PANEL CREW FINDER PORTADA
   ============================================================ */


.panel {
    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    border-radius: 28px;

    padding: 32px;

    backdrop-filter:
        blur(18px);

    box-shadow:
        0
        28px
        70px
        rgba(
            0,
            0,
            0,
            0.25
        );
}


.panel-titulo {
    font-size: 14px;

    color: #9fb7cd;

    margin-bottom: 20px;
}


.vuelo {
    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    padding: 20px;

    border-radius: 18px;

    margin-bottom: 14px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.vuelo:hover {
    transform:
        translateY(-2px);

    background:
        rgba(
            255,
            255,
            255,
            0.11
        );
}


.fecha {
    color: #8db4d5;

    font-size: 12px;

    margin-bottom: 9px;
}


.ruta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 24px;

    font-weight: 700;
}


.flecha {
    color: #6abaff;

    font-size: 18px;
}


.tripulacion {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 14px;

    padding-top: 14px;

    border-top:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.10
        );
}


.tripulacion-texto {
    color: #b9cce0;

    font-size: 13px;
}


.numero {
    background: #52aef6;

    color: white;

    padding:
        5px
        10px;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 700;
}


.privacidad {
    margin-top: 18px;

    padding: 16px;

    border-radius: 15px;

    background:
        rgba(
            24,
            215,
            142,
            0.08
        );

    border:
        1px
        solid
        rgba(
            54,
            215,
            155,
            0.20
        );

    color: #a8e8cd;

    font-size: 13px;

    line-height: 1.5;
}


/* ============================================================
   PÁGINA DE REGISTRO
   ============================================================ */


.registro-contenido {
    flex: 1;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        52px
        7%
        64px;
}


.registro-layout {
    width: 100%;

    max-width: 1180px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(440px, 1.1fr);

    gap: 72px;

    align-items: center;
}


/* ============================================================
   REGISTRO - PRESENTACIÓN
   ============================================================ */


.registro-presentacion {
    max-width: 530px;
}


.volver-enlace {
    display: inline-block;

    margin-bottom: 38px;

    color: #9fb7cd;

    font-size: 14px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.volver-enlace:hover {
    color: white;
}


.registro-titulo {
    font-size: 50px;

    margin-bottom: 22px;
}


.registro-descripcion {
    color: #bdd0e3;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 34px;
}


.registro-beneficios {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


.beneficio {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.beneficio-icono {
    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 9px;

    background:
        rgba(
            42,
            213,
            151,
            0.12
        );

    border:
        1px
        solid
        rgba(
            42,
            213,
            151,
            0.25
        );

    color: #71e5b7;

    font-size: 13px;

    font-weight: 700;
}


.beneficio strong {
    display: block;

    margin-bottom: 4px;

    color: #eef7ff;

    font-size: 14px;
}


.beneficio p {
    color: #8faac3;

    font-size: 13px;

    line-height: 1.5;
}


/* ============================================================
   REGISTRO - PANEL
   ============================================================ */


.registro-panel {
    width: 100%;

    background:
        rgba(
            255,
            255,
            255,
            0.075
        );

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    border-radius: 28px;

    padding: 34px;

    backdrop-filter:
        blur(18px);

    box-shadow:
        0
        30px
        75px
        rgba(
            0,
            0,
            0,
            0.26
        );
}


.registro-panel-cabecera {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}


.registro-paso {
    margin-bottom: 9px;

    color: #72c2ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.registro-panel h2 {
    margin-bottom: 8px;

    font-size: 27px;

    letter-spacing: -0.5px;
}


.registro-panel-cabecera p {
    max-width: 390px;

    color: #91aac2;

    font-size: 13px;

    line-height: 1.5;
}


.registro-escudo {
    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(
            83,
            175,
            246,
            0.10
        );

    border:
        1px
        solid
        rgba(
            83,
            175,
            246,
            0.22
        );

    font-size: 19px;
}


/* ============================================================
   FORMULARIO
   ============================================================ */


.registro-formulario {
    width: 100%;
}


.campo {
    margin-bottom: 21px;
}


.campo label,
.campo-label-linea label {
    display: block;

    margin-bottom: 8px;

    color: #e8f3fc;

    font-size: 13px;

    font-weight: 700;
}


.campo-label-linea {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.opcional {
    color: #7796b1;

    font-size: 11px;

    font-weight: 400;
}


.campo input {
    width: 100%;

    height: 50px;

    padding:
        0
        15px;

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    border-radius: 12px;

    outline: none;

    background:
        rgba(
            3,
            20,
            40,
            0.40
        );

    color: white;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.campo input::placeholder {
    color: #708ba4;
}


.campo input:focus {
    border-color:
        rgba(
            95,
            184,
            255,
            0.70
        );

    background:
        rgba(
            3,
            20,
            40,
            0.58
        );

    box-shadow:
        0
        0
        0
        3px
        rgba(
            82,
            174,
            246,
            0.10
        );
}


.campo-con-icono {
    position: relative;
}


.campo-con-icono input {
    padding-left: 43px;
}


.campo-icono {
    position: absolute;

    left: 15px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #6db8ef;

    font-size: 15px;

    font-weight: 700;
}


.campo-ayuda {
    margin-top: 7px;

    color: #718da7;

    font-size: 11px;

    line-height: 1.4;
}


/* ============================================================
   CHECKBOX
   ============================================================ */


.opcion-check {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;

    cursor: pointer;
}


.opcion-check input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.check-personalizado {
    width: 19px;

    height: 19px;

    flex-shrink: 0;

    margin-top: 1px;

    border-radius: 6px;

    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            0.28
        );

    background:
        rgba(
            0,
            0,
            0,
            0.12
        );

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.opcion-check input:checked
+ .check-personalizado {
    background: #52aef6;

    border-color: #52aef6;
}


.opcion-check input:checked
+ .check-personalizado::after {
    content: "✓";

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    color: white;

    font-size: 12px;

    font-weight: 700;
}


.check-texto {
    color: #c0d1e1;

    font-size: 12px;

    line-height: 1.5;
}


.check-texto strong {
    display: block;

    margin-bottom: 2px;

    color: #e5f0fa;

    font-size: 12px;
}


.check-texto small {
    display: block;

    color: #7794ae;

    font-size: 11px;

    line-height: 1.5;
}


.enlace-legal {
    color: #6fc0ff;

    text-decoration: none;
}


.enlace-legal:hover {
    text-decoration: underline;
}


.registro-divisor {
    width: 100%;

    height: 1px;

    margin:
        24px
        0;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );
}


/* ============================================================
   AVISO INDEPENDENCIA
   ============================================================ */


.aviso-independencia {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin:
        22px
        0;

    padding: 14px;

    border-radius: 12px;

    background:
        rgba(
            83,
            174,
            246,
            0.07
        );

    border:
        1px
        solid
        rgba(
            83,
            174,
            246,
            0.16
        );
}


.aviso-icono {
    width: 23px;

    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(
            82,
            174,
            246,
            0.14
        );

    color: #82c9ff;

    font-size: 12px;

    font-weight: 700;
}


.aviso-independencia p {
    color: #8eabc4;

    font-size: 11px;

    line-height: 1.55;
}


/* ============================================================
   BOTÓN REGISTRO
   ============================================================ */


.boton-registro {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 13px;

    background: #ffffff;

    color: #0b2744;

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0
        10px
        28px
        rgba(
            0,
            0,
            0,
            0.16
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.boton-registro:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0
        14px
        32px
        rgba(
            0,
            0,
            0,
            0.23
        );
}


/* ============================================================
   CONTROLES JETSCHED
   ============================================================ */


.jetsched-accion {
    margin-top: 18px;
}


.boton-jetsched-secundario {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    border-radius: 13px;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color: #dceeff;

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.boton-jetsched-secundario:hover {
    transform:
        translateY(-2px);

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-color:
        rgba(
            255,
            255,
            255,
            0.20
        );
}


.registro-login {
    margin-top: 20px;

    text-align: center;

    color: #839eb7;

    font-size: 12px;
}


.registro-login a {
    margin-left: 4px;

    color: #74c2ff;

    text-decoration: none;

    font-weight: 700;
}


.registro-login a:hover {
    text-decoration: underline;
}


/* ============================================================
   PIE
   ============================================================ */


.pie {
    padding:
        20px
        7%;

    text-align: center;

    color: #7896b3;

    font-size: 12px;
}


/* ============================================================
   TABLET / IPAD
   ============================================================ */


@media (max-width: 1000px) {

    .registro-layout {
        gap: 42px;

        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(400px, 1.15fr);
    }


    .registro-titulo {
        font-size: 44px;
    }
}


/* ============================================================
   TABLET VERTICAL
   ============================================================ */


@media (max-width: 850px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    h1 {
        font-size: 43px;
    }


    .contenido {
        padding-top: 45px;

        padding-bottom: 45px;
    }


    .estado {
        display: none;
    }


    .panel {
        max-width: 520px;

        width: 100%;
    }


    .registro-contenido {
        padding:
            42px
            7%
            55px;
    }


    .registro-layout {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 620px;
    }


    .registro-presentacion {
        max-width: none;
    }


    .registro-beneficios {
        display: grid;

        grid-template-columns:
            1fr
            1fr;
    }


    .volver-enlace {
        margin-bottom: 25px;
    }
}


/* ============================================================
   MÓVIL
   ============================================================ */


@media (max-width: 520px) {

    .cabecera {
        height: 72px;

        padding:
            0
            22px;
    }


    .logo {
        width: 38px;

        height: 38px;

        font-size: 19px;
    }


    .nombre {
        font-size: 22px;
    }


    .contenido {
        padding:
            38px
            22px;
    }


    h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .descripcion {
        font-size: 16px;
    }


    .acciones {
        flex-direction: column;
    }


    .boton {
        width: 100%;
    }


    .panel {
        padding: 22px;
    }


    .ruta {
        font-size: 21px;
    }


    .registro-contenido {
        padding:
            30px
            18px
            42px;
    }


    .registro-layout {
        gap: 34px;
    }


    .registro-titulo {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .registro-descripcion {
        font-size: 15px;
    }


    .registro-beneficios {
        grid-template-columns: 1fr;
    }


    .registro-panel {
        padding:
            25px
            20px;

        border-radius: 22px;
    }


    .registro-panel h2 {
        font-size: 24px;
    }


    .registro-escudo {
        width: 40px;

        height: 40px;
    }


    .campo input {
        font-size: 16px;
    }
}


/* ============================================================
   MÓVILES MUY PEQUEÑOS
   ============================================================ */


@media (max-width: 370px) {

    .registro-panel {
        padding:
            22px
            16px;
    }


    .registro-panel-cabecera {
        gap: 10px;
    }


    .registro-titulo {
        font-size: 34px;
    }
}