/*
Theme Name: catena
Author: CBT
Version: 1.0
*/

/* Fuentes */

@font-face {
    font-family: 'ClashDisplay';
    src: url('assets/fonts/bootstrap-icons.woff2') format('woff2');
}

@font-face {
    font-family: 'catena';
    src: url('assets/fonts/catena-font.woff2') format('woff2');
}

body {
    font-family: 'catena', serif !important;
}

/* General */

body.open-modal {
    overflow: hidden;
    padding-right: 12px;
}

body::-webkit-scrollbar {
    width: 12px;
}

.container {
    max-width: 1440px !important;
}

.container-xs {
    max-width: 1024px !important;
}

.bg-black {
    background-color: #111111;
}

.orange {
    color: #FFA600;
}

.white {
    color: #FFF;
}

.black {
    color: #111111;
}

.header-1 {
    color: #ffffff;
    font-size: 72px;
    font-weight: bold;
}

.header-2 {
    color: #111111;
    font-size: 48px;
}

.header-3 {
    color: #111111;
    font-size: 30px;
    font-weight: bold;
}

.subheader {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
}

.bg-blanco {
    background-color: white;
    border: 1px  #111111 solid;
}

.bg-orange {
    background-color: #FFCB6B;
}

.bg-green {
    background-color: #CFDE7A;
}

.header-noticia {
    color: black;
    font-size: clamp(34px, 3vw, 48px);
}

.catena-orange-button {
    color: #111111;
    transition: background 0.2s ease;
    width: fit-content;
    font-size: 18px;
    font-weight: bold;
    padding: 4px 28px;
    border-radius: 22px;
    background: #FFCB6B;
    text-decoration: none;
}

.catena-orange-button:hover {
    background: white;
}

.catena-white-button {
    background-color: white;
    color:  #111111;
    border: 1px solid #111111;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.catena-white-button:not(.not-hover):hover {
    background-color:  #111111;
    color: white;
}

.catena-white-button img {
    transition: filter 0.2s ease;
}

.catena-white-button:not(.not-hover):hover img {
    filter: invert(1);
}

main {
    padding-top: 110px;
}

.appear {
    opacity: 0.01;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.header-max-size > * {
    max-width: 740px;
}

.overlay-box {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 25px 25px;
    max-width: 420px;
    margin-top: 20px;
    position: relative;
    text-align: left;
    display: block;
    margin-top: 80px;
}

.overlay-box p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;font-size: 14px;
}

.btn-green {
    background-color: #CFDE7A;
    padding: 5px 35px;
    max-width: 65%;
}

.btn-green:hover {
    background-color: #8ebd2f;
}

.btn-yellow {
    background-color: #FFCB6B;
    padding: 5px 25px;
    max-width: 55%;
    width: fit-content;
}

.btn-yellow:hover {
    background-color: #ffb433;
}

.btn-cta i {
    position: absolute;
    left: 15px;
    font-size: 18px;
}

.btn-cta span {
    flex: 1;
    text-align: center;
}

.appear.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-container-background {
    right: 0;
    top: 0;
    z-index: -1;
}

.catena-read-more {
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: fit-content;
    padding-bottom: 1px;
}

.catena-read-more::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: 0;
    background-color: white;
    left: 0;
}

.catena-read-more:hover  i {
    margin-left: 10px;
}

.catena-read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.catena-background-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 110px);
}

@media (max-width: 1150px) {
    .catena-background-header {
        height: calc(100vh - 80px);
    }
}

.catena-background-header > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catena-background {
    z-index: 1;
}

.catena-background h1, .catena-background p {
    color: white;
}

.catena-background h1 {
    font-size: clamp(54px, 5vw, 72px);
}

.catena-background p {
    font-size: 20px;
}

.paragraph-2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

.catena-popup-container {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #44444466;
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
}

.catena-popup {
    max-height: 90%;
    max-width: 95%;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
}

.close-popup {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.catena-form-body input:not([type=checkbox]) {
    border: 0;
    border-radius: 15px;
    height: 40px;
    padding: 0 10px;
}

.catena-form-body input:not([type=checkbox]):not([type=submit]) {
    width: 100%;
}

.catena-form-body .wpcf7-spinner {
    position: absolute;
}

.catena-form-body .wpcf7-form-control-wrap {
    position: relative;
}

.catena-form-body .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 11px;
    left: 3px;
}

.wpcf7-response-output {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    margin: 0 !important;
    border: 0 !important;
    width: 100%;
    text-align: center;
    color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.catena-form-body input:focus-visible {
    outline: none;
}

.catena-form-body label {
    font-weight: 600;
    margin-bottom: 5px;
}

.catena-form-body .wpcf7-submit {
    background-color: #ffffff;
    width: 300px;
    color: black;
    border: 1px solid black;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.catena-form-body .wpcf7-submit:hover {
    background-color: #111111;
    color: white;
}

.catena-popup label {
    width: 100%;
}

.catena-form-header img {
    max-width: 290px;
    width: 100%;
}

.catena-form-header p:nth-of-type(2) {
    font-size: 22px;
}

.catena-form-header p:nth-of-type(3) {
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 1150px) {
    main {
        padding-top: 80px;
    }
}


/* Menú */

.catena-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    background-color: white;
    z-index: 10;
    height: 110px;
}

.catena-menu-link > a, .catena-menu-submenu a {
    text-decoration: none;
    color: #111111;
    font-weight: bold;
}

.catena-menu-link > a:hover, .catena-menu-submenu a:hover {
    color: #8e919b;
}

.catena-menu-actions {
    font-weight: bold;
}

.catena-menu-link a.active {
  position: relative;
  color: inherit;
}

.catena-menu-link a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #B3CB2D;
}

.catena-menu-action-suscribe.active-join {
    background-color: #000 !important;  
    color: #fff !important;             
    border-color: #000 !important;
}

.catena-menu-action-suscribe.active-join img {
    filter: invert(1);
}

.header-home {
    font-size: 72px;
    line-height: 1.1;
    font-weight: bold;
}

.header-home-2 {
    font-size: 48px;
    font-weight: 600;
}

.header-2 {
    font-size: 30px;
    font-weight: bold;
}

.paragraph-1 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
}

.catena-menu-link {
    position: relative;
}

.catena-menu-submenu-container {
    position: absolute;
    border-radius: 20px;
    padding-top: 20px;
    left: -13px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
}

.catena-menu-action-language {
    display: flex;
}

.catena-menu-action-language li {
    list-style: none;
}

.catena-menu-action-language img {
    display: none;
}

.catena-menu-action-language > li a {
    text-decoration: none;
    color: black !important;
    text-transform: uppercase;
}

.catena-menu-action-language > li:nth-of-type(1) a {
    border-right: 1px solid black;
    padding-right: 5px;
}

.catena-menu-action-language > li.current-lang a {
    text-decoration: underline;
}

@media (max-width: 1400px) {
    .header-home {
        font-size: 50px;
        line-height: 1;
        font-weight: bold;
    }

    .header-home-2 {
        font-size: 33px;
        font-weight: 600;
    }

    .header-1 {
        color: #ffffff;
        font-size: 50px !important;
        font-weight: bold;
    }

    .header-2 {
        font-size: 24px;
        font-weight: bold;
    }

    .header-3 {
        color: #111111;
        font-size: 30px;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    .header-home {
        font-size: 45px;
    }

    .catena-home-header p {
        line-height: 1.6 !important;
    }
}

@media (min-width: 1151px) {
    .catena-menu-link.submenu:hover .catena-menu-submenu-container, .catena-menu-submenu-container:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .catena-menu-link.submenu img {
        transition: transform 0.3s ease;
    }

    .catena-menu-link.submenu:hover img {
        transform: rotate(180deg);
    }
}

.catena-menu-links, .catena-menu-actions {
    align-items: center;
}

.catena-menu-submenu {
    border-radius: 20px;
    box-shadow: #c1c1c1 1px 1px 13px 1px;
    width: max-content;
    display: flex;
}

.catena-menu-responsive-button {
    display: none;
    cursor: pointer;
    font-size: 40px;
}

.catena-breadcrumb a {
    font-size: 16px;
    color:  #111111;
    text-decoration: none;
    font-weight: 600;
}

.catena-breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 1150px) {
    .catena-menu {
        height: 80px;
    }

    .catena-menu-content-container {
        height: 100%;
        width: 100%;
        background-color: rgba(232, 232, 232, 0.21);
        z-index: 10;
        top: 80px;
        left: 0;
        position: fixed;
        visibility: hidden;
    }

    .catena-menu-content-container.open {
        visibility: visible;
    }

    .catena-menu-content {
        position: absolute;
        flex-direction: column;
        right: 0;
        top: 0;
        background-color: white;
        border-radius: 0 0 10px 10px;
        height: 100%;
        width: 0;
        opacity: 0;
        transition: width 0.4s ease,opacity 0.5s ease;
    }

    .catena-menu-content-container.open .catena-menu-content {
        width: 250px;
        opacity: 1;
    }

    .catena-menu-links {
        flex-direction: column;
        align-items: baseline;
        padding: 30px 30px 0 30px;
    }

    .catena-menu-actions {
        flex-direction: column;
        align-items: baseline;
        padding: 0 30px 30px 30px;
    }

    .catena-menu-responsive-button {
        display: flex;
    }

    .catena-menu-submenu {
        box-shadow: none;
        padding: 12px !important;
        font-size: 16px;
    }

    .catena-menu-submenu-container {
        position: static;
        display: none;
        padding: 0;
    }

    .catena-menu-submenu-container.open {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
}


/* Home */

.catena-home-header-container {
    position: relative;
    padding-bottom: 10%;
    padding-top: 5%;
}

.catena-home-header-background1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.catena-home-header p {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8;
}

.catena-home-info {
    margin-top: -5%;
}

.catena-home-info img {
    width: 230px;
    aspect-ratio: 1/1;
    border-radius: 100%;
}

.catena-home-features-list > div {
    width: 20%;
}

.catena-home-feature {
    height: 100%;
}

.catena-home-feature > div:nth-of-type(1) {
    height: 180px;
}

.catena-home-feature-info {
    text-align: left;
    height: calc(100% - 180px);
}

.catena-home-feature-info > label {
    color: white;
    font-size: 23px;
    font-weight: 600;
}

.catena-home-feature-info > p {
    color: white;
    font-size: 18px;
    font-weight: 300;
}

.catena-home-feature-info > a {
    color: white;
    font-size: 16px;
    text-decoration: underline;
    font-weight: bold;
    margin-top: auto;
}

.catena-home-services label {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
}

.catena-home-services p {
    font-size: 22px;
}

.catena-home-services a {
    font-size: 16px;
    font-weight: 500;
    color:  #111111;
}


.catena-home-news label {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
}

.catena-home-news p {
    font-size: 22px;
}

.catena-home-news a {
    font-size: 16px;
    font-weight: 500;
}

.catena-new-header label {
    font-size: 16px;
    font-weight: 200;
}

.catena-new-header-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 100px;
}

.catena-new-header img {
    width: 30px;
}

.catena-home-news-container .paragraph-1, .catena-home-events-container .paragraph-1 {
    max-width: 650px !important;
}

.catena-new-img {
    height: 350px;
}

.catena-home-services > div:nth-of-type(even) .catena-new-img {
    height: 400px;
}

.catena-home-event {
    max-width: 1250px;
    width: 92vw;
}

.catena-home-event-img {
    width: 40%;
}

.catena-home-event-info {
    width: 60%;
}

.catena-home-events > div {
    width: fit-content;
}

.catena-home-event-info-subheader > label {
    font-size: 18px;
    font-weight: 200;
}

.catena-home-event-info-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.catena-home-event-info p {
    font-size: 16px;
}

.catena-home-event-info a {
    font-size: 16px;
    color: white;
}

.catena-home-events {
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.catena-home-events::-webkit-scrollbar {
    display: none;
}

.catena-home-events * {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.catena-home-newsletter {
    max-width: 800px;
}

.catena-home-newsletter > img {
    max-width: 250px;
    width: 100%;
}

.catena-home-newsletter-button, .catena-home-newsletter-button i {
    font-size: 18px;
    font-weight: bold;
    color:  #111111;
    text-decoration: none;
}

.catena-home-newsletter label {
    font-size: 30px;
    font-weight: bold;
}

.catena-home-newsletter p {
    font-size: 22px;
}

.catena-home-events .catena-home-new, .catena-home-events .catena-news-rss {
    width: 360px;
    aspect-ratio: 2 / 3;
}

.catena-scroll-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.catena-scroll-line-wrapper {
    display: flex;
    gap: 10px;
}

.catena-scroll-step {
    cursor: pointer;
    width: 40px;
    height: 3px;
    background-color: black;
}

.catena-scroll-step.selected {
    background-color: #ffa600;
}

.catena-scroll-arrow {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #000;
    user-select: none;
}

.catena-scroll-arrow.disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(80%);
    cursor: default;
}


@media (max-width: 1100px) {
    .catena-home-features-list > div {
        width: 50%;
    }
}


@media (max-width: 991px) {
    .catena-home-event > div:first-of-type {
        height: 300px;
    }
    .catena-home-event > div:last-child {
        height: calc(100% - 300px);
    }
}

@media (max-width: 600px) {
    .catena-home-features-list > div {
        width: 100%;
    }
}


/* Footer */

footer {
    border-top: 1px #cdcdcd solid;
}

.footer-right label, .footer-left span {
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
}

.footer-right a {
    font-size: 14px;
    color:  #111111;
    text-decoration: none;
    font-weight: 500;
}

.footer-right i {
    font-size: 28px;
}

.footer-left label {
    font-size: 14px;
    font-weight: 700;
}

.footer-right-logos {
    margin-top: -8px;
}

/* Catenas News */

.catena-news-new {
    aspect-ratio: 1 / 1;
}

.catena-news-new-header label {
    font-size: 16px;
    font-weight: 200;
}

.catena-news-new-header img {
    width: 30px;
}

.catena-home-news-container .paragraph-1 {
    max-width: 528px !important;
}

.catena-news-new-img {
    height: 60%;
}

.catena-news-main {
    aspect-ratio: 144 / 52;
}

.catena-news-main-header-title {
    font-size: 34px;
}

.catena-news-new-body {
    cursor: pointer;
    bottom: -45px;
    transition: bottom 0.3s ease;
    color: white;
    text-decoration: none;
}

.catena-news-new-body p {
    font-size: 22px;
    height: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.catena-news-new-body:hover {
    bottom: 0;
}

.catena-news-new-link, .catena-news-new-social {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catena-news-new-body:hover .catena-news-new-link, .catena-news-new-body:hover .catena-news-new-social {
    opacity: 1;
}


/* Catenas New */

.catena-single-new-subheader {
    font-size: 16px;
    font-weight: 500;
}

.catena-single-new-subtitle {
    font-size: 22px;
    font-weight: 600;
}

.catena-single-new-body p, .catena-single-new-body label, .catena-single-new-body span, .catena-single-new-body li {
    font-size: 20px;
}

.catena-single-new-body a {
    color: #111111;
}

@media (max-width: 600px) {
    .catena-single-new-body iframe {
        width: 100%;
    }
}

.catena-news-rss-header label {
    font-size: 16px;
    font-weight: 200;
}

.catena-news-rss-header-title {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catena-news-rss-header img {
    width: 30px;
}

.catena-news-rss-img {
    height: 250px;
}

@media (max-width: 991px) {
    .catena-news-rss-header-title {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


/* Catenas Events */

.catena-single-event-subheader {
    font-size: 16px;
    font-weight: 500;
}

.catena-single-event-img {
    max-height: 600px;
}

.catena-single-event-subtitle {
    font-size: 22px;
    font-weight: 600;
}

.catena-single-event-body p, .catena-single-event-body label, .catena-single-event-body span, .catena-single-event-body li {
    font-size: 20px;
}

.catena-single-event-body a {
    font-size: 20px;
    color: #111111;
}


/* Página de eventos */

.catena-events {
    aspect-ratio: 7 / 10;
}

.catena-events-header label {
    font-size: 16px;
    font-weight: 200;
}

.catena-events-header img {
    width: 20px;
}

.catena-home-news-container .paragraph-1 {
    max-width: 528px !important;
}

.catena-events-img {
    height: 60%;
}

.catena-events-main {
    aspect-ratio: 144 / 52;
}

.catena-events-main-header-title {
    font-size: 34px;
}

.catena-events-body {
    min-height: 213px;
    color: white;
    text-decoration: none;
}

.catena-events-body p {
    font-size: 22px;
    line-height: 1.2;
    height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catena-events-body {
    cursor: pointer;
    bottom: -45px;
    transition: bottom 0.3s ease;
}

.catena-events-body:hover {
    bottom: 0;
}

.catena-events-link, .catena-events-social {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catena-events-body:hover .catena-events-link, .catena-events-body:hover .catena-events-social {
    opacity: 1;
}

.catena-events-date > div > img {
    right: 2px;
    top: 4px;
    pointer-events: none;
    cursor: pointer;
}


/* Filtros en eventos */

.catena-events-filters {
    max-width: 290px;
    width: 100%;
}

.catena-events-filters > span {
    font-size: 20px;
    font-weight: 600;
}

.catena-events-clean {
    border: solid 2px  #111111;
    padding: 4px 50px;
    width: fit-content;
    font-weight: 600;
    cursor: pointer;
}

.catena-events-clean i {
    top: -9px;
    left: 4px;
    font-size: 34px;
}

.catena-events-filters input[type=text], .catena-events-filters input[type=date] {
    border: none;
    border-bottom: 2px solid  #111111;
    padding-bottom: 7px;
    font-weight: 600;
    color:  #111111;
    width: 100%;
}

.catena-events-filters input[type=text] {
    padding-left: 35px;
}


.catena-events-filters input[type=text]:focus-visible, .catena-events-filters input[type=date]:focus-visible {
    border-bottom: 2px solid  #111111;
    outline: none;
}

.catena-events-filters input[type=text]::placeholder, .catena-events-filters input[type=date]::placeholder {
    font-weight: 600;
    color:  #111111;
}

.catena-events-text img {
    position: absolute;
    font-size: 19px;
    left: 2px;
    top: 4px;
}

.catena-events-filters span {
    font-weight: 600;
    color:  #111111;
}

.catena-events-checkboxes label {
    font-weight: 500;
}

.catena-events-type {
    border: solid 2px  #111111;
    padding: 4px 50px;
    width: fit-content;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    text-align: center;
}

.catena-events-type img {
    top: 7px;
    left: 13px;
    font-size: 34px;
    position: absolute;
}

.catena-events-type input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.catena-events-type.checked {
    background-color:  #111111;
}

.catena-events-type.checked span {
    color: white;
}

.catena-events-type.checked img {
    filter: invert(1);
}


/* Desarrolla */

.catena-desarrolla-pills {
    max-width: 1200px;
}

.catena-desarrolla-pill {
    max-width: 900px;
}

.catena-desarrolla-pills > div:nth-of-type(even) {
    flex-direction: row-reverse;
    align-self: end;
}

@media (max-width: 992px) {
    .catena-desarrolla-pills > div:nth-of-type(even), .catena-desarrolla-pills > div {
        flex-direction: column;
    }

    .catena-desarrolla-pill-img {
        display: flex;
    }
}

/* Conocenos */

.catena-conoce-header-container {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 468px;
  overflow: hidden;
}

.catena-conoce-header-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.catena-conoce-header-container .catena-background {
  position: relative;
  z-index: 1;
  color: white;
  text-align: left;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 100%;
}


.catena-conocenos-info-container {
    gap: 320px;
    position: relative;
    padding-bottom: 180px;
}

.catena-conocenos-info-bg-image {
    position: absolute;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 23%;
    height: 77%;
}

.catena-conocenos-info-second-boxes {
    max-width: 500px;
    width: 100%;
}

.catena-conocenos-info-second-boxes span {
    font-size: 18px;
}

.catena-conocenos-card {
    height: 250px;
    max-width: 500px;
    width: 100%;
}

.catena-conocenos-card > img {
    max-width: 300px;
    width: 100%;
}

.catena-conocenos-info-second-boxes .rounded-3 {
    height: 110px;
}

.catena-conocenos-where-header {
    max-width: 700px;
}

@media (max-width: 991px) {
    .catena-conocenos-info-container {
        gap: 100px;
    }

    .catena-conocenos-info-container {
        padding-bottom: 100px;
    }
}


/* Unete formulario */
.catena-home-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;        
  object-fit: cover;  
  z-index: -1;        
  pointer-events: none; 
  transform: none !important; 
}

.catena-cx-header-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.catena-cx-header-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.letra-b {
    color: #fff;
    text-align: left;
}

.catena-cx-exp {

}

.texto-kit {
    display: grid;
    gap: 20px;
    justify-items: left;
    max-width: 1440px;
    margin: 0 auto;
}

.texto-kit h2, .texto-kit p {
    max-width: 580px;
}

.catena-cx-exp {
    text-align: center;
    background-color: #111111;
    padding: 50px 20px;
    padding-bottom: 200px !important;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    justify-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.catena-cx-exp-cards {
    max-width: 1440px;
}

.catena-cx-exp .card {
    width: calc(25% - 20px);
    min-width: 310px;
    aspect-ratio: 10 / 13;
    border: none;
}

@media (max-width: 1500px) {
    .catena-cx-exp .card {
        aspect-ratio: 10 / 14;
    }
}

@media (max-width: 992px) {
    .catena-cx-exp .card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 500px) {
    .catena-cx-exp .card {
        width: 100%;
        aspect-ratio: 10 / 12;
    }
}


/* Tarjeta */

.card {
    width: 100%;
    min-width: 340px;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-top {
    padding: 25px 0;
    height: 180px !important;
}

.card.orange1 .card-top { background: linear-gradient(180deg, #F5643E 0%, #FFB958 100%); }
.card.orange2 .card-top { background: linear-gradient(180deg, #EE6A28 0%, #FEB655 100%); }
.card.green1 .card-top { background: linear-gradient(180deg, #368C7D 0%, #61C18F 100%); }
.card.green2 .card-top { background: linear-gradient(180deg, #41891F 0%, #62C085 100%); }
.card.purple1 .card-top { background: linear-gradient(180deg, #AB6BFF 0%, #E3C8FF 100%); }
.card.blue .card-top { background: linear-gradient(180deg, #6D64FF 0%, #98BDFA 100%); }
.card.purple2 .card-top { background: linear-gradient(180deg, #AB6BFF 0%, #E3C8FF 100%); }

.card-content {
    background-color: #CFDE79;
    color: #000;
    padding: 10px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.card-content h3 {
    margin: 10px 0 10px;
    font-size: 22px;
    font-weight: bold;
    min-height: 52px;
}

.card-content p {
    font-size: 0.9rem;
}

.card-icon {
    font-size: 2.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.container-ins {
  background-color: #D5D6E0;
  padding: 60px 30px;
  border-radius: 16px;
  max-width: 1000px;
  margin: 0 auto;
 
}

.bloque-formulario-gris {
  background-color: #D5D6E0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
}

.hover-boton-verde:hover{
    background-color: #212529 !important;
    color: white !important;
}

.hover-boton-verde:hover svg path{
    fill: white !important;
}

/* CX text camp */

.catena-como-unirse a {
    color: #111111;
}