/* Public listing/single oportunidad: layout + components (no global reset/header). Theme: Growby. */
/* TEXT */
.text-large{
    font-size:1.25em;
    line-height:1.3em;
}
.text-medium{
    font-size:.87em;
    line-height:1.571em;
}

.c-grey{
    color: #7A7F94;
}

/* IMAGE */
[class*=fig-]{
    position: relative;
    overflow: hidden;
}
[class*=fig-] img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.fig-cover img{
    object-fit:cover;
}
.fig-contain img{
    object-fit:contain;
}

/* UL, OL */
.inline-list{
    display:flex;
    flex-wrap:wrap;
    gap:var(--gap);
    list-style:none;
    padding:0;
    margin:0;
}

.mb20{
    margin-bottom:20px;
}
.mb40{
    margin-bottom:40px;
}

/* ROW */
[class^=row]{
    margin-left:auto;
    margin-right:auto;
    width: var(--row-width);
    max-width: calc(100vw - 40px);
}
.row-xs{
    width: 900px;
}
.full-row{
    display: flex;
    width: calc(100vw - 40px);
    justify-content:space-between;
    align-items:center;
    margin-left:auto;
    margin-right:auto;
}

/* SECTION */
[class*=section]{
    padding-top:40px;
    padding-bottom:40px;
    position: relative;
}
.section-p-s{
    padding-top:20px;
    padding-bottom:20px;
}
.section-p-xs{
    padding-top:10px;
    padding-bottom:10px;
}
.section-1{
    background-color:var(--tu-neutral-2);
    color:var(--light-color);
}
.section-2{
    background-color:var(--tu-surface-1);
    color:var(--light-color);
}
.section-3{
    background-color:var(--tu-secondary-3);
    color:var(--dark-color);
}
.section-4{
    background-color:var(--tu-primary-3);
    color:var(--dark-color);
}
.section-5{
    background-color:var(--tu-secondary-5);
    color:var(--tu-grey-2);
}
.section-yp-l{
    padding-top:60px;
    padding-bottom:60px;
}
.section-yp-xl{
    padding-top:80px;
    padding-bottom:80px;
}
:is(.section-3, .section-4) :is(a,h1,h2,h3,h4,h5,h6){
    color:var(--dark-color);
}
.section__background, .section__background > figure{
    position: absolute;
    width:100%;
    height:100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.section__background::after{
    content:'';
    display: block;
    position: absolute;
    background-blend-mode: screen;
    width:100%;
    height:100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity:.6;
}
/*
.section-3 .section__background::after{
    background-color:var(--bg3-color);  
}*/

/* COLUMNS (no coincidir con Tailwind grid-cols-*: también llevan "cols-") */
[class*=cols-]:not([class*=grid-cols]){
    display: flex;
    gap:var(--gap);
    flex-wrap:wrap;
}
.cols-2 > *{
    width:calc(100%/2 - var(--gap)/2);
}
.cols-3 > *{
    width:calc(100%/3 - var(--gap)*2/3);
}
.cols-4 > *{
    width:calc(100%/4 - var(--gap)*3/4);
}
.cols-5 > *{
    width:calc(100%/5 - var(--gap)*4/5);
}
.cols-6 > *{
    width:calc(100%/6 - var(--gap)*5/6);
}
.cols-60-40 > *{
    width:calc(60% - var(--gap)/2);
}
.cols-60-40 > *:nth-child(even){
    width:calc(40% - var(--gap)/2);
}
.cols-70-30 > *{
    width:calc(64% - var(--gap)/2);
}
.cols-70-30 > *:nth-child(even){
    width:calc(36% - var(--gap)/2);
}
.cols-45-55 > *{
    width:calc(45% - var(--gap)/2);
}
.cols-45-55 > *:nth-child(even){
    width:calc(55% - var(--gap)/2);
}


.cols12{
    display: flex;
    flex-wrap:wrap;
    margin-left:calc(-.5 * var(--gap));
    margin-right:calc(-.5 * var(--gap));
}
[class*=cols12-]{
    margin-left:calc(var(--gap)/2);
    margin-right:calc(var(--gap)/2);
}
.cols12-12{
    width:calc(100% - var(--gap));
}
.cols12-11{
    width:calc(100%*11/12 - var(--gap));
}
.cols12-10{
    width:calc(100%*5/6 - var(--gap));
}
.cols12-9{
    width:calc(100%*9/12 - var(--gap));
}
.cols12-8{
    width:calc(100%*4/3 - var(--gap));
}
.cols12-7{
    width:calc(100%*7/12 - var(--gap));
}
.cols12-6{
    width:calc(100%/2 - var(--gap));
}
.cols12-5{
    width:calc(100%*5/12 - var(--gap));
}
.cols12-4{
    width:calc(100%/3 - var(--gap));
}
.cols12-3{
    width:calc(100%/4 - var(--gap));
}
.cols12-2{
    width:calc(100%/6 - var(--gap));
}
.cols12-1{
    width:calc(100%*1/12 - var(--gap));
}

/* TEXT ALIGN */
.ta-c{
    text-align: center;
}
.ta-r{
    text-align: right;
}
.c-pink{
    color:var(--tu-primary-3);
}
.c-blue{
    color:var(--tu-secondary-3);
}

.link-back{
    color:#0C0C0C !important;
    display: inline-flex;
    align-items:center;
    position: relative;
    padding-left:calc(1.1em + 10px);
}
.link-back::before{
    content:'';
    height:1.1em;
    width:1.1em;
    display: block;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-back.svg');
    position: absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
/* OPORTUNITY LIST */
.oplist{
    display: flex;
    flex-direction:column;
    gap:20px;
}
.oplist__item{
    /* Ancla el ::before del enlace del título (área clicable de la tarjeta); sin esto, position:absolute sube al viewport y cubre toda la página */
    position: relative;
    background: #FFFFFF;
    border: 1px solid #F6F6F5;
    box-shadow: 0px 12px 16px rgba(2, 0, 108, 0.15);
    border-radius: 8px;
    color:var(--tu-grey-2);
    padding:16px;
    display:grid;
    grid-template-columns:64px auto auto;
    font-size:.875em;
    line-height:1.4em;
    gap:20px;
    align-items:center;
}
.oplist__item a{
    color:var(--tu-grey-2);
}
.oplist__image{
    aspect-ratio: 1;
    width:64px;
    height:64px;
}
.oplist__main{
    display: flex;
    flex-direction:column;
    gap:3px;
    position:static;
}
.oplist__item .oplist__main--job a::before{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index:1;
}
.oplist__main--company{
    z-index:1;
}
.oplist__main--job{
    margin:0;
    font-size:1em;
    letter-spacing:.25px;
}
.oplist__main--country{
    display: flex;
    gap:4px;
    align-items:center;
}
.oplist__main--country .iti__flag{
    transform:scale(.7);
}
.oplist__side{
    display: flex;
    justify-content:flex-end;
}
.oplist__side ul, ul.oportunity-entry__meta, ul.company-single__meta{
    margin:0;
    padding:0;
    display:inline-flex;
    flex-direction:column;
    gap:5px;
    list-style:none;
}
.oplist__side ul li, ul.oportunity-entry__meta li, ul.company-single__meta li{
    padding-left:calc(1.1em + 10px);
    position: relative;
    display: flex;
    align-items:center;
}
.oplist__side ul li::before, ul.oportunity-entry__meta li::before, ul.company-single__meta li::before{
    content:'';
    display: flex;
    width:1.1em;
    height:1.1em;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    position: absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    filter: none !important;
}
.company-single__meta li::before{
    filter:invert() !important;
}
.company-single__social{
    display: flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    justify-content:center;
    color:var(--tu-secondary-3);
}
.company-single__social a{
    display: inline-flex;
    text-indent:-9999em;
    user-select:none;
    color:transparent;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    height:20px;
    width:20px;
}
.company-single__social a.facebook{
    background-image:url(/wp-content/plugins/opt-custom/assets/images/social-fb.svg);
}
.company-single__social a.instagram{
    background-image:url(/wp-content/plugins/opt-custom/assets/images/social-ig.svg);
}
.company-single__social a.linkedin{
    background-image:url(/wp-content/plugins/opt-custom/assets/images/social-in.svg);
}
.company-single__social a.twitter{
    background-image:url(/wp-content/plugins/opt-custom/assets/images/social-tw.svg);
}
.company-single__video-wrapper{
    margin-top:30px;
    margin-bottom:30px;
}
.companny-single__video{
    display: inline-flex;
    align-self:center;
    aspect-ratio:16/9;
    width:820px;
    max-width:100%;
}
.companny-single__video iframe{
    aspect-ratio:16/9;
    width:100%;
    height:100%;
}
.creation{
    text-transform: capitalize;
}
.oplist__side .oplist__side--modality::before, ul.oportunity-entry__meta li.modality::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-world.svg');
}
ul.oportunity-entry__meta li.contract::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-edit.svg');
}
ul.oportunity-entry__meta li.day::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-alarm.svg');
}
ul.oportunity-entry__meta li.category::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-ribbon.svg');
}
.oplist__side .oplist__side--creation::before, ul.oportunity-entry__meta li.creation::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-calendar.svg');
}
.oplist__side .oplist__side--discapacidad::before, ul.oportunity-entry__meta li.discapacidad::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/wheelchair_icon-icons.com_73334.svg');
}
.oplist__side .oplist__side--creation-fin::before, ul.oportunity-entry__meta li.creation-fin::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-calendar-fin.svg');
}

/* SHARE */
:is(.share-select, .rtabs-select){
    width:100%;
}
:is(.share-select, .rtabs-select) .choices__inner{
    padding:0;
    display: flex;
    align-items:center;
    background-color:transparent;
    border: 1px solid var(--tu-secondary-3);
    border-radius: 99px !important;
    color: var(--tu-secondary-3);
    width:100%;
    font-size:1em;
    box-sizing: border-box;
    min-height:auto;
    padding:.8em 1.5em !important;
}
.rtabs-select{
    color: #292D3F;
}
.rtabs-select .choices__inner{
    border-color: var(--tu-primary-3);
    color: var(--tu-primary-3);
    padding:.5em 1.5em !important;
}
.oportunity-entry__buttons .share-select .choices__inner{
    padding:.4em 1.2em !important;
    width:auto;
}
.oportunity-entry__buttons .share-select .choices__list--dropdown, .oportunity-entry__buttons .share-select .choices__list[aria-expanded]{
    width:250px;
}
.share-select .choices__list--single{
    padding:0 !important;
}
.share-select .choices__list--dropdown .choices__item, .share-select  .choices__list[aria-expanded] .choices__item{
    text-align:left;
}
.share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected]{
    display: flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}
.share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected]::after{
    content:'';
    height:1.1em;
    width:1.1em;
    display: block;
    background-repeat: no-repeat;
    background-size:contain;
    background-position:center;
    background-image: url(/wp-content/plugins/opt-custom/assets/images/icn-share.svg);
}
.share-select .choices__list--dropdown, .share-select .choices__list[aria-expanded],
.rtabs-select .choices__list--dropdown, .rtabs-select .choices__list[aria-expanded]{
    border-radius:10px;
    border-color:var(--tu-grey-3) !important;
    transform:translateY(10px);
    box-shadow:0px 16px 24px rgba(0, 0, 0, 0.15);
}
.share-select .is-flipped .choices__list--dropdown, .share-select .is-flipped .choices__list[aria-expanded],
.rtabs-select .is-flipped .choices__list--dropdown, .rtabs-select .is-flipped .choices__list[aria-expanded]{
    transform:translateY(-10px);
}
.share-select .choices[data-type*=select-one]::after,
.share-select .choices__list--dropdown .choices__item.choices__placeholder
/*.rtabs-select .choices[data-type*=select-one]::after,
.rtabs-select .choices__list--dropdown .choices__item.choices__placeholde*/r{
    display: none !important;
}
.rtabs-select .choices[data-type*=select-one]::after{
    border:0;
    height:18px;
    width:18px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    background-image:url('/wp-content/plugins/opt-custom/assets/images/toggle-caret-down.svg');
    margin:0;
    transform:translateY(-50%);
    right:20px;
    filter: invert(19%) sepia(65%) saturate(7437%) hue-rotate(314deg) brightness(81%) contrast(110%);
}
:is(.share-select, .rtabs-select) .choices__placeholder{
    opacity:1 !important;
}
.share-select .choices__list[role='listbox'] .choices__item{
    position: relative;
    padding-left:calc(1.1em + 25px);
}
.share-select .choices__list[role='listbox'] .choices__item::before{
    content:'';
    height:1.2em;
    width:1.2em;
    display: block;
    position: absolute;
    top:50%;
    transform:translateY(-50%);
    left:15px;
    background-position:center;
    background-repeat: no-repeat;
    background-size: contain;
}
.share-select .choices__list[role='listbox'] .choices__item:nth-child(2)::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/share-email.svg');
}
.share-select .choices__list[role='listbox'] .choices__item:nth-child(3)::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/share-whatsapp.svg');
}
.share-select .choices__list .choices__item[data-value="facebook"]::before{
        background-image:url('/wp-content/plugins/opt-custom/assets/images/svg_face1.svg') !important;
/*    filter: brightness(0) saturate(100%) invert(5%) sepia(100%) saturate(1200%) hue-rotate(215deg) brightness(80%) contrast(120%) !important;*/
filter: unset !important;
}
/*.share-select .choices__list[role='listbox'] .choices__item:nth-child(4)::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/share-linkedin.svg');
}
*/
.share-select .choices__list .choices__item[data-value="linkedin"]::before {
   background-image:url('/wp-content/plugins/opt-custom/assets/images/share-linkedin.svg') !important;
}

.share-select .choices__list .choices__item[data-value="clipboard"]::before {
   background-image:url('/wp-content/plugins/opt-custom/assets/images/share-share.svg');
}

/*.share-select .choices__list[role='listbox'] .choices__item:nth-child(5)::before{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/share-share.svg');
}*/
/* FILTERS FORM */
.rfilters-form-row{
    position: absolute;
    z-index: 3;
    bottom: 0;
    transform: translateY(50%);
    left: 0;
    right: 0;
}
.rfilters-form{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    justify-content:center;
}
.rfilters-form select, .rfilters-form .choices__inner{
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-caret-down.svg');
    background-repeat:no-repeat;
    background-size:1.5em;
    background-position:calc(100% - 1em) center;
    background-color:#fff;
    border:1px solid var(--tu-grey-2) !important;
    display:inline-flex;
    box-sizing:border-box;
    line-height:1.2em;
    font-size:.750em;
    border-radius:24px !important;
    padding:8px calc(1.5em + 20px) 8px 12px;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    outline:none;
}
.rfilters-form select[name="country"]{
    max-width:100px;
}
.rfilters-form [type=submit]{
    background-color:var(--tu-secondary-3) !important;
    color:var(--tu-neutral-2) !important;
    border:1px solid var(--tu-secondary-3) !important;
    line-height:1.2em !important;
    font-size:.750em !important;
    border-radius:24px !important;
    padding:8px 16px !important;
}

.opt-custom-oportunidades-main :is(a, input, button).btn-primary.pink,
.opt-custom-oportunidades-main li.btn-primary.pink > a {
	/* Postular: morado Growby (tu-primary-3 en tokens es oscuro #03081b) */
	--btn-background: #5d55d7 !important;
	--btn-color: #ffffff !important;
	color: #fff !important;
	border-color: #5d55d7 !important;
}

/* Tarjetas (archivo / AJAX) y hero single: Postular y Compartir misma altura (Choices añade min-height 44px + padding-bottom) */
.opt-custom-oportunidades-main .oportunity-entry__buttons > div {
	align-items: center;
}
.opt-custom-oportunidades-main .oportunity-entry__buttons .share-select .choices,
.opt-custom-oportunidades-main .oportunity-single__buttons .share-select .choices {
	margin-bottom: 0 !important;
}
.opt-custom-oportunidades-main .oportunity-entry__buttons .share-select > .choices > .choices__inner,
.opt-custom-oportunidades-main .oportunity-single__buttons .share-select > .choices > .choices__inner {
	background-color: #5d55d7 !important;
	border: 1px solid #5d55d7 !important;
	color: #ffffff !important;
	border-radius: 999px !important;
	/* Altura fija compartida con Postular (anula choices.css) */
	height: 48px !important;
	min-height: 48px !important;
	max-height: 48px !important;
	padding: 0 1.3rem !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	font-size: 1em;
	line-height: 1.2 !important;
	overflow: hidden;
}
.opt-custom-oportunidades-main .oportunity-entry__buttons .share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected],
.opt-custom-oportunidades-main .oportunity-single__buttons .share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected] {
	color: #ffffff !important;
	min-height: 0 !important;
	line-height: 1.2 !important;
}
.opt-custom-oportunidades-main .oportunity-entry__buttons .share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected]::after,
.opt-custom-oportunidades-main .oportunity-single__buttons .share-select .choices__item.choices__placeholder.choices__item--selectable[aria-selected]::after {
	filter: brightness(0) invert(1);
	opacity: 0.95;
	flex-shrink: 0;
}
.opt-custom-oportunidades-main .oportunity-entry__buttons > div .btn.btn-primary.pink,
.opt-custom-oportunidades-main .oportunity-single__buttons .btn.btn-primary.pink {
	height: 48px !important;
	min-height: 48px !important;
	max-height: 48px !important;
	padding: 0 1.3rem !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	line-height: 1.2 !important;
}
.oportunity-single__tags a{
    /*color: #fff !important;*/
}
.border8, .oplist__item .fig-contain img{
    border-radius: 8px !important;
}
/* Logo empresa en hero single: fondo blanco (SVG legible sobre header oscuro) */
.opt-custom-oportunidades-main .oportunity-single .hero-sop .oportunity-single__company li figure.fig-contain {
	background: #fff !important;
	border-radius: 8px !important;
	overflow: hidden;
}
.opt-custom-oportunidades-main .btn-primary-pink{
    color: inherit !important;
}
.oportunity-single__company li:nth-child(2) a{
    color: inherit !important;
}
.rfilters-form .choices{
    margin-bottom:0 !important;
}
.rfilters-form .choices[data-type*=select-one]::after{
    display: none !important;
}
.rfilters-form .choices__inner{
    min-height:auto !important;
}
.rfilters-form .choices__list--single{
    padding:0;
}
.rfilters-form .choices__list.choices__list--dropdown {
    border-radius:12px;
    border:1px solid #ddd !important;
    box-shadow: 0px 24px 24px rgb(0 0 0 / 15%);
    border: 0;
    transform: translateY(10px);
    position: absolute;
    min-width: 250px;
}

.breadcrumb{
    color:var(--tu-grey-2);
    list-style:none;
    padding:0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    font-size:.875em;
}
.breadcrumb > li{
    position: relative;
}
.breadcrumb > li:not(:last-of-type){
    padding-right:calc(1em + 10px);
}
.breadcrumb > li:not(:last-of-type)::after{
    content:'';
    display: block;
    position: absolute;
    height:1em;
    width:1em;
    background-image:url('/wp-content/plugins/opt-custom/assets/images/icn-caret-down.svg');
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    top:50%;
    right:0;
    transform:translateY(-50%) rotate(-90deg);
}
.breadcrumb > li > a{
    color:var(--tu-secondary-3);
    text-decoration: underline;
}

@media screen and (min-width: 676px) and (max-width: 1100px) {
	.opt-custom-oportunidades-main [class*="t-cols-"] {
		display: flex;
		gap: var(--t-gap);
		flex-wrap: wrap;
	}
	.opt-custom-oportunidades-main .t-cols-1 > * {
		width: 100%;
	}
	.opt-custom-oportunidades-main .t-cols-2 > * {
		width: calc(100% / 2 - var(--t-gap) / 2);
	}
}
@media screen and (max-width: 676px) {
	.opt-custom-oportunidades-main [class*="m-cols-"] {
		display: flex;
		gap: var(--m-gap);
		flex-wrap: wrap;
	}
	.opt-custom-oportunidades-main .m-cols-1 > * {
		width: 100%;
	}
	.opt-custom-oportunidades-main .oportunity-single__content > aside,
	.opt-custom-oportunidades-main .oportunity-single__content > div {
		width: 100% !important;
	}
	.opt-custom-oportunidades-main .oplist__item {
		grid-template-columns: 64px auto;
	}
	.opt-custom-oportunidades-main .oplist__side {
		grid-column: span 2;
		justify-content: space-between;
	}
	.opt-custom-oportunidades-main .oplist__side ul {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1100px) {
	.opt-custom-oportunidades-main .no-desktop {
		display: none !important;
	}
}
@media screen and (min-width: 676px) and (max-width: 1100px) {
	.opt-custom-oportunidades-main .no-tablet {
		display: none !important;
	}
}
@media screen and (max-width: 676px) {
	.opt-custom-oportunidades-main .no-mobile {
		display: none !important;
	}
}

/* Scoped buttons (avoid styling theme header <button>) */
.opt-custom-oportunidades-main .btn,
.opt-custom-oportunidades-main a.btn,
.opt-custom-oportunidades-main button.btn {
	padding: 0.8em 1.5em;
	position: relative;
	background-color: var(--btn-background, #02006c);
	border: 1px solid var(--btn-background, #02006c);
	border-radius: 90px !important;
	color: var(--btn-color, #fff);
	display: inline-flex;
	letter-spacing: 0.5px;
	user-select: none;
	cursor: pointer;
	text-decoration: none;
	align-items: center;
}
.opt-custom-oportunidades-main a.btn-primary,
.opt-custom-oportunidades-main .btn-primary {
	--btn-background: #02006c;
	--btn-color: #ffffff;
}
.opt-custom-oportunidades-main a.btn-primary.pink,
.opt-custom-oportunidades-main .btn-primary.pink {
	--btn-background: #5d55d7;
	--btn-color: #ffffff;
	border-color: #5d55d7;
}
.opt-custom-oportunidades-main a.btn-secondary,
.opt-custom-oportunidades-main .btn-secondary {
	--btn-background: #02006c;
	--btn-color: #02006c;
	background-color: transparent;
}
.opt-custom-oportunidades-main .btn-more {
	position: relative;
	color: #0c0c0c;
	display: flex;
	padding-right: calc(1em + 4px);
	text-decoration: none;
}

