/* RESET GENERAL */
body {
    margin: 0;
    font-family: sans-serif;
}



/* HERO BACKGROUND */
.hero {
    min-height: 100vh;
    background: url('../images/iconos/fondoprincipalmovil.png') no-repeat center center;
    background-size: cover;
}

@media (min-width: 768px) {
    .hero {
        background: url('../images/iconos/fondoprincipal.png') no-repeat center center;
        background-size: cover;
    }
}

/* TEXTOS */
.titulo {
    font-size: 2rem;
    font-weight: bold;
}

.descripcion {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.titulo-naranja {
    color: #FE9200;
    font-weight: bold;
}

.sub-naranja {
    color: #FE9200;
    font-weight: bold;
}

/* LOGOS */
.logo {
    width: 60px;
    max-width: 28%;
}

.btn-img {
    width: 120px;
    max-width: 60%;
    cursor: pointer;
}

/* Botones del header */


@media (min-width: 768px) {
    .logo {
        width: 75px;
        max-width: none;
    }

    .hero .d-flex.justify-content-between .btn-img {
        width: 48px;
    }
}

@media (min-width: 992px) {
    .logo {
        width: 110px;
    }

    .hero .d-flex.justify-content-between .btn-img {
        width: 52px;
    }
}

.logo-completo {
    width: 200px;
    max-width: 80%;
    margin: 15px auto;
}

/* INPUTS */
.custom-input {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.input-group-text {
    background: white;
    border: none;
}

.input-group-text img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================================================
   INPUT FLOTANTE
========================================================= */
.input-floating {
    position: relative;
    margin-bottom: 16px;
}

.input-floating .form-control,
.input-floating .form-select {
    padding-top: 18px;
    padding-bottom: 8px;
    line-height: 1.2;
}

/* =========================================================
   LABEL DENTRO DEL CAMPO
========================================================= */
.input-floating label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #BFBFBF;
    background-color: #FFFFFF;
    padding: 0 6px;
    line-height: 1;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 2;
}

/* =========================================================
   INPUT (COMPORTAMIENTO NORMAL FLOTANTE)
========================================================= */
.input-floating .form-control:focus+label,
.input-floating .form-control:not(:placeholder-shown)+label,
.input-floating .form-control:not([value=""])+label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: #9E9E9E;
}

/* =========================================================
   SELECT (SIEMPRE FLOTADO)
========================================================= */
.input-floating .form-select {
    padding-top: 22px;
    padding-bottom: 6px;
}

.input-floating .form-select+label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: #9E9E9E;
}

/* =========================================================
   COLOR TEXTO
========================================================= */
.input-floating .form-control,
.input-floating .form-select {
    color: #222222;
}

#txtBuscar::placeholder {
    color: #666666 !important;
    opacity: 1;
}

/* =========================================================
   TEXTAREA
========================================================= */
.input-floating textarea.form-control+label {
    top: 24px;
    transform: none;
}

.input-floating textarea.form-control:focus+label,
.input-floating textarea.form-control:not(:placeholder-shown)+label {
    top: 10px;
    font-size: 0.72rem;
    color: #9E9E9E;
}

/* =========================================================
   FORM CONTROL ENCABEZADO
========================================================= */
.form-control-encabezado {
    display: block;
    width: 100%;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: 5px 5px 10px #DDDDDD;
}

.form-control-encabezado:focus {
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(0, 159, 226, 0.15);
}

/* =========================================================
   CAMPOS PEQUEÑOS
========================================================= */
.input-floating.input-sm .form-control,
.input-floating.input-sm .form-select {
    height: 50px;
    border-radius: 20px;
    padding-top: 16px;
    padding-bottom: 6px;
    padding-left: 18px;
    padding-right: 18px;
}

.input-floating.input-sm label {
    left: 18px;
}

/* INPUT SM */
.input-floating.input-sm .form-control:focus+label,
.input-floating.input-sm .form-control:not(:placeholder-shown)+label {
    top: 8px;
    font-size: 0.68rem;
}

/* SELECT SM SIEMPRE FLOTADO */
.input-floating.input-sm .form-select+label {
    top: 8px;
    font-size: 0.68rem;
}

/* =========================================================
   ESTILO BASE CAMPOS (AZUL + REDONDEADO)
========================================================= */
.input-floating .form-control,
.input-floating .form-select {
    height: 56px;
    border: 2px solid #009FE2;
    border-radius: 24px;
    background-color: #FFFFFF;
    font-size: 1rem;
    box-shadow: none;
    outline: none;
}

/* FOCUS */
.input-floating .form-control:focus,
.input-floating .form-select:focus {
    border-color: #009FE2;
    box-shadow: 0 0 0 0.15rem rgba(0, 159, 226, 0.15);
    outline: none;
}

/* BOTON BUSCAR */
.btn-buscar {
    background: #009FE2;
    color: white;
    border-radius: 25px;
    width: 100%;
    padding: 10px;
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* BOTONES IMG */
.btn-img {
    width: 180px;
    max-width: 80%;
    cursor: pointer;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
}

@media (min-width: 768px) {
    .whatsapp-float img {
        width: 65px;
        height: 65px;
    }
}

/* WHATSAPP CENTRADO */
.whatsapp-center {
    width: 80px;
    margin-top: 15px;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-item img {
    width: 40px;
    height: 40px;
}

/* SECCION AZUL */
.seccion-azul {
    background: #009FE2;
}

/* RESPONSIVE EXTRA */
@media (min-width: 992px) {
    .titulo {
        font-size: 3rem;
    }

    .descripcion {
        font-size: 1.1rem;
    }

    .logo {
        width: 81px;
    }

    .logo-completo {
        width: 250px;
    }

    .btn-img {
        width: 220px;
    }
}


/* MOBILE */
.buscador {
    margin-bottom: 110px;
}

/* TABLET */
@media (min-width: 768px) {
    .buscador {
        margin-bottom: 120px;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .buscador {
        max-width: 540px;
        margin: 0 auto 140px auto;
    }

    .hero .container {
        padding-bottom: 140px;
    }
}

.hero>.d-flex.justify-content-between {
    padding-top: 12px !important;
    padding-bottom: 8px !important;
}

@media (min-width: 992px) {
    .hero>.d-flex.justify-content-between {
        padding-top: 18px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}



/* BOTON LOGIN */
.btn-login {
    width: 95px;
    cursor: pointer;
}

/* BOTON BURGER */
.btn-burger {
    width: 38px;
    cursor: pointer;
}

/* TABLET */
@media (min-width: 768px) {
    .btn-login {
        width: 110px;
    }

    .btn-burger {
        width: 42px;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .btn-login {
        width: 120px;
    }

    .btn-burger {
        width: 46px;
    }
}

.hero .d-flex.align-items-center {
    gap: 10px;
}


.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/iconos/fondoprincipalmovil.png') no-repeat center center;
    background-size: cover;
}

/* OVERLAY OSCURO */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* ajusta intensidad aquí */
    z-index: 1;
}

/* ASEGURAR QUE EL CONTENIDO QUEDE ENCIMA */
.hero>* {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero {
        background: url('../images/iconos/fondoprincipal.png') no-repeat center center;
        background-size: cover;
    }
}


.btn-naranja {
    background-color: #FE9200;
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    padding: 4px 34px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.btn-naranja:hover {
    background-color: #e68200;
}

/* Active (cuando lo presionas) */
.btn-naranja:active {
    transform: scale(0.98);
}

.btn-naranja:disabled,
.btn-naranja.disabled {
    background-color: #f5c27a;
    /* naranja claro */
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}


.logo-modal {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}


.seccion-imagen-full {
    width: 100%;
    margin-top: 20px;
}

.seccion-imagen-full img {
    width: 100%;
    height: auto;
    display: block;
}



.cliente-logo {
    max-height: 100px;
    object-fit: contain;
    margin: auto;
    display: block;
    padding: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}








.upload-dropzone {
    position: relative;
    width: 100%;
    min-height: 96px;
    border: 2px solid #0aa0ef;
    border-radius: 24px;
    background: #f3f3f3;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    box-sizing: border-box;
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
    background: #ebf7ff;
    border-color: #078ad1;
}

.upload-input-hidden {
    display: none;
}

.upload-dropzone-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
    width: 100%;
}

.upload-dropzone-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
}

.upload-dropzone-text {
    font-size: 13px;
    line-height: 1.25;
    color: #1d1d1d;
    text-transform: uppercase;
    font-weight: 600;
    max-width: 240px;
}

.upload-file-list {
    font-size: 13px;
    color: #333;
}

.upload-file-item {
    margin-bottom: 4px;
    word-break: break-word;
}

@media (max-width: 767.98px) {
    .upload-dropzone {
        min-height: 92px;
        border-radius: 22px;
        padding: 14px 16px;
    }

    .upload-dropzone-inner {
        gap: 12px;
    }

    .upload-dropzone-icon {
        width: 46px;
        height: 46px;
    }

    .upload-dropzone-text {
        font-size: 11px;
        max-width: 190px;
    }

    .upload-file-list {
        font-size: 12px;
    }
}



.aparecer-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.aparecer-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.info-item {
	display: flex;
	align-items: center; /* centra verticalmente */
	gap: 15px; /* espacio entre icono y texto */
	margin-bottom: 20px;
}

.info-item img {
	width: 50px; /* ajusta tamaño si quieres */
	height: auto;
}

.info-item p {
	margin: 0; /* quita espacio extra del párrafo */
}









/* ==========================================
   MODAL REGISTRO VACANTE
========================================== */
.vacante-option-wrapper {
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.vacante-option-btn {
    border: none;
    background: #ffffff;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: background 0.2s ease;
}

.vacante-option-btn:hover {
    background: #f7fbff;
}

.vacante-option-title {
    color: #009FE2;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.vacante-option-subtitle {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 4px;
}

.vacante-option-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #009FE2;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 14px;
}

.vacante-option-panel {
    padding: 6px 22px 22px 22px;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
}

.texto-ayuda-flash {
    font-size: 0.92rem;
    color: #555555;
    text-align: center;
}

@media (max-width: 767.98px) {
    .vacante-option-btn {
        padding: 16px 16px;
    }

    .vacante-option-panel {
        padding: 4px 16px 18px 16px;
    }

    .vacante-option-title {
        font-size: 0.98rem;
    }

    .vacante-option-subtitle {
        font-size: 0.82rem;
    }
}




#mapaEmpresaRegistro {
    background: #f5f5f5;
}

.upload-preview-mini {
    max-width: 120px;
    max-height: 80px;
    border-radius: 12px;
    display: block;
    margin-top: 8px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 4px;
    background: #fff;
}