/* =========================================
   VARIABLES TALENT CORE
========================================= */

:root {

    --tc-blue: #005B81;
    --tc-blue-dark: #0E3B5F;
    --tc-orange: #EB7615;
    --tc-light: #E0E7FF;
    --tc-white: #FFFFFF;

}


/* =========================================
   CONFIGURACIÓN GENERAL
========================================= */

html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    font-family: 'Montserrat', sans-serif;

    color: var(--tc-blue-dark);

    background-color: var(--tc-white);
}


/* =========================================
   NAVBAR
========================================= */

.navbar-talent {

    background-color: var(--tc-white);

    border-bottom: 1px solid rgba(14, 59, 95, 0.10);

    padding: 14px 0;

    transition: all 0.3s ease;

    z-index: 1000;
}


/* =========================================
   LOGO
========================================= */

.logo-talent-core {

    width: 185px;

    height: auto;

    display: block;
}


/* =========================================
   LINKS
========================================= */

.navbar-talent .nav-link {

    font-size: 14px;

    font-weight: 500;

    color: var(--tc-blue-dark);

    padding: 8px 10px;

    margin: 0 1px;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.navbar-talent .nav-link:hover {

    color: var(--tc-orange);
}


.navbar-talent .nav-link.active {

    color: var(--tc-orange);

    font-weight: 600;
}


/* =========================================
   BOTÓN DEMO
========================================= */

.btn-demo {

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-white);

    background-color: var(--tc-orange);

    padding: 10px 19px;

    border: 2px solid var(--tc-orange);

    border-radius: 6px;

    transition: all 0.3s ease;
}


.btn-demo:hover {

    color: var(--tc-orange);

    background-color: var(--tc-white);

    border-color: var(--tc-orange);
}


/* =========================================
   BOTÓN MOBILE
========================================= */

.navbar-talent .navbar-toggler {

    border: 1px solid var(--tc-blue-dark);

    padding: 6px 9px;
}


.navbar-talent .navbar-toggler:focus {

    box-shadow: none;
}


.navbar-talent .navbar-toggler-icon {

    background-image: url(
        "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230E3B5F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .navbar-talent .nav-link {

        font-size: 13px;

        padding-left: 7px;

        padding-right: 7px;

    }


    .logo-talent-core {

        width: 165px;

    }


    .btn-demo {

        font-size: 13px;

        padding: 9px 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .navbar-talent {

        padding: 12px 0;

    }


    .logo-talent-core {

        width: 165px;

    }


    .navbar-talent .navbar-collapse {

        padding-top: 20px;

    }


    .navbar-talent .nav-link {

        font-size: 14px;

        padding: 10px 0;

        border-bottom: 1px solid rgba(14, 59, 95, 0.08);

    }


    .navbar-talent .btn-demo {

        display: block;

        width: 100%;

        text-align: center;

        margin-top: 8px;

    }

}

/* =========================================
   HERO TALENT CORE
========================================= */

.hero-talent {

    position: relative;

    background-color: #ffffff;

    padding: 90px 0 100px;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.hero-content {

    max-width: 590px;
}


/* =========================================
   ETIQUETA
========================================= */

.hero-label {

    display: inline-block;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-orange);

    margin-bottom: 18px;

    
    letter-spacing: 0.6px;
}


/* =========================================
   TÍTULO
========================================= */

.hero-title {

    margin: 0 0 24px;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 700;

    color: var(--tc-blue-dark);

    letter-spacing: -0.8px;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.hero-description {

    max-width: 540px;

    margin: 0 0 28px;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 400;

    color: #526575;
}


/* =========================================
   BENEFICIOS
========================================= */

.hero-benefits {

    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-bottom: 32px;
}


.hero-benefit {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 500;

    color: var(--tc-blue-dark);
}


.hero-benefit i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 20px;

    height: 20px;

    font-size: 13px;

    color: var(--tc-orange);

    background-color: rgba(235, 118, 21, 0.10);

    border-radius: 50%;
}


/* =========================================
   ACCIONES
========================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 24px;
}


/* =========================================
   BOTÓN PRINCIPAL
========================================= */

.btn-hero {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 24px;

    font-size: 14px;

    font-weight: 600;

    color: #ffffff;

    background-color: var(--tc-orange);

    border: 2px solid var(--tc-orange);

    border-radius: 6px;

    transition: all 0.3s ease;
}


.btn-hero:hover {

    color: var(--tc-orange);

    background-color: #ffffff;

    border-color: var(--tc-orange);
}


/* =========================================
   LINK SECUNDARIO
========================================= */

.hero-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: all 0.3s ease;
}


.hero-link i {

    font-size: 15px;

    transition: transform 0.3s ease;
}


.hero-link:hover {

    color: var(--tc-orange);
}


.hero-link:hover i {

    transform: translateX(4px);
}


/* =========================================
   VISUAL
========================================= */

.hero-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-left: 20px;
}


.hero-visual img {

    width: 100%;

    max-width: 600px;

    height: auto;

    display: block;

    border-radius: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .hero-talent {

        padding: 75px 0 85px;

    }


    .hero-title {

        font-size: 42px;

    }


    .hero-description {

        font-size: 16px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .hero-talent {

        padding: 60px 0 70px;

    }


    .hero-content {

        max-width: 100%;

        text-align: center;

    }


    .hero-label {

        font-size: 13px;

    }


    .hero-title {

        font-size: 36px;

        line-height: 1.2;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

        font-size: 16px;

    }


    .hero-benefits {

        align-items: center;

    }


    .hero-actions {

        justify-content: center;

    }


    .hero-visual {

        padding-left: 0;

        margin-top: 20px;

    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .hero-talent {

        padding: 50px 0 60px;

    }


    .hero-title {

        font-size: 31px;

    }


    .hero-description {

        font-size: 15px;

        line-height: 1.6;

    }


    .hero-actions {

        flex-direction: column;

        gap: 16px;

    }


    .btn-hero {

        width: 100%;

    }

}

/* =========================================
   RETO ACTUAL DE RH
========================================= */

.reto-rh {

    position: relative;

    padding: 105px 0 110px;

    background-color: #f7f9fb;

    overflow: hidden;
}


/* =========================================
   ETIQUETA DE SECCIÓN
========================================= */

.section-label {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--tc-orange);
}


/* =========================================
   CONTENIDO
========================================= */

.reto-content {

    max-width: 520px;

    padding-right: 25px;
}


/* =========================================
   TÍTULO
========================================= */

.reto-title {

    margin: 0 0 25px;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.reto-description {

    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   LINK
========================================= */

.reto-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: all 0.3s ease;
}


.reto-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.reto-link:hover {

    color: var(--tc-orange);
}


.reto-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   CONTENEDOR DE PROBLEMAS
========================================= */

.reto-problems {

    position: relative;

    padding-left: 35px;
}


/* =========================================
   ELEMENTO INDIVIDUAL
========================================= */

.problem-item {

    position: relative;

    display: flex;

    gap: 22px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(14, 59, 95, 0.12);
}


.problem-item:first-child {

    padding-top: 0;
}


.problem-item:last-child {

    border-bottom: none;

    padding-bottom: 0;
}


/* =========================================
   NÚMERO
========================================= */

.problem-number {

    flex: 0 0 auto;

    font-size: 13px;

    font-weight: 700;

    color: var(--tc-orange);

    padding-top: 4px;
}


/* =========================================
   CONTENIDO DEL PROBLEMA
========================================= */

.problem-content {

    max-width: 560px;
}


.problem-content h3 {

    margin: 0 0 7px;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


.problem-content p {

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #667985;
}


/* =========================================
   EFECTO SUTIL
========================================= */

.problem-item {

    transition: transform 0.3s ease;
}


.problem-item:hover {

    transform: translateX(5px);
}


.problem-item:hover .problem-number {

    color: var(--tc-blue);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .reto-rh {

        padding: 90px 0 95px;
    }


    .reto-title {

        font-size: 36px;
    }


    .reto-content {

        padding-right: 10px;
    }


    .reto-problems {

        padding-left: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .reto-rh {

        padding: 75px 0 80px;
    }


    .reto-content {

        max-width: 100%;

        padding-right: 0;

        margin-bottom: 20px;
    }


    .reto-title {

        font-size: 34px;
    }


    .reto-problems {

        padding-left: 0;
    }


    .problem-item {

        padding: 21px 0;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .reto-rh {

        padding: 60px 0 65px;
    }


    .reto-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .reto-description {

        font-size: 15px;

        line-height: 1.65;
    }


    .problem-item {

        gap: 15px;
    }


    .problem-number {

        font-size: 12px;
    }


    .problem-content h3 {

        font-size: 17px;
    }


    .problem-content p {

        font-size: 13px;
    }

}

/* =========================================
   ¿QUÉ ES TALENT CORE?
========================================= */

.talent-core-section {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.talent-core-content {

    max-width: 550px;

    padding-right: 30px;
}


/* =========================================
   TÍTULO
========================================= */

.talent-core-title {

    margin: 0 0 28px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.talent-core-description {

    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   FRASE CENTRAL
========================================= */

.talent-core-statement {

    display: flex;

    flex-direction: column;

    gap: 5px;

    margin: 30px 0;

    padding-left: 20px;

    border-left: 3px solid var(--tc-orange);
}


.talent-core-statement span {

    font-size: 15px;

    line-height: 1.5;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   LINK
========================================= */

.talent-core-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: color 0.3s ease;
}


.talent-core-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.talent-core-link:hover {

    color: var(--tc-orange);
}


.talent-core-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   VISUAL
========================================= */

.talent-core-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 500px;

    padding: 25px;
}


/* =========================================
   IMAGEN
========================================= */

.talent-core-image {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 590px;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(14, 59, 95, 0.16);
}


.talent-core-image img {

    display: block;

    width: 100%;

    height: auto;
}


/* =========================================
   ELEMENTO DECORATIVO
========================================= */

.talent-core-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 180px;

    height: 180px;

    background-color: var(--tc-light);

    border-radius: 50%;

    z-index: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .talent-core-section {

        padding: 90px 0;
    }


    .talent-core-title {

        font-size: 37px;
    }


    .talent-core-content {

        padding-right: 10px;
    }


    .talent-core-visual {

        min-height: auto;

        padding: 15px;
    }


    .talent-core-accent {

        width: 140px;

        height: 140px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .talent-core-section {

        padding: 75px 0 80px;
    }


    .talent-core-content {

        max-width: 100%;

        padding-right: 0;
    }


    .talent-core-title {

        font-size: 34px;
    }


    .talent-core-visual {

        margin-top: 20px;

        padding: 0;
    }


    .talent-core-image {

        border-radius: 12px;
    }


    .talent-core-accent {

        width: 100px;

        height: 100px;

        right: -10px;

        bottom: -10px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .talent-core-section {

        padding: 60px 0 65px;
    }


    .talent-core-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .talent-core-description {

        font-size: 15px;

        line-height: 1.65;
    }


    .talent-core-statement {

        margin: 25px 0;

        padding-left: 16px;
    }


    .talent-core-statement span {

        font-size: 14px;
    }

}

/* =========================================
   CICLO DE VIDA DEL TALENTO
========================================= */

.ciclo-vida {

    position: relative;

    padding: 110px 0 100px;

    background-color: var(--tc-blue-dark);

    color: #ffffff;

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.ciclo-header {

    max-width: 760px;

    margin-bottom: 70px;
}


.ciclo-label {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 700;

   
    letter-spacing: 1px;

    color: var(--tc-orange);
}


.ciclo-title {

    margin: 0 0 22px;

    font-size: 44px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: #ffffff;
}


.ciclo-intro {

    max-width: 680px;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   ETAPAS
========================================= */

.ciclo-etapas {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 90px;

    row-gap: 0;
}


/* =========================================
   ETAPA
========================================= */

.ciclo-etapa {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 20px;

    padding: 32px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    transition: transform 0.3s ease;
}


.ciclo-etapa:hover {

    transform: translateX(5px);
}


/* =========================================
   NÚMERO
========================================= */

.ciclo-numero {

    font-size: 28px;

    line-height: 1;

    font-weight: 700;

    color: var(--tc-orange);

    letter-spacing: -1px;
}


/* =========================================
   CONTENIDO
========================================= */

.ciclo-contenido {

    max-width: 400px;
}


.ciclo-momento {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.8px;

    color: rgba(255, 255, 255, 0.52);
}


.ciclo-contenido h3 {

    margin: 0 0 10px;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 600;

    color: #ffffff;
}


.ciclo-contenido p {

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================
   FOOTER DE SECCIÓN
========================================= */

.ciclo-footer {

    margin-top: 65px;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.ciclo-footer p {

    max-width: 650px;

    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.78);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .ciclo-vida {

        padding: 90px 0;

    }


    .ciclo-title {

        font-size: 38px;

    }


    .ciclo-etapas {

        column-gap: 50px;

    }


    .ciclo-etapa {

        grid-template-columns: 55px 1fr;

        gap: 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .ciclo-vida {

        padding: 75px 0 80px;

    }


    .ciclo-header {

        margin-bottom: 45px;

    }


    .ciclo-title {

        font-size: 34px;

    }


    .ciclo-intro {

        font-size: 15px;

    }


    .ciclo-etapas {

        grid-template-columns: 1fr;

    }


    .ciclo-etapa {

        grid-template-columns: 55px 1fr;

        padding: 25px 0;

    }


    .ciclo-numero {

        font-size: 25px;

    }


    .ciclo-contenido h3 {

        font-size: 18px;

    }


    .ciclo-contenido p {

        font-size: 13px;

    }


    .ciclo-footer {

        margin-top: 45px;

    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .ciclo-vida {

        padding: 60px 0 65px;

    }


    .ciclo-title {

        font-size: 29px;

        line-height: 1.25;

    }


    .ciclo-etapa {

        grid-template-columns: 45px 1fr;

        gap: 12px;

    }


    .ciclo-numero {

        font-size: 22px;

    }


    .ciclo-contenido h3 {

        font-size: 17px;

    }


    .ciclo-contenido p {

        font-size: 13px;

        line-height: 1.6;

    }

}

/* =========================================
   PLANEACIÓN, RECLUTAMIENTO Y SELECCIÓN
========================================= */

.talent-acquisition {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.acquisition-content {

    max-width: 560px;

    padding-right: 25px;
}


/* =========================================
   TÍTULO
========================================= */

.acquisition-title {

    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.acquisition-description {

    margin: 0 0 32px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   ETAPAS
========================================= */

.acquisition-stage {

    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 19px 0;

    border-top: 1px solid rgba(14, 59, 95, 0.12);
}


.acquisition-stage:last-child {

    border-bottom: 1px solid rgba(14, 59, 95, 0.12);
}


/* =========================================
   NÚMERO
========================================= */

.acquisition-stage-number {

    font-size: 14px;

    font-weight: 700;

    color: var(--tc-orange);

    padding-top: 3px;
}


/* =========================================
   TÍTULO ETAPA
========================================= */

.acquisition-stage h3 {

    margin: 0 0 6px;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO ETAPA
========================================= */

.acquisition-stage p {

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #667985;
}


/* =========================================
   VISUAL
========================================= */

.acquisition-visual {

    position: relative;

    padding: 20px 0 40px 25px;
}


/* =========================================
   IMAGEN
========================================= */

.acquisition-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.16);
}


.acquisition-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.acquisition-image:hover img {

    transform: scale(1.025);
}


/* =========================================
   TEXTO SOBRE / DEBAJO DE IMAGEN
========================================= */

.acquisition-caption {

    position: absolute;

    z-index: 3;

    left: 0;

    bottom: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;

    width: 245px;

    padding: 20px 22px;

    background-color: var(--tc-orange);

    border-radius: 8px;

    box-shadow:
        0 12px 30px rgba(14, 59, 95, 0.16);
}


.acquisition-caption span {

    font-size: 11px;

    font-weight: 600;



    letter-spacing: 0.8px;

    color: rgba(255, 255, 255, 0.78);
}


.acquisition-caption strong {

    font-size: 14px;

    line-height: 1.45;

    font-weight: 600;

    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .talent-acquisition {

        padding: 90px 0;

    }


    .acquisition-title {

        font-size: 37px;

    }


    .acquisition-content {

        padding-right: 10px;

    }


    .acquisition-visual {

        padding-left: 10px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .talent-acquisition {

        padding: 75px 0 85px;

    }


    .acquisition-content {

        max-width: 100%;

        padding-right: 0;
    }


    .acquisition-title {

        font-size: 34px;

    }


    .acquisition-description {

        font-size: 15px;

    }


    .acquisition-visual {

        margin-top: 25px;

        padding: 10px 0 45px;

    }


    .acquisition-caption {

        width: 220px;

        padding: 17px 19px;

    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .talent-acquisition {

        padding: 60px 0 70px;

    }


    .acquisition-title {

        font-size: 29px;

        line-height: 1.25;

    }


    .acquisition-description {

        font-size: 14px;

        line-height: 1.65;

    }


    .acquisition-stage {

        grid-template-columns: 38px 1fr;

        gap: 12px;

        padding: 17px 0;

    }


    .acquisition-stage-number {

        font-size: 13px;

    }


    .acquisition-stage h3 {

        font-size: 17px;

    }


    .acquisition-stage p {

        font-size: 13px;

        line-height: 1.6;

    }


    .acquisition-caption {

        left: 10px;

        width: calc(100% - 20px);

    }

}

/* =========================================
   CONTRATACIÓN Y ONBOARDING
========================================= */

.onboarding-section {

    position: relative;

    padding: 110px 0;

    background-color: #f7f9fb;

    overflow: hidden;
}


/* =========================================
   VISUAL
========================================= */

.onboarding-visual {

    position: relative;

    padding: 0 20px 25px 0;
}


.onboarding-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.15);
}


.onboarding-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.onboarding-image:hover img {

    transform: scale(1.025);
}


/* =========================================
   CONTENIDO
========================================= */

.onboarding-content {

    max-width: 620px;

    padding-left: 25px;
}


/* =========================================
   TÍTULO
========================================= */

.onboarding-title {

    margin: 0 0 25px;

    font-size: 43px;

    line-height: 1.16;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.onboarding-description {

    max-width: 590px;

    margin: 0 0 32px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   CARACTERÍSTICAS
========================================= */

.onboarding-features {

    border-top: 1px solid rgba(14, 59, 95, 0.12);
}


.onboarding-feature {

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(14, 59, 95, 0.12);
}


/* =========================================
   NÚMERO
========================================= */

.onboarding-feature-number {

    padding-top: 3px;

    font-size: 13px;

    font-weight: 700;

    color: var(--tc-orange);
}


/* =========================================
   TÍTULO
========================================= */

.onboarding-feature h3 {

    margin: 0 0 5px;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.onboarding-feature p {

    max-width: 510px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #667985;
}


/* =========================================
   LINK
========================================= */

.onboarding-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 28px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: color 0.3s ease;
}


.onboarding-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.onboarding-link:hover {

    color: var(--tc-orange);
}


.onboarding-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .onboarding-section {

        padding: 90px 0;
    }


    .onboarding-title {

        font-size: 38px;
    }


    .onboarding-content {

        padding-left: 10px;
    }


    .onboarding-visual {

        padding-right: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .onboarding-section {

        padding: 75px 0 85px;
    }


    .onboarding-visual {

        padding: 0 0 20px;
    }


    .onboarding-content {

        max-width: 100%;

        padding-left: 0;
    }


    .onboarding-title {

        font-size: 34px;
    }


    .onboarding-description {

        font-size: 15px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .onboarding-section {

        padding: 60px 0 70px;
    }


    .onboarding-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .onboarding-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .onboarding-feature {

        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 16px 0;
    }


    .onboarding-feature h3 {

        font-size: 16px;
    }


    .onboarding-feature p {

        font-size: 13px;
    }

}

/* =========================================
   GESTIÓN DEL COLABORADOR
========================================= */

.gestion-colaborador {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.gestion-content {

    max-width: 560px;

    padding-right: 25px;
}


/* =========================================
   TÍTULO
========================================= */

.gestion-title {

    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.gestion-description {

    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   CAPACIDADES
========================================= */

.gestion-capacidades {

    display: flex;

    flex-wrap: wrap;

    gap: 9px 10px;

    margin: 30px 0;
}


.gestion-capacidades span {

    display: inline-block;

    padding: 8px 13px;

    font-size: 12px;

    line-height: 1;

    font-weight: 600;

    color: var(--tc-blue-dark);

    background-color: #f1f5f7;

    border-radius: 4px;
}


/* =========================================
   LINK
========================================= */

.gestion-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: color 0.3s ease;
}


.gestion-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.gestion-link:hover {

    color: var(--tc-orange);
}


.gestion-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   VISUAL
========================================= */

.gestion-visual {

    position: relative;

    padding: 20px 0 35px 25px;
}


/* =========================================
   IMAGEN
========================================= */

.gestion-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.15);
}


.gestion-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.gestion-image:hover img {

    transform: scale(1.025);
}


/* =========================================
   INFORMACIÓN DESTACADA
========================================= */

.gestion-highlight {

    position: absolute;

    z-index: 3;

    left: 0;

    bottom: 0;

    width: 270px;

    padding: 20px 23px;

    background-color: #ffffff;

    border-left: 4px solid var(--tc-orange);

    border-radius: 0 8px 8px 0;

    box-shadow:
        0 15px 35px rgba(14, 59, 95, 0.14);
}


.gestion-highlight span {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

    

    letter-spacing: 0.8px;

    color: var(--tc-orange);
}


.gestion-highlight strong {

    display: block;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .gestion-colaborador {

        padding: 90px 0;
    }


    .gestion-title {

        font-size: 37px;
    }


    .gestion-content {

        padding-right: 10px;
    }


    .gestion-visual {

        padding-left: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .gestion-colaborador {

        padding: 75px 0 85px;
    }


    .gestion-content {

        max-width: 100%;

        padding-right: 0;
    }


    .gestion-title {

        font-size: 34px;
    }


    .gestion-description {

        font-size: 15px;
    }


    .gestion-visual {

        margin-top: 20px;

        padding: 10px 0 40px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .gestion-colaborador {

        padding: 60px 0 70px;
    }


    .gestion-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .gestion-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .gestion-capacidades {

        gap: 7px 8px;

        margin: 25px 0;
    }


    .gestion-capacidades span {

        padding: 7px 10px;

        font-size: 11px;
    }


    .gestion-highlight {

        left: 10px;

        bottom: 0;

        width: calc(100% - 20px);

        padding: 17px 20px;
    }


    .gestion-highlight strong {

        font-size: 15px;
    }

}

/* =========================================
   DESARROLLO Y CRECIMIENTO
========================================= */

.desarrollo-section {

    position: relative;

    padding: 110px 0;

    background-color: #f7f9fb;

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.desarrollo-header {

    margin-bottom: 55px;
}


.desarrollo-title {

    margin: 0 auto 24px;

    max-width: 760px;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


.desarrollo-description {

    max-width: 680px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   VISUAL
========================================= */

.desarrollo-visual {

    position: relative;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.14);
}


.desarrollo-visual img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.desarrollo-visual:hover img {

    transform: scale(1.015);
}


/* =========================================
   CAPACIDADES
========================================= */

.desarrollo-capacidades {

    margin-top: 65px;

    row-gap: 0;
}


/* =========================================
   ELEMENTO
========================================= */

.desarrollo-item {

    height: 100%;

    padding: 28px 30px;

    border-top: 1px solid rgba(14, 59, 95, 0.13);

    transition: transform 0.3s ease;
}


.desarrollo-item:hover {

    transform: translateY(-3px);
}


/* =========================================
   NÚMERO
========================================= */

.desarrollo-number {

    display: block;

    margin-bottom: 13px;

    font-size: 12px;

    font-weight: 700;

    color: var(--tc-orange);

    letter-spacing: 0.5px;
}


/* =========================================
   TÍTULO
========================================= */

.desarrollo-item h3 {

    margin: 0 0 9px;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.desarrollo-item p {

    max-width: 340px;

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: #667985;
}


/* =========================================
   FOOTER
========================================= */

.desarrollo-footer {

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(14, 59, 95, 0.13);

    text-align: center;
}


.desarrollo-footer p {

    max-width: 650px;

    margin: 0 auto;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 500;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .desarrollo-section {

        padding: 90px 0;

    }


    .desarrollo-title {

        font-size: 38px;

    }


    .desarrollo-header {

        margin-bottom: 45px;

    }


    .desarrollo-capacidades {

        margin-top: 50px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .desarrollo-section {

        padding: 75px 0 80px;

    }


    .desarrollo-title {

        font-size: 34px;

    }


    .desarrollo-description {

        font-size: 15px;

    }


    .desarrollo-visual {

        border-radius: 12px;

    }


    .desarrollo-capacidades {

        margin-top: 35px;

    }


    .desarrollo-item {

        padding: 22px 10px;

    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .desarrollo-section {

        padding: 60px 0 65px;

    }


    .desarrollo-title {

        font-size: 29px;

        line-height: 1.25;

    }


    .desarrollo-description {

        font-size: 14px;

        line-height: 1.65;

    }


    .desarrollo-item {

        padding: 20px 5px;

    }


    .desarrollo-item h3 {

        font-size: 17px;

    }


    .desarrollo-item p {

        font-size: 13px;

    }


    .desarrollo-footer {

        margin-top: 40px;

    }


    .desarrollo-footer p {

        font-size: 14px;

    }

}

/* =========================================
   AUTOMATIZACIÓN E INTELIGENCIA ARTIFICIAL
========================================= */

.automatizacion-section {

    position: relative;

    padding: 110px 0;

    background-color: #E0E7FF;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.automatizacion-content {

    max-width: 530px;

    padding-right: 20px;
}


/* =========================================
   TÍTULO
========================================= */

.automatizacion-title {

    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.automatizacion-description {

    margin: 0 0 17px;

    font-size: 16px;

    line-height: 1.75;

    color: #526575;
}


/* =========================================
   PUNTOS
========================================= */

.automatizacion-puntos {

    margin-top: 32px;

    border-top: 1px solid rgba(14, 59, 95, 0.14);
}


/* =========================================
   PUNTO INDIVIDUAL
========================================= */

.automatizacion-punto {

    display: grid;

    grid-template-columns: 24px 1fr;

    gap: 14px;

    padding: 19px 0;

    border-bottom: 1px solid rgba(14, 59, 95, 0.14);
}


/* =========================================
   LÍNEA DE ACENTO
========================================= */

.automatizacion-punto-linea {

    display: block;

    width: 4px;

    height: 100%;

    min-height: 45px;

    background-color: var(--tc-orange);

    border-radius: 3px;
}


/* =========================================
   TÍTULO
========================================= */

.automatizacion-punto h3 {

    margin: 0 0 5px;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.automatizacion-punto p {

    max-width: 430px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #5f7180;
}


/* =========================================
   LINK
========================================= */

.automatizacion-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 28px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue-dark);

    text-decoration: none;

    transition: color 0.3s ease;
}


.automatizacion-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.automatizacion-link:hover {

    color: var(--tc-orange);
}


.automatizacion-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   VISUAL
========================================= */

.automatizacion-visual {

    position: relative;

    padding: 15px 0 35px 20px;
}


/* =========================================
   IMAGEN
========================================= */

.automatizacion-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 16px;

    background-color: #ffffff;

    box-shadow:
        0 25px 55px rgba(14, 59, 95, 0.18);
}


.automatizacion-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.automatizacion-image:hover img {

    transform: scale(1.015);
}


/* =========================================
   FICHA
========================================= */

.automatizacion-caption {

    position: absolute;

    z-index: 3;

    left: 0;

    bottom: 0;

    width: 280px;

    padding: 21px 24px;

    background-color: #ffffff;

    border-left: 4px solid var(--tc-orange);

    border-radius: 0 8px 8px 0;

    box-shadow:
        0 15px 35px rgba(14, 59, 95, 0.14);
}


.automatizacion-caption span {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

   

    letter-spacing: 0.8px;

    color: var(--tc-orange);
}


.automatizacion-caption strong {

    display: block;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .automatizacion-section {

        padding: 90px 0;

    }


    .automatizacion-title {

        font-size: 37px;

    }


    .automatizacion-content {

        padding-right: 10px;

    }


    .automatizacion-visual {

        padding-left: 10px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .automatizacion-section {

        padding: 75px 0 85px;

    }


    .automatizacion-content {

        max-width: 100%;

        padding-right: 0;

    }


    .automatizacion-title {

        font-size: 34px;

    }


    .automatizacion-description {

        font-size: 15px;

    }


    .automatizacion-visual {

        margin-top: 20px;

        padding: 10px 0 40px;

    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .automatizacion-section {

        padding: 60px 0 70px;

    }


    .automatizacion-title {

        font-size: 29px;

        line-height: 1.25;

    }


    .automatizacion-description {

        font-size: 14px;

        line-height: 1.65;

    }


    .automatizacion-punto {

        grid-template-columns: 18px 1fr;

        gap: 11px;

        padding: 17px 0;

    }


    .automatizacion-punto h3 {

        font-size: 16px;

    }


    .automatizacion-punto p {

        font-size: 13px;

    }


    .automatizacion-caption {

        left: 10px;

        bottom: 0;

        width: calc(100% - 20px);

        padding: 18px 20px;

    }


    .automatizacion-caption strong {

        font-size: 15px;

    }

}

/* =========================================
   INTEGRACIONES
========================================= */

.integraciones-section {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.integraciones-content {

    max-width: 540px;

    padding-right: 20px;
}


/* =========================================
   TÍTULO
========================================= */

.integraciones-title {

    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.integraciones-description {

    margin: 0 0 17px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   CATEGORÍAS
========================================= */

.integraciones-categorias {

    display: flex;

    flex-wrap: wrap;

    gap: 9px 10px;

    margin: 30px 0;
}


.integraciones-categorias span {

    padding: 9px 13px;

    font-size: 12px;

    line-height: 1;

    font-weight: 600;

    color: var(--tc-blue-dark);

    background-color: #f1f5f7;

    border-radius: 4px;
}


/* =========================================
   LINK
========================================= */

.integraciones-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;

    color: var(--tc-blue);

    text-decoration: none;

    transition: color 0.3s ease;
}


.integraciones-link span {

    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.integraciones-link:hover {

    color: var(--tc-orange);
}


.integraciones-link:hover span {

    transform: translateX(5px);
}


/* =========================================
   VISUAL
========================================= */

.integraciones-visual {

    position: relative;

    padding: 15px 0 40px 20px;
}


/* =========================================
   IMAGEN
========================================= */

.integraciones-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 16px;

    background-color: #ffffff;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.15);
}


.integraciones-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.integraciones-image:hover img {

    transform: scale(1.015);
}


/* =========================================
   FICHA
========================================= */

.integraciones-caption {

    position: absolute;

    z-index: 3;

    left: 0;

    bottom: 0;

    width: 285px;

    padding: 21px 24px;

    background-color: #ffffff;

    border-left: 4px solid var(--tc-orange);

    border-radius: 0 8px 8px 0;

    box-shadow:
        0 15px 35px rgba(14, 59, 95, 0.14);
}


.integraciones-caption span {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

   

    letter-spacing: 0.8px;

    color: var(--tc-orange);
}


.integraciones-caption strong {

    display: block;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .integraciones-section {

        padding: 90px 0;
    }


    .integraciones-title {

        font-size: 37px;
    }


    .integraciones-content {

        padding-right: 10px;
    }


    .integraciones-visual {

        padding-left: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .integraciones-section {

        padding: 75px 0 85px;
    }


    .integraciones-content {

        max-width: 100%;

        padding-right: 0;
    }


    .integraciones-title {

        font-size: 34px;
    }


    .integraciones-description {

        font-size: 15px;
    }


    .integraciones-visual {

        margin-top: 20px;

        padding: 10px 0 40px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .integraciones-section {

        padding: 60px 0 70px;
    }


    .integraciones-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .integraciones-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .integraciones-categorias {

        gap: 7px 8px;

        margin: 25px 0;
    }


    .integraciones-categorias span {

        padding: 7px 10px;

        font-size: 11px;
    }


    .integraciones-caption {

        left: 10px;

        bottom: 0;

        width: calc(100% - 20px);

        padding: 18px 20px;
    }


    .integraciones-caption strong {

        font-size: 15px;
    }

}

/* =========================================
   SEGURIDAD, CONTROL Y TRAZABILIDAD
========================================= */

.seguridad-section {

    position: relative;

    padding: 110px 0;

    background-color: var(--tc-blue-dark);

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.seguridad-header {

    margin-bottom: 55px;
}


.seguridad-header .section-label {

    color: var(--tc-orange);
}


.seguridad-title {

    max-width: 760px;

    margin: 0 auto 24px;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: #ffffff;
}


.seguridad-description {

    max-width: 680px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   DASHBOARD
========================================= */

.seguridad-dashboard {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    background-color: #ffffff;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.22);
}


.seguridad-dashboard img {

    display: block;

    width: 100%;

    height: auto;
}


/* =========================================
   ELEMENTOS
========================================= */

.seguridad-items {

    margin-top: 60px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.seguridad-item {

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 17px;

    height: 100%;

    padding: 28px 25px 10px 0;
}


.seguridad-item:not(:last-child) {

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}


/* =========================================
   NÚMERO
========================================= */

.seguridad-number {

    padding-top: 3px;

    font-size: 13px;

    font-weight: 700;

    color: var(--tc-orange);
}


/* =========================================
   TÍTULO
========================================= */

.seguridad-item h3 {

    margin: 0 0 8px;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;

    color: #ffffff;
}


/* =========================================
   TEXTO
========================================= */

.seguridad-item p {

    max-width: 330px;

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.62);
}


/* =========================================
   FOOTER
========================================= */

.seguridad-footer {

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    text-align: center;
}


.seguridad-footer p {

    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .seguridad-section {

        padding: 90px 0;
    }


    .seguridad-title {

        font-size: 38px;
    }


    .seguridad-header {

        margin-bottom: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .seguridad-section {

        padding: 75px 0 80px;
    }


    .seguridad-title {

        font-size: 34px;
    }


    .seguridad-description {

        font-size: 15px;
    }


    .seguridad-dashboard {

        border-radius: 10px;
    }


    .seguridad-items {

        margin-top: 40px;
    }


    .seguridad-item {

        padding: 22px 5px;

        border-right: none !important;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .seguridad-item:last-child {

        border-bottom: none;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .seguridad-section {

        padding: 60px 0 65px;
    }


    .seguridad-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .seguridad-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .seguridad-item {

        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 19px 0;
    }


    .seguridad-item h3 {

        font-size: 17px;
    }


    .seguridad-item p {

        font-size: 13px;
    }


    .seguridad-footer {

        margin-top: 40px;
    }


    .seguridad-footer p {

        font-size: 14px;
    }

}

/* =========================================
   SALIDA Y OFFBOARDING
========================================= */

.offboarding-section {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTENIDO
========================================= */

.offboarding-content {

    max-width: 570px;

    padding-right: 25px;
}


/* =========================================
   TÍTULO
========================================= */

.offboarding-title {

    margin: 0 0 25px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.offboarding-description {

    margin: 0 0 17px;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   PUNTOS
========================================= */

.offboarding-points {

    margin-top: 30px;

    border-top: 1px solid rgba(14, 59, 95, 0.12);
}


.offboarding-point {

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(14, 59, 95, 0.12);
}


/* =========================================
   NÚMERO
========================================= */

.offboarding-number {

    padding-top: 3px;

    font-size: 13px;

    font-weight: 700;

    color: var(--tc-orange);
}


/* =========================================
   TÍTULO
========================================= */

.offboarding-point h3 {

    margin: 0 0 5px;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.offboarding-point p {

    max-width: 480px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #667985;
}


/* =========================================
   FRASE DESTACADA
========================================= */

.offboarding-statement {

    margin-top: 28px;

    padding-left: 20px;

    border-left: 4px solid var(--tc-orange);
}


.offboarding-statement strong {

    display: block;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.55;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   VISUAL
========================================= */

.offboarding-visual {

    position: relative;

    padding: 20px 0 40px 25px;
}


.offboarding-image {

    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 22px 50px rgba(14, 59, 95, 0.15);
}


.offboarding-image img {

    display: block;

    width: 100%;

    height: auto;

    transition: transform 0.5s ease;
}


.offboarding-image:hover img {

    transform: scale(1.025);
}


/* =========================================
   FICHA
========================================= */

.offboarding-caption {

    position: absolute;

    z-index: 3;

    left: 0;

    bottom: 0;

    width: 285px;

    padding: 21px 24px;

    background-color: #ffffff;

    border-left: 4px solid var(--tc-orange);

    border-radius: 0 8px 8px 0;

    box-shadow:
        0 15px 35px rgba(14, 59, 95, 0.14);
}


.offboarding-caption span {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    color: var(--tc-orange);
}


.offboarding-caption strong {

    display: block;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 700;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .offboarding-section {

        padding: 90px 0;
    }


    .offboarding-title {

        font-size: 37px;
    }


    .offboarding-content {

        padding-right: 10px;
    }


    .offboarding-visual {

        padding-left: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .offboarding-section {

        padding: 75px 0 85px;
    }


    .offboarding-content {

        max-width: 100%;

        padding-right: 0;
    }


    .offboarding-title {

        font-size: 34px;
    }


    .offboarding-description {

        font-size: 15px;
    }


    .offboarding-visual {

        margin-top: 20px;

        padding: 10px 0 40px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .offboarding-section {

        padding: 60px 0 70px;
    }


    .offboarding-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .offboarding-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .offboarding-point {

        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 16px 0;
    }


    .offboarding-point h3 {

        font-size: 16px;
    }


    .offboarding-point p {

        font-size: 13px;
    }


    .offboarding-caption {

        left: 10px;

        bottom: 0;

        width: calc(100% - 20px);

        padding: 18px 20px;
    }


    .offboarding-caption strong {

        font-size: 15px;
    }

}

/* =========================================
   VALOR PARA EL NEGOCIO
========================================= */

.valor-negocio-section {

    position: relative;

    padding: 110px 0;

    background-color: #f7f9fb;

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.valor-negocio-header {

    margin-bottom: 65px;
}


.valor-negocio-title {

    max-width: 760px;

    margin: 0 auto 24px;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


.valor-negocio-description {

    max-width: 690px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   GRID
========================================= */

.valor-negocio-grid {

    row-gap: 0;

    border-top: 1px solid rgba(14, 59, 95, 0.13);

    border-left: 1px solid rgba(14, 59, 95, 0.13);
}


/* =========================================
   ELEMENTO
========================================= */

.valor-negocio-item {

    position: relative;

    min-height: 250px;

    padding: 32px 35px;

    background-color: #ffffff;

    border-right: 1px solid rgba(14, 59, 95, 0.13);

    border-bottom: 1px solid rgba(14, 59, 95, 0.13);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.valor-negocio-item:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(14, 59, 95, 0.08);
}


/* =========================================
   NÚMERO
========================================= */

.valor-negocio-number {

    display: block;

    margin-bottom: 45px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: var(--tc-orange);
}


/* =========================================
   TÍTULO
========================================= */

.valor-negocio-item h3 {

    max-width: 280px;

    margin: 0 0 12px;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.valor-negocio-item p {

    max-width: 330px;

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: #667985;
}


/* =========================================
   LÍNEA DE ACENTO
========================================= */

.valor-negocio-line {

    position: absolute;

    left: 35px;

    bottom: 0;

    width: 35px;

    height: 3px;

    background-color: var(--tc-orange);

    transition: width 0.3s ease;
}


.valor-negocio-item:hover .valor-negocio-line {

    width: 65px;
}


/* =========================================
   FOOTER
========================================= */

.valor-negocio-footer {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 55px;
}


.valor-negocio-footer-line {

    flex: 0 0 45px;

    width: 45px;

    height: 3px;

    background-color: var(--tc-orange);
}


.valor-negocio-footer p {

    margin: 0;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .valor-negocio-section {

        padding: 90px 0;
    }


    .valor-negocio-title {

        font-size: 38px;
    }


    .valor-negocio-header {

        margin-bottom: 50px;
    }


    .valor-negocio-item {

        min-height: 235px;

        padding: 28px;
    }


    .valor-negocio-line {

        left: 28px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .valor-negocio-section {

        padding: 75px 0 80px;
    }


    .valor-negocio-title {

        font-size: 34px;
    }


    .valor-negocio-description {

        font-size: 15px;
    }


    .valor-negocio-grid {

        border-left: none;
    }


    .valor-negocio-item {

        min-height: auto;

        padding: 25px;
    }


    .valor-negocio-number {

        margin-bottom: 30px;
    }


    .valor-negocio-footer {

        margin-top: 40px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .valor-negocio-section {

        padding: 60px 0 65px;
    }


    .valor-negocio-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .valor-negocio-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .valor-negocio-item {

        padding: 23px 20px;
    }


    .valor-negocio-number {

        margin-bottom: 25px;
    }


    .valor-negocio-item h3 {

        font-size: 18px;
    }


    .valor-negocio-item p {

        font-size: 13px;
    }


    .valor-negocio-line {

        left: 20px;
    }


    .valor-negocio-footer {

        align-items: flex-start;
    }


    .valor-negocio-footer p {

        font-size: 14px;
    }

}

/* =========================================
   TRES PERSPECTIVAS
========================================= */

.perspectivas-section {

    position: relative;

    padding: 110px 0;

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.perspectivas-header {

    margin-bottom: 65px;
}


.perspectivas-title {

    max-width: 720px;

    margin: 0 auto 24px;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.6px;

    color: var(--tc-blue-dark);
}


.perspectivas-description {

    max-width: 680px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.75;

    color: #566b7a;
}


/* =========================================
   GRID
========================================= */

.perspectivas-grid {

    border-top: 1px solid rgba(14, 59, 95, 0.15);

    border-left: 1px solid rgba(14, 59, 95, 0.15);
}


/* =========================================
   ITEM
========================================= */

.perspectiva-item {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 390px;

    padding: 35px;

    border-right: 1px solid rgba(14, 59, 95, 0.15);

    border-bottom: 1px solid rgba(14, 59, 95, 0.15);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.perspectiva-item:hover {

    z-index: 2;

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(14, 59, 95, 0.10);
}


/* =========================================
   NÚMERO
========================================= */

.perspectiva-number {

    margin-bottom: 75px;

    font-size: 13px;

    font-weight: 700;

    color: var(--tc-orange);

    letter-spacing: 0.5px;
}


/* =========================================
   LABEL
========================================= */

.perspectiva-label {

    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.9px;

    color: #7a8a95;
}


/* =========================================
   TÍTULO
========================================= */

.perspectiva-content h3 {

    margin: 0 0 16px;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 700;

    color: var(--tc-blue-dark);
}


/* =========================================
   TEXTO
========================================= */

.perspectiva-content p {

    max-width: 330px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #667985;
}


/* =========================================
   FOOTER
========================================= */

.perspectiva-footer {

    margin-top: auto;

    padding-top: 25px;

    font-size: 11px;

    line-height: 1.6;

    font-weight: 600;

    color: var(--tc-blue-dark);

    border-top: 1px solid rgba(14, 59, 95, 0.12);
}


/* =========================================
   VARIACIONES
========================================= */

.perspectiva-talento {

    border-top: 4px solid var(--tc-blue);
}


.perspectiva-colaborador {

    border-top: 4px solid var(--tc-orange);
}


.perspectiva-sistema {

    border-top: 4px solid var(--tc-blue-dark);
}


/* =========================================
   CIERRE
========================================= */

.perspectivas-closing {

    margin-top: 60px;
}


.perspectivas-closing p {

    max-width: 650px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.65;

    font-weight: 500;

    color: var(--tc-blue-dark);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .perspectivas-section {

        padding: 90px 0;
    }


    .perspectivas-title {

        font-size: 38px;
    }


    .perspectivas-header {

        margin-bottom: 50px;
    }


    .perspectiva-item {

        min-height: 360px;

        padding: 28px;
    }


    .perspectiva-number {

        margin-bottom: 60px;
    }


    .perspectiva-content h3 {

        font-size: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .perspectivas-section {

        padding: 75px 0 85px;
    }


    .perspectivas-title {

        font-size: 34px;
    }


    .perspectivas-description {

        font-size: 15px;
    }


    .perspectiva-item {

        min-height: 310px;

        padding: 28px;

        border-left: 1px solid rgba(14, 59, 95, 0.15);
    }


    .perspectiva-number {

        margin-bottom: 45px;
    }


    .perspectivas-closing {

        margin-top: 45px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .perspectivas-section {

        padding: 60px 0 65px;
    }


    .perspectivas-title {

        font-size: 29px;

        line-height: 1.25;
    }


    .perspectivas-description {

        font-size: 14px;

        line-height: 1.65;
    }


    .perspectiva-item {

        min-height: 290px;

        padding: 23px;

    }


    .perspectiva-number {

        margin-bottom: 35px;
    }


    .perspectiva-content h3 {

        font-size: 22px;
    }


    .perspectiva-content p {

        font-size: 13px;
    }


    .perspectiva-footer {

        font-size: 10px;
    }


    .perspectivas-closing {

        margin-top: 40px;
    }


    .perspectivas-closing p {

        font-size: 14px;
    }

}

/* =========================================
   CTA DEMOSTRACIÓN
========================================= */

.demo-section {

    position: relative;

    padding: 105px 0;

    background-color: var(--tc-blue-dark);

    overflow: hidden;
}


/* =========================================
   ELEMENTO DECORATIVO
========================================= */

.demo-section::after {

    content: "";

    position: absolute;

    right: -120px;

    top: -180px;

    width: 420px;

    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.demo-section::before {

    content: "";

    position: absolute;

    right: -60px;

    top: -120px;

    width: 280px;

    height: 280px;

    border: 2px solid rgba(237, 118, 21, 0.25);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTENIDO
========================================= */

.demo-content {

    position: relative;

    z-index: 2;

    max-width: 760px;
}


/* =========================================
   LABEL
========================================= */

.demo-content .section-label {

    color: var(--tc-orange);
}


/* =========================================
   TÍTULO
========================================= */

.demo-title {

    margin: 0 0 25px;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.7px;

    color: #ffffff;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.demo-description {

    max-width: 680px;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   BOTONES
========================================= */

.demo-actions {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}


.btn-demo-primary,
.btn-demo-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   BOTÓN PRINCIPAL
========================================= */

.btn-demo-primary {

    color: #ffffff;

    background-color: var(--tc-orange);

    border: 1px solid var(--tc-orange);
}


.btn-demo-primary:hover {

    color: #ffffff;

    background-color: #d9650d;

    border-color: #d9650d;

    transform: translateY(-2px);
}


/* =========================================
   BOTÓN SECUNDARIO
========================================= */

.btn-demo-secondary {

    color: #ffffff;

    background-color: transparent;

    border: 1px solid rgba(255, 255, 255, 0.35);
}


.btn-demo-secondary:hover {

    color: var(--tc-blue-dark);

    background-color: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   DESTACADO
========================================= */

.demo-highlight {

    position: relative;

    z-index: 2;

    margin-left: auto;

    max-width: 290px;

    padding-left: 25px;

    border-left: 3px solid var(--tc-orange);
}


.demo-highlight-line {

    display: block;

    width: 35px;

    height: 2px;

    margin-bottom: 18px;

    background-color: var(--tc-orange);
}


.demo-highlight p {

    margin: 0;

    font-size: 18px;

    line-height: 1.55;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .demo-section {

        padding: 90px 0;
    }


    .demo-title {

        font-size: 40px;
    }

}


/* =========================================
   TABLET PEQUEÑO
========================================= */

@media (max-width: 991.98px) {

    .demo-section {

        padding: 80px 0;
    }


    .demo-title {

        font-size: 37px;
    }


    .demo-highlight {

        margin: 50px 0 0;

        max-width: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .demo-section {

        padding: 70px 0;
    }


    .demo-title {

        font-size: 33px;

        line-height: 1.2;
    }


    .demo-description {

        font-size: 15px;

        line-height: 1.65;
    }


    .demo-actions {

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 30px;
    }


    .btn-demo-primary,
    .btn-demo-secondary {

        width: 100%;
    }


    .demo-highlight {

        margin-top: 45px;

        padding-left: 20px;
    }


    .demo-highlight p {

        font-size: 16px;
    }

}


/* =========================================
   MOBILE PEQUEÑO
========================================= */

@media (max-width: 575.98px) {

    .demo-section {

        padding: 60px 0;
    }


    .demo-title {

        font-size: 29px;
    }


    .demo-description {

        font-size: 14px;
    }


    .demo-highlight {

        margin-top: 40px;
    }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {

    padding: 55px 0 35px;

    background-color: #ffffff;

    border-top: 1px solid rgba(14, 59, 95, 0.10);
}


/* =========================================
   LOGO
========================================= */

.footer-brand {

    display: flex;

    align-items: center;
}


.footer-logo {

    display: block;

    width: 205px;

    height: auto;
}


/* =========================================
   REDES SOCIALES
========================================= */

.footer-social {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 22px;
}


.footer-social > span {

    font-size: 13px;

    color: #6d7c86;
}


.footer-social-links {

    display: flex;

    align-items: center;

    gap: 9px;
}


.footer-social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border: 1px solid rgba(14, 59, 95, 0.15);

    border-radius: 50%;

    color: var(--tc-blue-dark);

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.footer-social-links a i {

    font-size: 15px;
}


.footer-social-links a:hover {

    color: #ffffff;

    background-color: var(--tc-orange);

    border-color: var(--tc-orange);

    transform: translateY(-2px);
}


/* =========================================
   DIVISOR
========================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin: 35px 0 25px;

    background-color: rgba(14, 59, 95, 0.10);
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-copyright {

    text-align: center;
}


.footer-copyright p {

    margin: 0 0 5px;

    font-size: 12px;

    line-height: 1.6;

    color: #687984;
}


.footer-copyright p:last-child {

    margin-bottom: 0;

    color: var(--tc-blue-dark);

    font-weight: 500;
}


/* =========================================
   LEGAL
========================================= */

.footer-legal {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 18px;

    text-align: center;
}


.footer-legal a {

    font-size: 11px;

    line-height: 1.6;

    color: #687984;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-legal a:hover {

    color: var(--tc-orange);

    text-decoration: underline;
}


.footer-legal span {

    font-size: 11px;

    color: #a2adb4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .site-footer {

        padding: 45px 0 30px;
    }


    .footer-brand {

        justify-content: center;

        margin-bottom: 25px;
    }


    .footer-social {

        justify-content: center;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .site-footer {

        padding: 40px 0 25px;
    }


    .footer-logo {

        width: 180px;
    }


    .footer-social {

        flex-direction: column;

        gap: 14px;
    }


    .footer-social > span {

        font-size: 12px;
    }


    .footer-divider {

        margin: 30px 0 22px;
    }


    .footer-copyright p {

        font-size: 11px;
    }


    .footer-legal {

        gap: 4px 6px;

        padding: 0 10px;
    }


    .footer-legal a,
    .footer-legal span {

        font-size: 10px;
    }

}

/* ==================================================
   ANIMACIONES
================================================== */

.animation-ready {

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

}


.show-animation {

    opacity: 1;

    transform: translateY(0);

}

/* =====================================================
   BOTÓN FLOTANTE WHATSAPP
===================================================== */

.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;

    right: 25px !important;
    bottom: 25px !important;

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

    background-color: #25D366 !important;

    border-radius: 50% !important;

    z-index: 999999 !important;

    visibility: visible !important;
    opacity: 1 !important;

    text-decoration: none !important;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}


.whatsapp-float img {
    width: 34px !important;
    height: 34px !important;

    display: block !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.30);
}


/* =====================================================
   WHATSAPP - MOBILE
===================================================== */

@media (max-width: 576px) {

    .whatsapp-float {
        width: 54px !important;
        height: 54px !important;

        right: 16px !important;
        bottom: 16px !important;
    }

    .whatsapp-float img {
        width: 30px !important;
        height: 30px !important;
    }

}