/* Elimina marges i padding per defecte dels portlets */
.portlet-boundary,
.portlet,
.portlet-content,
.portlet-decorate .portlet-content,
.portlet-body {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.portlet-layout .portlet-header{
    margin-bottom:  0 !important;
}

/* --- BANNER VIDEO SUPERIOR --- */
.banner-video {
    width: 100%;
    height: 264px;            /* Alçada fixa */
    position: relative;
    overflow: hidden;
}

.banner-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Fa que el vídeo ompli tot el banner */
    object-position: center;
}

.banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;     /* Evita que el text interfereixi amb scroll */
}

.titol-banner {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
}

.main-div {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
}

/* Wrapper del contingut per poder gestionar marges i columnes */
.main-div .content {
    width: 100%;
}

.filtres-wrapper {
    background: #F7F7F7;
    padding: 40px 40px 40px 168px;
}

/* Estil del títol */
.main-div h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.filtres-wrapper h2 {
    margin-top: 0;     /* IMPORTANT */
}

/* Contenidor de cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* Espai entre cards */
    margin-top: 20px;
}

.card {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid #E0E0E0 !important;
}
/* Estil de cada card/dropdown */
.card select {
    padding: 10px 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    border: 1px solid #E0E0E0 !important;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    height: 52px;
    width: 284px;
}

.card select:hover {
    border: 1px solid #FAB725 !important;
}

.card select:focus {
    border: 2px solid #FAB725 !important;
    outline: none !important;
}

.poblacio-wrapper {
    position: relative;
}

.poblacio-input {
    padding: 10px 15px;
    height: 52px;
    width: 284px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    cursor: text;
}

.poblacio-input:hover {
    border-color: #FAB725;
}

.poblacio-dropdown {
    position: absolute;
    top: 56px;
    left: 0;
    width: 284px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 20;
}

.poblacio-dropdown li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 16px;
}

.poblacio-dropdown li:hover {
    background: #FFF2D6;
}

/* Contenidor de botons */
.buttons-container {
    display: flex;
    gap: 16px;
    /* Separació entre botons */
    margin-top: 20px;
}

/* Botó Cercar llocs de treball */
.btn-search {
    padding: 8px 20px;
    /* Gap/G8 i Gap/G20* */
    background-color: #FAB725;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    border-radius: 80px;
    height: 40px;
}

/* Botó Esborrar filtres */
.btn-reset {
    padding: 8px 20px;
    border: 1px solid #0C0C0C;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #0C0C0C;
    border-radius: 80px;
    background-color: #FFFFFF;
    height: 40px;
}

.btn-reset:hover{
    background-color: #E0E0E0;
}

.btn-reset:disabled,
.btn-reset.disabled {
    cursor: not-allowed;
    background-color: #E0E0E0;
    color: #4B4B4B;
    border: 1px solid #4B4B4B;
}

/* --- BOTÓ FILTRE MÒBIL --- */
.btn-filtre-mobile {
    display: none;            /* Ocult per defecte (desktop) */
    width: calc(100% - 40px); /* marges iguals que el títol a mobile */
    margin: 24px auto 0 auto;
    height: 48px;
    background-color: #FAB725;
    border: none;
    border-radius: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: black;
    cursor: pointer;
}

.btn-filtre-mobile .ico-filtre {
    width: 20px;
    height: 20px;
}

/* -Llistat-ofertes */
.llistat-ofertes {
    width: 878px;
    margin: 40px auto;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recomanada-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #2D2D2D; /* txt/paragraph-black */
    margin-bottom: 6px;
}

.llistat-ofertes p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    margin: 0;
}

.llistat .oferta h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.oferta-cards {
    display: flex;
    gap: 8px; /* separació entre cards */
}

.oferta-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #333;
    width: auto;
    max-width: max-content;
}

.oferta-ico {
    width: 18px;
    height: 18px;
}

/* Línia horitzontal sota les cards */
.oferta hr {
    margin-top: 19px;
    border: none;
    border-top: 1px solid #E0E0E0;
}

.sense-resultats-divider {
    margin-top: 100px;
    border: none;
    border-top: 1px solid #E0E0E0;
}

/* Container del botó per centrar-lo sota el llistat */
.btn-veure-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* Botó "Veure'n més" */
.btn-veure {
    width: 400px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 12px;
    border-radius: 0px;
    border: 1px solid #B8B8B8;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 80px;

    /*Estil del text */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
    color: #4B4B4B;
}

.btn-veure:hover {
    border: 1px solid #FAB725;
}

.bloc-contingut h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #000;
    margin: 0 0 8px 0;
}

.bloc-contingut p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.boto {
    width: 210px;
    height: 40px;
    background-color: #FAB725;
    border: none;
    border-radius: 60px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.card input#poblacioInput {
    padding: 10px 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: text;
    height: 52px;
    width: 284px;
}

.card input#poblacioInput:hover {
    border: 1px solid #FAB725;
}

.bloc-principal {
    background-color: #FFF8E9;
    width: 878px;
    height: auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    opacity: 1;
    box-sizing: border-box;
    margin: 64px auto 40px;
}

.boto {
    width: 210px;
    height: 40px;
    background-color: #FAB725;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
}

/* DETALL */
.ofertes-detall {
    max-width: 580px;
    margin: auto;
}

.ofertes-detall h1 {
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    vertical-align: middle;
    margin-bottom: 36px;
    color: #0C0C0C;
}

.detall-header {
    background-color: #FFF8E9;
    padding: 24px;
    border-radius: 16px;
}

.detall-div {
    display: flex;
    justify-content: space-between;
}

.oferta-id {
    font-size: 12px;
    font-weight: 400;
    color: #2D2D2D;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0 !important;
}

.detall-oferta {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    color: #2D2D2D;
}

.detall-columns {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    position: relative;
}

.detall-columns::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E0E0E0;
}

.detall-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detall-col.right{
    margin-left: 35px;
}

.detall {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.detall-header .detall {
    font-family: Roboto;
    font-size: 16px;
    line-height: 24px;
    color: #2d2d2d;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 2px;
}

.detall-header .detall img.oferta-ico {
    margin-right: 4px;
}

.detall-descripcio p, .detall-descripcio li, .detall-descripcio h3 {
    font-family: Roboto !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #2D2D2D !important;
}

.detall-descripcio li {
    margin-top: 8px;
}

.detall-descripcio h2 {
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.detall-descripcio {
    margin-top: 48px;
}

.detall-tornar {
    margin-bottom: 80px;
}

a.detall-tornar {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 36px;
}

.detall-tornar span {
    font-family: Roboto;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #2A5135;
    text-decoration: underline;
}

.detall-label {
    display: flex;
    align-items: center;
}

.detall-left h1 {
    font-family: Roboto Slab !important;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 40px;
    color: #0C0C0C;
}

/* --- BOTÓ INSCRIU-TE --- */

.detall-layout {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 56px;
}

.detall-left {
    flex: 1;
    max-width: 878px;
}

.detall-right {
    width: 260px;
}

.sticky-apply {
    position: sticky;
    top: calc(120px + 40px);
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px; /* separació sota del botó */
    top: 130px;
    z-index: 999; /* per sobre del contingut */
}

.btn-apply {
    width: 282px;
    height: 40px;
    background-color: #FAB725;
    border: none;
    border-radius: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: black;
}

.btn-apply:hover {
    background-color: #FFCA3A;
}

.btn-filtre-mobile{
    display: none;
}

.oferta-recomanda {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

/* No hi ha resultats */
.sense-resultats {
    width: 100%;
    max-width: 878px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.sense-resultats-img {
    width: 92px;
    height: 92px;
    margin: 0 auto 32px auto;
}

.sense-resultats-titol {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #000;
    margin-bottom: 16px;
}

.sense-resultats-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #222;
    max-width: 540px;
    margin: 0 auto 32px auto;
}

.sense-resultats-boto {
    background-color: #FAB725;
    border: none;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Estil del select de posició quan està disabled */
.posicio-wrapper select:disabled {
    background: #E0E0E0 !important;
    color: #4B4B4B !important;
    cursor: not-allowed;
}

/* Contenidor del select + icona */
.posicio-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    z-index: 50;
    margin-right: 18px;
}

/* Card del select perquè la icona es pugui alinear respecte a ell */
.posicio-wrapper .card {
    position: relative;
}

/* Icona info*/
.info-icon-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -32px;

    display: inline-block;
    background: transparent !important;
    padding: 0 !important;
    margin-top: -10px;
    line-height: 0 !important;
}

/* Imatge sense cap fons del navegador */
.info-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: block;
    background: transparent !important;
    margin-right: 5px !important;
}
.info-icon-wrapper .info-icon {
    content: url("/o/treballa-amb-nosaltres-web/images/ics_info_disable.svg");
}

.info-icon-wrapper:hover .info-icon {
    content: url("/o/treballa-amb-nosaltres-web/images/ics_info.svg");
}

/* Tooltip */
.info-tooltip {
    position: absolute;
    top: -10px;
    left: 28px;
    background: #2A5135;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    width: 260px;
    display: none;
    z-index: 999;
    font-weight: 400;
}

/* Triangle del tooltip */
.info-tooltip::after {
    content: "";
    position: absolute;
    top: 12px;
    left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent #2A5135 transparent transparent;
}

.info-tooltip {
    display: none;
}

.info-tooltip.visible {
    display: block;
}

/* Amagat per defecte */
.info-tooltip {
    display: none;
}

/* Es mostra quan l’usuari fa hover a sobre de l’icona */
.info-icon-wrapper:hover .info-tooltip {
    display: block;
}

/* Banner superior "Ofertes similars" */
.ofertes-similars-banner {
    width: 100%;
    max-width: 878px;
    margin: 0 auto 32px auto;
    height: 117px;
    background: #F7F7F7;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
    box-sizing: border-box;
}

/* Títol */
.ofertes-similars-titol {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8px;
    color: #0C0C0C;
}

/* Text */
.ofertes-similars-text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #2D2D2D;
}

.detall-form-wrapper iframe {
    width: 652px;
}

button.detall-tornar.btn-back-detail span {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #0C0C0C;
    text-decoration: none;
}

button.detall-tornar.btn-back-detail {
    border: 0;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.detall-layout.detall-layout-iframe {
    max-width: none;
}

.detall-layout.detall-layout-iframe .detall-form-wrapper {
    width: 100%;
}

.detall-publish-name {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #0C0C0C;
    margin-bottom: 36px;
}

.sticky-apply-mobile {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 90%;
    padding: 16px 20px;
}

.sticky-apply-mobile .btn-apply {
    pointer-events: auto;
    width: 100%;
}

.detall-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.detall-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.not-found-new-container {
    background-color: #FFF8E9;
    height: 100vh;
}

.not-found-text-title {
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    vertical-align: middle;
    color: #0C0C0C;
    margin-bottom: 24px;
}

.not-found-text-title.second{
    font-size: 32px !important;
    line-height: 38px;
}

.not-found-text-subtitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #2D2D2D;
    margin-bottom: 24px;
}

.not-found-text-code {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2D2D2D;
    margin-bottom: 42px;
}

.not-found-image img {
    width: 100%;
    max-width: 663px;
    max-height: 391px;
}

.not-found-text-button a {
    background-color: #FAB725;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    color: #0C0C0C;
    text-decoration: none;
}

.not-found-text-button a:hover {
    text-decoration: none;
    color: #1A1A1A !important;
    background-color: #FDDE9B !important;
}

@media (max-width: 992px) {
    .not-found-text {
        text-align: center;
    }

    .not-found-new-container {
        height: auto;
        padding: 60px 40px;
        text-align: center;
    }

    .not-found-image {
        order: 1 !important;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .not-found-image img {
        width: 100%;
        max-width: 564px;
        max-height: 332px;
    }

    .not-found-text {
        order: 2 !important;
        max-width: 500px;
        margin: 0 auto;
    }

    .not-found-text-title {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 18px;
    }

    .not-found-text-title.second{
        font-size: 32px !important;
        line-height: 38px;
    }

    .not-found-text-subtitle {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 18px;
    }

    .not-found-text-code {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 36px;
    }

    .not-found-text-button {
        display: flex;
        justify-content: center;
    }

    .not-found-text-button a {
        padding: 12px 32px;
        font-size: 16px;
        max-width: 280px;
    }
}
/* Adaptació per a mòbil */
@media (max-width: 768px) {

    button.detall-tornar.btn-back-detail {
        margin-bottom: 32px;
    }

    .detall-form-wrapper iframe {
        width: 100%;
    }

    .main-div {
        min-height: 250px;
    }

    /* Títol */
    .main-div h2 {
        font-size: 26px;
        line-height: 28px;
        margin-left: 20px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .bloc-principal h2 {
        margin-left: 0 !important;
    }

    /* Botó mòbil */
    .btn-filtre-mobile {
        display: flex;
        width: calc(100% - 40px);
        margin: 24px auto 0 auto;
    }

    /* Amagar filtres desktop */
    .cards-container,
    .buttons-container {
        display: none !important;
    }

    .card select,
    .poblacio-input {
        width: 100%;
    }

    /* --- LLISTAT OFERTES --- */
    .llistat-ofertes {
        width: 100%;
        margin: 32px 0;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .llistat .oferta {
        width: 100%;
        box-sizing: border-box;
    }

    .oferta-cards {
        flex-wrap: wrap;
    }

    .btn-veure-container {
        padding: 0 20px;
    }

    .btn-veure {
        width: 100%;
    }

    /* --- BLOC GROC --- */
    .bloc-principal {
        width: 90%;
        padding: 24px;
        margin-top: 40px;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .boto {
        width: 100%;
        max-width: 320px;
        color: black !important;
    }

    /* --- DETALL --- */
    .detall-header .detall {
        flex-direction: column;
        align-items: flex-start;
    }

    .detall-value {
        margin-left: 22px;
    }

    .btn-apply {
        width: 100%;
        margin-top: 24px;
    }

    .detall-descripcio {
        margin-top: 32px;
    }

    /* MODAL MOBILE */
    .mobile-filters-overlay {
        position: fixed !important;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 99999;

        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mobile-filters-panel {
        background: white;
        width: 100%;
        height: 100%;
        border-radius: 0 !important;
        padding: 32px 24px 140px 24px;
        position: relative;
        overflow: visible;

        overflow-y: auto;          /* scroll només per al contingut */
        box-sizing: border-box;
    }

    .mobile-filters-panel select {
        max-width: 100%;
        width: 100%;
        /*box-sizing: border-box;*/
    }

    /* Evita que el menú de select sobresurti */
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Android: limita amplada del popup */
    select:focus {
        max-width: 100vw;
    }

    /* HEADER */
    .mobile-filters-header {
        position: relative;
        margin-bottom: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 32px;
    }

    .mobile-filters-header h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 0;
        font-family: 'Roboto Slab', serif;
        padding-right: 40px;
        margin-top: 16px;
    }

    .mobile-filters-close {
        position: absolute;
        top: -8px;
        right: 0;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .mobile-filters-close img {
        width: 20px;
        height: 20px;
    }

    /* FILTRES */
    .mobile-filters-block .card {
        width: 100%;
        margin-bottom: 24px; /* G24 entre selects */
    }

    /* BOTONS */
    .mobile-filters-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px 24px 32px 24px;
        background: #fff;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-filters-buttons::before {
        content: "";
        width: 100%;
        height: 1px;
        background: #E5E5E5;
        position: absolute;
        top: 0;
        left: 0;
    }

    .mobile-filters-buttons .btn-reset,
    .mobile-filters-buttons .btn-search {
        width: 100%;
        height: 40px;
        border-radius: 80px;
    }

    .btn-search {
        color: #0C0C0C !important;
    }

    .mobile-filters-block select {
        color: #0C0C0C !important;
    }

    .mobile-filters-block option {
        color: #0C0C0C !important;
    }

    /* Ocultem filtres de desktop */
    .cards-container,
    .buttons-container {
        display: none !important;
    }

    .btn-filtre-mobile {
        display: flex;
        width: calc(100% - 40px);
        margin: 24px auto 0 auto;
    }

    .ofertes-similars-banner{
        border-radius: 16px;
        height: 152px !important;
    }

    .banner-video{
        height: 156px !important;
    }

    .filtres-wrapper {
        padding: 40px 10px !important;
    }

    .detall-columns {
        flex-direction: column;
    }

    .detall-col.right {
        margin-left: 0 !important;
    }

    .detall-columns {
        gap: 0 !important;
    }

    .detall-image {
        width: 100%;
        height: 192px;
        margin-top: 40px;
        border-radius: 16px;
        overflow: hidden;
    }

    .detall-columns::before{
        display: none;
    }

    .sticky-apply-mobile {
        padding: 0;
    }

    .info-tooltip.visible, .info-tooltip {
        margin-left: -277px;
        margin-top: -90px;
    }

    .not-found-new-container {
        height: auto;
        padding: 40px 24px;
        text-align: center;
    }

    .not-found-image {
        order: 1 !important;
        margin-bottom: 32px;
        display: flex;
        justify-content: center;
    }

    .not-found-image img {
        width: 100%;
        max-width: 338px;
        max-height: 199px;
    }

    .not-found-text {
        order: 2 !important;
    }

    .not-found-text-title {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 12px;
    }

    .not-found-text-title.second{
        font-size: 26px !important;
        line-height: 32px;
    }

    .not-found-text-subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .not-found-text-code {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .not-found-text-button a {
        display: inline-block;
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 16px;
    }

}