/* ============================================================
   TuTrabajo — Home CSS consolidado
   Figma: verde #24C022 · naranja #FE9920 · fondo claro #ECF9E9
   Versión: consolidada (sin duplicados ni parches)
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --tt-green:        #24C022;
    --tt-green-dark:   #2FAE22;
    --tt-green-light:  #ECF9E9;
    --tt-orange:       #FE9920;
    --tt-footer:       #7C8779;
    --tt-dark:         #253423;
    --tt-text:         #374151;
    --tt-nav-text:     #7D857A;
    --tt-muted:        #6B7280;
    --tt-bg:           #F5F7F5;
    --tt-white:        #FFFFFF;
    --tt-border:       #E5E7EB;
    --tt-radius:       12px;
    --tt-radius-sm:    8px;
    --tt-shadow:       0 2px 12px rgba(0,0,0,.06);
    --tt-shadow-hover: 0 6px 24px rgba(64,196,43,.18);
}


/* Quitar borde nativo de todos los select del home */
.tt-searchbar select,
.tt-cities__form select {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.tt-searchbar select:focus,
.tt-cities__form select:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Override del CSS del tema que añade border/shadow en focus.
   El input tiene fondo blanco, ponemos borde blanco = invisible */
.tt-searchbar input,
.tt-searchbar select,
.tt-searchbar input:focus,
.tt-searchbar select:focus,
.tt-searchbar .form-control,
.tt-searchbar .form-control:focus {
    border-color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
.tt-searchbar__input-group:focus-within {
    box-shadow: none !important;
    outline: none !important;
}
/* ============================================================
   BASE
   ============================================================ */
body { color: var(--tt-text); font-family: 'Inter', 'Segoe UI', sans-serif; }

/* ============================================================
   BOTONES
   ============================================================ */
.tt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: var(--tt-radius-sm);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    text-decoration: none;
}
.tt-btn--primary {
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
}
.tt-btn--primary:hover {
    background: var(--tt-green-dark) !important;
    color: #fff;
    transform: translateY(-1px);
}
.tt-btn--orange,
.tt-btn--accent {
    background: var(--tt-orange) !important;
    border-color: var(--tt-orange) !important;
    color: #fff !important;
}
.tt-btn--outline {
    background: transparent;
    color: var(--tt-green);
    border-color: var(--tt-green);
}
.tt-btn--outline:hover { background: var(--tt-green); color: #fff; }
.tt-btn__icon { width: 18px; height: 18px; object-fit: contain; display: inline-block; }

/* ============================================================
   LINKS
   ============================================================ */
.tt-link { color: var(--tt-green); text-decoration: none; font-weight: 500; }
.tt-link:hover { color: var(--tt-green-dark); text-decoration: underline; }
.tt-link--arrow { display: inline-flex; align-items: center; gap: 4px; }
.tt-link--green { color: var(--tt-green); font-weight: 600; }

/* ============================================================
   SECCIÓN — helpers
   ============================================================ */
.tt-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--tt-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.tt-section-title--center { text-align: center; }
.tt-section-subtitle { color: var(--tt-muted); font-size: 1rem; margin-bottom: 2.5rem; }
.tt-section-subtitle--center { text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
#siteheader.header {
    height: 90px;
    min-height: 90px;
    background: #fff !important;
    box-shadow: 0 1px 12px rgba(0,0,0,.05);
    position: relative;
    z-index: 50;
}
#siteheader .container-fluid {
    max-width: 1440px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
#siteheader .row {
    min-height: 90px;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-left: 0;
    margin-right: 0;
}
/* Columna logo: fija, no se comprime, overflow recortado */
#siteheader .col-lg-2 {
    flex: 0 0 211px !important;
    width: 211px !important;
    min-width: 211px !important;
    max-width: 211px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Columna nav: ocupa el resto, min-width:0 para que flex pueda comprimir */
#siteheader .col-lg-10 {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    max-width: calc(100% - 211px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
#siteheader .logo {
    width: 211px !important;
    max-width: 211px !important;
    height: 65px !important;
    display: inline-flex !important;
    align-items: center !important;
    overflow: hidden !important;
}
#siteheader .logo img {
    width: auto !important;
    max-width: 100% !important;
    height: 65px !important;
    max-height: 65px !important;
    object-fit: contain !important;
    display: block !important;
}
#siteheader .navbar { justify-content: flex-end; padding: 0 !important; width: 100%; }
#siteheader .navbar-collapse { width: 100% !important; justify-content: flex-end !important; }
.tt-mobile-menu-header { display: none; }
#siteheader .navbar-nav {
    width: 100% !important;
    margin-left: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 22px !important;
}
#siteheader .navbar-nav .nav-item { display: flex; align-items: center; flex: 0 0 auto; }
#siteheader .navbar-nav .nav-link {
    color: var(--tt-nav-text) !important;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    white-space: nowrap;
}
#siteheader .navbar-nav .active .nav-link,
#siteheader .navbar-nav .nav-link:hover { color: var(--tt-green) !important; }
#siteheader .navbar-nav .register .nav-link,
#siteheader .navbar-nav .register a.register,
#siteheader .navbar-nav .loginbtn .nav-link {
    height: 40px !important;
    min-width: 102px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 100px !important;
    padding: 10px 20px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 22px !important;
}
#siteheader .navbar-nav .register .nav-link,
#siteheader .navbar-nav .register a.register { background: var(--tt-orange) !important; }
#siteheader .navbar-nav .loginbtn .nav-link  { background: var(--tt-green)  !important; }

/* Google Translate — extremo derecho, sin cortes */
#siteheader .google-translate-nav {
    order: 999;
    flex: 0 0 auto;
    flex-shrink: 0 !important;
    margin-left: 4px !important;
    overflow: visible !important;
}
#siteheader #google_translate_element {
    display: inline-flex;
    align-items: center;
    overflow: visible !important;
}
#siteheader .goog-logo-link,
#siteheader .goog-te-gadget > span { display: none !important; }
#siteheader .goog-te-gadget { font-size: 0 !important; line-height: 0 !important; overflow: visible !important; }
#siteheader .goog-te-combo {
    height: 34px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    color: #555 !important;
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}
#siteheader .goog-te-gadget-simple {
    height: 34px !important;
    overflow: visible !important;
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}
#siteheader .goog-te-gadget-simple span,
#siteheader .goog-te-gadget-simple a { white-space: nowrap !important; overflow: visible !important; }
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; visibility: hidden !important; }
body { top: 0 !important; }

/* ============================================================
   HERO
   ============================================================ */
.tt-hero {
    background: var(--tt-green-light) !important;
    min-height: 653px;
    padding: 65px 0 !important;
    overflow: hidden;
    position: relative;
}
.tt-hero::before {
    content: '';
    position: absolute;
    right: -120px; top: -80px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(64,196,43,.12) 0%, transparent 70%);
    pointer-events: none;
}
.tt-hero .container { max-width: 1140px !important; padding-left: 0 !important; padding-right: 0 !important; }
.tt-hero__content {
    display: grid !important;
    grid-template-columns: 503px 550px !important;
    gap: 87px !important;
    align-items: center !important;
}
.tt-hero__text { width: 503px; max-width: 503px; }
.tt-hero__title {
    color: var(--tt-green) !important;
    font-size: 45px !important;
    line-height: 47px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 18px !important;
}
.tt-hero__subtitle {
    width: 503px;
    max-width: 503px !important;
    color: var(--tt-nav-text) !important;
    font-size: 24px !important;
    line-height: 30px !important;
    font-weight: 500 !important;
    margin-bottom: 30px !important;
}
.tt-searchbar { width: 464px !important; max-width: 464px !important; margin-bottom: 30px !important; }
.tt-searchbar__form { width: 100%; }
.tt-searchbar__input-group {
    width: 464px !important;
    height: 50px !important;
    min-height: 50px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 22px !important;
    background: #fff !important;
    overflow: hidden !important;
    display: flex;
}
.tt-searchbar__input-group,
.tt-searchbar__input-group *,
.tt-searchbar__input-group:focus-within { outline: none !important; box-shadow: none !important; }
.tt-searchbar__field {
    width: 205px !important;
    flex: 0 0 205px !important;
    padding: 0 0 0 15px !important;
    display: flex;
    align-items: center;
}
.tt-searchbar__icon { display: none !important; }
.tt-searchbar__input {
    flex: 1;
    border: none; outline: none;
    font-size: 13px !important;
    line-height: 18px !important;
    color: var(--tt-nav-text) !important;
    padding: 0 !important;
    height: 50px !important;
    background: transparent;
}
.tt-searchbar__select-wrap {
    width: 214px !important;
    flex: 0 0 214px !important;
    border-left: 1px solid #E5E7EB !important;
    display: flex;
    align-items: center;
}
.tt-searchbar__select {
    width: 214px !important;
    min-width: 214px !important;
    height: 50px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    color: var(--tt-nav-text) !important;
    border: none !important; outline: none !important; box-shadow: none !important; background: transparent;
    appearance: none; -webkit-appearance: none;
}
.tt-searchbar__select:focus { border: none !important; outline: none !important; box-shadow: none !important; }

/* Modo simple del buscador: cuando no hay selector de área funcional
   (por ejemplo, empresa logueada buscando talento). Evita que el input
   quede corto y el home parezca descuadrado después de iniciar sesión. */
.tt-searchbar__input-group--simple .tt-searchbar__field {
    width: auto !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.tt-searchbar__input-group--simple .tt-searchbar__input {
    width: 100% !important;
}
.tt-searchbar__input-group .tt-btn {
    width: 45px !important;
    height: 50px !important;
    flex: 0 0 45px !important;
    padding: 0 !important;
    border-radius: 0 22px 22px 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    background: var(--tt-green) !important;
    position: relative;
    border: none;
}
.tt-searchbar__input-group .tt-btn::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-hero__actions { display: flex; align-items: center; gap: 28px; margin-bottom: 54px; }
.tt-hero__actions .tt-btn {
    height: 40px !important;
    border-radius: 100px !important;
    padding: 10px 20px !important;
    gap: 10px !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
}
.tt-hero__cta-secondary { display: flex; flex-direction: column; gap: 2px; }
.tt-hero__cta-text { font-weight: 600; color: var(--tt-nav-text) !important; font-size: 16px !important; line-height: 22px !important; }
.tt-hero__cta-sub  { color: var(--tt-nav-text) !important; font-size: 16px !important; line-height: 22px !important; }
.tt-hero__cta-secondary .tt-link { color: var(--tt-orange) !important; font-weight: 500 !important; font-size: 16px !important; }
.tt-hero__image {
    width: 550px !important; max-width: 550px !important;
    display: flex !important; justify-content: center !important; align-items: center !important;
}
.tt-hero__image img,
.tt-hero__img {
    width: 550px !important; max-width: 550px !important;
    height: auto !important; max-height: none !important; object-fit: contain !important;
}

/* ============================================================
   HIGHLIGHT CTA BAR
   ============================================================ */
.tt-highlight-cta {
    background: var(--tt-white);
    padding: 32px 0;
    text-align: center;
}
.tt-highlight-cta p {
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--tt-nav-text);
}
.tt-highlight-cta .tt-link,
.tt-highlight-cta .tt-link--arrow {
    color: var(--tt-orange) !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

/* ============================================================
   FEATURED JOBS
   ============================================================ */
.tt-featured-jobs { padding: 64px 0 48px; background: var(--tt-white); }
.tt-jobs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.tt-job-card {
    background: var(--tt-white);
    border: 1.5px solid var(--tt-border);
    border-radius: var(--tt-radius);
    padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none; color: var(--tt-text);
    transition: all .2s; cursor: pointer;
}
.tt-job-card:hover { border-color: var(--tt-green); box-shadow: var(--tt-shadow-hover); transform: translateY(-2px); color: var(--tt-text); text-decoration: none; }
.tt-job-card__type { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--tt-muted); background: var(--tt-bg); padding: 4px 10px; border-radius: 20px; width: fit-content; }
.tt-job-card__title { font-size: .95rem; font-weight: 600; color: var(--tt-green); margin: 0; line-height: 1.4; }
.tt-job-card__location { font-size: .82rem; color: var(--tt-muted); display: flex; align-items: center; gap: 5px; }
.tt-job-card__company { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--tt-border); }
.tt-job-card__company-name { font-size: .82rem; font-weight: 500; color: var(--tt-text); }
.tt-job-card__company-logo img,
.tt-job-card__company-logo .companylogoimg { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.tt-featured-jobs__footer {
    text-align: center;
    margin: 32px 0 0;
}
.tt-featured-jobs__footer .tt-btn {
    height: 40px !important;
    border-radius: 100px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
}
.tt-featured-jobs__cta-text { text-align: center; color: var(--tt-muted); font-size: .9rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.tt-about { background: var(--tt-green); padding: 65px 0; }
.tt-featured-jobs .tt-section-title { color: var(--tt-green) !important; }
.tt-about .tt-section-title { color: #fff !important; font-size: 32px !important; line-height: 38px !important; font-weight: 700 !important; margin-bottom: 20px !important; }
.tt-about__lead { text-align: center; color: #fff; max-width: 700px; margin: 0 auto 35px; font-size: 15px; line-height: 23px; font-weight: 400; }
.tt-about__pillars { display: grid; grid-template-columns: repeat(3, 200px); gap: 9px; justify-content: center; }
.tt-pillar { background: var(--tt-green-light); border-radius: 10px; padding: 15px 10px; text-align: center; border: none; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.tt-pillar__icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tt-pillar__icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.tt-pillar__icon i { font-size: 22px; color: var(--tt-green); }
.tt-pillar__title { color: #7D857A; font-size: 16px; line-height: 22px; font-weight: 600; margin: 0; text-align: center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.tt-howitworks { background: var(--tt-white); padding: 65px 0; }
.tt-howitworks .tt-section-title { color: var(--tt-green) !important; }
.tt-howitworks .tt-section-subtitle { font-size: 24px !important; line-height: 30px !important; font-weight: 500 !important; color: var(--tt-nav-text) !important; margin-bottom: 40px !important; }
.tt-howitworks__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tt-howitworks__col { background: var(--tt-green-light); border-radius: 10px; padding: 25px 30px; border: none; }
.tt-howitworks__col-title { font-size: 32px; line-height: 38px; font-weight: 700; color: var(--tt-green); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.tt-howitworks__col-title i { color: var(--tt-green); font-size: 25px; }
.tt-howitworks__col-title img { width: 25px; height: 25px; object-fit: contain; display: inline-block; }
.tt-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 30px; }
.tt-step { display: flex; flex-direction: column; gap: 2px; }
.tt-step__num { color: var(--tt-orange); font-size: 20px; font-weight: 700; line-height: 1; }
.tt-step strong { display: block; color: var(--tt-nav-text); font-size: 20px; line-height: 36px; font-weight: 600; }
.tt-step p { color: rgba(125,133,122,.70); font-size: 15px; line-height: 23px; font-weight: 400; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tt-testimonials { padding: 65px 0; background: var(--tt-green-light); }
.tt-testimonials .tt-section-title { color: var(--tt-green) !important; font-size: 32px !important; line-height: 38px !important; font-weight: 700 !important; }
.tt-testimonials .tt-section-subtitle { font-size: 24px !important; line-height: 30px !important; font-weight: 500 !important; color: var(--tt-nav-text) !important; margin-bottom: 35px !important; }
.tt-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-testimonial-card { background: var(--tt-white); border-radius: 10px; padding: 28px; border: none; display: flex; flex-direction: column; gap: 20px; }
.tt-testimonial-card__text { color: var(--tt-nav-text); font-size: 15px; line-height: 23px; flex: 1; }
.tt-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.tt-testimonial-card__avatar img,
.tt-testimonial-card__avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tt-testimonial-card__avatar-placeholder { background: var(--tt-green-light); color: var(--tt-green); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.tt-testimonial-card__name { font-weight: 600; font-size: .9rem; color: var(--tt-green); }
.tt-testimonial-card__role { font-size: .8rem; color: var(--tt-muted); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.tt-categories { padding: 65px 0; background: var(--tt-green); }
.tt-categories .tt-section-title { color: #fff !important; }
.tt-categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tt-category-card { background: var(--tt-white); border: 1.5px solid var(--tt-border); border-radius: var(--tt-radius-sm); padding: 18px 16px; display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--tt-text); transition: all .2s; }
.tt-category-card:hover { border-color: var(--tt-green); color: var(--tt-green); box-shadow: var(--tt-shadow-hover); transform: translateY(-1px); text-decoration: none; }
.tt-category-card__icon { width: 40px; height: 40px; background: var(--tt-green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--tt-green); flex-shrink: 0; font-size: 1rem; }
.tt-category-card__name { font-weight: 600; font-size: .9rem; }
.tt-category-card__count { font-size: .78rem; color: var(--tt-muted); }

/* ============================================================
   CITIES
   ============================================================ */
.tt-cities { padding: 65px 0; background: var(--tt-green-light); }
.tt-cities .tt-section-title { color: var(--tt-green) !important; font-size: 32px !important; line-height: 38px !important; font-weight: 700 !important; }
.tt-cities .tt-section-subtitle { font-size: 24px !important; line-height: 30px !important; font-weight: 500 !important; color: var(--tt-nav-text) !important; margin-bottom: 35px !important; }
.tt-cities__tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 35px; }
.tt-city-tag { background: transparent; border: 1.5px solid var(--tt-orange); border-radius: 100px; padding: 10px 25px; height: 40px; display: inline-flex; align-items: center; font-size: 16px; line-height: 19px; color: var(--tt-orange); text-decoration: none; font-weight: 600; transition: all .2s; }
.tt-city-tag:hover { background: var(--tt-orange); border-color: var(--tt-orange); color: #fff; text-decoration: none; }
.tt-cities__search { display: flex; justify-content: center; }
.tt-cities__form { display: flex; gap: 0; align-items: center; background: #fff; border: 1px solid #D1D5DB; border-radius: 22px; padding: 0; overflow: hidden; width: 350px; height: 50px; }
.tt-cities__select-wrap { flex: 1; position: relative; height: 50px; display: flex; align-items: center; padding: 0 40px 0 20px; }
.tt-cities__select-wrap::after { content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 11px; color: var(--tt-nav-text); position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.tt-cities__select { border: none !important; outline: none !important; box-shadow: none !important; background: transparent; font-size: 13px; color: var(--tt-nav-text); width: 100%; height: 50px; font-weight: 500; appearance: none; -webkit-appearance: none; cursor: pointer; padding: 0; }
.tt-cities__select:focus { border: none !important; outline: none !important; box-shadow: none !important; }
.tt-cities__form .tt-btn { width: 44px !important; height: 50px !important; flex: 0 0 44px !important; padding: 0 !important; border-radius: 0 22px 22px 0 !important; background: var(--tt-green) !important; border: none !important; font-size: 0 !important; position: relative; }
.tt-cities__form .tt-btn::before { content: "\f002"; font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 16px; color: #fff; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }


/* ============================================================
   BLOG
   ============================================================ */
.tt-blog { padding: 65px 0; background: var(--tt-white); }
.tt-blog .tt-section-title { color: var(--tt-green); font-size: 32px !important; font-weight: 700 !important; margin-bottom: 35px; text-align: center; }
.tt-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.tt-blog-card { text-decoration: none; color: var(--tt-text); background: var(--tt-white); border-radius: var(--tt-radius); border: 1.5px solid var(--tt-border); overflow: hidden; display: flex; flex-direction: column; transition: all .2s; }
.tt-blog-card:hover { border-color: var(--tt-green); box-shadow: var(--tt-shadow-hover); transform: translateY(-2px); text-decoration: none; color: var(--tt-text); }
.tt-blog-card__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.tt-blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.tt-blog-card:hover .tt-blog-card__img img { transform: scale(1.04); }
.tt-blog-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tt-blog-card__date { font-size: 13px; color: var(--tt-muted); display: flex; align-items: center; gap: 6px; }
.tt-blog-card__date i { color: var(--tt-green); }
.tt-blog-card__title { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--tt-dark); margin: 0; }
.tt-blog-card:hover .tt-blog-card__title { color: var(--tt-green); }
.tt-blog__footer { text-align: center; }
.tt-blog__footer .tt-btn--outline { border-color: var(--tt-green); color: var(--tt-green); padding: 12px 32px; border-radius: 100px; font-size: 15px; }
.tt-blog__footer .tt-btn--outline:hover { background: var(--tt-green); color: #fff; }

@media (max-width: 991px) { .tt-blog__grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .tt-blog__grid { grid-template-columns: 1fr; } }


/* ============================================================
   FOOTER
   ============================================================ */
.tt-footer { background: #2D3130; color: #fff; padding: 60px 0 0; }
.tt-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.tt-footer__heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.tt-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tt-footer__links li { display: flex; align-items: flex-start; gap: 8px; }
.tt-footer__links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color .2s;
}
.tt-footer__links a:hover { color: var(--tt-green); text-decoration: none; }
.tt-footer__links--contact li { color: rgba(255,255,255,.65); font-size: 14px; }
.tt-footer__links--contact i { color: var(--tt-green); margin-top: 2px; flex-shrink: 0; font-size: 13px; }
.tt-footer__links--contact a { color: rgba(255,255,255,.65); }
.tt-footer__links--contact a:hover { color: var(--tt-green); }

/* Social icons */
.tt-footer__social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.tt-footer__social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
}
.tt-footer__social a:hover { background: var(--tt-green); color: #fff; }
.tt-footer__social a svg { width: 13px; height: 13px; fill: currentColor; }

/* Bottom bar */
.tt-footer__bottom {
    padding: 20px 0;
    text-align: center;
}
.tt-footer__bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

/* Footer responsive */
@media (max-width: 1199px) {
    .tt-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .tt-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .tt-footer { padding: 40px 0 0; }
}

/* ============================================================
   RESPONSIVE — de mayor a menor (max-width)
   ============================================================ */

/* Pantalla media-grande: 1200px–1399px */
@media (max-width: 1399px) {
    #siteheader .container-fluid { padding-left: 32px !important; padding-right: 32px !important; }
    #siteheader .navbar-nav { gap: 18px !important; }
    #siteheader .navbar-nav .nav-link { font-size: 15px !important; }
    #siteheader .navbar-nav .register .nav-link,
    #siteheader .navbar-nav .register a.register,
    #siteheader .navbar-nav .loginbtn .nav-link { min-width: 96px; font-size: 15px !important; }
}

/* Portátiles pequeños: 992px–1199px */
@media (max-width: 1199px) {
    #siteheader .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
    #siteheader .col-lg-2 { flex: 0 0 180px !important; width: 180px !important; min-width: 180px !important; max-width: 180px !important; }
    #siteheader .col-lg-10 { max-width: calc(100% - 180px) !important; }
    #siteheader .logo,
    #siteheader .logo img { width: 180px !important; max-width: 180px !important; height: 56px !important; max-height: 56px !important; }
    #siteheader .navbar-nav { gap: 14px !important; }
    #siteheader .navbar-nav .nav-link { font-size: 14px !important; }
    #siteheader .navbar-nav .register .nav-link,
    #siteheader .navbar-nav .register a.register,
    #siteheader .navbar-nav .loginbtn .nav-link { min-width: 88px !important; font-size: 14px !important; padding-left: 14px !important; padding-right: 14px !important; }
    .tt-hero .container { max-width: 960px !important; padding-left: 15px !important; padding-right: 15px !important; }
    .tt-hero__content { grid-template-columns: 1fr 420px !important; gap: 35px !important; }
    .tt-hero__text { width: 100%; max-width: 503px; }
    .tt-hero__image, .tt-hero__image img, .tt-hero__img { width: 420px !important; max-width: 420px !important; }
}

/* Menú hamburguesa: < 992px */
@media (max-width: 991px) {
    #siteheader.header { height: 72px !important; min-height: 72px; overflow: hidden; }
    #siteheader .container-fluid { padding-left: 16px !important; padding-right: 16px !important; }
    #siteheader .row { flex-wrap: nowrap !important; min-height: 72px; align-items: center !important; }
    #siteheader .col-lg-2 { flex: 0 0 auto !important; width: auto !important; min-width: 0 !important; max-width: none !important; overflow: hidden !important; }
    #siteheader .col-lg-10 { flex: 1 1 0% !important; width: auto !important; min-width: 0 !important; max-width: none !important; overflow: hidden !important; }
    #siteheader .logo { width: 150px !important; height: 50px !important; }
    #siteheader .logo img { width: 150px !important; height: 50px !important; }
    /* Navbar móvil — botón hamburguesa visible, menú desplegable hacia abajo */
    #siteheader .navbar { display: flex !important; padding: 0 !important; justify-content: flex-end !important; }
    #siteheader .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        border: 1.5px solid var(--tt-border) !important;
        border-radius: 8px !important;
        background: #fff !important;
        padding: 0 !important;
        flex-shrink: 0;
    }
    #siteheader .navbar-toggler-icon { width: 20px; height: 20px; }
    #siteheader .navbar-collapse {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important; right: 0 !important;
        background: #fff !important;
        border-bottom: 1px solid var(--tt-border) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
        padding: 16px 20px 20px !important;
        z-index: 1049 !important;
        display: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #siteheader .navbar-collapse.show {
        display: block !important;
        transform: none !important;
        -webkit-transform: none !important;
        left: 0 !important;
        top: 72px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    #siteheader .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        width: 100% !important;
    }
    #siteheader .navbar-nav .nav-link {
        font-size: 16px !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--tt-border) !important;
        width: 100% !important;
    }
    #siteheader .navbar-nav .nav-item:last-child .nav-link { border-bottom: none !important; }
    #siteheader .navbar-nav .register .nav-link,
    #siteheader .navbar-nav .register a.register,
    #siteheader .navbar-nav .loginbtn .nav-link {
        border-radius: 8px !important;
        margin-top: 4px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    #siteheader .google-translate-nav { display: none !important; }
    /* Traductor visible en menú móvil */
    #siteheader .tt-translate-nav { display: flex !important; padding: 8px 0 !important; }
    #siteheader .tt-translate-nav .goog-te-gadget-simple { width: 100% !important; }

    /* Cabecera del menú móvil */
    .tt-mobile-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--tt-border);
    }
    .tt-mobile-menu-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--tt-dark);
    }
    .tt-mobile-menu-close {
        width: 32px; height: 32px;
        border-radius: 8px;
        border: 1.5px solid var(--tt-border) !important;
        background: var(--tt-bg) !important;
        color: var(--tt-muted) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        padding: 0 !important;
    }
    .tt-mobile-menu-close:hover { background: var(--tt-green) !important; color: #fff !important; border-color: var(--tt-green) !important; }
    .tt-hero { min-height: auto; padding: 46px 0 !important; }
    .tt-hero .container { max-width: 720px !important; padding-left: 20px !important; padding-right: 20px !important; }
    .tt-hero__content { grid-template-columns: 1fr !important; gap: 30px !important; }
    .tt-hero__text, .tt-hero__subtitle, .tt-searchbar, .tt-searchbar__input-group { width: 100% !important; max-width: 100% !important; }
    .tt-hero__image { display: none !important; }
    .tt-jobs-grid { grid-template-columns: repeat(2, 1fr); }
    .tt-about__pillars { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .tt-howitworks__grid { grid-template-columns: 1fr; }
    .tt-testimonials__grid { grid-template-columns: 1fr; }
    .tt-categories__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Móvil: < 576px */
@media (max-width: 575px) {
    #siteheader .container-fluid { padding-left: 16px !important; padding-right: 16px !important; }
    .tt-hero__title { font-size: 34px !important; line-height: 38px !important; }
    .tt-hero__subtitle { font-size: 18px !important; line-height: 25px !important; }
    .tt-searchbar__input-group { flex-direction: column; height: auto !important; border-radius: 20px !important; }
    .tt-searchbar__field, .tt-searchbar__select-wrap, .tt-searchbar__select,
    .tt-searchbar__input-group .tt-btn { width: 100% !important; flex: 0 0 auto !important; }
    .tt-searchbar__input-group .tt-btn { border-radius: 0 0 20px 20px !important; }
    .tt-hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
    .tt-jobs-grid { grid-template-columns: 1fr; }
    .tt-categories__grid { grid-template-columns: 1fr; }
    .tt-cities__tags { gap: 8px; }
}



/* Ajuste buscador hero en móvil/tablet: evita que quede una cola blanca después del botón */
@media (max-width: 767.98px) {
    .tt-searchbar {
        width: 100% !important;
        max-width: 430px !important;
    }

    .tt-searchbar__input-group {
        width: 100% !important;
        max-width: 100% !important;
        height: 42px !important;
        min-height: 42px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        background: #fff !important;
    }

    .tt-searchbar__field {
        width: auto !important;
        flex: 1 1 48% !important;
        min-width: 0 !important;
        padding-left: 12px !important;
    }

    .tt-searchbar__select-wrap {
        width: auto !important;
        flex: 1 1 42% !important;
        min-width: 0 !important;
        border-left: 1px solid #E5E7EB !important;
    }

    .tt-searchbar__select {
        width: 100% !important;
        min-width: 0 !important;
        height: 42px !important;
        padding: 0 8px !important;
        font-size: 11px !important;
        text-overflow: ellipsis !important;
    }

    .tt-searchbar__input {
        width: 100% !important;
        height: 42px !important;
        font-size: 11px !important;
        text-overflow: ellipsis !important;
    }

    .tt-searchbar__input-group .tt-btn {
        width: 45px !important;
        height: 42px !important;
        flex: 0 0 45px !important;
        align-self: stretch !important;
        margin-left: 0 !important;
        border-radius: 0 22px 22px 0 !important;
    }

    .tt-searchbar__input-group--simple .tt-searchbar__field {
        flex: 1 1 auto !important;
    }
}

@media (max-width: 380px) {
    .tt-searchbar__input { font-size: 10px !important; }
    .tt-searchbar__select { font-size: 10px !important; }
    .tt-searchbar__field { padding-left: 10px !important; }
}

/* ============================================================
   PÁGINA OFERTAS — Job List
   ============================================================ */

/* Top search banner */
.pageSearch {
    background: var(--tt-green) !important;
    padding: 58px 0 42px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
}
.pageSearch h3 {
    color: var(--tt-dark) !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: 32px !important;
    line-height: 40px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 18px !important;
}
.pageSearch .searchform {
    max-width: 760px !important;
    margin: 0 auto !important;
}
.pageSearch .searchform .input-group {
    height: 58px !important;
    background: #fff !important;
    border: 2px solid var(--tt-green-dark) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 34px rgba(37, 52, 35, .08) !important;
}
.pageSearch .searchform .form-control {
    height: 58px !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 22px !important;
    color: var(--tt-text) !important;
    font-size: 15px !important;
}
.pageSearch .searchform .btn {
    width: 58px !important;
    height: 58px !important;
    background: var(--tt-green) !important;
    border: 0 !important;
    color: #fff !important;
    border-radius: 14px !important;
    margin: 0 !important;
}

.listpgWraper {
    background: #fff !important;
    padding: 56px 0 72px !important;
}
.listpgWraper .container {
    max-width: 1140px !important;
}
.listpgWraper h3 {
    color: var(--tt-dark) !important;
    font-weight: 600 !important;
}
.listpgWraper > .container > form > .row {
    align-items: flex-start !important;
}

/* Sidebar de filtros */
.jobreqbtn .btn,
.sidebar .btn,
.listpgWraper .btn-job-alert {
    border-radius: 14px !important;
    min-height: 46px !important;
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 22px rgba(64, 196, 43, .18) !important;
}
.jobreqbtn .btn:hover,
.sidebar .btn:hover,
.listpgWraper .btn-job-alert:hover {
    background: var(--tt-green-dark) !important;
    border-color: var(--tt-green-dark) !important;
    color: #fff !important;
}
.sidebar {
    background: #fff !important;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--tt-border);
    position: sticky;
    top: 20px;
}
.sidebar .widget {
    padding: 0 0 28px !important;
    margin-bottom: 28px !important;
    border-bottom: 1px solid #E7ECE5 !important;
}
.sidebar .widget-title, .sidebar .widget h4 {
    color: var(--tt-dark) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px !important;
}
.sidebar .optionlist {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar .optionlist li {
    min-height: 28px !important;
    line-height: 22px !important;
    padding: 0 !important;
    margin: 0 0 6px !important;
    color: var(--tt-text) !important;
    font-size: 14px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-right: 38px !important;
}
.sidebar .optionlist li span {
    position: absolute !important;
    right: 0 !important;
    top: 4px !important;
    font-size: 11px;
    background: var(--tt-bg);
    color: var(--tt-muted);
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 600;
}
.sidebar .optionlist input[type="checkbox"],
.sidebar .optionlist input[type="radio"] {
    accent-color: var(--tt-green) !important;
    width: 15px; height: 15px;
    flex-shrink: 0;
}

/* Fix "Ver más" */
.sidebar .view_more_ul.hide_vm_ul,
.listpgWraper .view_more_ul.hide_vm_ul {
    height: auto !important;
    max-height: 126px !important;
    overflow: hidden !important;
    margin-bottom: 6px !important;
    position: relative !important;
}
.sidebar .view_more_ul.hide_vm_ul::after,
.listpgWraper .view_more_ul.hide_vm_ul::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 22px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}
.sidebar .view_more,
.sidebar .view_less,
.listpgWraper .view_more,
.listpgWraper .view_less {
    display: inline-flex !important;
    align-items: center !important;
    color: var(--tt-green) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
.sidebar .view_more:hover,
.sidebar .view_less:hover { color: var(--tt-green-dark) !important; text-decoration: underline !important; }
.hide_vm { display: none !important; }

/* Salary inputs */
.widget .form-control {
    border: 1px solid var(--tt-border) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    padding: 8px 10px !important;
    color: var(--tt-text) !important;
    box-shadow: none !important;
}
.widget .form-control:focus { border-color: var(--tt-green) !important; box-shadow: none !important; }

/* Botón buscar */
.searchnt .btn {
    width: 100%;
    background: var(--tt-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Cabecera resultados */
.topstatinfo, .showreslt {
    color: var(--tt-muted) !important;
    font-size: 13px !important;
    margin-bottom: 20px !important;
}
.listpgWraper .badge.bg-warning {
    background: var(--tt-orange) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 7px 13px !important;
    font-weight: 600 !important;
}

/* Paginación */
.pagiWrap { border-top: 1px solid var(--tt-border); padding-top: 24px; }
.pagiWrap .pagination { justify-content: flex-end !important; gap: 4px; }
.pagiWrap .page-link {
    color: var(--tt-green) !important;
    border-color: #E4EAE2 !important;
    min-height: 38px !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
}
.pagiWrap .page-item.active .page-link,
.pagiWrap .page-link:hover {
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
}

/* Sin resultados */
.nodatabox {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px dashed var(--tt-border);
}
.nodatabox h4 { color: var(--tt-muted); font-size: 16px; }

/* Móvil filtro toggle */
.filterjobsnav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--tt-green);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 16px;
    border: none;
}
.filterjobsnav svg { fill: #fff; }
.close-filterjobs { display: none; }

/* Responsive */
@media (max-width: 991px) {
    .pageSearch { padding: 38px 0 30px !important; }
    .pageSearch h3 { font-size: 25px !important; }
    .listpgWraper { padding: 36px 0 54px !important; }
    .filterjobsnav { display: flex; }
    .close-filterjobs { display: block; }
    .sidebar {
        position: fixed; top: 0; left: -100%;
        width: 85%; max-width: 320px; height: 100vh; overflow-y: auto;
        z-index: 1050; border-radius: 0; transition: left .3s;
        border: none; box-shadow: 4px 0 20px rgba(0,0,0,.2);
        padding: 20px;
    }
    .sidebar.open { left: 0; }
    /* Cards en móvil — 1 columna */
    .featuredlist .col-lg-4,
    .featuredlist .col-md-6 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
}
@media (max-width: 575px) {
    .pageSearch .searchform .input-group { height: auto !important; border-radius: 16px !important; }
    .pageSearch .searchform .form-control { height: 54px !important; font-size: 14px !important; }
    .pageSearch .searchform .btn { width: 54px !important; height: 54px !important; }
    .sidebar .optionlist li { font-size: 13px !important; }
    .listpgWraper { padding: 24px 0 40px !important; }
}


/* Cards de ofertas */
.featuredlist { list-style: none; padding: 0; margin: 0; }
.featuredlist > li { margin-bottom: 16px; }
.jobint {
    background: #fff;
    border: 1.5px solid var(--tt-border);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: all .2s;
    cursor: pointer;
    overflow: visible;
}
.jobint:hover {
    border-color: var(--tt-green);
    box-shadow: 0 4px 20px rgba(64,196,43,.12);
    transform: translateY(-1px);
}
/* Badge destacado */
.promotepof-badge {
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 40px;
    overflow: hidden;
    border-radius: 0 12px 0 0;
    pointer-events: none;
}
.promotepof-badge::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--tt-orange) transparent transparent;
}
.promotepof-badge i {
    position: absolute;
    top: 5px; right: 4px;
    font-size: 12px;
    color: #fff;
    z-index: 1;
}
/* Tipo contrato */
.fticon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--tt-muted);
    background: var(--tt-bg);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    width: fit-content;
}
.fticon i { color: var(--tt-green); }

/* Título */
.jobint h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4;
}
.jobint h4 a {
    color: var(--tt-dark) !important;
    text-decoration: none !important;
}
.jobint:hover h4 a { color: var(--tt-green) !important; }

/* Salario */
.jobint .salary { font-size: 12px; color: var(--tt-muted); }
.jobint .salary strong { color: var(--tt-green); font-weight: 600; }

/* Ubicación */
.jobint > strong {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--tt-muted) !important;
    display: flex;
    align-items: center;
    gap: 4px;
}
.jobint > strong i { color: var(--tt-green); font-size: 11px; }

/* Empresa footer */
.jobcompany {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--tt-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.ftjobcomp {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ftjobcomp span { font-size: 11px; color: var(--tt-muted); }
.ftjobcomp a {
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-dark) !important;
    text-decoration: none !important;
}
.ftjobcomp a:hover { color: var(--tt-green) !important; }
.company-logo img,
.company-logo .companylogoimg {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--tt-border);
}

/* Destacadas badge */
.listpgWraper .badge.bg-warning {
    background: var(--tt-orange) !important;
    color: #fff !important;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Paginación */
.pagiWrap { border-top: 1px solid var(--tt-border); padding-top: 24px; }
.showreslt { font-size: 13px; color: var(--tt-muted); }
.pagination { gap: 4px; justify-content: flex-end; }
.page-item .page-link {
    border-radius: 8px !important;
    border: 1.5px solid var(--tt-border) !important;
    color: var(--tt-text) !important;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}
.page-item.active .page-link {
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
}
.page-item .page-link:hover { border-color: var(--tt-green) !important; color: var(--tt-green) !important; }

/* Sin resultados */
.nodatabox {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px dashed var(--tt-border);
}
.nodatabox h4 { color: var(--tt-muted); font-size: 16px; }

/* Responsive ofertas */
@media (max-width: 991px) {
    .filterjobsnav { display: flex; }
    .close-filterjobs { display: block; }
    .sidebar { position: fixed; top: 0; left: -100%; width: 300px; height: 100vh; overflow-y: auto; z-index: 1050; border-radius: 0; transition: left .3s; border: none; box-shadow: 4px 0 20px rgba(0,0,0,.15); }
    .sidebar.open { left: 0; }
    .listpgWraper { padding: 24px 0 40px; }
}
@media (max-width: 575px) {
    .featuredlist > li { margin-bottom: 12px; }
    .jobint { padding: 14px; }
}

/* ============================================================
   FIX FINAL — Página ofertas / filtros profesionales
   Evita que checkbox, texto y contador se monten.
   Evita que "Ver más" corte opciones a medias.
   ============================================================ */

.listpgWraper .sidebar .optionlist,
.listpgWraper #filterjobs .optionlist {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.listpgWraper .sidebar .optionlist li,
.listpgWraper #filterjobs .optionlist li {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    min-height: 26px !important;
    line-height: 20px !important;
    padding: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    position: relative !important;
    color: var(--tt-text) !important;
    font-size: 14px !important;
}

.listpgWraper .sidebar .optionlist li input[type="checkbox"],
.listpgWraper .sidebar .optionlist li input[type="radio"],
.listpgWraper #filterjobs .optionlist li input[type="checkbox"],
.listpgWraper #filterjobs .optionlist li input[type="radio"] {
    grid-column: 1 !important;
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    flex: 0 0 16px !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    accent-color: var(--tt-green) !important;
    box-shadow: none !important;
}

.listpgWraper .sidebar .optionlist li label,
.listpgWraper .sidebar .optionlist li a,
.listpgWraper #filterjobs .optionlist li label,
.listpgWraper #filterjobs .optionlist li a {
    grid-column: 2 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 20px !important;
    color: var(--tt-text) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Por si el texto viene como nodo suelto, evitamos que el input herede ancho de form-control */
.listpgWraper .sidebar .optionlist li .form-control,
.listpgWraper #filterjobs .optionlist li .form-control {
    width: 16px !important;
    height: 16px !important;
}

.listpgWraper .sidebar .optionlist li span,
.listpgWraper #filterjobs .optionlist li span {
    grid-column: 3 !important;
    position: static !important;
    justify-self: end !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 7px !important;
    border-radius: 999px !important;
    background: var(--tt-bg) !important;
    color: var(--tt-muted) !important;
    font-size: 12px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* En modo cerrado se muestran solo 3 opciones completas, nunca una opción cortada */
.listpgWraper .sidebar .view_more_ul.hide_vm_ul,
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin-bottom: 8px !important;
}

.listpgWraper .sidebar .view_more_ul.hide_vm_ul::after,
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul::after {
    display: none !important;
}

.listpgWraper .sidebar .view_more_ul.hide_vm_ul li:nth-child(n+4),
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul li:nth-child(n+4) {
    display: none !important;
}

.listpgWraper .sidebar .view_more,
.listpgWraper .sidebar .view_less,
.listpgWraper #filterjobs .view_more,
.listpgWraper #filterjobs .view_less {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    margin-top: 8px !important;
    color: var(--tt-green) !important;
    font-size: 13px !important;
    line-height: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.listpgWraper .sidebar .view_more:hover,
.listpgWraper .sidebar .view_less:hover,
.listpgWraper #filterjobs .view_more:hover,
.listpgWraper #filterjobs .view_less:hover {
    color: var(--tt-green-dark) !important;
    text-decoration: underline !important;
}

.listpgWraper .sidebar .widget,
.listpgWraper #filterjobs .widget {
    overflow: visible !important;
}

/* ============================================================
   FIX V5 — Ofertas: checkbox doble + badge destacado
   - El Blade imprime <input> + <label vacío>; el label vacío estaba
     generando una segunda caja visual.
   - Dejamos solo el input nativo y ocultamos el label vacío.
   - Ajustamos el triángulo naranja para que no se vea cortado.
   ============================================================ */

.listpgWraper .sidebar .optionlist li,
.listpgWraper #filterjobs .optionlist li {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    min-height: 28px !important;
    line-height: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
}

.listpgWraper .sidebar .optionlist li input[type="checkbox"],
.listpgWraper .sidebar .optionlist li input[type="radio"],
.listpgWraper #filterjobs .optionlist li input[type="checkbox"],
.listpgWraper #filterjobs .optionlist li input[type="radio"] {
    grid-column: 1 !important;
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    accent-color: var(--tt-green) !important;
    border: 1px solid #C9D2C8 !important;
    box-shadow: none !important;
    flex: 0 0 16px !important;
}

/* El label del sidebar está vacío. Si se muestra, parece un segundo checkbox. */
.listpgWraper .sidebar .optionlist li > label,
.listpgWraper #filterjobs .optionlist li > label {
    display: none !important;
}

.listpgWraper .sidebar .optionlist li span,
.listpgWraper #filterjobs .optionlist li span {
    grid-column: 3 !important;
    position: static !important;
    justify-self: end !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 7px !important;
    border-radius: 999px !important;
    background: var(--tt-bg) !important;
    color: var(--tt-muted) !important;
    font-size: 12px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* Cerrado: solo 3 opciones completas. No se corta ninguna por la mitad. */
.listpgWraper .sidebar .view_more_ul.hide_vm_ul,
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}
.listpgWraper .sidebar .view_more_ul.hide_vm_ul::after,
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul::after {
    display: none !important;
}
.listpgWraper .sidebar .view_more_ul.hide_vm_ul li:nth-child(n+4),
.listpgWraper #filterjobs .view_more_ul.hide_vm_ul li:nth-child(n+4) {
    display: none !important;
}

/* Badge naranja destacado: cubre bien la esquina, sin verse cortado raro. */
.listpgWraper .jobint {
    overflow: hidden !important;
}
.listpgWraper .promotepof-badge {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 68px !important;
    height: 68px !important;
    border-radius: 0 12px 0 0 !important;
    overflow: visible !important;
    pointer-events: none !important;
    z-index: 2 !important;
}
.listpgWraper .promotepof-badge::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 0 68px 68px 0 !important;
    border-color: transparent var(--tt-orange) transparent transparent !important;
    border-radius: 0 12px 0 0 !important;
}
.listpgWraper .promotepof-badge i {
    position: absolute !important;
    top: 9px !important;
    right: 7px !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1 !important;
    z-index: 3 !important;
}

/* Ocultar barra de navegación inferior móvil del tema */
.mobilenav { display: none !important; }

/* ============================================================
   JOB DETAIL PAGE
   ============================================================ */
.jobPagetitle { padding: 32px 0 24px; border-bottom: 1px solid var(--tt-border); margin-bottom: 28px; }
.jobPagetitle h2 { font-size: 26px; font-weight: 700; color: var(--tt-dark); margin-bottom: 6px; }
.jobPagetitle .ptext { font-size: 13px; color: var(--tt-muted); margin-bottom: 8px; }
.jobPagetitle .salary { font-size: 15px; color: var(--tt-text); }
.jobPagetitle .salary strong { color: var(--tt-green); font-weight: 700; }

/* Botón Aplica ya */
.applybox .btn.apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tt-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 12px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all .2s;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.3);
}
.applybox .btn.apply:hover { background: var(--tt-green-dark) !important; transform: translateY(-1px); }
.applybox .btn.apply.applied {
    background: var(--tt-bg) !important;
    color: var(--tt-green) !important;
    box-shadow: none;
    border: 1.5px solid var(--tt-green) !important;
}
.applybox .btn.apply.applied:hover { transform: none; }
.jbexpire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tt-bg);
    color: var(--tt-muted);
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
}

/* Detalle de oferta grid */
.job-header { background: #fff; border-radius: 12px; border: 1px solid var(--tt-border); padding: 24px; margin-bottom: 20px; }
.job-header h3 { font-size: 16px; font-weight: 700; color: var(--tt-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.job-header h3 i, .job-header h3 .material-symbols-outlined { color: var(--tt-green); font-size: 18px; }
.jbdetail { list-style: none; padding: 0; margin: 0; }
.jbdetail .jbitlist { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--tt-border); }
.jbdetail li:last-child .jbitlist { border-bottom: none; }
.jbdetail .material-symbols-outlined { color: var(--tt-green); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.jbdetail .jbitdata strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--tt-muted); font-weight: 600; margin-bottom: 2px; }
.jbdetail .jbitdata span { font-size: 14px; font-weight: 600; color: var(--tt-dark); }

/* Botones de acción */
.jobButtons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.jobButtons .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff !important;
    color: var(--tt-text) !important;
    border: 1.5px solid var(--tt-border) !important;
    border-radius: 8px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all .2s;
}
.jobButtons .btn:hover { border-color: var(--tt-green) !important; color: var(--tt-green) !important; }
.jobButtons .btn.report:hover { border-color: #ef4444 !important; color: #ef4444 !important; }

/* Empresa info */
.companyinfo { background: #fff; border-radius: 12px; border: 1px solid var(--tt-border); padding: 24px; margin-bottom: 20px; }
.companyinfo h3 { font-size: 16px; font-weight: 700; color: var(--tt-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.companyinfo h3 i { color: var(--tt-green); }
.companyinfo .companylogo img,
.companyinfo .companylogo .companylogoimg { width: 72px; height: 72px; object-fit: contain; border-radius: 12px; border: 1px solid var(--tt-border); float: left; margin-right: 14px; }
.companyinfo .title { font-size: 18px; font-weight: 700; }
.companyinfo .title a { color: var(--tt-dark) !important; text-decoration: none !important; }
.companyinfo .title a:hover { color: var(--tt-green) !important; }
.companyinfo .ptext { font-size: 13px; color: var(--tt-muted); }
.companyinfo .opening a { font-size: 13px; color: var(--tt-green); font-weight: 600; text-decoration: none; }
.companyinfo .companyoverview p { font-size: 14px; color: var(--tt-text); line-height: 1.6; }
.companyinfo .companyoverview a { color: var(--tt-green); font-weight: 600; }

/* Mapa */
.gmap iframe { width: 100%; height: 240px; border-radius: 10px; border: none; display: block; }

/* Skills */
.skillslist { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.skillslist li { background: var(--tt-green-light); color: var(--tt-green); border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 600; }

/* Ofertas relacionadas */
.relatedJobs { padding: 32px 0 0; border-top: 1px solid var(--tt-border); margin-top: 12px; }
.relatedJobs h3 { font-size: 20px; font-weight: 700; color: var(--tt-dark); margin-bottom: 20px !important; }


/* ============================================================
   FIX — Detail oferta: iconos, vídeo y habilidades
   ============================================================ */

/* Iconos en verde corporativo */
.jobdetail h3 i,
.contentbox h3 i,
.companyinfo h3 i,
.jobdetail .jbitlist > span,
.jbitlist .material-symbols-outlined,
.job-header h3 i,
.relatedJobs h3 i {
    color: #24C022 !important;
}

/* Iconos Material Symbols */
.jbitlist .material-symbols-outlined {
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

/* Títulos de bloques */
.job-header h3,
.companyinfo h3,
.contentbox h3,
.jobdetail h3 {
    color: #253423 !important;
    font-weight: 700 !important;
}

/* Vídeo: no se sale del contenedor */
.job-header .ratio,
.contentbox .ratio {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #000 !important;
}
.job-header iframe,
.contentbox iframe {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
}

/* Vídeos verticales: centrados y sin romper caja */
.contentbox .ratio iframe {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
}

/* Si el iframe viene vertical tipo Vimeo/TikTok */
.contentbox .ratio.ratio-16x9 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 360px !important;
}
.contentbox .ratio.ratio-16x9 iframe {
    max-height: 520px !important;
    object-fit: contain !important;
}

/* Clase extra para vídeos de oferta */
.job-video-frame,
.job-header .ratio.ratio-16x9 {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 360px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #000 !important;
}
.job-video-frame iframe,
.job-header .ratio.ratio-16x9 iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 360px !important;
    max-height: 520px !important;
    border: 0 !important;
    border-radius: 14px !important;
    display: block !important;
}

/* Habilidades requeridas */
.skillslist {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* li: solo contenedor, sin borde ni fondo */
.skillslist li {
    display: inline-flex !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* El elemento visual: a o span dentro del li */
.skillslist li a,
.skillslist li span,
.skillslist a,
.skillslist span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ECF9E9 !important;
    color: #24C022 !important;
    border: 1px solid rgba(64,196,43,.18) !important;
    border-radius: 999px !important;
    padding: 9px 16px !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background .15s, color .15s, border-color .15s !important;
}

/* Hover: verde sólido, nunca azul */
.skillslist li a:hover,
.skillslist li span:hover,
.skillslist a:hover,
.skillslist span:hover {
    background: #24C022 !important;
    color: #ffffff !important;
    border-color: #24C022 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(64,196,43,.25) !important;
}

/* Botones de la ficha */
.jobButtons .btn {
    border-radius: 12px !important;
    font-weight: 600 !important;
}
.jobButtons .btn i {
    color: inherit !important;
}

/* Botón reportar con rojo suave */
.jobButtons .btn.report {
    color: #C62828 !important;
    border-color: rgba(198,40,40,.22) !important;
}
.jobButtons .btn.report:hover {
    background: #C62828 !important;
    color: #fff !important;
    border-color: #C62828 !important;
}


/* ============================================================
   LISTADO DE EMPRESAS — company/listing
   ============================================================ */

/* ── Sidebar filtro ── */
.compnysidebarserch {
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid var(--tt-border) !important;
    padding: 24px !important;
    position: sticky;
    top: 20px;
}
.compnysidebarserch h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--tt-dark) !important;
    margin-bottom: 20px !important;
}
.compnysidebarserch label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--tt-muted) !important;
    margin-bottom: 6px !important;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.compnysidebarserch .form-control {
    border: 1px solid var(--tt-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: var(--tt-text) !important;
    box-shadow: none !important;
}
.compnysidebarserch .form-control:focus {
    border-color: var(--tt-green) !important;
    box-shadow: none !important;
}

/* Checkboxes sector */
.compnysidebarserch .optionlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.compnysidebarserch .optionlist li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: var(--tt-text) !important;
    padding: 2px 0 !important;
    line-height: 1.4 !important;
}
.compnysidebarserch .optionlist li input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    accent-color: var(--tt-green) !important;
    margin: 2px 0 0 0 !important;
    flex-shrink: 0 !important;
}
.compnysidebarserch .optionlist li label {
    display: none !important;
}
/* texto de la opción ocupa todo el espacio disponible */
.compnysidebarserch .optionlist li {
    position: relative !important;
    padding-right: 44px !important;
}
.compnysidebarserch .optionlist li span {
    position: absolute !important;
    right: 0 !important;
    top: 2px !important;
    min-width: 36px !important;
    text-align: center !important;
    font-size: 11px !important;
    background: var(--tt-bg) !important;
    color: var(--tt-muted) !important;
    border-radius: 10px !important;
    padding: 1px 6px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}


/* Botón buscar empresa */
.comfilter .btn {
    width: 100% !important;
    background: var(--tt-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-top: 8px;
}
.comfilter .btn:hover {
    background: var(--tt-green-dark) !important;
}

/* ── Cards de empresa ── */
.compnaieslist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.compnaieslist li {
    margin-bottom: 20px !important;
}
.compnaieslist li .empint {
    background: #fff !important;
    border: 1.5px solid var(--tt-border) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    transition: all .2s !important;
    height: 100%;
}
.compnaieslist li .empint:hover {
    border-color: var(--tt-green) !important;
    box-shadow: 0 4px 20px rgba(64,196,43,.12) !important;
    transform: translateY(-2px) !important;
    background: #fff !important;
}
.compnaieslist li .empint a {
    color: var(--tt-dark) !important;
    text-decoration: none !important;
}
.compnaieslist .emptbox {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}
.compnaieslist .emptbox .comimg {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    overflow: hidden !important;
    border: 1px solid var(--tt-border) !important;
    background: #fff !important;
}
.compnaieslist .emptbox .comimg img,
.compnaieslist .emptbox .comimg .companylogoimg {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain !important;
    border-radius: 999px !important;
    border: none !important;
    background: #fff !important;
}
.compnaieslist .emptbox h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    margin-bottom: 6px !important;
    min-height: auto !important;
    line-height: 1.4 !important;
}
.compnaieslist li .empint:hover h4,
.compnaieslist .emptbox h4:hover {
    color: var(--tt-green) !important;
}
.compnaieslist .text-info-right .emloc {
    color: var(--tt-muted) !important;
    font-size: 13px !important;
    margin-top: 4px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.compnaieslist .text-info-right .emloc i {
    color: var(--tt-green) !important;
    font-size: 11px !important;
}
.compnaieslist li .indst {
    font-size: 12px !important;
    color: var(--tt-muted) !important;
    margin-bottom: 4px !important;
}
.compnaieslist .cm-info-bottom {
    margin-top: 14px !important;
    width: 100%;
}
.compnaieslist .cm-info-bottom span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: var(--tt-bg) !important;
    color: var(--tt-muted) !important;
    border-radius: 20px !important;
    padding: 6px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all .2s !important;
}
.compnaieslist li:hover .cm-info-bottom span {
    background: var(--tt-green-light) !important;
    color: var(--tt-green) !important;
}
.compnaieslist .cm-info-bottom span i {
    color: var(--tt-green) !important;
    font-size: 12px !important;
}

/* ── Paginación empresas: texto y botones alineados al centro vertical ── */
.listpgWraper .pagiWrap .row {
    align-items: center !important;
    min-height: 48px !important;
}
.listpgWraper .pagiWrap .showreslt {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    font-size: 13px !important;
    color: var(--tt-muted) !important;
}
.listpgWraper .pagiWrap .col-md-7 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}
.listpgWraper .pagiWrap .pagination {
    margin: 0 !important;
    align-items: center !important;
}


/* ============================================================
   FIXES — Paginación alineación + sidebar sector
   ============================================================ */

/* Paginación empresas — alineación final */
.listpgWraper .pagiWrap .row {
    display: flex !important;
    align-items: center !important;
}
.listpgWraper .pagiWrap .showreslt {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 42px !important;
}
.listpgWraper .pagiWrap .col-lg-7,
.listpgWraper .pagiWrap .col-md-7,
.listpgWraper .pagiWrap .text-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}
.listpgWraper .pagiWrap .pagination {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}
.listpgWraper .pagiWrap .page-link {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* fin fixes paginacion */


/* ============================================================
   FIX — Filtros empresas / sectores
   Corrige texto partido y contador separado
   ============================================================ */

.compnysidebarserch .optionlist,
.compnysidebarserch ul.optionlist,
.listpgWraper .compnysidebarserch .optionlist {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.compnysidebarserch .optionlist li,
.listpgWraper .compnysidebarserch .optionlist li {
    display: grid !important;
    grid-template-columns: 18px 1fr auto !important;
    align-items: flex-start !important;
    column-gap: 10px !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 20px !important;
    position: static !important;
}

.compnysidebarserch .optionlist li input[type="checkbox"],
.listpgWraper .compnysidebarserch .optionlist li input[type="checkbox"] {
    grid-column: 1 !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 0 !important;
    padding: 0 !important;
    display: block !important;
    accent-color: #24C022 !important;
}

/* El label está vacío — se oculta; el texto es un nodo suelto en col2 */
.compnysidebarserch .optionlist li label,
.listpgWraper .compnysidebarserch .optionlist li label {
    display: none !important;
}

/* Contador alineado a la derecha */
.compnysidebarserch .optionlist li span,
.listpgWraper .compnysidebarserch .optionlist li span {
    grid-column: 3 !important;
    position: static !important;
    justify-self: end !important;
    align-self: flex-start !important;
    min-width: 38px !important;
    height: 24px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: #F5F7F5 !important;
    color: #6B7280 !important;
    font-size: 12px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    text-align: center !important;
}


/* ============================================================
   FIX DEFINITIVO — checkbox fantasma arriba del filtro empresas
   ============================================================ */

.compnysidebarserch > input[type="checkbox"],
.compnysidebarserch form > input[type="checkbox"],
.compnysidebarserch .widget > input[type="checkbox"],
.compnysidebarserch > label:empty,
.compnysidebarserch form > label:empty,
.compnysidebarserch .widget > label:empty {
    display: none !important;
}

/* Mantener visibles solo los checks dentro de sectores */
.compnysidebarserch .optionlist li input[type="checkbox"] {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 0 !important;
}

/* Empresas: estructura correcta de sector */
.compnysidebarserch .optionlist li,
.listpgWraper .compnysidebarserch .optionlist li {
    display: grid !important;
    grid-template-columns: 18px minmax(135px, 1fr) auto !important;
    align-items: flex-start !important;
    column-gap: 10px !important;
}

/* Si el texto está en label o a, debe verse */
.compnysidebarserch .optionlist li label,
.compnysidebarserch .optionlist li a,
.listpgWraper .compnysidebarserch .optionlist li label,
.listpgWraper .compnysidebarserch .optionlist li a {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: normal !important;
}

/* Contador a la derecha */
.compnysidebarserch .optionlist li span,
.listpgWraper .compnysidebarserch .optionlist li span {
    justify-self: end !important;
    min-width: 38px !important;
    text-align: center !important;
}


/* ============================================================
   PÁGINA DE CONTACTO
   ============================================================ */

/* Contenedor principal */
.inner-page {
    padding: 60px 0 !important;
    background: #fff !important;
}
.contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Títulos ── */
.contact-wrap .titleTop {
    margin-bottom: 32px !important;
}
.contact-wrap .titleTop .subtitle {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--tt-green) !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    display: block;
}
.contact-wrap .titleTop h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

/* ── Bloques de info (dirección, email, teléfono) ── */
.contact-now {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}
.contact-now .contact {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 0 !important;
}
.contact-now .contact > span {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    flex: 0 0 48px !important;
    background: var(--tt-green-light) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: var(--tt-green) !important;
}
.contact-now .contact > span i {
    color: var(--tt-green) !important;
    font-size: 18px !important;
}
.contact-now .information {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}
.contact-now .information strong {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    color: var(--tt-muted) !important;
    display: block !important;
    margin-bottom: 4px !important;
}
.contact-now .information p {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--tt-dark) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}
.contact-now .information p a {
    color: var(--tt-green) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.contact-now .information p a:hover {
    text-decoration: underline !important;
}

/* ── Formulario ── */
.contact-form {
    background: var(--tt-bg) !important;
    border-radius: 16px !important;
    padding: 36px !important;
}
.contact-form .row {
    gap: 0;
    row-gap: 16px !important;
}
.contact-form .col-md-6,
.contact-form .col-md-12 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}
.contact-form input.form-control,
.contact-form textarea.form-control {
    background: #fff !important;
    border: 1.5px solid var(--tt-border) !important;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    color: var(--tt-text) !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    transition: border-color .2s !important;
    width: 100% !important;
}
.contact-form input.form-control:focus,
.contact-form textarea.form-control:focus {
    border-color: var(--tt-green) !important;
    box-shadow: 0 0 0 3px rgba(64,196,43,.1) !important;
    outline: none !important;
}
.contact-form textarea.form-control {
    height: 160px !important;
    resize: vertical !important;
}
.contact-form input.form-control::placeholder,
.contact-form textarea.form-control::placeholder {
    color: var(--tt-muted) !important;
    font-size: 14px !important;
}

/* reCAPTCHA */
.contact-form .col-md-12:has(.g-recaptcha) {
    margin-top: 4px;
}

/* Botón enviar */
.contact-form button.button,
.contact-form button[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--tt-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 14px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    margin-top: 8px !important;
    transition: background .2s, transform .2s !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.3) !important;
}
.contact-form button.button:hover,
.contact-form button[type="submit"]:hover {
    background: var(--tt-green-dark) !important;
    transform: translateY(-1px) !important;
}

/* ── Mapa inferior ── */
.googlemap {
    width: 100% !important;
    overflow: hidden !important;
}
.googlemap iframe {
    width: 100% !important;
    height: 380px !important;
    border: none !important;
    display: block !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form { padding: 24px !important; }
    .inner-page { padding: 40px 0 !important; }
}
@media (max-width: 575px) {
    .contact-wrap .titleTop h3 { font-size: 22px !important; }
    .contact-form { padding: 20px !important; }
    .contact-form button.button,
    .contact-form button[type="submit"] { width: 100% !important; }
}

/* Iconos fa dentro del span cuadrado de contacto */
.contact-now .contact > span .fa-home,
.contact-now .contact > span .fa-envelope,
.contact-now .contact > span .fa-phone {
    color: var(--tt-green) !important;
    font-size: 20px !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    display: inline !important;
    border-radius: 0 !important;
}


/* ============================================================
   MODAL REGISTRO — "Registrarse como"
   ============================================================ */
.mypremodal .modal-content {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.15) !important;
    padding: 8px !important;
}
.mypremodal .btn-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    opacity: .5 !important;
    z-index: 10 !important;
}
.mypremodal .btn-close:hover { opacity: 1 !important; }

.mypremodal .preuserinfo {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}
.mypremodal .preuserinfo h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    margin: 0 0 8px !important;
}

/* Botones del modal */
.tt-modal-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 200px !important;
    height: 48px !important;
    border-radius: 100px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all .2s !important;
    border: 2px solid transparent !important;
    margin: 0 !important;
}
.tt-modal-btn--green {
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.3) !important;
}
.tt-modal-btn--green:hover {
    background: var(--tt-green-dark) !important;
    border-color: var(--tt-green-dark) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}
.tt-modal-btn--orange {
    background: var(--tt-orange) !important;
    border-color: var(--tt-orange) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(254,153,32,.28) !important;
}
.tt-modal-btn--orange:hover {
    background: #E88412 !important;
    border-color: #E88412 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}


/* ============================================================
   PÁGINAS AUTH — Registro / Login
   ============================================================ */

/* Fondo de la página */
.authpages {
    padding: 60px 0 !important;
    background: var(--tt-green-light) !important;
    background: linear-gradient(135deg, #ECF9E9 0%, #F5FBF4 100%) !important;
    filter: none !important;
    min-height: calc(100vh - 90px);
}

/* Card blanca central */
.userccount.whitebg,
.userccount {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 44px 48px !important;
    box-shadow: 0 4px 32px rgba(64,196,43,.08) !important;
    border: 1px solid rgba(64,196,43,.1) !important;
}

/* Título y subtítulo */
.userccount h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    margin-bottom: 6px !important;
}
.userccount p {
    color: var(--tt-muted) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* Campos del formulario */
.formpanel .form-control,
.formpanel select.form-control {
    border: 1.5px solid var(--tt-border) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: var(--tt-text) !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color .2s !important;
    height: auto !important;
}
.formpanel .form-control:focus,
.formpanel select.form-control:focus {
    border-color: var(--tt-green) !important;
    box-shadow: 0 0 0 3px rgba(64,196,43,.1) !important;
    outline: none !important;
}
.formpanel .form-control::placeholder {
    color: var(--tt-muted) !important;
    font-size: 14px !important;
}
.formpanel .formrow {
    margin-bottom: 16px !important;
}

/* Checkboxes */
.formpanel .formrow label {
    font-size: 13px !important;
    color: var(--tt-text) !important;
    font-weight: 400 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    cursor: pointer;
}
.formpanel .formrow label input[type="checkbox"] {
    accent-color: var(--tt-green) !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    margin-top: 2px !important;
}

/* Botón principal */
.formpanel .btn[type="submit"],
.formpanel input[type="submit"].btn {
    width: 100% !important;
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.3) !important;
    transition: all .2s !important;
    margin-top: 8px !important;
}
.formpanel .btn[type="submit"]:hover,
.formpanel input[type="submit"].btn:hover {
    background: var(--tt-green-dark) !important;
    border-color: var(--tt-green-dark) !important;
    transform: translateY(-1px) !important;
}

/* "¿Ya tienes cuenta?" */
.newuser {
    margin-top: 24px !important;
    text-align: center !important;
    font-size: 14px !important;
    color: var(--tt-muted) !important;
}
.newuser a {
    color: var(--tt-green) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
.newuser a:hover {
    text-decoration: underline !important;
}

/* Texto de ayuda bajo inputs */
.formpanel small.text-muted {
    font-size: 12px !important;
    color: var(--tt-muted) !important;
}

/* Responsive */
@media (max-width: 575px) {
    .userccount.whitebg,
    .userccount { padding: 28px 20px !important; }
}

/* Modal botones en horizontal */
.tt-modal-row {
    padding: 8px 8px 16px !important;
}
.tt-modal-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 8px !important;
}
.tt-modal-btns .tt-modal-btn {
    width: 160px !important;
    flex: 1 !important;
    max-width: 180px !important;
}


/* ============================================================
   PANEL EMPRESA — Lista de paquetes contratados
   ============================================================ */
.company-packages-list {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--tt-border);
    padding: 24px;
    margin-bottom: 24px;
}
.pkg-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tt-border);
}
.pkg-list-header h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pkg-list-header h3 i { color: var(--tt-green) !important; }
.pkg-list-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pkg-list-link:hover { text-decoration: underline; color: var(--tt-green-dark); }

/* Tabla */
.pkg-table-wrap { overflow-x: auto; }
.pkg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.pkg-table thead th {
    background: var(--tt-bg);
    color: var(--tt-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--tt-border);
}
.pkg-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--tt-border);
    color: var(--tt-text);
    vertical-align: middle;
}
.pkg-table tbody tr:last-child td { border-bottom: none; }
.pkg-table tbody tr:hover td { background: var(--tt-bg); }

/* Fila activa */
.pkg-row--active td { background: rgba(64,196,43,.04) !important; }
.pkg-row--expired td { opacity: .6; }

/* Nombre paquete */
.pkg-name { font-weight: 600; color: var(--tt-dark) !important; }

/* Fecha */
.pkg-date { color: var(--tt-muted) !important; font-size: 12px; }

/* Cuota */
.pkg-quota { font-weight: 600; color: var(--tt-green); }

/* Badges */
.pkg-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.pkg-badge--active  { background: rgba(64,196,43,.12); color: var(--tt-green); }
.pkg-badge--expired { background: rgba(239,68,68,.1);  color: #ef4444; }
.pkg-badge--pending { background: rgba(254,153,32,.12); color: var(--tt-orange); }

@media (max-width: 767px) {
    .pkg-table thead { display: none; }
    .pkg-table, .pkg-table tbody, .pkg-table tr, .pkg-table td { display: block; width: 100%; }
    .pkg-table tr { margin-bottom: 12px; border: 1px solid var(--tt-border); border-radius: 8px; padding: 8px; }
    .pkg-table td { border: none; padding: 4px 8px; }
    .pkg-row--expired td { opacity: .6; }
}


/* ============================================================
   PANEL EMPRESA — Candidatos sugeridos (fila horizontal)
   ============================================================ */
.suggested-candidates-section {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--tt-border);
    padding: 24px;
}
.tt-candidates-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tt-candidate-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--tt-border);
}
.tt-candidate-row:last-child { border-bottom: none; }
.tt-candidate-row__avatar img,
.tt-candidate-row__avatar .userprofileimg {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
    border: 2px solid var(--tt-green-light) !important;
}
.tt-candidate-row__info {
    flex: 1;
    min-width: 0;
}
.tt-candidate-row__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--tt-dark);
    margin-bottom: 4px;
}
.tt-candidate-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--tt-muted);
}
.tt-candidate-row__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tt-candidate-row__meta i { color: var(--tt-green); font-size: 11px; }
.tt-candidate-row__action { flex-shrink: 0; }
.tt-candidate-btn {
    display: inline-flex;
    align-items: center;
    background: var(--tt-green) !important;
    color: #fff !important;
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s;
    white-space: nowrap;
}
.tt-candidate-btn:hover {
    background: var(--tt-green-dark) !important;
    color: #fff !important;
}

/* Botón "Ver paquetes disponibles" dentro del nodatabox — siempre verde */
.nodatabox .viewallbtn a,
.company-packages-list .nodatabox .viewallbtn a {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--tt-green) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.3) !important;
    transition: background .2s !important;
}
.nodatabox .viewallbtn a:hover {
    background: var(--tt-green-dark) !important;
}


/* ── Resumen cuota paquetes ── */
.pkg-quota-summary {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--tt-bg);
    border-radius: 10px;
    padding: 16px 24px;
    margin-bottom: 20px;
}
.pkg-quota-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.pkg-quota-divider {
    width: 1px;
    height: 40px;
    background: var(--tt-border);
    flex-shrink: 0;
}
.pkg-quota-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--tt-dark);
    line-height: 1;
}
.pkg-quota-num--used  { color: var(--tt-muted); }
.pkg-quota-num--green { color: var(--tt-green); }
.pkg-quota-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--tt-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ── Botón "Ver todos los candidatos" — una sola línea ── */
.suggested-candidates-section .tt-modal-btn {
    white-space: nowrap !important;
    width: auto !important;
    padding: 0 28px !important;
    height: 44px !important;
}

.tt-view-all-candidates {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 270px !important;
    height: 48px !important;
    padding: 0 30px !important;
    white-space: nowrap !important;
}
.tt-view-all-candidates i { margin: 0 !important; }


/* ============================================================
   PANEL EMPRESA — Stats boxes: verde/naranja marca
   ============================================================ */
.profilestat li .inbox {
    background: var(--tt-green) !important;
    box-shadow: 0 4px 14px rgba(64,196,43,.25) !important;
    border-radius: 12px !important;
}
.profilestat li:nth-child(1) .inbox {
    background: var(--tt-green) !important;
}
.profilestat li:nth-child(2) .inbox {
    background: var(--tt-orange) !important;
    box-shadow: 0 4px 14px rgba(254,153,32,.25) !important;
}
.profilestat li:nth-child(3) .inbox {
    background: var(--tt-dark) !important;
    box-shadow: 0 4px 14px rgba(37,52,35,.2) !important;
}
.profilestat li:nth-child(4) .inbox {
    background: var(--tt-green-dark) !important;
}
.profilestat li .inbox:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(64,196,43,.3) !important;
}
.profilestat li:nth-child(2) .inbox:hover {
    box-shadow: 0 8px 24px rgba(254,153,32,.3) !important;
}


/* ============================================================
   FIX — Menú lateral panel empresa / candidato
   ============================================================ */
.userccount li a,
.userccount li a i,
.usernavdash li a,
.usernavdash li a i {
    color: #6B7280 !important;
}
.userccount li.active a,
.userccount li.active a i,
.userccount li a:hover,
.userccount li a:hover i,
.usernavdash li.active a,
.usernavdash li.active a i,
.usernavdash li a:hover,
.usernavdash li a:hover i {
    color: #24C022 !important;
}
.userccount li.active,
.usernavdash li.active {
    border-left-color: #24C022 !important;
}
.userccount li.active a,
.usernavdash li.active a {
    background: #ECF9E9 !important;
}


/* ============================================================
   FIX — Detalle de empresa: items de igual altura
   ============================================================ */
.companyinfo .jbdetail.row,
.job-header .jbdetail.row {
    --item-min-h: 90px;
}

/* Cada celda de la rejilla ocupa altura uniforme */
.companyinfo .jbdetail.row > li,
.job-header .jbdetail.row > li {
    display: flex !important;
    margin-bottom: 8px !important;
}

/* La tarjeta interna se estira para rellenar la celda */
.companyinfo .jbdetail.row .jbitlist,
.job-header .jbdetail.row .jbitlist {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 14px 10px 14px 0 !important;
    border-bottom: 1px solid var(--tt-border) !important;
    width: 100% !important;
    min-height: var(--item-min-h) !important;
}

/* Icono arriba, siempre en la misma posición */
.companyinfo .jbdetail.row .jbitlist > .material-symbols-outlined,
.job-header .jbdetail.row .jbitlist > .material-symbols-outlined {
    font-size: 28px !important;
    color: var(--tt-green) !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

/* Texto debajo del icono */
.companyinfo .jbdetail.row .jbitdata,
.job-header .jbdetail.row .jbitdata {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}
.companyinfo .jbdetail.row .jbitdata strong,
.job-header .jbdetail.row .jbitdata strong {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    color: var(--tt-muted) !important;
    font-weight: 700 !important;
}
.companyinfo .jbdetail.row .jbitdata span,
.job-header .jbdetail.row .jbitdata span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--tt-dark) !important;
    line-height: 1.4 !important;
}


/* ============================================================
   PUBLICAR OFERTA — mejoras de diseño
   ============================================================ */

/* Header de campo con label + botón IA en la misma línea */
.pj-field-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
}
.pj-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--tt-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Botón IA — píldora verde */
.pj-ai-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: var(--tt-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 100px !important;
    height: 38px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(64,196,43,.25) !important;
    transition: background .2s, transform .2s !important;
    flex-shrink: 0 !important;
}
.pj-ai-btn:hover {
    background: var(--tt-green-dark) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}
.pj-ai-btn i { font-size: 12px !important; }

/* Panel del asistente IA — colores de marca */
#ai-assistant-panel {
    border-color: var(--tt-green) !important;
    border-radius: 12px !important;
}
#ai-assistant-panel .card-header {
    background: var(--tt-green) !important;
    border-radius: 12px 12px 0 0 !important;
}
#ai-assistant-panel .btn-primary {
    background: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
}
#ai-assistant-panel .btn-outline-primary {
    color: var(--tt-green) !important;
    border-color: var(--tt-green) !important;
}
#ai-assistant-panel .btn-outline-primary:hover {
    background: var(--tt-green) !important;
    color: #fff !important;
}
#ai-assistant-panel .alert-info {
    background: var(--tt-green-light) !important;
    border-color: rgba(64,196,43,.2) !important;
    color: var(--tt-dark) !important;
}

/* Secciones del formulario publicar oferta */
.userccount h5 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--tt-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    padding: 16px 0 12px !important;
    border-bottom: 1px solid var(--tt-border) !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Google Translate — selector propio persistente por cookie googtrans */
#siteheader .tt-google-translate-hidden {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#siteheader .tt-lang-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 10010;
}

#siteheader .tt-lang-selector__toggle {
    height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #fff;
    color: #253423;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 52, 35, .04);
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

#siteheader .tt-lang-selector__toggle:hover,
#siteheader .tt-lang-selector.is-open .tt-lang-selector__toggle {
    border-color: #24C022;
    color: #24C022;
    box-shadow: 0 0 0 3px rgba(64, 196, 43, .12);
}

#siteheader .tt-lang-selector__icon {
    font-size: 16px;
    line-height: 1;
}

#siteheader .tt-lang-selector__arrow {
    font-size: 12px;
    color: #7D857A;
}

#siteheader .tt-lang-selector__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 14px 30px rgba(37, 52, 35, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

#siteheader .tt-lang-selector.is-open .tt-lang-selector__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#siteheader .tt-lang-selector__menu button {
    width: 100%;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #253423;
    padding: 9px 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

#siteheader .tt-lang-selector__menu button:hover,
#siteheader .tt-lang-selector__menu button.is-active {
    background: #ECF9E9;
    color: #24C022;
}

#siteheader .goog-te-combo,
#siteheader .goog-te-gadget,
#siteheader .goog-te-gadget-simple {
    display: none !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important;
}


/* Traductor header: texto en gris del menú, sin cambiar el icono */
#siteheader .tt-lang-selector__toggle,
#siteheader button.tt-lang-selector__toggle,
#siteheader #tt_lang_toggle {
    color: #7D857A !important;
}

#siteheader .tt-lang-selector__toggle .tt-lang-selector__label,
#siteheader .tt-lang-selector__toggle #tt_lang_label,
#siteheader #tt_lang_label {
    color: #7D857A !important;
    font-weight: 600 !important;
}

#siteheader .tt-lang-selector__toggle .tt-lang-selector__arrow,
#siteheader #tt_lang_toggle .tt-lang-selector__arrow {
    color: #7D857A !important;
}

#siteheader .tt-lang-selector__toggle:hover,
#siteheader .tt-lang-selector.is-open .tt-lang-selector__toggle,
#siteheader #tt_lang_toggle:hover {
    color: #7D857A !important;
    border-color: #E5E7EB !important;
    box-shadow: 0 2px 6px rgba(37, 52, 35, .04) !important;
}

#siteheader .tt-lang-selector__toggle:hover .tt-lang-selector__label,
#siteheader .tt-lang-selector.is-open .tt-lang-selector__label,
#siteheader .tt-lang-selector__toggle:hover #tt_lang_label {
    color: #7D857A !important;
}


/* Ofertas: título del buscador superior en Figtree */
.pageSearch h3,
.pageSearch .mb-3,
.pageSearch h1,
.pageSearch h2 {
    font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 32px !important;
    line-height: 40px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    color: #253423 !important;
}

.pageSearch input,
.pageSearch button,
.pageSearch .form-control {
    font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}


/* Ofertas: recuperar icono de lupa del buscador */
.pageSearch button[type="submit"],
.pageSearch .btn,
.pageSearch .searchbtn,
.pageSearch .search-btn,
.pageSearch .btn-search {
    position: relative !important;
}

.pageSearch button[type="submit"] i,
.pageSearch .btn i,
.pageSearch .searchbtn i,
.pageSearch .search-btn i,
.pageSearch .btn-search i {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.pageSearch button[type="submit"] i:before,
.pageSearch .btn i:before,
.pageSearch .searchbtn i:before,
.pageSearch .search-btn i:before,
.pageSearch .btn-search i:before {
    content: "\f002" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Fallback: si el <i> queda vacío o no carga, pintamos la lupa con CSS */
.pageSearch button[type="submit"]:after,
.pageSearch .searchbtn:after,
.pageSearch .search-btn:after,
.pageSearch .btn-search:after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

.pageSearch button[type="submit"] i + span,
.pageSearch .searchbtn i + span,
.pageSearch .search-btn i + span,
.pageSearch .btn-search i + span {
    display: none !important;
}


/* Ofertas: título del buscador en dos líneas */
.pageSearch .tt-page-search-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-align: center !important;
}
.pageSearch .tt-page-search-title span {
    display: block !important;
}


/* ==========================================================
   Ofertas hero en verde corporativo
   ========================================================== */
.pageSearch {
    background: var(--tt-green) !important;
}
.pageSearch .tt-page-search-title,
.pageSearch .tt-page-search-title span,
.pageSearch h3,
.pageSearch h3 span {
    color: #fff !important;
}
.pageSearch .searchform .input-group {
    border: 2px solid var(--tt-green-dark) !important;
}
.pageSearch .searchform .input-group:focus-within {
    border-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,.18) !important;
}
.pageSearch .searchform .form-control {
    color: var(--tt-text) !important;
}
.pageSearch .searchform .form-control::placeholder {
    color: #6B7280 !important;
    opacity: 1 !important;
}


/* ============================================================
   FIX V6 — Radios del sidebar de ofertas + logos redondos en empresas
   ============================================================ */

.listpgWraper .sidebar .optionlist.filter-radio-list,
.listpgWraper #filterjobs .optionlist.filter-radio-list {
    gap: 8px !important;
}

.listpgWraper .sidebar .optionlist.filter-radio-list li,
.listpgWraper #filterjobs .optionlist.filter-radio-list li {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 10px !important;
    min-height: 24px !important;
    line-height: 20px !important;
}

.listpgWraper .sidebar .optionlist.filter-radio-list li > label,
.listpgWraper #filterjobs .optionlist.filter-radio-list li > label {
    display: block !important;
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--tt-text) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    cursor: pointer !important;
}

.listpgWraper .sidebar .optionlist.filter-radio-list li input[type="radio"],
.listpgWraper #filterjobs .optionlist.filter-radio-list li input[type="radio"] {
    grid-column: 1 !important;
    margin: 0 !important;
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    accent-color: var(--tt-green) !important;
}

.compnaieslist .emptbox .comimg {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    border: 1px solid var(--tt-border) !important;
    background: #fff !important;
}

.compnaieslist .emptbox .comimg img,
.compnaieslist .emptbox .comimg .companylogoimg {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain !important;
    border-radius: 999px !important;
    border: none !important;
    background: #fff !important;
}


/* ============================================================
   FIX — Cabecera interior de contacto en verde
   Solo cambia la franja superior donde aparece el título "Contacto".
   ============================================================ */
body:has(.tt-contact-social-links) .pageTitle {
    background: var(--tt-green) !important;
    padding: 64px 0 !important;
}

body:has(.tt-contact-social-links) .pageTitle .page-heading,
body:has(.tt-contact-social-links) .pageTitle h1,
body:has(.tt-contact-social-links) .pageTitle h2,
body:has(.tt-contact-social-links) .pageTitle h3,
body:has(.tt-contact-social-links) .pageTitle h4,
body:has(.tt-contact-social-links) .pageTitle h5 {
    color: #fff !important;
}


/* ============================================================
   FIX — CV y perfil de candidato con paleta tuTrabajo
   ============================================================ */

/* Descargar CV: eliminar verde oscuro fuera de paleta */
.tt-resume-preview td[bgcolor="#183A22"],
.tt-resume-preview > table > tbody > tr > td:first-child {
    background: linear-gradient(180deg,#24C022 0%,#1FB51D 100%) !important;
    color: #fff !important;
}
.tt-resume-preview td[bgcolor="#24C022"] {
    background: linear-gradient(135deg,#24C022 0%,#24C022 100%) !important;
}
.tt-resume-preview td[style*="padding-left:20px"] h2 {
    border-bottom-color: #24C022 !important;
}
.tt-resume-preview .usercvimg {
    background: #ECF9E9 !important;
}

/* Aviso de CV incompleto: botón blanco con texto negro */
.userprofilealert .editbtbn a {
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.08) !important;
}
.userprofilealert .editbtbn a i {
    color: #111 !important;
}
.userprofilealert .editbtbn a:hover {
    background: #F6FDF4 !important;
    border-color: #F6FDF4 !important;
    color: #111 !important;
}

/* Perfil candidato: quitar azul y usar paleta verde suave */
.candidate-profile-page .userMaininfo,
.candidate-profile-page .userlinkstp,
.candidate-profile-page .profileban {
    background: #ECF9E9 !important;
    border-color: rgba(64,196,43,.20) !important;
}
.candidate-profile-page .userMaininfo {
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 10px 28px rgba(37,52,35,.06) !important;
}

/* Placeholder de foto: más limpio y alineado con la marca */
.candidate-profile-page .userPic {
    border-radius: 18px !important;
    border: 1px solid rgba(64,196,43,.22) !important;
    background: #F6FDF4 !important;
    box-shadow: 0 8px 18px rgba(37,52,35,.08) !important;
}
.candidate-profile-page .userPic:has(img[src*="no-no-image"]) img,
.candidate-profile-page .userPic:has(img[src*="no-image"]) img,
.candidate-profile-page .userPic:has(img[src*="no-photo"]) img {
    opacity: 0 !important;
}
.candidate-profile-page .userPic:has(img[src*="no-no-image"])::before,
.candidate-profile-page .userPic:has(img[src*="no-image"])::before,
.candidate-profile-page .userPic:has(img[src*="no-photo"])::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    inset: 14px 14px 34px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ECF9E9;
    color: #24C022;
    font-size: 28px;
}
.candidate-profile-page .userPic:has(img[src*="no-no-image"])::after,
.candidate-profile-page .userPic:has(img[src*="no-image"])::after,
.candidate-profile-page .userPic:has(img[src*="no-photo"])::after {
    content: "Sin foto";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    text-align: center;
    color: #253423;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}


/* ============================================================
   FIX — Panel candidato: fondo de perfil en paleta tuTrabajo
   ============================================================ */
.profileban,
.profbox .profileban,
.listpgWraper .profileban,
.listpgWraper .col-lg-9 .profileban {
    background: #ECF9E9 !important;
    border: 1px solid rgba(64,196,43,.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 28px rgba(37,52,35,.06) !important;
}
.profileban .abtuser h4,
.profileban h4 {
    color: #253423 !important;
}
.profileban .userPic,
.profileban .col-lg-2 img,
.profileban .col-md-3 img {
    border-radius: 18px !important;
}
.profileban img[src*="no-no-image"],
.profileban img[src*="no-image"],
.profileban img[src*="no-photo"] {
    background: #F6FDF4 !important;
    border: 1px solid rgba(64,196,43,.22) !important;
    border-radius: 18px !important;
    padding: 12px !important;
}
.profileban .usercredit li i,
.profileban .usercredit li .fa,
.profileban .usercredit li .fas {
    color: #24C022 !important;
}


/* ============================================================
   FIX — Panel candidato: tarjeta perfil limpia sin azul
   Corrige la capa interna .abtuser que venía de main.css.
   ============================================================ */
.profileban {
    background: #ECF9E9 !important;
    border: 1px solid rgba(64,196,43,.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(37,52,35,.07) !important;
    padding: 20px !important;
}

/* Esta era la capa que seguía saliendo azul */
.profileban .abtuser,
.profileban > .abtuser {
    background: #fff !important;
    border: 1px solid rgba(64,196,43,.16) !important;
    border-radius: 16px !important;
    padding: 22px 26px !important;
    margin: 0 !important;
    box-shadow: 0 10px 24px rgba(37,52,35,.05) !important;
}

.profileban .abtuser .row {
    align-items: center !important;
}

.profileban .abtuser h4 {
    color: #253423 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

/* Datos de contacto dentro de la tarjeta */
.profileban .abtuser .userdata,
.profileban .abtuser .userdata li {
    color: #506070 !important;
}

.profileban .abtuser .userdata li i,
.profileban .abtuser .userdata li .fa,
.profileban .abtuser .userdata li .fas {
    color: #24C022 !important;
}

/* Foto/placeholder del perfil: más limpio y proporcionado */
.profileban .abtuser img {
    border-radius: 18px !important;
}

.profileban .abtuser img[src*="no-no-image"],
.profileban .abtuser img[src*="no-image"],
.profileban .abtuser img[src*="no-photo"] {
    width: 96px !important;
    height: 96px !important;
    object-fit: contain !important;
    background: #F6FDF4 !important;
    border: 1px solid rgba(64,196,43,.24) !important;
    border-radius: 18px !important;
    padding: 14px !important;
    box-shadow: none !important;
}

/* Evita que reglas anteriores del fix generen doble icono encima del placeholder */
.candidate-profile-page .userPic:has(img[src*="no-no-image"])::before,
.candidate-profile-page .userPic:has(img[src*="no-image"])::before,
.candidate-profile-page .userPic:has(img[src*="no-photo"])::before,
.candidate-profile-page .userPic:has(img[src*="no-no-image"])::after,
.candidate-profile-page .userPic:has(img[src*="no-image"])::after,
.candidate-profile-page .userPic:has(img[src*="no-photo"])::after {
    content: none !important;
    display: none !important;
}


/* ============================================================
   FIX — Botón Completar CV blanco
   ============================================================ */
.userprofilealert .editbtbn a,
.userprofilealert .editbtbn .btn,
.userprofilealert a[href*="build-resume"],
.userprofilealert a[href*="resume"],
.userprofilealert a[href*="cv"],
.cv-incomplete-alert .btn,
.cv-incomplete-alert a,
.profile-incomplete-alert .btn,
.profile-incomplete-alert a,
a.btn-complete-cv,
button.btn-complete-cv {
    background: #fff !important;
    background-color: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.08) !important;
}

.userprofilealert .editbtbn a i,
.userprofilealert .editbtbn .btn i,
.userprofilealert a[href*="build-resume"] i,
.userprofilealert a[href*="resume"] i,
.userprofilealert a[href*="cv"] i,
.cv-incomplete-alert .btn i,
.cv-incomplete-alert a i,
.profile-incomplete-alert .btn i,
.profile-incomplete-alert a i,
a.btn-complete-cv i,
button.btn-complete-cv i {
    color: #111 !important;
}

.userprofilealert .editbtbn a:hover,
.userprofilealert .editbtbn .btn:hover,
.userprofilealert a[href*="build-resume"]:hover,
.userprofilealert a[href*="resume"]:hover,
.userprofilealert a[href*="cv"]:hover,
.cv-incomplete-alert .btn:hover,
.cv-incomplete-alert a:hover,
.profile-incomplete-alert .btn:hover,
.profile-incomplete-alert a:hover,
a.btn-complete-cv:hover,
button.btn-complete-cv:hover {
    background: #F6FDF4 !important;
    background-color: #F6FDF4 !important;
    border-color: #F6FDF4 !important;
    color: #111 !important;
}


/* ============================================================
   FIX — Detalle de empresa sin azules, paleta tuTrabajo
   ============================================================ */
.company-detail-page .job-header {
    border-color: rgba(64,196,43,.16) !important;
    box-shadow: 0 8px 24px rgba(37,52,35,.04) !important;
}

/* Iconos superiores: fecha, ubicación y datos */
.company-detail-page .loctext i,
.company-detail-page .contentbox li i,
.company-detail-page .candidateinfo i,
.company-detail-page .fa-history,
.company-detail-page .fa-map-marker,
.company-detail-page .fa-phone,
.company-detail-page .fa-globe,
.company-detail-page .fa-user,
.company-detail-page .fa-check,
.company-detail-page .fas.fa-check,
.company-detail-page .text-primary,
.company-detail-page .text-info {
    color: #24C022 !important;
}

/* Enlaces dentro de la ficha */
.company-detail-page a:not(.btn) {
    color: #24C022 !important;
}
.company-detail-page a:not(.btn):hover {
    color: #14A313 !important;
}

/* Franja de acciones: quitar degradado azulado */
.company-detail-page .jobButtons {
    background: linear-gradient(90deg,#F6FDF4 0%,#ECF9E9 100%) !important;
    border-radius: 0 0 12px 12px !important;
    border-top: 1px solid rgba(64,196,43,.12) !important;
    padding: 18px 24px !important;
    margin: 0 -24px -24px !important;
}

/* Botones de acción coherentes */
.company-detail-page .jobButtons .btn {
    background: #fff !important;
    color: #253423 !important;
    border-color: rgba(64,196,43,.20) !important;
    box-shadow: 0 8px 18px rgba(37,52,35,.05) !important;
}
.company-detail-page .jobButtons .btn i {
    color: #24C022 !important;
}
.company-detail-page .jobButtons .btn:hover {
    color: #24C022 !important;
    border-color: #24C022 !important;
}
.company-detail-page .jobButtons .btn.report,
.company-detail-page .jobButtons .btn.report i {
    color: #D94B68 !important;
}
.company-detail-page .jobButtons .btn.report {
    border-color: rgba(217,75,104,.24) !important;
}
.company-detail-page .jobButtons .btn.report:hover {
    color: #D94B68 !important;
    border-color: #D94B68 !important;
}

/* Logo y caja superior */
.company-detail-page .candidateinfo .userPic,
.company-detail-page .candidateinfo .userPic img,
.company-detail-page .companylogoimg {
    border-color: rgba(64,196,43,.22) !important;
}

/* Detalle de empresa: iconos Material Symbols */
.company-detail-page .jbdetail .material-symbols-outlined,
.company-detail-page .jobdetail .jbitlist > span,
.company-detail-page .jbitlist .material-symbols-outlined {
    color: #24C022 !important;
}

/* Separadores y tarjetas internas */
.company-detail-page .jbdetail .jbitlist {
    border-bottom-color: rgba(64,196,43,.14) !important;
}
.company-detail-page .contentbox ul li::marker {
    color: #24C022 !important;
}


/* ============================================================
   FIX — Ficha empresa: franja de botones en verde corporativo
   ============================================================ */
.company-detail-page .jobButtons {
    background: #24C022 !important;
    background-color: #24C022 !important;
    background-image: none !important;
    border-top: 1px solid rgba(255,255,255,.22) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 18px 24px !important;
    margin: 0 -24px -24px !important;
}

/* Botones blancos sobre la franja verde */
.company-detail-page .jobButtons .btn {
    background: #fff !important;
    background-color: #fff !important;
    color: #253423 !important;
    border-color: rgba(255,255,255,.85) !important;
    box-shadow: 0 8px 18px rgba(37,52,35,.12) !important;
}

.company-detail-page .jobButtons .btn i {
    color: #24C022 !important;
}

.company-detail-page .jobButtons .btn:hover {
    background: #F6FDF4 !important;
    background-color: #F6FDF4 !important;
    color: #14A313 !important;
    border-color: #F6FDF4 !important;
}

/* Reportar abuso mantiene tono rojo, pero sobre botón blanco */
.company-detail-page .jobButtons .btn.report {
    background: #fff !important;
    background-color: #fff !important;
    color: #D94B68 !important;
    border-color: rgba(255,255,255,.85) !important;
}

.company-detail-page .jobButtons .btn.report i {
    color: #D94B68 !important;
}

.company-detail-page .jobButtons .btn.report:hover {
    background: #FFF5F7 !important;
    background-color: #FFF5F7 !important;
    color: #D94B68 !important;
    border-color: #FFF5F7 !important;
}


/* ============================================================
   FIX — Ficha empresa: ocultar checks redundantes en contacto
   ============================================================ */
.company-detail-page .contentbox ul li > .fa-check,
.company-detail-page .contentbox ul li > .fas.fa-check,
.company-detail-page .contentbox ul li > i.fa-check:first-child,
.company-detail-page .contentbox ul li > i.fas.fa-check:first-child {
    display: none !important;
}


/* ============================================================
   FIX — Ficha empresa: ocultar checks generados por :before
   ============================================================ */
.company-detail-page .job-header .contentbox ul li::before,
.company-detail-page .job-header .contentbox ul li:before,
.company-detail-page .contentbox ul li::before,
.company-detail-page .contentbox ul li:before {
    content: none !important;
    display: none !important;
}

.company-detail-page .job-header .contentbox ul li,
.company-detail-page .contentbox ul li {
    padding-left: 0 !important;
}


/* ============================================================
   FIX — Header responsive: hamburguesa visible y menú desplegable
   ============================================================ */
@media (max-width: 991px) {
    html body #siteheader.header,
    html body #siteheader {
        height: 72px !important;
        min-height: 72px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1055 !important;
        background: #fff !important;
    }

    html body #siteheader > .container-fluid {
        height: 72px !important;
        min-height: 72px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    html body #siteheader .row {
        height: 72px !important;
        min-height: 72px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    html body #siteheader .col-lg-2,
    html body #siteheader .col-md-12:first-child {
        width: auto !important;
        flex: 0 0 auto !important;
        max-width: calc(100% - 58px) !important;
        overflow: visible !important;
    }

    html body #siteheader .col-lg-10,
    html body #siteheader .col-md-12:last-child {
        width: auto !important;
        flex: 0 0 auto !important;
        max-width: 56px !important;
        overflow: visible !important;
        margin-left: auto !important;
    }

    html body #siteheader .navbar {
        width: auto !important;
        min-width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        overflow: visible !important;
        position: static !important;
    }

    html body #siteheader .navbar-toggler {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        color: #24C022 !important;
        background: #fff !important;
        border: 1.5px solid rgba(36,192,34,.30) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 18px rgba(37,52,35,.08) !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 1065 !important;
    }

    html body #siteheader .navbar-toggler i,
    html body #siteheader .navbar-toggler .fa,
    html body #siteheader .navbar-toggler .fas {
        color: #24C022 !important;
        font-size: 20px !important;
        line-height: 1 !important;
    }

    html body #siteheader .navbar-collapse {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: calc(100vh - 72px) !important;
        overflow-y: auto !important;
        background: #fff !important;
        border-top: 1px solid #ECF9E9 !important;
        border-bottom: 1px solid rgba(36,192,34,.18) !important;
        box-shadow: 0 18px 40px rgba(37,52,35,.14) !important;
        padding: 16px 20px 24px !important;
        z-index: 1060 !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    html body #siteheader .navbar-collapse.show,
    html body #siteheader .navbar-collapse.tt-force-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    html body #siteheader .navbar-nav {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    html body #siteheader .navbar-nav > li {
        width: 100% !important;
    }

    html body #siteheader .navbar-nav .nav-link,
    html body #siteheader .navbar-nav a {
        width: 100% !important;
        min-height: 44px !important;
        justify-content: flex-start !important;
    }
}


/* ============================================================
   FIX — Header móvil alineado
   ============================================================ */
@media (max-width: 767px) {
    #siteheader.header,
    #siteheader {
        height: 68px !important;
        min-height: 68px !important;
        overflow: visible !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(37,52,35,.06) !important;
        position: relative !important;
        z-index: 1000 !important;
    }

    #siteheader .container,
    #siteheader .container-fluid {
        height: 68px !important;
        min-height: 68px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        display: flex !important;
        align-items: center !important;
    }

    #siteheader .row {
        width: 100% !important;
        min-height: 68px !important;
        height: 68px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    #siteheader .logo,
    #siteheader .navbar-brand {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 68px !important;
    }

    #siteheader .logo img,
    #siteheader .navbar-brand img {
        max-height: 42px !important;
        width: auto !important;
        display: block !important;
        margin: 0 !important;
    }

    #siteheader .navbar-toggler,
    #siteheader .navbar-toggle,
    #siteheader .mobile-menu-trigger,
    #siteheader .tt-mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(36,192,34,.20) !important;
        background: #fff !important;
        color: #24C022 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 6px 16px rgba(37,52,35,.08) !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        z-index: 1002 !important;
    }

    #siteheader .navbar-toggler i,
    #siteheader .navbar-toggle i,
    #siteheader .mobile-menu-trigger i,
    #siteheader .tt-mobile-menu-toggle i,
    #siteheader .navbar-toggler .fa,
    #siteheader .navbar-toggle .fa {
        color: #24C022 !important;
        font-size: 20px !important;
        line-height: 1 !important;
    }

    #siteheader .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
        background-size: 20px 20px !important;
    }
}


/* ============================================================
   FIX — Inicio: márgenes, textos y header CTA
   ============================================================ */

/* Inicio: usar ancho coherente con el hero principal */
body.home .section .container,
body.home .section .container-fluid,
body.home #como-funciona .container,
body.home .how-it-works .container,
body.home .tt-how-section .container,
body.home .featured-jobs .container,
body.home .featured-companies .container,
body.home .latest-jobs .container,
body.home .home-section .container {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Inicio: textos secundarios en gris de marca, no negro puro */
body.home p,
body.home li,
body.home label,
body.home .subtitle,
body.home .section-subtitle,
body.home .tt-muted,
body.home .tt-how-card p,
body.home .tt-how-card li,
body.home .tt-hero p,
body.home .tt-hero__subtitle,
body.home .tt-hero__note,
body.home .tt-hero small,
body.home .how-it-works p,
body.home .how-it-works li,
body.home #como-funciona p,
body.home #como-funciona li {
    color: #7D857A !important;
}

/* En el inicio mantenemos títulos principales en verde de marca */
body.home h1,
body.home .tt-hero h1,
body.home .tt-hero__title,
body.home .titleTop h3,
body.home .section-title h2,
body.home #como-funciona h2 {
    color: #24C022 !important;
}

/* Tarjetas de "Cómo funciona": texto y títulos internos */
body.home #como-funciona h3,
body.home .how-it-works h3,
body.home .tt-how-card h3,
body.home .tt-how-card h4 {
    color: #24C022 !important;
}
body.home #como-funciona h4,
body.home .how-it-works h4 {
    color: #7D857A !important;
}

/* Header: hover del botón Registrarse siempre naranja */
#siteheader .navbar-nav > li.register > a.nav-link,
#siteheader .navbar-nav > li.register > a.nav-link:visited {
    background: #ff951b !important;
    border-color: #ff951b !important;
    color: #fff !important;
}

#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link {
    background: #ff951b !important;
    border-color: #ff951b !important;
    color: #fff !important;
    transform: none !important;
}

/* Quitar línea activa/hover debajo de Registrarse y Acceder */
#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after {
    display: none !important;
    content: none !important;
}

/* Header desktop: ajustar línea vertical y exceso inferior en CTAs */
@media (min-width: 992px) {
    #siteheader .navbar {
        min-height: 72px !important;
        height: 72px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    #siteheader .navbar-collapse,
    #siteheader .navbar-nav,
    #siteheader .navbar-nav > li.nav-item {
        min-height: 72px !important;
        height: 72px !important;
        display: flex !important;
        align-items: center !important;
    }

    #siteheader .navbar-nav > li.nav-item > a.nav-link {
        height: 42px !important;
        min-height: 42px !important;
        line-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #siteheader .navbar-nav > li.register > a.nav-link,
    #siteheader .navbar-nav > li.loginbtn > a.nav-link {
        height: 42px !important;
        min-height: 42px !important;
        line-height: 42px !important;
        padding: 0 26px !important;
        border-radius: 999px !important;
    }

    #siteheader .navbar-nav > li.nav-item:not(.register):not(.loginbtn):not(.userbtn):not(.google-translate-nav) > a.nav-link::after {
        bottom: 1px !important;
    }
}


/* ============================================================
   FIX — Inicio: contenedores a 1250px
   Se aplica sin depender de body.home.
   ============================================================ */

/* Hero principal */
.tt-hero > .container,
.tt-hero .container,
.hero-section > .container,
.home-hero > .container,
.searchwrap .container,
.searchWrap .container,
.homeSearch .container,
.home-search .container {
    max-width: 1250px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Secciones principales del inicio */
#como-funciona > .container,
#como-funciona .container,
.section > .container,
.section .container,
.section-how .container,
.how-it-works .container,
.tt-how-section .container,
.featuredJobs .container,
.featured-jobs .container,
.featuredCompanies .container,
.featured-companies .container,
.latestJobs .container,
.latest-jobs .container,
.home-section .container,
.index-section .container {
    max-width: 1250px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Evitar que tarjetas internas superen el ancho del bloque */
#como-funciona .row,
.how-it-works .row,
.tt-how-section .row,
.section .row,
.featuredJobs .row,
.featured-jobs .row,
.featuredCompanies .row,
.featured-companies .row,
.latestJobs .row,
.latest-jobs .row {
    max-width: 1250px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Textos secundarios del inicio en gris de marca */
.tt-hero p,
.tt-hero li,
.tt-hero label,
.tt-hero small,
#como-funciona p,
#como-funciona li,
.how-it-works p,
.how-it-works li,
.tt-how-section p,
.tt-how-section li,
.section p,
.section li {
    color: #7D857A !important;
}

/* Hover de Registrarse siempre naranja */
#siteheader .navbar-nav > li.register > a.nav-link,
#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link {
    background: #ff951b !important;
    background-color: #ff951b !important;
    border-color: #ff951b !important;
    color: #fff !important;
}

#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   FIX FINAL — Inicio: ancho 1250px + textos secundarios #7D857A
   Selectores reales de la home tuTrabajo.
   ============================================================ */

/* Contenedores reales de la home */
.tt-hero > .container,
.tt-featured-jobs > .container,
.tt-highlight-cta > .container,
.tt-about > .container,
.tt-home-section > .container,
.tt-section > .container,
section.tt-hero > .container,
section.tt-featured-jobs > .container,
section.tt-highlight-cta > .container,
section.tt-about > .container,
section[id="como-funciona"] > .container,
section[id="como-funciona"] .container,
#como-funciona > .container,
#como-funciona .container {
    max-width: 1250px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Grid interno del hero: no superar el ancho marcado */
.tt-hero__content,
.tt-hero .tt-hero__content {
    max-width: 1250px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Textos secundarios reales: gris de marca, no negro */
.tt-hero .tt-hero__subtitle,
.tt-hero__subtitle,
.tt-hero .tt-hero__subtitle p,
.tt-hero p.tt-hero__subtitle,
.tt-about p,
.tt-about li,
.tt-highlight-cta p,
.tt-highlight-cta li,
.tt-featured-jobs p,
.tt-featured-jobs li,
.tt-home-section p,
.tt-home-section li,
.tt-section p,
.tt-section li,
#como-funciona p,
#como-funciona li,
.section-title p,
.textow p,
.cms-contnet p {
    color: #7D857A !important;
}

/* Títulos principales se mantienen verdes */
.tt-hero .tt-hero__title,
.tt-hero__title,
.tt-about h2,
.tt-about h3,
.tt-highlight-cta h2,
.tt-featured-jobs h2,
#como-funciona h2,
#como-funciona h3 {
    color: #24C022 !important;
}

/* Subtítulos o títulos internos que no deben ir negros puros */
#como-funciona h4,
.tt-about h4,
.tt-highlight-cta h4,
.tt-featured-jobs h4 {
    color: #7D857A !important;
}

/* Evitar que el gris afecte formularios/botones del hero */
.tt-hero .tt-searchbar input,
.tt-hero .tt-searchbar select,
.tt-hero .tt-searchbar button,
.tt-hero .tt-hero__actions a,
.tt-hero .tt-hero__cta-secondary a,
.tt-hero .btn {
    color: inherit;
}

/* Botón Registrarse: hover naranja siempre */
#siteheader .navbar-nav > li.register > a.nav-link,
#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link {
    background: #ff951b !important;
    background-color: #ff951b !important;
    border-color: #ff951b !important;
    color: #fff !important;
}

#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   FIX — Hover naranja corporativo #e8a245
   ============================================================ */
:root {
    --tt-orange-hover: #e8a245;
}

/* Botones naranjas generales */
a[style*="#ff951b"]:hover,
a[style*="#FF9F20"]:hover,
.btn-warning:hover,
.btn-warning:focus,
.btn-orange:hover,
.btn-orange:focus,
.tt-orange-btn:hover,
.tt-orange-btn:focus,
.tt-hero__cta-secondary a:hover,
.tt-hero .tt-hero__cta-secondary a:hover,
.tt-hero .btn-orange:hover,
.tt-hero .btn-warning:hover,
.tt-highlight-cta .btn-warning:hover,
.tt-highlight-cta .btn-orange:hover,
.postjob a:hover,
a.postjobbtn:hover,
.register-btn:hover,
#siteheader .postjob a:hover,
#siteheader a.postjobbtn:hover,
#siteheader .register-btn:hover,
#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link {
    background: #e8a245 !important;
    background-color: #e8a245 !important;
    border-color: #e8a245 !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(232,162,69,.28) !important;
    transform: translateY(-1px) !important;
}

/* Mantener el estado normal naranja, pero sin línea verde debajo */
#siteheader .navbar-nav > li.register > a.nav-link,
#siteheader .postjob a,
#siteheader a.postjobbtn,
#siteheader .register-btn {
    background: #ff951b !important;
    background-color: #ff951b !important;
    border-color: #ff951b !important;
    color: #fff !important;
}

#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after,
#siteheader .postjob a::after,
#siteheader a.postjobbtn::after,
#siteheader .register-btn::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   FIX — Inicio: CTA oferta + banda verde trayectoria
   ============================================================ */

/* Quitar subrayado permanente del enlace "Destácala..." */
.tt-highlight-cta a,
.tt-highlight-cta a:visited,
.tt-featured-jobs a,
.tt-featured-jobs a:visited,
.tt-cta-link,
.tt-cta-link:visited {
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.tt-highlight-cta a:hover,
.tt-highlight-cta a:focus,
.tt-featured-jobs a:hover,
.tt-featured-jobs a:focus,
.tt-cta-link:hover,
.tt-cta-link:focus {
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

/* Banda verde: tipografía correcta y texto blanco */
.tt-about,
.tt-about *,
.tt-trust-section,
.tt-trust-section *,
.tt-legacy-section,
.tt-legacy-section *,
.tt-green-band,
.tt-green-band * {
    font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.tt-about,
.tt-trust-section,
.tt-legacy-section,
.tt-green-band {
    background: #24C022 !important;
    color: #fff !important;
}

.tt-about h2,
.tt-about h3,
.tt-about p,
.tt-about li,
.tt-about span,
.tt-trust-section h2,
.tt-trust-section h3,
.tt-trust-section p,
.tt-trust-section li,
.tt-legacy-section h2,
.tt-legacy-section h3,
.tt-legacy-section p,
.tt-legacy-section li,
.tt-green-band h2,
.tt-green-band h3,
.tt-green-band p,
.tt-green-band li {
    color: #fff !important;
}

/* Texto descriptivo: menos ancho para evitar una palabra sola al final */
.tt-about .container,
.tt-trust-section .container,
.tt-legacy-section .container,
.tt-green-band .container {
    max-width: 980px !important;
}

.tt-about p,
.tt-trust-section p,
.tt-legacy-section p,
.tt-green-band p {
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: 1.65 !important;
}

/* Tarjetas de la banda verde: más aire */
.tt-about .row,
.tt-trust-section .row,
.tt-legacy-section .row,
.tt-green-band .row {
    gap: 24px !important;
    justify-content: center !important;
}

.tt-about .card,
.tt-about .tt-card,
.tt-about [class*="card"],
.tt-trust-section .card,
.tt-trust-section .tt-card,
.tt-trust-section [class*="card"],
.tt-legacy-section .card,
.tt-legacy-section .tt-card,
.tt-legacy-section [class*="card"],
.tt-green-band .card,
.tt-green-band .tt-card,
.tt-green-band [class*="card"] {
    padding: 32px 28px !important;
    margin: 0 !important;
    border-radius: 12px !important;
}

/* Si las cajas son columnas Bootstrap, dar más separación sin romper responsive */
.tt-about .col,
.tt-about [class*="col-"],
.tt-trust-section .col,
.tt-trust-section [class*="col-"],
.tt-legacy-section .col,
.tt-legacy-section [class*="col-"],
.tt-green-band .col,
.tt-green-band [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
}


/* ============================================================
   FIX DEFINITIVO — Hover naranja #e8a245
   ============================================================ */
:root {
    --tt-orange-hover: #e8a245 !important;
}

.tt-btn--orange:hover,
.tt-btn--orange:focus,
.tt-btn--orange:active,
a.tt-btn--orange:hover,
a.tt-btn--orange:focus,
button.tt-btn--orange:hover,
button.tt-btn--orange:focus,
.tt-hero__actions .tt-btn--orange:hover,
.tt-hero__actions .tt-btn--orange:focus,
.tt-city-tag:hover,
.tt-city-tag:focus,
.btn-warning:hover,
.btn-warning:focus,
.bg-warning:hover,
#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link,
#siteheader .navbar-nav .register .nav-link:hover,
#siteheader .navbar-nav .register a.register:hover,
#siteheader .postjob a:hover,
#siteheader a.postjobbtn:hover,
#siteheader .register-btn:hover {
    background: #e8a245 !important;
    background-color: #e8a245 !important;
    border-color: #e8a245 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(232,162,69,.28) !important;
}

.tt-btn--orange:hover *,
.tt-btn--orange:focus *,
#siteheader .navbar-nav > li.register > a.nav-link:hover *,
#siteheader .navbar-nav > li.register > a.nav-link:focus * {
    color: #fff !important;
}

#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after,
.tt-btn--orange::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   FIX — Botones buscador filtros redondos
   Ofertas + Empresas
   ============================================================ */
.searchnt .btn,
.searchnt button.btn,
.comfilter .btn,
.comfilter button.btn {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.searchnt .btn i,
.searchnt button.btn i,
.comfilter .btn i,
.comfilter button.btn i {
    line-height: 1 !important;
}


/* ============================================================
   FIX — Botones redondos + hover naranja correcto + enlaces sin subrayado
   ============================================================ */
:root {
    --tt-orange-hover: #e8a245 !important;
}

/* Botón Subir CV / filtros superiores */
.jobreqbtn .btn,
.jobreqbtn a.btn,
.listpgWraper .jobreqbtn .btn,
.sidebar .jobreqbtn .btn {
    min-height: 46px !important;
    border-radius: 999px !important;
    padding: 12px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1 !important;
}

/* Mantener también redondos los buscadores de filtros */
.searchnt .btn,
.searchnt button.btn,
.comfilter .btn,
.comfilter button.btn {
    border-radius: 999px !important;
}

/* Botones naranjas: hover en #e8a245 */
.tt-btn--orange:hover,
.tt-btn--orange:focus,
.tt-btn--orange:active,
.tt-btn--accent:hover,
.tt-btn--accent:focus,
.tt-btn--accent:active,
a.tt-btn--orange:hover,
a.tt-btn--orange:focus,
a.tt-btn--accent:hover,
a.tt-btn--accent:focus,
button.tt-btn--orange:hover,
button.tt-btn--orange:focus,
button.tt-btn--accent:hover,
button.tt-btn--accent:focus,
.tt-featured-jobs__footer .tt-btn:hover,
.tt-featured-jobs__footer .tt-btn:focus,
.tt-featured-jobs .tt-btn--accent:hover,
.tt-featured-jobs .tt-btn--accent:focus,
.tt-highlight-cta .tt-btn:hover,
.tt-highlight-cta .tt-btn:focus,
.btn-warning:hover,
.btn-warning:focus,
#siteheader .navbar-nav > li.register > a.nav-link:hover,
#siteheader .navbar-nav > li.register > a.nav-link:focus,
#siteheader .navbar-nav > li.register.active > a.nav-link,
#siteheader .navbar-nav .register .nav-link:hover,
#siteheader .navbar-nav .register a.register:hover,
#siteheader .postjob a:hover,
#siteheader a.postjobbtn:hover,
#siteheader .register-btn:hover {
    background: #e8a245 !important;
    background-color: #e8a245 !important;
    border-color: #e8a245 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(232,162,69,.28) !important;
}

/* Texto/iconos de botones naranjas en hover */
.tt-btn--orange:hover *,
.tt-btn--orange:focus *,
.tt-btn--accent:hover *,
.tt-btn--accent:focus *,
.tt-featured-jobs__footer .tt-btn:hover *,
.tt-featured-jobs__footer .tt-btn:focus *,
#siteheader .navbar-nav > li.register > a.nav-link:hover *,
#siteheader .navbar-nav > li.register > a.nav-link:focus * {
    color: #fff !important;
}

/* Quitar línea inferior/after de botones naranjas */
#siteheader .navbar-nav > li.register > a.nav-link::after,
#siteheader .navbar-nav > li.loginbtn > a.nav-link::after,
.tt-btn--orange::after,
.tt-btn--accent::after,
.tt-featured-jobs__footer .tt-btn::after {
    display: none !important;
    content: none !important;
}

/* Enlaces naranjas tipo "Destácala..." sin subrayado fijo */
.tt-highlight-cta a,
.tt-highlight-cta a:visited,
.tt-highlight-cta .tt-link,
.tt-highlight-cta .tt-link:visited,
.tt-highlight-cta .tt-link--arrow,
.tt-highlight-cta .tt-link--arrow:visited,
.tt-featured-jobs a.tt-link,
.tt-featured-jobs a.tt-link:visited,
.tt-cta-link,
.tt-cta-link:visited {
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-underline-offset: 0 !important;
}

/* Hover del enlace: opcional, limpio */
.tt-highlight-cta a:hover,
.tt-highlight-cta a:focus,
.tt-highlight-cta .tt-link:hover,
.tt-highlight-cta .tt-link:focus,
.tt-highlight-cta .tt-link--arrow:hover,
.tt-highlight-cta .tt-link--arrow:focus,
.tt-featured-jobs a.tt-link:hover,
.tt-featured-jobs a.tt-link:focus,
.tt-cta-link:hover,
.tt-cta-link:focus {
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    color: #e8a245 !important;
}


/* ============================================================
   FIX — Buscador ofertas: evitar doble icono de lupa
   En algunas vistas el botón ya trae un <i> y además un pseudo-elemento.
   Dejamos solo una lupa visible y centrada.
   ============================================================ */

.tt-hero-search button::before,
.tt-hero-search button::after,
.tt-search button::before,
.tt-search button::after,
.tt-search-form button::before,
.tt-search-form button::after,
.job-search button::before,
.job-search button::after,
.searchbar button::before,
.searchbar button::after,
.search-bar button::before,
.search-bar button::after,
.searchwrap button::before,
.searchwrap button::after,
.searchWrap button::before,
.searchWrap button::after,
.homeSearch button::before,
.homeSearch button::after,
.home-search button::before,
.home-search button::after,
.listpgWraper .search button::before,
.listpgWraper .search button::after,
.listpgWraper form button[type="submit"]::before,
.listpgWraper form button[type="submit"]::after {
    display: none !important;
    content: none !important;
}

.tt-hero-search button,
.tt-search button,
.tt-search-form button,
.job-search button,
.searchbar button,
.search-bar button,
.searchwrap button,
.searchWrap button,
.homeSearch button,
.home-search button,
.listpgWraper .search button,
.listpgWraper form button[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tt-hero-search button i,
.tt-search button i,
.tt-search-form button i,
.job-search button i,
.searchbar button i,
.search-bar button i,
.searchwrap button i,
.searchWrap button i,
.homeSearch button i,
.home-search button i,
.listpgWraper .search button i,
.listpgWraper form button[type="submit"] i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1 !important;
}


/* ============================================================
   FIX REAL — Buscador ofertas: dejar solo una lupa
   La vista .pageSearch genera:
   - <i class="fas fa-search"></i>
   - button::before
   - button::after
   - i::before de FontAwesome
   Ocultamos los pseudo-elementos y dibujamos una sola lupa con el <i>.
   ============================================================ */

.pageSearch .searchform .input-group button[type="submit"]::before,
.pageSearch .searchform .input-group button[type="submit"]::after,
.pageSearch .searchbtn::before,
.pageSearch .searchbtn::after,
.pageSearch .search-btn::before,
.pageSearch .search-btn::after,
.pageSearch .btn::before,
.pageSearch .btn::after,
.pageSearch button[type="submit"]::before,
.pageSearch button[type="submit"]::after,
.pageSearch button[type="submit"] i::before,
.pageSearch button[type="submit"] i::after {
    display: none !important;
    content: none !important;
}

.pageSearch .searchform .input-group button[type="submit"],
.pageSearch button[type="submit"],
.pageSearch .searchbtn,
.pageSearch .search-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.pageSearch .searchform .input-group button[type="submit"] i,
.pageSearch button[type="submit"] i,
.pageSearch .searchbtn i,
.pageSearch .search-btn i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* Una única lupa, controlada por CSS, para evitar duplicados de FontAwesome */
.pageSearch .searchform .input-group button[type="submit"] i::after,
.pageSearch button[type="submit"] i::after,
.pageSearch .searchbtn i::after,
.pageSearch .search-btn i::after {
    content: "\f002" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* Refuerzo por si otra regla posterior vuelve a pintar ::before */
.pageSearch .fa-search::before,
.pageSearch .fas.fa-search::before {
    display: none !important;
    content: none !important;
}

/* ============================================================
   FIX — Banner búsqueda empresas: texto blanco
   Solo afecta al título del banner verde superior.
   ============================================================ */
.pageSearch h3,
.pageSearch h3.mb-3,
.pageSearch .tt-page-search-title,
.pageSearch .tt-page-search-title span {
    color: #ffffff !important;
}

/* ============================================================
   FIX — Inicio / ofertas destacadas: hover limpio
   Evita subrayados globales en toda la tarjeta y que el borde/sombra
   parezca cortado al pasar el ratón.
   ============================================================ */
.tt-featured-jobs {
    overflow: visible !important;
    padding-bottom: 72px !important;
}
.tt-featured-jobs .container,
.tt-featured-jobs .tt-jobs-grid {
    overflow: visible !important;
}
.tt-featured-jobs .tt-jobs-grid {
    padding: 6px 4px 10px !important;
}
.tt-featured-jobs .tt-job-card,
.tt-featured-jobs .tt-job-card:hover,
.tt-featured-jobs .tt-job-card:focus,
.tt-featured-jobs .tt-job-card:active,
.tt-featured-jobs .tt-job-card *,
.tt-featured-jobs .tt-job-card:hover *,
.tt-featured-jobs .tt-job-card:focus *,
.tt-featured-jobs .tt-job-card:active * {
    text-decoration: none !important;
}
.tt-featured-jobs .tt-job-card {
    min-height: 170px !important;
    overflow: visible !important;
    box-shadow: 0 10px 28px rgba(37, 52, 35, .05) !important;
    will-change: transform;
}
.tt-featured-jobs .tt-job-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 42px rgba(37, 52, 35, .12) !important;
}
.tt-featured-jobs .tt-job-card__title,
.tt-featured-jobs .tt-job-card__company-name,
.tt-featured-jobs .tt-job-card__type,
.tt-featured-jobs .tt-job-card__location {
    text-decoration: none !important;
    border-bottom: 0 !important;
}

/* ============================================================
   FIX — Detalle oferta: descripción visible y limpia
   Evita que el bloque de descripción herede estilos de vídeo/iframe y
   fuerza una lectura normal del texto.
   ============================================================ */
.job-description-card .contentbox {
    min-height: 0 !important;
}
.job-description-card .tt-job-description,
.job-description-card .tt-job-description *,
.job-description-card .contentbox > div:not(.ratio) {
    color: #253423 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.job-description-card .tt-job-description {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-top: 14px !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}
.job-description-card .tt-job-description p {
    color: #253423 !important;
    margin: 0 0 12px !important;
    line-height: 1.7 !important;
}
.job-description-card .tt-job-description ul,
.job-description-card .tt-job-description ol {
    margin: 12px 0 12px 22px !important;
    padding-left: 18px !important;
}
.job-description-card .tt-job-description li {
    color: #253423 !important;
    line-height: 1.7 !important;
    padding-left: 0 !important;
}
.job-description-card .tt-job-description li:before {
    display: none !important;
}
.job-description-card .tt-job-description iframe,
.job-description-card .tt-job-description video {
    max-width: 100% !important;
}

/* ============================================================
   FIX — Home empresa: buscador empresas y altura hero
   Reduce el espacio inferior excesivo solo cuando la empresa está logueada.
   ============================================================ */
.tt-hero.tt-hero--company {
    min-height: 520px !important;
    padding-top: 54px !important;
    padding-bottom: 34px !important;
}
.tt-hero.tt-hero--company .tt-hero__content {
    align-items: center !important;
}
.tt-hero.tt-hero--company .tt-hero__image,
.tt-hero.tt-hero--company .tt-hero__image img,
.tt-hero.tt-hero--company .tt-hero__img {
    max-height: 390px !important;
    object-fit: contain !important;
}
.tt-hero.tt-hero--company .tt-searchbar {
    margin-bottom: 22px !important;
}
@media (max-width: 991px) {
    .tt-hero.tt-hero--company {
        min-height: auto !important;
        padding-top: 42px !important;
        padding-bottom: 38px !important;
    }
}

/* ============================================================
   FIX — Logos de empresa en tarjetas: círculo blanco limpio
   Evita el efecto cortado cuando el logo no llena el contenedor.
   ============================================================ */
.tt-job-card__company-logo,
.jobcompany .company-logo,
.company-logo {
    background: #ffffff !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 1px rgba(229, 231, 235, .85) !important;
}

.tt-job-card__company-logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
}

.tt-job-card__company-logo img,
.tt-job-card__company-logo .companylogoimg {
    width: 34px !important;
    height: 34px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    background: #ffffff !important;
}

.jobcompany .company-logo {
    width: 64px !important;
    height: 64px !important;
}

.jobcompany .company-logo img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
}

/* ============================================================
   FIX — Perfil público empresa: detalle 2 columnas
   ============================================================ */
.company-detail-page .jobdetail .jbdetail.row > li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}
@media (max-width: 575px) {
    .company-detail-page .jobdetail .jbdetail.row > li {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   FIX — Logos de empresa siempre redondos
   El contenedor es circular y el logo queda centrado sobre fondo blanco.
   ============================================================ */
.company-detail-page .userPic,
.company-detail-page .userPic a,
.company-detail-page .userPic img,
.company-detail-page .userPic .companylogoimg,
.company-detail-page .companylogo,
.company-detail-page .companylogo a,
.company-detail-page .companylogo img,
.company-detail-page .companylogo .companylogoimg {
    border-radius: 999px !important;
}

.company-detail-page .userPic {
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    background: #ffffff !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 12px 30px rgba(37, 52, 35, .10) !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.company-detail-page .userPic a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.company-detail-page .userPic img,
.company-detail-page .userPic .companylogoimg {
    width: 78px !important;
    height: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
    object-fit: contain !important;
    display: block !important;
    background: #ffffff !important;
    border-radius: 0 !important;
}

/* Logos de empresa en listados/tarjetas: mantener círculo exterior */
.jobcompany .company-logo,
.tt-job-card__company-logo,
.company-logo {
    border-radius: 999px !important;
}

.jobcompany .company-logo img,
.tt-job-card__company-logo img {
    object-fit: contain !important;
    background: #ffffff !important;
}



/* ============================================================
   FIX — Inicio / destacadas: borde completo visible
   Mantiene el borde verde corporativo completo al hacer hover,
   evitando que parezca cortado por overflow o por el movimiento.
   ============================================================ */
.tt-featured-jobs,
.tt-featured-jobs > .container,
.tt-featured-jobs .tt-jobs-grid {
    overflow: visible !important;
}

.tt-featured-jobs .tt-jobs-grid {
    padding: 10px 8px 18px !important;
}

.tt-featured-jobs .tt-job-card {
    border: 1.5px solid var(--tt-border, #E5E7EB) !important;
    outline: 0 solid transparent !important;
    background-clip: padding-box !important;
}

.tt-featured-jobs .tt-job-card:hover,
.tt-featured-jobs .tt-job-card:focus {
    border-color: #24C022 !important;
    outline: 1px solid #24C022 !important;
    outline-offset: -1px !important;
    box-shadow: 0 18px 42px rgba(37, 52, 35, .12) !important;
}

/* ============================================================
   FIX FINAL — Inicio / ofertas destacadas: borde verde permanente
   El borde anterior solo se apreciaba bien en hover o podía quedar tapado
   por estilos globales. Se fuerza en todas las tarjetas de esta sección.
   ============================================================ */
.tt-featured-jobs .tt-jobs-grid {
    overflow: visible !important;
    align-items: stretch !important;
}

.tt-featured-jobs .tt-job-card,
.tt-featured-jobs .tt-job-card:link,
.tt-featured-jobs .tt-job-card:visited {
    border: 1.5px solid #24C022 !important;
    border-color: #24C022 !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 0 1px #24C022, 0 10px 28px rgba(37, 52, 35, .05) !important;
}

.tt-featured-jobs .tt-job-card:hover,
.tt-featured-jobs .tt-job-card:focus,
.tt-featured-jobs .tt-job-card:active {
    border-color: #24C022 !important;
    box-shadow: inset 0 0 0 1px #24C022, 0 18px 42px rgba(37, 52, 35, .12) !important;
    transform: translateY(-4px) !important;
}


/* ============================================================
   FIX FINAL RESPONSIVE HOME — aire lateral + buscador sin cola blanca
   ============================================================ */
@media (max-width: 991.98px) {
    body.home .tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home section.tt-hero > .container,
    body.home section.tt-featured-jobs > .container,
    body.home section.tt-highlight-cta > .container,
    body.home section.tt-about > .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container,
    .tt-hero > .container,
    .tt-featured-jobs > .container,
    .tt-highlight-cta > .container,
    .tt-about > .container,
    .tt-home-section > .container,
    .tt-section > .container,
    section.tt-hero > .container,
    section.tt-featured-jobs > .container,
    section.tt-highlight-cta > .container,
    section.tt-about > .container,
    #como-funciona > .container,
    #como-funciona .container {
        padding-left: 50px !important;
        padding-right: 50px !important;
        max-width: 100% !important;
    }

    body.home .tt-hero__content,
    .tt-hero .tt-hero__content,
    .tt-hero__content {
        max-width: 100% !important;
    }

    body.home .tt-hero .tt-searchbar,
    body.home .tt-searchbar,
    .tt-hero .tt-searchbar,
    .tt-searchbar {
        width: 464px !important;
        max-width: calc(100vw - 100px) !important;
        flex: 0 0 auto !important;
    }

    body.home .tt-hero .tt-searchbar__form,
    body.home .tt-searchbar__form,
    .tt-hero .tt-searchbar__form,
    .tt-searchbar__form {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.home .tt-hero .tt-searchbar__input-group,
    body.home .tt-searchbar__input-group,
    .tt-hero .tt-searchbar__input-group,
    .tt-searchbar__input-group {
        width: 100% !important;
        max-width: 100% !important;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
        border-radius: 999px !important;
    }

    body.home .tt-hero .tt-searchbar__field,
    body.home .tt-searchbar__field,
    .tt-hero .tt-searchbar__field,
    .tt-searchbar__field {
        flex: 1 1 49% !important;
        width: auto !important;
        min-width: 0 !important;
    }

    body.home .tt-hero .tt-searchbar__select-wrap,
    body.home .tt-searchbar__select-wrap,
    .tt-hero .tt-searchbar__select-wrap,
    .tt-searchbar__select-wrap {
        flex: 1 1 38% !important;
        width: auto !important;
        min-width: 0 !important;
    }

    body.home .tt-hero .tt-searchbar__input-group .tt-btn,
    body.home .tt-searchbar__input-group .tt-btn,
    .tt-hero .tt-searchbar__input-group .tt-btn,
    .tt-searchbar__input-group .tt-btn {
        width: 46px !important;
        flex: 0 0 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: auto !important;
        align-self: stretch !important;
        border-radius: 0 999px 999px 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-indent: -999px !important;
        position: relative !important;
    }

    body.home .tt-hero .tt-searchbar__input-group .tt-btn i,
    body.home .tt-searchbar__input-group .tt-btn i,
    .tt-hero .tt-searchbar__input-group .tt-btn i,
    .tt-searchbar__input-group .tt-btn i {
        text-indent: 0 !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }
}

@media (max-width: 479.98px) {
    body.home .tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container,
    .tt-hero > .container,
    .tt-featured-jobs > .container,
    .tt-highlight-cta > .container,
    .tt-about > .container,
    .tt-home-section > .container,
    .tt-section > .container,
    #como-funciona > .container,
    #como-funciona .container {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    body.home .tt-hero .tt-searchbar,
    body.home .tt-searchbar,
    .tt-hero .tt-searchbar,
    .tt-searchbar {
        max-width: calc(100vw - 56px) !important;
    }
}

/* ============================================================
   FIX — Home responsive: aire lateral en secciones + bloques centrados
   Ajuste final para tablet/móvil sin tocar estructura HTML.
   ============================================================ */
@media (max-width: 991.98px) {
    body.home .tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-howitworks > .container,
    body.home .tt-categories > .container,
    body.home .tt-cities > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home section[id="como-funciona"] > .container,
    body.home section[id="como-funciona"] .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container,
    .tt-hero > .container,
    .tt-featured-jobs > .container,
    .tt-highlight-cta > .container,
    .tt-about > .container,
    .tt-howitworks > .container,
    .tt-categories > .container,
    .tt-cities > .container,
    .tt-home-section > .container,
    .tt-section > .container,
    section[id="como-funciona"] > .container,
    section[id="como-funciona"] .container,
    #como-funciona > .container,
    #como-funciona .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Más separación vertical entre bloques de la home en responsive */
    body.home .tt-featured-jobs,
    body.home .tt-highlight-cta,
    body.home .tt-about,
    body.home .tt-sponsored-companies,
    body.home .tt-howitworks,
    body.home .tt-categories,
    body.home .tt-cities {
        padding-top: 78px !important;
        padding-bottom: 78px !important;
    }

    /* La sección verde mantiene fondo completo, pero el contenido respira dentro */
    body.home .tt-categories__grid,
    .tt-categories__grid {
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 18px !important;
    }

    body.home .tt-cities__tags,
    .tt-cities__tags {
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 12px 14px !important;
    }

    body.home .tt-cities__search,
    .tt-cities__search {
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* “Más de 20 años...” / pilares: más aire y al centro */
    body.home .tt-about__lead,
    .tt-about__lead {
        max-width: 720px !important;
        margin-bottom: 42px !important;
    }

    body.home .tt-about__pillars,
    .tt-about__pillars {
        max-width: 560px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 18px !important;
    }

    /* Cómo funciona: cuadros menos anchos y centrados */
    body.home .tt-howitworks__grid,
    .tt-howitworks__grid,
    body.home #como-funciona .tt-howitworks__grid,
    #como-funciona .tt-howitworks__grid {
        grid-template-columns: 1fr !important;
        max-width: 620px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 30px !important;
    }

    body.home .tt-howitworks__col,
    .tt-howitworks__col,
    body.home #como-funciona .tt-howitworks__col,
    #como-funciona .tt-howitworks__col {
        max-width: 620px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 30px 34px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 575.98px) {
    body.home .tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-howitworks > .container,
    body.home .tt-categories > .container,
    body.home .tt-cities > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home section[id="como-funciona"] > .container,
    body.home section[id="como-funciona"] .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container,
    .tt-hero > .container,
    .tt-featured-jobs > .container,
    .tt-highlight-cta > .container,
    .tt-about > .container,
    .tt-howitworks > .container,
    .tt-categories > .container,
    .tt-cities > .container,
    .tt-home-section > .container,
    .tt-section > .container,
    section[id="como-funciona"] > .container,
    section[id="como-funciona"] .container,
    #como-funciona > .container,
    #como-funciona .container {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    body.home .tt-featured-jobs,
    body.home .tt-highlight-cta,
    body.home .tt-about,
    body.home .tt-sponsored-companies,
    body.home .tt-howitworks,
    body.home .tt-categories,
    body.home .tt-cities {
        padding-top: 62px !important;
        padding-bottom: 62px !important;
    }

    body.home .tt-categories__grid,
    .tt-categories__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    body.home .tt-howitworks__grid,
    .tt-howitworks__grid,
    body.home #como-funciona .tt-howitworks__grid,
    #como-funciona .tt-howitworks__grid {
        max-width: 100% !important;
        gap: 24px !important;
    }

    body.home .tt-howitworks__col,
    .tt-howitworks__col,
    body.home #como-funciona .tt-howitworks__col,
    #como-funciona .tt-howitworks__col {
        padding: 26px 22px !important;
    }
}

/* ============================================================
   FIX FINAL — Home móvil: alineación, aire y títulos más contenidos
   Ajuste solo responsive. No cambia escritorio ni estructura HTML.
   ============================================================ */
@media (max-width: 575.98px) {
    body.home .tt-hero > .container,
    body.home section.tt-hero > .container,
    .tt-hero > .container,
    section.tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-howitworks > .container,
    body.home .tt-categories > .container,
    body.home .tt-cities > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    body.home .tt-hero,
    .tt-hero {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    body.home .tt-hero__content,
    .tt-hero .tt-hero__content,
    .tt-hero__content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: start !important;
        align-items: start !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.home .tt-hero__text,
    .tt-hero .tt-hero__text,
    .tt-hero__text {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    body.home .tt-hero__title,
    .tt-hero .tt-hero__title,
    .tt-hero__title {
        font-size: 30px !important;
        line-height: 34px !important;
        letter-spacing: .02em !important;
        margin-bottom: 18px !important;
        max-width: 320px !important;
    }

    body.home .tt-hero__subtitle,
    .tt-hero .tt-hero__subtitle,
    .tt-hero__subtitle {
        font-size: 17px !important;
        line-height: 25px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin-bottom: 28px !important;
    }

    body.home .tt-section-title,
    body.home .tt-section-title--center,
    body.home .tt-featured-jobs h2,
    body.home .tt-about h2,
    body.home .tt-categories h2,
    body.home .tt-cities h2,
    body.home #como-funciona h2,
    .tt-section-title,
    .tt-section-title--center,
    .tt-featured-jobs h2,
    .tt-about h2,
    .tt-categories h2,
    .tt-cities h2,
    #como-funciona h2 {
        font-size: 30px !important;
        line-height: 34px !important;
    }

    body.home .tt-searchbar,
    body.home .tt-hero .tt-searchbar,
    .tt-hero .tt-searchbar,
    .tt-searchbar {
        width: 100% !important;
        max-width: 304px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    body.home .tt-searchbar__input-group,
    body.home .tt-hero .tt-searchbar__input-group,
    .tt-hero .tt-searchbar__input-group,
    .tt-searchbar__input-group {
        width: 100% !important;
        max-width: 304px !important;
    }

    body.home .tt-hero__cta-secondary,
    .tt-hero__cta-secondary {
        max-width: 320px !important;
    }

    body.home .tt-hero__actions,
    .tt-hero__actions {
        width: 100% !important;
        max-width: 304px !important;
        align-items: flex-start !important;
    }

    body.home .tt-hero__actions .tt-btn,
    .tt-hero__actions .tt-btn {
        max-width: 304px !important;
        width: auto !important;
        min-width: 0 !important;
    }
}

@media (max-width: 379.98px) {
    body.home .tt-hero > .container,
    body.home section.tt-hero > .container,
    .tt-hero > .container,
    section.tt-hero > .container,
    body.home .tt-featured-jobs > .container,
    body.home .tt-highlight-cta > .container,
    body.home .tt-about > .container,
    body.home .tt-howitworks > .container,
    body.home .tt-categories > .container,
    body.home .tt-cities > .container,
    body.home .tt-home-section > .container,
    body.home .tt-section > .container,
    body.home #como-funciona > .container,
    body.home #como-funciona .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.home .tt-hero__title,
    .tt-hero .tt-hero__title,
    .tt-hero__title,
    body.home .tt-section-title,
    body.home .tt-featured-jobs h2,
    body.home .tt-about h2,
    body.home .tt-categories h2,
    body.home .tt-cities h2,
    body.home #como-funciona h2 {
        font-size: 29px !important;
        line-height: 33px !important;
    }
}

/* ============================================================
   FIX FINAL RESPONSIVE — buscador visible y títulos <= 30px
   Solo afecta móvil/tablet pequeño de la home.
   ============================================================ */
@media (max-width: 767.98px) {
    body.home .tt-hero .tt-searchbar__input-group .tt-btn,
    body.home .tt-searchbar__input-group .tt-btn,
    .tt-hero .tt-searchbar__input-group .tt-btn,
    .tt-searchbar__input-group .tt-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        flex: 0 0 46px !important;
        position: relative !important;
        color: #fff !important;
        text-indent: 0 !important;
        font-size: 0 !important;
        overflow: hidden !important;
    }

    body.home .tt-hero .tt-searchbar__input-group .tt-btn::before,
    body.home .tt-searchbar__input-group .tt-btn::before,
    .tt-hero .tt-searchbar__input-group .tt-btn::before,
    .tt-searchbar__input-group .tt-btn::before {
        content: '\f002' !important;
        font-family: 'Font Awesome 5 Free', 'FontAwesome' !important;
        font-weight: 900 !important;
        font-size: 15px !important;
        line-height: 1 !important;
        color: #fff !important;
        text-indent: 0 !important;
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
    }

    body.home .tt-hero .tt-searchbar__input-group .tt-btn i,
    body.home .tt-searchbar__input-group .tt-btn i,
    .tt-hero .tt-searchbar__input-group .tt-btn i,
    .tt-searchbar__input-group .tt-btn i,
    body.home .tt-hero .tt-searchbar__input-group .tt-btn svg,
    body.home .tt-searchbar__input-group .tt-btn svg,
    .tt-hero .tt-searchbar__input-group .tt-btn svg,
    .tt-searchbar__input-group .tt-btn svg {
        display: none !important;
    }

    body.home .tt-section-title,
    body.home .tt-section-title--center,
    body.home .tt-featured-jobs .tt-section-title,
    body.home .tt-highlight-cta .tt-section-title,
    body.home .tt-about .tt-section-title,
    body.home .tt-howitworks .tt-section-title,
    body.home #como-funciona .tt-section-title,
    body.home .tt-categories .tt-section-title,
    body.home .tt-cities .tt-section-title,
    body.home section h2.tt-section-title,
    body.home section h2.tt-section-title--center,
    body.home .tt-featured-jobs h2,
    body.home .tt-highlight-cta h2,
    body.home .tt-about h2,
    body.home .tt-howitworks h2,
    body.home #como-funciona h2,
    body.home .tt-categories h2,
    body.home .tt-cities h2 {
        font-size: 30px !important;
        line-height: 34px !important;
        letter-spacing: 0 !important;
    }

    body.home .tt-howitworks__col-title,
    body.home #como-funciona .tt-howitworks__col-title,
    body.home .tt-howitworks h3,
    body.home #como-funciona h3 {
        font-size: 28px !important;
        line-height: 32px !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 379.98px) {
    body.home .tt-section-title,
    body.home .tt-section-title--center,
    body.home .tt-featured-jobs h2,
    body.home .tt-highlight-cta h2,
    body.home .tt-about h2,
    body.home .tt-howitworks h2,
    body.home #como-funciona h2,
    body.home .tt-categories h2,
    body.home .tt-cities h2 {
        font-size: 29px !important;
        line-height: 33px !important;
    }

    body.home .tt-howitworks__col-title,
    body.home #como-funciona .tt-howitworks__col-title,
    body.home .tt-howitworks h3,
    body.home #como-funciona h3 {
        font-size: 27px !important;
        line-height: 31px !important;
    }
}

/* ============================================================
   FIX DEFINITIVO RESPONSIVE HOME — títulos e icono sin depender de body.home
   Motivo: en producción el <body> no siempre conserva la clase home, por eso
   las reglas anteriores con body.home no ganaban en móvil/tablet.
   ============================================================ */
@media (max-width: 767.98px) {
    html body .tt-hero .tt-hero__title,
    html body .tt-hero h1.tt-hero__title {
        font-size: 30px !important;
        line-height: 34px !important;
        letter-spacing: 0 !important;
    }

    html body .tt-section-title,
    html body .tt-section-title--center,
    html body section .tt-section-title,
    html body section .tt-section-title--center,
    html body .tt-featured-jobs .tt-section-title,
    html body .tt-highlight-cta .tt-section-title,
    html body .tt-about .tt-section-title,
    html body .tt-howitworks .tt-section-title,
    html body #como-funciona .tt-section-title,
    html body .tt-categories .tt-section-title,
    html body .tt-cities .tt-section-title,
    html body .tt-featured-jobs h2,
    html body .tt-highlight-cta h2,
    html body .tt-about h2,
    html body .tt-howitworks h2,
    html body #como-funciona h2,
    html body .tt-categories h2,
    html body .tt-cities h2 {
        font-size: 30px !important;
        line-height: 34px !important;
        letter-spacing: 0 !important;
    }

    html body .tt-howitworks__col-title,
    html body #como-funciona .tt-howitworks__col-title,
    html body .tt-howitworks h3,
    html body #como-funciona h3 {
        font-size: 28px !important;
        line-height: 32px !important;
        letter-spacing: 0 !important;
    }

    html body .tt-searchbar__input-group button,
    html body .tt-searchbar__input-group .tt-btn,
    html body .tt-hero .tt-searchbar__input-group button,
    html body .tt-hero .tt-searchbar__input-group .tt-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        flex: 0 0 46px !important;
        text-indent: 0 !important;
        font-size: 0 !important;
        color: #fff !important;
        overflow: hidden !important;
        position: relative !important;
    }

    html body .tt-searchbar__input-group button::before,
    html body .tt-searchbar__input-group .tt-btn::before,
    html body .tt-hero .tt-searchbar__input-group button::before,
    html body .tt-hero .tt-searchbar__input-group .tt-btn::before {
        content: '\f002' !important;
        font-family: 'Font Awesome 5 Free', 'FontAwesome' !important;
        font-weight: 900 !important;
        font-size: 15px !important;
        line-height: 1 !important;
        color: #fff !important;
        text-indent: 0 !important;
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: none !important;
    }

    html body .tt-searchbar__input-group button i,
    html body .tt-searchbar__input-group .tt-btn i,
    html body .tt-searchbar__input-group button svg,
    html body .tt-searchbar__input-group .tt-btn svg {
        display: none !important;
    }
}

@media (max-width: 379.98px) {
    html body .tt-hero .tt-hero__title,
    html body .tt-section-title,
    html body .tt-section-title--center,
    html body section .tt-section-title,
    html body section .tt-section-title--center,
    html body .tt-featured-jobs h2,
    html body .tt-highlight-cta h2,
    html body .tt-about h2,
    html body .tt-howitworks h2,
    html body #como-funciona h2,
    html body .tt-categories h2,
    html body .tt-cities h2 {
        font-size: 29px !important;
        line-height: 33px !important;
    }

    html body .tt-howitworks__col-title,
    html body #como-funciona .tt-howitworks__col-title,
    html body .tt-howitworks h3,
    html body #como-funciona h3 {
        font-size: 27px !important;
        line-height: 31px !important;
    }
}


/* ============================================================
   RESPONSIVE INTERIORES — empresas, ofertas y contacto
   Mantiene el aire lateral solicitado sin afectar escritorio.
   Tablet: 50px / Móvil: 25px.
   ============================================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    html body .pageSearch {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    html body .pageSearch > h3,
    html body .pageSearch > .searchform,
    html body .pageSearch > form,
    html body .pageSearch .searchform {
        max-width: 100% !important;
    }

    html body .listpgWraper > .container,
    html body .inner-page > .container,
    html body .inner-page-title > .container,
    html body .pageTitle > .container,
    html body .page-title > .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

@media (max-width: 767.98px) {
    html body .pageSearch {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    html body .pageSearch > h3,
    html body .pageSearch > .searchform,
    html body .pageSearch > form,
    html body .pageSearch .searchform {
        max-width: 100% !important;
    }

    html body .listpgWraper > .container,
    html body .inner-page > .container,
    html body .inner-page-title > .container,
    html body .pageTitle > .container,
    html body .page-title > .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    html body .listpgWraper .row,
    html body .inner-page .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    html body .listpgWraper [class*="col-"],
    html body .inner-page [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
