    /* ADVERTENCIA */

    .advertencia{
        max-width: 50%;
        margin: 3rem 0;
        padding: 1rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        color: #ccc;
        background: rgba(235, 219, 0, 0.2); 
        backdrop-filter: blur(10px); /* 🔹 Aquí está el blur */
        -webkit-backdrop-filter: blur(10px); /* Compatibilidad Safari */
        z-index: 5;
    }

    .advertencia b{
        border-bottom: 1px solid #ccc ;
    }

    .advertencia i{
        color: #0a042b;
        background-color: rgb(233, 233, 233);
        padding: 0.2rem;
        border-radius: 50%;
    }

    /* === COMISIÓN ACTUAL === */

    .comisiones{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .comision_box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: .1rem auto 2rem auto;
        width: 20rem;
        height: 10rem;
        padding: 1rem;
        background: rgb(167, 226, 218);
        border-radius: 10px;
        border: 1px solid rgb(117, 170, 163);;
    }

    .comision_box:hover{
        transform: scale(0.98);
    }

    .comision_box:hover b{
        transform: scale(1.05);
    }

    .comision_desc{
        text-align: center;
        color: rgb(92, 92, 92);
        max-width: 70%;
    }

    .comision_box b{
        font-size: 3rem;
        color: green;
    }

    @media(max-width: 1050px)
    {
        .comisiones{
            flex-direction: column;
        }
        
        .comision_box{
            width: 100%;
        }
    }
    
    /* === SECCIÓN DE SERVICIOS === */

    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #cde7e6, #a2dbd7);
        padding: 1rem 1rem;
        text-align: center;

        /* Animación inicial (oculto hasta que se muestre con JS) */
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

    .services.show {
        opacity: 1;
        transform: translateY(0);
    }

    .services .title-2 {
        font-size: 2rem;
        font-weight: 600;
        color: #0d5e5a;
        margin-bottom: 3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .services-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
    }

    .service {
        background: linear-gradient(145deg, #ffffff, #d8f3f1);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        width: 14rem;
        height: auto;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: all 0.3s ease;
        cursor: pointer;

        /* Estado inicial para animación */
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: all 0.6s ease;
    }

    .service.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .service i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        padding: 1rem;
        border-radius: 50%;
        background: linear-gradient(145deg, #e2f3f3, #b4dcd9);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service b {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #084b48;
    }

    .service p {
        font-size: 0.95rem;
        color: #2c2c2c;
        line-height: 1.3rem;
    }

    .service:hover {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        color: #083d3b;
    }

    .service:hover i {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    }

    /* === ENLACE FINAL SERVICIOS === */

    .services a {
        margin-top: 2rem;
        color: #0d5e5a;
        font-size: 1.5rem;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .services a:hover {
        color: #05302e;
        transform: translateY(-2px);
    }

    /* === RESPONSIVE SERVICIOS === */

    @media (max-width: 768px) {
        .services {
            padding: 1rem 1rem;
        }

        .service {
            width: 90%;
            max-width: 18rem;
            height: auto;
        }

        .services .title-2 {
            margin: 1rem 0 2rem 0;
            padding-top: 1rem;
        }
    }


    
    /* TARJETAS PERSONALES (TRAMITADORES ESTRELLA) */ 

    #premium{
        color: yellow;
        position: absolute;
        left: 10px;
        bottom: 10px;
    }

    #premium:hover{
        color: rgb(255, 166, 0);
    }

    #premium:hover::after{
        content: "Premium";
    }

    .top-boxes{
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }

    .box{
        width: 23rem;
        min-height: 29rem;
        max-height: 30rem;
        background: rgb(12, 77, 97);
        border-radius: 4px;
        color: white;
        box-shadow: 0 4px 6px rgba(44, 44, 44, 0.1);
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

    .box::before{
        content: '';
        position: absolute;
        top: -10%;
        left: 50%;
        translate: -50% -50%;
        width: 23rem;
        height: 23rem;
        background: rgb(131, 190, 190);
        border-radius: 50%;
        z-index: -1;
    }

    .box::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgb(131, 190, 190);
        border-radius: inherit;
        opacity: 0;
        z-index: -1;
        transition: 0.5s;
    }

    .box:hover::after{
        opacity: 1;
    }

    .img-name{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 0 0.5rem 0;
        padding: 0 0 0.5rem 0;
        border-bottom: 1px solid #ecfffe;
    }

    .img-name .img{
        width: 10rem;
        height: 10rem;
        background: #161b22;
        border-radius: 50%;
        border: 7px solid rgb(12, 77, 97);
        margin-top: 2rem;
        z-index: 1;
    }

    .stats{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stats p{
        margin: 0.3rem 0 !important;
    }

    .desc{
        text-align: center;
        text-wrap: wrap;
        min-height: 3rem;
        max-height: 3rem;
        overflow-y: auto;
        padding-right: 0.3rem;
        color: gray;
    }

    .desc::-webkit-scrollbar {
        display: none;
    }

    .name{
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .verified{
        color: gray;
        font-style: italic;
        margin: 0.2rem 0;
    }

    .box button{
        display: block;
        margin: 2rem auto;
        background: rgb(131, 190, 190);
        padding: 0.4rem 1rem;
        border: none;
        border-radius: 4px;
        font-weight: bold;
    }

    .box button:hover{
        background: rgb(91, 136, 136);
        color: white;
        cursor: pointer;
    }

    /* PLANES Y SUSCRIPCIONES */

    
    .planes-box{
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }

    .plan-box b{
        font-size: 2rem;
    }

    .plan-box{
        width: 23rem;
        height: 29rem;
        background: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 3rem 0;
        align-items: center;
        border: 1px solid #d8d8d8;
        border-radius: 4px;
        color: rgb(0, 0, 0);
        box-shadow: 0 4px 6px rgba(44, 44, 44, 0.2);
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

    .plan-box::before{
        content: '';
        position: absolute;
        top: -10%;
        left: 50%;
        translate: -50% -50%;
        width: 23rem;
        height: 23rem;
        background: rgb(131, 190, 190);
        border-radius: 50%;
        z-index: -1;
    }

    .plan-box::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgb(131, 190, 190);
        border-radius: inherit;
        opacity: 0;
        z-index: -1;
        transition: 0.5s;
    }

    .plan-box:hover::after{
        opacity: 1;
    }

    .price{
        color: green;
        font-weight: bold;
        text-align: center;
    }

    #container-2 .plan-box ul li{
        list-style: none;
        background: transparent;
        margin: 0;
        padding: 0 0;
        font-weight: 100;
        position: relative;
    }

    #container-2 .plan-box ul li::before{
        content: '';
        width: 0.4rem;
        height: 0.4rem;
        background: rgb(131, 190, 190);
        position: absolute;
        top: 50%;
        left: -1rem;
        transform: translateY(-50%);
        border-radius: 50%;
    }

    .plan-box a{
        display: block;
        margin: 2rem auto;
        background: rgb(131, 190, 190);
        padding: 0.4rem 1rem;
        border: none;
        border-radius: 4px;
        font-weight: bold;
    }

    .plan-box a:hover{
        background: rgb(91, 136, 136);
        color: white;
        cursor: pointer;
    }

    /* BOTON DE MERCADO PAGO */
    
    .btn-mp {
        background: #fffb00; /* azul de MP */
        color: rgb(1, 3, 31);
        padding: 0.5rem 3rem;
        border: 1px solid #bdba01;
        border-radius: 3px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        transition: background 0.3s ease;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .btn-mp:hover {
        color: #000000;
        background: #d6b600; /* azul más oscuro */
    }

    /* === CAJAS DECORATIVAS (INICIO - ABAJO DEL TODO) === */

    .choose-option {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin: 3rem 1rem;
        flex-wrap: wrap; /* se apilan en móvil */
    }

    /* Estilo base para ambas cajas */
    .choose-option-box,
    .choose-option-box-2 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center; 
        width: 30rem;
        max-width: 100%;
        min-height: 16rem;
        border-radius: 12px;
        border: 1px solid #ccc;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    /* Cajas individuales */
    .choose-option-box {
        background-color: #ffffff;
        color: #0d495c;
    }

    .choose-option-box-2 {
        background-color: rgb(131, 190, 190);
        color: #053033;
    }

    /* Hover effects */
    .choose-option-box:hover,
    .choose-option-box-2:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Párrafos y títulos */
    .choose-option-box p,
    .choose-option-box-2 p {
        width: 100%; 
        text-align: left; 
        margin: 0.5rem 0;
        line-height: 1.5rem;
    }

    /* Títulos internos (el primero) */
    .choose-option-box p:first-child,
    .choose-option-box-2 p:first-child {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    /* Botones centrados debajo */
    .a-special-2,
    .a-special-3 {
        display: inline-flex;
        align-items: center;
        justify-content: center; 
        gap: 0.4rem;
        margin: 1.5rem auto 0 auto; 
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        background-color: #0d495c;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .a-special-3 {
        background-color: #053033;
    }

    .a-special-2:hover,
    .a-special-3:hover {
        transform: translateY(-2px);
        background-color: #0b3a46;
    }

    /* Icono en botón */
    .a-special-2 i,
    .a-special-3 i {
        transition: transform 0.3s ease;
    }

    .a-special-2:hover i,
    .a-special-3:hover i {
        transform: translateX(4px);
    }

    /* Animación inicial: invisibles y desplazadas hacia abajo */
    .choose-option-box,
    .choose-option-box-2 {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease-out;
    }

    /* Cuando se agrega la clase show, aparece suavemente */
    .choose-option-box.show,
    .choose-option-box-2.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* === RESPONSIVE === */
    @media (max-width: 900px) {
        .choose-option {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .choose-option-box,
        .choose-option-box-2 {
            width: 90%;
            max-width: 500px;
        }
    }

    /* FONDO BLANCO CON TEXTO */

    .fondo-blanco {
        background-color: #ffffff;
        width: 100%;
        padding: 2rem 1rem;
        text-align: center;
        box-sizing: border-box;
    }

    .fondo-blanco p {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #333333;
        margin: 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .fondo-blanco b {
        font-weight: 700;
        color: #000000;
    }

    /* Tablet */
    @media (min-width: 768px) {
    .fondo-blanco {
        padding: 3rem 2rem;
    }
    
    .fondo-blanco p {
        font-size: 1.75rem;
    }
    }

    /* Escritorio */
    @media (min-width: 1024px) {
    
    .fondo-blanco p {
        font-size: 2.25rem;
        line-height: 1.5;
    }
    }

    /* IMAGEN CON TEXTO SUPERPUESTO (INICIO) */
    /* Contenedor principal */
    .fondo-imagen-con-texto {
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }

    /* Contenedor de imagen y texto */
    .imagen-con-texto {
        position: relative;
        width: 100%;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Imagen responsive */
        .imagen-con-texto img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Texto superpuesto */
    .texto-superpuesto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 90%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
    }

    .texto-superpuesto h2 {
        font-size: 1.5rem;
        margin: 0 0 0.5rem 0;
        font-weight: 700;
        line-height: 1.3;
    }

    .texto-superpuesto p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.5;
        opacity: 0.95;
    }

    /* Tablet y pantallas medianas */
    @media (min-width: 768px) {
    .fondo-imagen-con-texto {
        padding: 2rem;
    }
    
    .texto-superpuesto h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .texto-superpuesto p {
        font-size: 1.25rem;
    }
    }

    /* Escritorio */
    @media (min-width: 1024px) {
        .fondo-imagen-con-texto {
            padding: 3rem;
        }
        
        .imagen-con-texto img {
            min-height: 400px;
            max-height: 600px;
        }
        
        .texto-superpuesto {
            padding: 2rem 3rem;
        }
        
        .texto-superpuesto h2 {
            font-size: 3rem;
            margin-bottom: 1.25rem;
        }
        
        .texto-superpuesto p {
            font-size: 1.5rem;
        }
    }

    /* CARACTERISTICAS EN LOS TEXTOS JUNTO A LAS IMAGENES (INICIO) */

    .caracteristicas{
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        justify-content: left;
        color:#686868;
        margin: 2rem 0;
    }

    .caracteristica-index{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .caracteristica-index i{
        background-color: transparent;
        color: rgb(128, 196, 196);
        font-size: 2rem;
    }

    .caracteristica-index p{
        font-size: 1rem;
    }

    .caracteristicas-2{
        display: flex;
        flex-direction: column; 
        color:#686868;
        i{
            font-size: 2rem; 
            background: transparent; 
            color: rgb(131, 190, 190);
        }
    }

    .caracteristicas-2 p{
        padding-left: 1rem;
        font-size: 2rem;
    }

    .caracteristica {
        display: flex;
        align-items: center;
        margin: 0.5rem 0;
    }


    /* INFORMACIÓN (INICIO - ABAJO DEL TODO) */

    .text-info{
    background: rgb(168, 189, 194);
    padding: 1rem;
    a{
        color:#126d70;
    }
    }
    .text-info-2{
        background: rgb(187, 206, 211);
        padding: 1rem;  
        a{
            color:#126d70;
        }
    }

    .info{
        text-align: justify;
        margin: 0 auto;
        width: 70%;
    }

/*---------------------*/
/* Tarjetas Final */
/*---------------------*/
.info-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ecfffe, #e5f7f6);
}

.container-cards {
    max-width: 1700px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(13, 94, 90);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 15px 20px 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) {
    transition-delay: 0.1s;
}

.card:nth-child(2) {
    transition-delay: 0.2s;
}

.card:nth-child(3) {
    transition-delay: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Ícono dentro del encabezado */
.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgb(13, 94, 90), rgb(20, 140, 135));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0; /* antes tenía margin-bottom */
}

/* SVG */
.card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

/* Título al lado del ícono */
.card-title {
    text-align:left;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Contenido */
.card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 890px) {
    .info-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px 25px 25px 25px;
    }

    .card-header {
        gap: 10px;
    }

    .card-icon {
        width: 42px;
        height: 42px;
    }

    .card-title {
        font-size: 1.3rem;
    }
}


    /*---------------------*/
      /* IMAGEN SERVICIOS */
    /*---------------------*/

    .img-services {
        width: calc(100% + 10rem);
        height: 10rem;
        margin: 7rem -5rem 1rem -5rem;
        background: url(../img/Inicio7.png);
        background-size: cover; 
        background-position: 0 40rem;
        animation: cambiar 10s linear infinite alternate-reverse;
    }

    @media (max-width: 600px){

        .img-services {
            width: calc(100% + 4rem);
            margin: 2rem -2rem 1rem -2rem;
        }
        
    }


    @keyframes cambiar {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 0 100%;
        }
    }

    /*---------------------*/
    /* IMAGEN TRABAJA CON NOSOTROS */
    /*---------------------*/

    .img-minimalistic-worker{
        background: url(../img/Worker.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 10rem;
        height: 15rem;
        position: absolute;
        right: 3rem;
    }
    .img-minimalistic-worker:hover{
        transform: rotate(-10deg) scale(1.05);
    }

    @media (max-width: 600px){
        .img-minimalistic-worker{
            position: absolute;
            right: -5rem;
        }
    }

    /*---------------------*/
    /* IMAGEN QUIENES SOMOS */
    /*---------------------*/

    .img-whoweare {
        margin: -3rem -5rem 1rem -5rem;
        width: calc(100% + 10rem);
        height: 15rem;
        background: url(../img/team.jpg);
        background-size: cover;
        background-position: center;
    }

    @media (max-width: 600px){

        .img-whoweare {
            width: calc(100% + 4rem);
            margin: -2rem -2rem 1rem -2rem;
        }
        
    }


    /*---------------------*/
        /* MI PERFIL */
    /*---------------------*/

    .data-box{
        font-size: 1.5rem;
        background: rgb(230, 223, 195);
        padding: 2rem;
        box-shadow: 0 4px 6px rgb(0,0,0,0.08);
        border-radius: 4px;
    }

    /*---------------------*/
        /* QUIENES SOMOS */
    /*---------------------*/

    .quienessomos{
        display: flex; 
        flex-direction: row; 
        justify-content: center; 
        gap:40px; 
        margin: 3rem 0 0 0;
        text-align: center;
    }

    /* MIEMBROS DEL EQUIPO */

    .team-section-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Renombrado body a .team-page-wrapper para evitar conflictos */
        .team-page-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #a2ccc8, #cbebe9);
            min-height: 100vh;
            padding: 40px 20px;
            border-radius: 10px;
            margin: 3rem 0;
        }

        /* Renombrado .container a .team-main-container */
        .team-main-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Renombrado .header a .team-section-header */
        .team-section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .team-section-header h1 {
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .team-section-header p {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
        }

        /* Renombrado .department a .team-department */
        .team-department {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .team-department.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Renombrado .department-header a .team-dept-header */
        .team-dept-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid;
        }

        /* Renombrado .department-icon a .team-dept-icon */
        .team-dept-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* Renombrado .department-title a .team-dept-title */
        .team-dept-title h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .team-dept-title p {
            color: #666;
            font-size: 1rem;
        }

        /* Colores por departamento */
        .team-dept-it .team-dept-header { border-color: #3b82f6; }
        .team-dept-it .team-dept-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .team-dept-it .team-dept-title h2 { color: #3b82f6; }

        .team-dept-finance .team-dept-header { border-color: #10b981; }
        .team-dept-finance .team-dept-icon { background: linear-gradient(135deg, #10b981, #059669); }
        .team-dept-finance .team-dept-title h2 { color: #10b981; }

        .team-dept-hr .team-dept-header { border-color: #f59e0b; }
        .team-dept-hr .team-dept-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .team-dept-hr .team-dept-title h2 { color: #f59e0b; }

        .team-dept-marketing .team-dept-header { border-color: #ec4899; }
        .team-dept-marketing .team-dept-icon { background: linear-gradient(135deg, #ec4899, #db2777); }
        .team-dept-marketing .team-dept-title h2 { color: #ec4899; }

        .team-dept-operations .team-dept-header { border-color: #8b5cf6; }
        .team-dept-operations .team-dept-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .team-dept-operations .team-dept-title h2 { color: #8b5cf6; }

        /* Agregando estilos para el departamento de fundador con color amarillo */
        .team-dept-founder .team-dept-header { border-color: #eab308; }
        .team-dept-founder .team-dept-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }
        .team-dept-founder .team-dept-title h2 { color: #eab308; }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            transition: left 0.5s ease;
        }

        .team-member:hover::before {
            left: 100%;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .team-member-avatar {
            display: block; /* asegura que margin auto funcione */
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }


        .team-member:hover .team-member-avatar {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .team-member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin:0 !important
        }

        .team-member-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .team-member-role {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .team-member-bio {
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .team-member-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #64748b;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .team-social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .team-social-link.linkedin:hover {
            background: #0077b5;
            color: white;
        }

        .team-social-link.twitter:hover {
            background: #1da1f2;
            color: white;
        }

        .team-social-link.github:hover {
            background: #333;
            color: white;
        }

        .team-social-link.email:hover {
            background: #ea4335;
            color: white;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @media (max-width: 768px) {
            .team-section-header h1 {
                font-size: 2rem;
            }

            .team-department {
                padding: 25px;
            }

            .team-dept-header {
                flex-direction: column;
                text-align: center;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }
        }

    /* PDF  */

    .pdf-container{
        max-width: 15rem;
        margin: 0 auto;
        text-align: center;
        text-decoration: none;
        a{
            text-decoration: none;
        }
    }

    .pdf{
        display: block;
        max-width: 20rem;
        max-height: 3rem;
        background: rgb(131, 190, 190);
        border: 1px solid #ccc;
        border-radius: 2px;
        color: rgb(24, 24, 24);
        padding: 1rem;
        text-wrap: nowrap;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin: 0 auto;
        text-align: center;
        text-decoration: none;
        position: relative;
    }

    .pdf:hover{
        background-color: rgb(128, 255, 213);
        color: rgb(0, 0, 0);
        cursor: pointer;
        transform: scale(1.05);
    }

    /*---------------------*/
        /* CONTACTO */
    /*---------------------*/
    
    .formas-contacto{
        background: #f7f7f7;
        width: 60%;
        min-height: 10rem;
        border: 1px solid #ccc;
        border-radius: 10px;
        margin: 4rem auto 0 auto;
        box-shadow: 2px 2px 2px rgb(165, 165, 165);
    }

    .contacto-box{
        display: flex;
        flex-direction: row;
        justify-content: center;
        i{
            font-size: 2rem;
            background: transparent;
            color: rgb(131, 190, 190);
        }
    }

    .contacto{
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 0 2rem 1rem 2rem;
        text-wrap: nowrap;
    }

    .contacto:hover{
        transform: scale(1.05);
    }

    /*---------------------*/
    /* TRABAJÁ CON NOSOTROS */
    /*---------------------*/

    /* SUBIR CV */

    .upload-file{
        display: block;
        max-width: 20rem;
        background: rgb(131, 190, 190);
        border: 1px solid #ccc;
        border-radius: 2px;
        color: rgb(24, 24, 24);
        padding: 1rem;
        text-wrap: nowrap;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin: 2rem auto;
        text-align: center;
        text-decoration: none;
        position: relative;
    }

    .upload-file button{
        width: 10rem;
        max-width: 10rem;
        margin: 2rem 0 0 0;
        padding: 0.3rem;
        background: rgb(62, 97, 97);
        border: none;
        color: rgb(224, 224, 224);
    }

    .upload-file button:hover{
        transform: scale(1.05);
        cursor: pointer;
    }

    .btn-archivo {
        padding: 0.5rem 1rem;
        background: rgb(77, 141, 141);
        color: white;
        border-radius: 4px;
        cursor: pointer;
        display: inline-block;
        font-family: Arial, sans-serif;
    }

    .btn-archivo:hover {
        background-color: #357abd;
    }


    /* ADAPTADO PARA CELULAR */

    @media (max-width: 1050px) {
        .caracteristicas{
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            justify-content: center;
            color:#686868;
            i{
                background-color: transparent;
                color: rgb(131, 190, 190);
            }
        }

        .caracteristica{
            font-size: 1rem;
        }

        .texto-superpuesto {
            font-size: 1rem;
        }

        

        /* CATEGORIAS */

        .categorias{
            width: calc(100% + 4rem);
            margin: 0 -2rem;
        }

        /* FORMAS DE CONTACTO */

        .contacto-box{
            display: flex;
            flex-direction: column;
            justify-content: center;
            i{
                font-size: 2rem;
                background: transparent;
                color: rgb(131, 190, 190);
            }
        }

        .contacto{
            display: flex;
            flex-direction: column;
            text-align: center;
            margin: 0 3rem 1rem 3rem;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .contacto:hover{
            transform: scale(1.05);
        }

        /* MIEMBROS DEL EQUIPO */

        .pre-team-members{
            width: calc(100% + 4rem);
            margin: 3rem -2rem;
        }

        /* SUBIR CV */
        .upload-file{
            margin: 1rem auto;
        }
    }