/*==============================================
    Site Footer
===============================================*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    padding: 0 0 50px;
    z-index: 1;
}

/* Fondo: foto en capa propia + velo suave (la variable CSS con url() fallaba en algunos navegadores) */
.site-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.site-footer__bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dfe6ee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.site-footer__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(245, 249, 253, 0.22) 42%,
        rgba(180, 196, 214, 0.38) 100%
    );
}

.site-footer__newsletter {
    position: relative;
    display: block;
    padding: clamp(40px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
}

/* Bloque de contacto: fondo opaco para buen contraste sobre la imagen del footer */
.site-footer__top {
    position: relative;
    z-index: 2;
    background-color: var(--careon-white);
}

.footer-widget-two__newsletter-text {
    color: var(--careon-gray);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.footer-widget__contact-content > span {
    color: var(--careon-black);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer__newsletter-inner,
.site-footer__cta-panel {
    position: relative;
    display: block;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 56px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(12, 35, 64, 0.12), 0 2px 0 rgba(255, 255, 255, 0.65) inset;
    z-index: 1;
}

.site-footer__newsletter-inner-title-box {
    position: relative;
    display: block;
}

/* CTA: rejilla texto + botones */
.site-footer__cta-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px 48px;
    width: 100%;
    z-index: 1;
}

.site-footer__cta-copy {
    text-align: left;
}

.site-footer__cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--careon-base, #14b8bd);
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(var(--careon-base-rgb, 20, 184, 189), 0.12);
    border: 1px solid rgba(var(--careon-base-rgb, 20, 184, 189), 0.28);
}

.site-footer__cta-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.22;
    margin: 0 0 16px;
    color: var(--careon-black, #0c2340);
    max-width: 52rem;
}

.site-footer__cta-sub {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--careon-gray, #3d4f66);
}

.site-footer__cta-sub strong {
    color: var(--careon-black, #0c2340);
    font-weight: 700;
}

.site-footer__cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-width: 240px;
}

.site-footer__cta-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 28px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    text-align: center;
    text-transform: none !important;
    box-shadow: 0 2px 12px rgba(12, 35, 64, 0.08);
}

.site-footer__cta-btn-icon {
    display: inline-flex;
    font-size: 1.35em;
    line-height: 1;
}

.site-footer__cta-btn--wa.thm-btn {
    background-color: var(--whatsapp, #25d366) !important;
    color: #fff !important;
    border: none !important;
}

.site-footer__cta-btn--wa.thm-btn::before,
.site-footer__cta-btn--wa.thm-btn::after {
    background-color: #1a9e52 !important;
}

.site-footer__cta-btn--wa.thm-btn:hover {
    color: #fff !important;
}

.site-footer__cta-btn--tel.thm-btn {
    background: rgba(255, 255, 255, 0.85) !important;
    color: var(--careon-black, #0c2340) !important;
    border: 2px solid var(--careon-black, #0c2340) !important;
}

.site-footer__cta-btn--tel.thm-btn::before,
.site-footer__cta-btn--tel.thm-btn::after {
    background-color: var(--careon-black, #0c2340) !important;
}

.site-footer__cta-btn--tel.thm-btn:hover {
    color: var(--careon-white, #fff) !important;
    border-color: var(--careon-black, #0c2340) !important;
}

.site-footer__newsletter-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    margin-top: 30px;
    color: var(--color1);
}

.site-footer__newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 560px;
    width: 100%;
    gap: 20px;
}

.site-footer__newsletter-input {
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
}

.site-footer__newsletter-input input[type="email"] {
    font-size: 16px;
    color: var(--careon-black);
    font-weight: 400;
    height: 50px;
    width: 100%;
    background: transparent;
    border: 2px solid var(--careon-black);
    border-radius: 30px;
    outline: none;
    padding: 0 30px 0;
}

.site-footer__newsletter-form .thm-btn {
    border: none;
}

.site-footer__top-inner {
    position: relative;
    display: block;
    padding: 88px 0 80px;
}

.footer-widget__title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 49px;
    color: var(--careon-black);
}

.footer-widget__contact-info {
    position: relative;
    display: block;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget__contact-list li+li {
    margin-top: 16px;
}

.footer-widget__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.45);
    border-radius: 50%;
}

.footer-widget__contact-icon i,
.footer-widget__contact-icon span {
    font-size: 16px;
    color: var(--careon-base);
}
.footer-logo-img{
    width: 300px;
}
.footer-widget__contact-content {
    position: relative;
    display: block;
    flex: 1;
}

.footer-widget__contact-text {
    color: var(--careon-black);
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
}

.footer-widget__contact-text a {
    color: var(--careon-black);
}

.footer-widget__contact-text a:hover {
    color: var(--careon-base);
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 35px;
}

.footer-widget__services-link-list {
    position: relative;
    display: block;
    height: 200px;
    overflow-y: scroll;
}

.footer-widget__services-link-list li {
    position: relative;
    display: block;
}

.footer-widget__services-link-list li+li {
    margin-top: 15px;
}

.footer-widget__services-link-list li a {
    position: relative;
    color: var(--careon-gray);
}

.footer-widget__services-link-list li a:hover {
    color: var(--careon-black);
}

.footer-widget__social-media {
    position: relative;
    display: block;
}

.footer-widget__page-link {
    position: relative;
    display: block;
    margin-left: 50px;
}

.site-footer__bottom {
    position: relative;
    display: block;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 30px;
    background-color: var(--careon-white);
    border: 1px solid var(--careon-bdr-color);
    border-top-left-radius: var(--careon-bdr-radius);
    border-top-right-radius: var(--careon-bdr-radius);
    border-bottom: 0;
}

.site-footer__copyright {
    position: relative;
    display: block;
}

.site-footer__copyright-text {
    color: var(--careon-gray);
}

.site-footer__copyright-text a {
    color: var(--careon-base);
}

.site-footer__copyright-text a:hover {
    color: var(--careon-black);
}

.site-footer__bottom-menu-box {
    position: relative;
    display: block;
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li a {
    color: var(--careon-gray);
}

.site-footer__bottom-menu li a:hover {
    color: var(--careon-black);
}


/*==============================================
    Site Footer Two
===============================================*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    padding: 120px 0 0;
    z-index: 1;
}

.site-footer-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .16;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer-two__newsletter {
    position: relative;
    display: block;
}

.site-footer-two__newsletter-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer-two__newsletter-inner-title-box {
    position: relative;
    display: block;
}

.footer-widget-two__logo {
    position: relative;
    display: block;
}

.site-footer-two__newsletter-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    margin-top: 30px;
}

.site-footer-two__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 16px;
    color: var(--careon-black);
    border: 1px solid rgba(var(--careon-black-rgb), .20);
    border-radius: 50%;
}

.site-footer-two__social a:hover {
    color: var(--careon-white);
    border: 1px solid rgba(var(--careon-black-rgb), 1);
    background-color: var(--careon-black);
}

.site-footer-two__top-inner {
    position: relative;
    display: block;
    padding: 39px 0 80px;
}

.footer-widget-two__title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 49px;
}

.footer-widget-two__newsletter-box {
    position: relative;
    display: block;
}

.footer-widget-two__newsletter {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.footer-widget-two__newsletter input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--careon-black-rgb), .10);
    outline: none;
    font-size: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    padding-right: 70px;
    padding-left: 30px;
    border-radius: 30px;
}

.footer-widget-two__newsletter-btn {
    position: absolute;
    top: 50%;
    right: 9px;
    border: none;
    width: 40px;
    height: 40px;
    background-color: var(--careon-black);
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget-two__newsletter-btn:hover {
    background-color: var(--careon-black);
}

.footer-widget-two__newsletter-btn span {
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: var(--careon-white);
}

.footer-widget-two__services {
    position: relative;
    display: block;
    margin-left: 93px;
}

.footer-widget-two__services-link-list {
    position: relative;
    display: block;
}

.footer-widget-two__services-link-list li {
    position: relative;
    display: block;
}

.footer-widget-two__services-link-list li+li {
    margin-top: 15px;
}

.footer-widget-two__services-link-list li a {
    position: relative;
    color: var(--careon-gray);
}

.footer-widget-two__services-link-list li a:hover {
    color: var(--careon-black);
}

.footer-widget-two__contact-info {
    position: relative;
    display: block;
    margin-left: -25px;
}

.footer-widget-two__contact-list {
    position: relative;
    display: block;
}

.footer-widget-two__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget-two__contact-list li+li {
    margin-top: 16px;
}

.footer-widget-two__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--careon-primary);
    border-radius: 50%;
}

.footer-widget-two__contact-icon span {
    font-size: 16px;
    color: var(--careon-black);
}

.footer-widget-two__contact-content {
    position: relative;
    display: block;
    flex: 1;
}

.footer-widget-two__contact-text {
    color: var(--careon-black);
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
}

.footer-widget-two__contact-text a {
    color: var(--careon-black);
}

.footer-widget-two__contact-text a:hover {
    color: var(--careon-base);
}

.footer-widget-two__page-link {
    position: relative;
    display: block;
    margin-left: 76px;
}

.site-footer-two__bottom {
    position: relative;
    display: block;
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 30px;
    background-color: var(--careon-white);
    border: 1px solid var(--careon-bdr-color);
    border-top-left-radius: var(--careon-bdr-radius);
    border-top-right-radius: var(--careon-bdr-radius);
    border-bottom: 0;
}

.site-footer-two__copyright {
    position: relative;
    display: block;
}

.site-footer-two__copyright-text {
    color: var(--careon-gray);
}

.site-footer-two__copyright-text a {
    color: var(--careon-base);
}

.site-footer-two__copyright-text a:hover {
    color: var(--careon-black);
}

.site-footer-two__bottom-menu-box {
    position: relative;
    display: block;
}

.site-footer-two__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.site-footer-two__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-two__bottom-menu li a {
    color: var(--careon-gray);
}

.site-footer-two__bottom-menu li a:hover {
    color: var(--careon-black);
}


/*==============================================
    Site Footer Three
===============================================*/
.site-footer-three {
    position: relative;
    display: block;
    background-color: var(--careon-black);
    padding: 80px 0 0;
    z-index: 1;
}

.site-footer-three__shape-1 {
    position: absolute;
    bottom: 30px;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.site-footer-three__shape-1 img {
    width: auto;
}

.site-footer-three__logo-and-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}

.footer-widget-three__logo {
    position: relative;
    display: block;
}

.site-footer-three__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 16px;
    color: var(--careon-white);
    background-color: rgba(var(--careon-white-rgb), .10);
    border-radius: 50%;
}

.site-footer-three__social a:hover {
    color: var(--careon-white);
    background-color: var(--careon-base);
}

.site-footer-three__top-inner {
    position: relative;
    display: block;
    padding: 67px 0 103px;
    border-bottom: 1px solid rgba(var(--careon-white-rgb), .20);
    border-top: 1px solid rgba(var(--careon-white-rgb), .20);
}

.footer-widget-three__title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 49px;
    color: var(--careon-white);
}

.footer-widget-three__contact-info {
    position: relative;
    display: block;
}

.footer-widget-three__contact-list {
    position: relative;
    display: block;
}

.footer-widget-three__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget-three__contact-list li+li {
    margin-top: 16px;
}

.footer-widget-three__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--careon-white-rgb), 0.05);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget-three__contact-list li:hover .footer-widget-three__contact-icon {
    background-color: var(--careon-white);
}

.footer-widget-three__contact-icon span {
    font-size: 16px;
    color: var(--careon-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget-three__contact-list li:hover .footer-widget-three__contact-icon span {
    color: var(--careon-base);
}

.footer-widget-three__contact-content {
    position: relative;
    display: block;
    flex: 1;
}

.footer-widget-three__contact-content span {
    color: rgba(var(--careon-white-rgb), .80);
}

.footer-widget-three__contact-text {
    color: var(--careon-white);
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
}

.footer-widget-three__contact-text a {
    color: var(--careon-white);
}

.footer-widget-three__contact-text a:hover {
    color: var(--careon-base);
}

.footer-widget-three__page-link {
    position: relative;
    display: block;
}

.footer-widget-three__services {
    position: relative;
    display: block;
    margin-left: -25px;
}

.footer-widget-three__services-link-list {
    position: relative;
    display: block;
}

.footer-widget-three__services-link-list li {
    position: relative;
    display: block;
}

.footer-widget-three__services-link-list li+li {
    margin-top: 15px;
}

.footer-widget-three__services-link-list li a {
    position: relative;
    color: rgba(var(--careon-white-rgb), .80);
}

.footer-widget-three__services-link-list li a:hover {
    color: var(--careon-base);
}

.footer-widget-three__newsletter-box {
    position: relative;
    display: block;
}

.footer-widget-three__newsletter-text {
    color: var(--careon-white);
    margin-bottom: 31px;
}

.footer-widget-three__newsletter {
    position: relative;
    display: block;
}

.footer-widget-three__newsletter input[type="email"] {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 2px solid rgba(var(--careon-white-rgb), .20);
    outline: none;
    font-size: 16px;
    color: var(--careon-white);
    font-weight: 400;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.footer-widget-three__newsletter .thm-btn {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    background-color: var(--careon-base);
}

.footer-widget-three__newsletter .thm-btn:hover {
    color: var(--careon-base);
}

.footer-widget-three__newsletter .thm-btn::before,
.footer-widget-three__newsletter .thm-btn::after {
    background-color: var(--careon-white);
}

.footer-widget-three__newsletter .thm-btn span {
    font-size: 14px;
}

.site-footer-three__bottom {
    position: relative;
    display: block;
}

.site-footer-three__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 30px;
}

.site-footer-three__copyright {
    position: relative;
    display: block;
}

.site-footer-three__copyright-text {
    color: var(--careon-white);
}

.site-footer-three__copyright-text a {
    color: var(--careon-white);
}

.site-footer-three__copyright-text a:hover {
    color: var(--careon-base);
}

.site-footer-three__bottom-menu-box {
    position: relative;
    display: block;
}

.site-footer-three__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.site-footer-three__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-three__bottom-menu li a {
    color: var(--careon-white);
}

.site-footer-three__bottom-menu li a:hover {
    color: var(--careon-base);
}








/*--------------------------------------------------------------
# Footer CTA — fondo responsive (foto + degradé, ref. diseño)
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
    .site-footer__bg-photo {
        background-position: center 18%;
    }
}

@media only screen and (max-width: 767px) {
    .site-footer__bg-photo {
        background-position: center 12%;
    }

    .site-footer__newsletter {
        min-height: clamp(300px, 54vh, 540px);
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer__newsletter .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-footer__newsletter-inner,
    .site-footer__cta-panel {
        border-radius: 18px;
    }

    .site-footer__cta-title {
        font-size: clamp(21px, 5.4vw, 30px);
    }
}

@media only screen and (max-width: 480px) {
    .site-footer__bg-photo {
        background-position: center top;
    }
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/