/* TechJob Portal - responsive.css (generated) */
@media (max-width: 768px){
  .container, .site-content, .content-area { padding-left: 12px; padding-right: 12px; }

  /* ===== Mobile-only home organization (do NOT affect desktop) ===== */

  /* Header/logo: keep compact */
  header.glass-nav .container{ padding-left:12px; padding-right:12px; height:64px; }
  header.glass-nav img{ max-height:48px !important; width:auto !important; background:transparent !important; }
  header.glass-nav a{ background:transparent !important; }

  /* Hero: mobile layout tuning (do NOT affect desktop)
     Root issue: the hero has fixed height (h-[650px]) + overflow-hidden.
     On smaller screens the second CTA gets clipped. We create a "safe zone":
     - Anchor the CTA block inside the hero (absolute)
     - Move slider controls above the CTA block
     - Ensure hero has enough height on mobile */

  /* Ensure enough height for text + 2 CTAs on mobile */
  #hero-slider{ height:100vh !important; min-height:760px !important; }

  /* Make spacing tighter on mobile */
  #hero-slider h1{ font-size:42px !important; line-height:1.05 !important; }
  #hero-slider p{ font-size:16px !important; line-height:1.5 !important; }
  #hero-slider .space-y-8 > :not([hidden]) ~ :not([hidden]){ margin-top:12px !important; }

  /* Keep overlay content positioned from the top (avoid vertical centering) */
  #hero-slider .container.mx-auto.px-6.relative.z-20{
    align-items:flex-start !important;
    padding-top:88px !important;
  }
  #hero-slider .space-y-8{ position:relative !important; padding-bottom:220px !important; }

  /* CTA block: anchor near the bottom, always visible */
  #hero-slider .space-y-8 .flex.flex-col.sm\:flex-row{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:72px !important; /* SUBIU de verdade */
    margin:0 !important;
    padding-top:0 !important;
    gap:12px !important;
  }
  #hero-slider .space-y-8 .flex.flex-col.sm\:flex-row a,
  #hero-slider .space-y-8 .flex.flex-col.sm\:flex-row button{
    width:100% !important;
    padding-top:14px !important;
    padding-bottom:14px !important;
  }

  /* Slider controls: above CTAs */
  #hero-slider > .absolute.bottom-8.right-8{ bottom:150px !important; right:12px !important; }
  #hero-slider > .absolute.bottom-8.left-1\/2{ bottom:150px !important; }

  #hero-slider .nav-btn{ padding:10px; }
  #hero-slider #prev-btn i,
  #hero-slider #next-btn i,
  #hero-slider #play-pause-btn i{ width:22px; height:22px; }

  /* Job cards: show more information and avoid hard truncation */
  .modern-row{ padding:16px !important; gap:14px !important; }
  .modern-row .job-col-main{ min-width:0; }
  .modern-row .job-col-main h3,
  .modern-row .job-col-main p{ white-space:normal !important; overflow:visible !important; text-overflow:clip !important; }
  .modern-row .job-col-main h3{ display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
  .modern-row .job-col-main p{ display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
  .modern-row .job-col-action{ align-self:flex-start; }
}



/* ==============================
   Mobile: Job cards layout (compact, organized)
   ============================== */
@media (max-width: 768px){
  /* Cards container: reduce vertical gaps slightly */
  #cards-container{ gap: 14px; }

  /* Make job cards compact and horizontal like the reference */
  #cards-container .modern-row{
    padding: 16px !important;
  }
  #cards-container .modern-row .job-row-grid{
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }

  /* Left icon/logo */
  #cards-container .modern-row .icon-box{
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
  }

  /* Main column takes the remaining space */
  #cards-container .modern-row .job-col-main{
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  /* Title / subtitle */
  #cards-container .modern-row h3{
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
  #cards-container .modern-row p.text-gray-500{
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  /* Mobile meta row */
  #cards-container .modern-row .md\:hidden.mt-2{
    margin-top: 6px !important;
    gap: 8px !important;
  }
  #cards-container .modern-row .md\:hidden.mt-2 span{
    white-space: nowrap;
  }

  /* Right action arrow aligned to the side (not below) */
  #cards-container .modern-row .job-col-action{
    margin-left: auto !important;
    align-self: center !important;
  }
  #cards-container .modern-row .job-col-action button{
    width: 44px !important;
    height: 44px !important;
  }

  /* =====================================================
     Mobile: STANDARDIZE CARD HEIGHTS (jobs + ads)
     ===================================================== */

  /* All job cards: same height */
  #cards-container .modern-row{
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
    overflow: hidden !important;
  }

  /* Ads card: match job cards height on mobile */
  #cards-container .inn9-ads-card{
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
  }

  /* Titles/subtitles: clamp to 1 line so card height is consistent */
  #cards-container .modern-row h3{
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    font-size: 17px !important;
  }
  #cards-container .modern-row p.text-gray-500{
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    font-size: 12px !important;
    opacity: 0.85;
  }

  /* Meta row: keep in a single line (no wrap) */
  #cards-container .modern-row .md\\:hidden.mt-2{
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    gap: 8px !important;
  }
  #cards-container .modern-row .md\\:hidden.mt-2 > span{
    flex: 0 0 auto;
    max-width: 50%;
  }

  /* =====================================================
     Mobile: ADMIN cards (match the reference "Garçom")
     - Put the icon/logo to the far left
     - Do not shift content with padding-left
     ===================================================== */
  #cards-container .modern-row.inn9-admin-job .job-col-main{
    padding-left: 0 !important;
  }
  #cards-container .modern-row.inn9-admin-job .icon-box{
    margin-left: 8px !important; /* avoids touching the corner fold */
  }
  /* Make the corner fold smaller on mobile so it doesn't dominate */
  #cards-container .modern-row.inn9-admin-job .inn9-admin-corner{
    width: 46px !important;
    height: 46px !important;
  }
  #cards-container .modern-row.inn9-admin-job .inn9-admin-corner-inner{
    padding: 6px 6px 0 6px !important;
  }
  #cards-container .modern-row.inn9-admin-job .inn9-admin-corner-name{
    max-width: 34px !important;
    font-size: 8px !important;
  }
}

/* ===== Mobile: aumentar altura do botão Buscar (sem alterar largura) ===== */
@media (max-width: 768px){
  #inn9-search-btn,
  .search-btn{
    min-height: 64px !important;
    height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}


/* ===========================
   Mobile UI Card (Vagas) — somente mobile
   =========================== */
@media (max-width: 768px) {
  .jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inn9-uicard {
    border-radius: 26px;
    overflow: hidden;
    background: transparent;
  }

  .inn9-uicard-shell {
    border-radius: 26px;
    background: #2a2a2a;
    padding: 16px 16px 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }

  .inn9-uicard-top {
    position: relative;
    background: #ff8800;
    border-radius: 20px;
    padding: 14px 14px 18px;
    min-height: 150px;
  }

  .inn9-uicard-corner {
    position: absolute;
    left: -14px;
    top: -14px;
    width: 56px;
    height: 56px;
    background: #1b233d;
    border-radius: 18px;
    transform: rotate(0deg);
    opacity: 0.95;
  }

  .inn9-uicard-icons {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    z-index: 2;
  }

  .inn9-uicard-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #1b233d;
    display: grid;
    place-items: center;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.06);
  }

  .inn9-uicard-logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
  }

  .inn9-uicard-ctype-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,.20);
    color: #0b0b0b;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.8px;
    border: 1px solid rgba(0,0,0,.15);
  }

  .inn9-uicard-admin {
    position: absolute;
    left: 10px;
    top: 80px;
    transform: rotate(-90deg);
    transform-origin: left top;
    color: #c1c1c1;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.95;
  }

  .inn9-uicard-head {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    text-align: center;
  }

  .inn9-uicard-company {
    color: rgba(0,0,0,.70);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .inn9-uicard-title {
    color: rgba(0,0,0,.85);
    font-weight: 900;
    font-size: 28px;
    line-height: 1.1;
  }

  .inn9-uicard-bottom {
    padding: 14px 6px 0;
  }

  .inn9-uicard-apply {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: #ff8800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0,0,0,.25);
  }

  .inn9-uicard-apply-text {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 16px;
  }

  .inn9-uicard-apply-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #40c777;
    border: 3px solid rgba(0,0,0,.50);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  }

  .inn9-uicard-dots {
    width: 16px;
    height: 16px;
    background:
      radial-gradient(circle, rgba(0,0,0,.55) 2px, transparent 3px) 0 0/8px 8px,
      radial-gradient(circle, rgba(0,0,0,.55) 2px, transparent 3px) 4px 4px/8px 8px;
    border-radius: 4px;
    opacity: .9;
  }

  .inn9-uicard-metas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 14px;
    padding: 0 6px;
  }

  .inn9-uicard-meta {
    text-align: center;
    padding: 10px 6px 6px;
    color: #ffffff;
  }

  .inn9-uicard-meta-mid {
    border-left: 1px solid rgba(255,255,255,.14);
    border-right: 1px solid rgba(255,255,255,.14);
  }

  .inn9-uicard-meta-value {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
  }

  .inn9-uicard-meta-label {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
    font-weight: 800;
  }
}

/* Mobile-only final job card (scoped) — 1:1 with "Card Vaga - Estilo Uiverse-okk.html" */
@media (max-width: 768px) {
  .inn9jb-finalcard {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 12px 0;
  }

  .inn9jb-finalcard .card {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    background: #1c1c1c;
    padding: 5px;
    overflow: hidden;
    box-shadow: rgba(255, 165, 0, 0.15) 0px 7px 20px 0px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .inn9jb-finalcard .card:hover {
    transform: scale(1.03);
  }

  .inn9jb-finalcard .card .top-section {
    height: 130px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(45deg, #FF6D00 0%, #FFA500 100%);
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

  }


  /* Hard reset to avoid global theme borders/outlines causing the “white seam” on Android */
  .inn9jb-finalcard .card .top-section,
  .inn9jb-finalcard .card .top-section *{
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
  }

  /* Re-apply only the shadows used for the notch cut */
  .inn9jb-finalcard .card .top-section .border{
    box-shadow: -10px -10px 0 0 #1c1c1c;
  }
  .inn9jb-finalcard .card .top-section .border::before{
    box-shadow: -5px -5px 0 2px #1c1c1c;
  }
  .inn9jb-finalcard .card .top-section::before{
    box-shadow: -5px -5px 0 2px #1c1c1c;
  }

  .inn9jb-finalcard .card .top-section .border {
    border-bottom-right-radius: 10px;
    height: 30px;
    width: 130px;
    background: #1c1c1c;
    position: relative;
    transform: skew(-40deg);
    -webkit-transform: skew(-40deg) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    /* Remove decorative shadow that was creating light/white seams on some mobiles */
    box-shadow: -10px -10px 0 0 #1c1c1c;
  }

  .inn9jb-finalcard .card .top-section .border::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -15px;
    /* Solid fill to avoid anti-alias seams */
    background: rgba(255,255,255,0);
    border-top-left-radius: 10px;
    box-shadow: -5px -5px 0 2px #1c1c1c;
  }

  .inn9jb-finalcard .card .top-section::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    /* Solid fill to avoid anti-alias seams */
    background: rgba(255,255,255,0);
    height: 15px;
    width: 15px;
    border-top-left-radius: 15px;
    box-shadow: -5px -5px 0 2px #1c1c1c;
  }

  .inn9jb-finalcard .card .top-section .icons {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* Top-right tiny icons (Uiverse original) */
  .inn9jb-finalcard .card .top-section .icons .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    padding: 10px 18px 16px 0;
    gap: 8px;
  }

  .inn9jb-finalcard .card .top-section .icons .social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Make share icons clickable without default button chrome */
.inn9jb-finalcard .card .top-section .icons .social-media .job-share-btn{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.inn9jb-finalcard .card .top-section .icons .social-media .job-share-btn:focus{
  outline: none;
}

.inn9jb-finalcard .card .top-section .icons .social-media .svg {
  width: 30px;
  height: 30px;
  display: block;
  opacity: 1;
}

/* Top-right actions (social icons + like button) */
.inn9jb-finalcard .card .top-section .icons .right .actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 10px; /* space between social group and heart */

  z-index: 4;
}

/* Like button (Gostei) - stays INLINE with icons */
.inn9jb-finalcard .card .top-section .icons .right .like-btn{
  z-index: 5;
  overflow: visible;
  box-sizing: border-box;

  display:flex;
  align-items:center;
  justify-content:center;
  width: 30px;
  height: 30px;
  border-radius: 999px; /* circle, not square */
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  flex: 0 0 auto;
}

.inn9jb-finalcard .card .top-section .icons .right .like-btn::after{
  content: "" !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.inn9jb-finalcard .card .top-section .icons .right .like-btn .icon{
  width: 18px;
  height: 18px;
  transition: 0.2s linear;
}

/* Default = outlined heart (black), so it is visible on orange */
.inn9jb-finalcard .card .top-section .icons .right .like-btn .icon path{
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 1.8;
  transition: 0.2s linear;
}

.inn9jb-finalcard .card .top-section .icons .right .like-btn:hover .icon{
  transform: scale(1.15);
}

.inn9jb-finalcard .card .top-section .icons .right .like-btn:hover::after{
  visibility: visible;
  opacity: 1;
  top: 105%;
}

/* Liked state = red background + white heart */
.inn9jb-finalcard .card .top-section .icons .right .like-btn.is-liked{
  background: #E53935;
}

.inn9jb-finalcard .card .top-section .icons .right .like-btn.is-liked .icon path{
  stroke: #fff;
  fill: none;
}

.inn9jb-finalcard .card .top-section .icons .logo {

    height: 100%;
    padding: 18px 0 10px 26px; /* slightly lower so it never clips */
    display: flex;
    align-items: flex-start;
  }

  .inn9jb-finalcard .card .top-section .icons .logo .logo-box {
    width: 56px;
    height: 56px;
    background: #1c1c1c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA500;
    font-weight: 700;
    font-size: 18px;
  }

  .inn9jb-finalcard .card .top-section{
  position: relative;
}

.inn9jb-finalcard .card .top-section .icons .tipo-contratacao{
  position: absolute;
  right: 16px;
  bottom: 10px; /* desce 1 linha */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px; /* justo ao texto */
  border-radius: 999px;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(255,136,0,.55);
  font-weight: 700;
  font-size: 10px; /* -1 */
  line-height: 1;
  letter-spacing: .6px;
  color: #fff;
  margin: 0;
  z-index: 3;
}


  .inn9jb-finalcard .card .top-section .icons .tipo-contratacao .badge {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

  .inn9jb-finalcard .card .top-section .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
  }

  .inn9jb-finalcard .card .top-section .content .empresa {
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 4px;
  }

  .inn9jb-finalcard .card .top-section .content .titulo {
    color: #1c1c1c;
    font-size: 18px;
    font-weight: 700;
  }

  
  /* Seam-mask: kills 1px white line on some Android GPUs (mobile-only) */
  .inn9jb-finalcard .card .top-section .icons { z-index: 2; }
  .inn9jb-finalcard .card .top-section .border { z-index: 1; }

.inn9jb-finalcard .card .bottom-section {
    margin-top: 15px;
    padding: 10px 5px;
  }

  .inn9jb-finalcard .Btn-Container {
    display: flex;
    width: 100%;
    height: 48px;
    background-color: #FF8C00;
    border-radius: 40px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    justify-content: space-between;
    align-items: center;
    border: 0.5px solid #FFA500;
    cursor: pointer;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .inn9jb-finalcard .icon-Container {
    width: 48px;
    height: 48px;
    background-color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #1d2129;
    flex-shrink: 0;
  }

  .inn9jb-finalcard .text {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .inn9jb-finalcard .icon-Container svg {
    transition-duration: 1.5s;
  }

  /* Dots color cycle (every 3s) */
  .inn9jb-finalcard .icon-Container svg circle {
    animation: inn9jb_dotcolor 9s infinite;
  }

  @keyframes inn9jb_dotcolor {
    0%, 33% { fill: #000; }
    34%, 66% { fill: #fff; }
    67%, 100% { fill: #FF8C00; }
  }
    34%, 66% { fill: #fff; }
    67%, 100% { fill: #ff8c00; }
  }

  .inn9jb-finalcard .Btn-Container:hover .icon-Container svg {
    transition-duration: 1.5s;
    animation: inn9jb_arrow 1s linear infinite;
  }

  @keyframes inn9jb_arrow {
    0% { opacity: 0; margin-left: 0px; }
    100% { opacity: 1; margin-left: 10px; }
  }

  .inn9jb-finalcard .card .bottom-section .row {
    display: flex;
    justify-content: space-between;
  }

  .inn9jb-finalcard .card .bottom-section .row .item {
    flex: 1;
    text-align: center;
    padding: 8px 5px;
    color: rgba(255, 165, 0, 0.8);
  }

  .inn9jb-finalcard .card .bottom-section .row .item .big-text {
    font-size: 13px;
    font-weight: 600;
    display: block;
    color: #fff;
  }

  .inn9jb-finalcard .card .bottom-section .row .item .regular-text {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .inn9jb-finalcard .card .bottom-section .row .item:nth-child(2) {
    border-left: 1px solid rgba(255, 165, 0, 0.2);
    border-right: 1px solid rgba(255, 165, 0, 0.2);
  }

  .inn9jb-finalcard .card .bottom-section .row .item .big-text.salario {
    color: #fff;
  }

  .inn9jb-finalcard .lateral-text {
    position: absolute;
    left: 4px;
    top: 112px;
    transform: rotate(-90deg);
    transform-origin: left top;
    color: #c1c1c1;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.5px;
    z-index: 6;
    pointer-events: none;
  }
}

/* Mobile final-card: keep top actions (3 icons + heart) always on the same line */
.inn9jb-finalcard .card .top-section .icons .social-media{
  flex-wrap: nowrap;
  gap: 8px;
}
.inn9jb-finalcard .card .top-section .icons .right .actions{
  flex-wrap: nowrap;
  white-space: nowrap;

  z-index: 4;
}
.inn9jb-finalcard .card .top-section .icons .right .like-btn{
  z-index: 5;
  overflow: visible;
  box-sizing: border-box;

  flex: 0 0 auto;
}

/* Like state: solid red background when active */
.inn9jb-finalcard .card .top-section .icons .right .like-btn.is-liked{
  background: #e53935;
}
.inn9jb-finalcard .card .top-section .icons .right .like-btn.is-liked .icon path{
  fill: #fff;
}

/* Floating modal toast for Like feedback (mobile-only) */
.inn9-like-toast{
  position: fixed;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  z-index: 999999;
  background: rgba(28,28,28,0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 14px;
  width: min(320px, calc(100% - 32px));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.inn9-like-toast .msg{
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}
.inn9-like-toast .close{
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  cursor: pointer;
}


/* inn9jb FINALCARD — show company logo image inside logo box (mobile-safe) */
@media (max-width: 768px){
  .inn9jb-finalcard .logo-box{ overflow: hidden; }
  .inn9jb-finalcard .logo-box .inn9jb-logo-img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}


/* Tipo de contratação - cores por tipo (somente texto) */
.inn9jb-finalcard .card .top-section .icons .tipo-contratacao.badge--clt { color: #2F80ED; }
.inn9jb-finalcard .card .top-section .icons .tipo-contratacao.badge--freelancer { color: #E68CD2; }
.inn9jb-finalcard .card .top-section .icons .tipo-contratacao.badge--temporario { color: rgba(255,255,255,.92); }
.inn9jb-finalcard .card .top-section .icons .tipo-contratacao.badge--pj { color: #C8A2FF; }
.inn9jb-finalcard .card .top-section .icons .tipo-contratacao.badge--estagio { color: #FF8A8A; }

/* Guest lock label inside job cards */
.inn9jb-premium-lock{
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.inn9jb-premium-lock .inn9jb-lock-icon{ line-height: 1; }
