 * {
     box-sizing: border-box;
 }



 html {
     scroll-behavior: smooth;
 }

 section {
     scroll-margin-top: -25px;
 }

 /* =========================
        /* BASE */
 /* ========================= */

 html,


 body {
     margin: 0;
     font-family: 'Poppins', sans-serif;
     background: linear-gradient(180deg,
             #dae7fd 0%,
             #ecf2fc 0%,
             #ffffff 100%);
     display: flex;
     flex-direction: column;
     overflow-x: hidden;
 }

 .page-content {
     flex: 1;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 h1,
 h2,
 h3 {
     letter-spacing: -0.5px;
 }

 p {
     letter-spacing: 0.2px;
 }

 /* =========================
           HEADER
        ========================= */
 .logo-link {
     text-decoration: none;
     color: inherit;
     display: inline-block;
 }


 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 40px;
     z-index: 1000;
     background: transparent;
 }

 .navbar.scrolled {
     background: rgba(29, 63, 142, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
 }

 .logo {
     display: flex;
     margin-left: 50px;
     align-items: center;
     gap: 3px;
 }

 .logo img {
     height: 70px;
 }

 .logo-text {
     margin-top: 2px;
     font-size: 26px;
     font-weight: 600;
     letter-spacing: 0.1px;
     color: rgb(29, 63, 142);
 }

 nav {
     display: flex;
     gap: 60px;
     padding-right: 100px;
     opacity: 1;
     visibility: visible;
     transform: translateY(-10px);
     transition: all .35s ease;
 }

 nav a {
     color: rgb(29, 63, 142);
     text-decoration: none;
     font-size: 18px;
     opacity: .9;
     transition: .2s;
     font-weight: 600;
 }

 nav a:hover {
     opacity: 1;
 }

 .navbar.scrolled nav a {
     color: #204bae;
 }

 .menu {
     opacity: 0;
     transform: translateY(-10px);
     transition: all 0.3s ease;
 }

 .navbar.scrolled .menu {
     opacity: 1;
     transform: translateY(0);
 }





 /* =========================
   SLIDER ESPECIALES
========================= */

 .especiales-slider {
     width: 100%;
     height: 100vh;

     position: relative;
     overflow: hidden;

     margin: 0;
     /* 🔥 sin hacks */
     padding: 0;
 }

 .especialesSwiper {
     width: 100%;
     height: 100%;
 }

 /* SLIDE */
 .especialesSwiper .swiper-slide {
     position: relative;
     width: 100%;
     height: 100%;
 }

 /* IMAGEN */
 .especialesSwiper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;

     filter: brightness(1.08) contrast(1.08);

 }

 /* OVERLAY OSCURO PRO */
 .especialesSwiper .swiper-slide::before {
     content: "";
     position: absolute;
     inset: 0;

     background: linear-gradient(90deg,
             rgba(15, 23, 42, 0.85) 0%,
             rgba(15, 23, 42, 0.55) 30%,
             rgba(15, 23, 42, 0.2) 55%,
             rgba(15, 23, 42, 0) 100%);

     z-index: 1;
 }

 .especialesSwiper .swiper-slide-active img {
     transform: scale(1.05);
     transition: transform 6s ease;
 }

 /* TEXTO */
 .especial-overlay {
     position: absolute;
     top: 50%;
     left: 80px;
     /* 🔥 menos desplazado */
     transform: translateY(-50%);
     max-width: 520px;
     z-index: 5;
 }

 /* TITULO */
 .especial-overlay h2 {
     font-size: 60px;
     /* 🔥 más grande */
     font-weight: 700;
     color: white;
     margin: 0;
     line-height: 1.05;
 }

 .especial-overlay p {
     margin-top: 18px;
     font-size: 19px;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.6;
 }

 /* DOTS */
 .especialesSwiper .swiper-pagination-bullet {
     background: rgba(255, 255, 255, 0.7);
     opacity: 1;
 }

 .especialesSwiper .swiper-pagination-bullet-active {
     background: #2563eb;
 }



 /* =========================
           CONTENEDORES GENERALES
        ========================= */
 .colab-hero-content,
 .section-header,
 .pasos-grid,
 .servicios-grid,
 .seguridad-grid,
 .tips-grid {
     max-width: 1200px;
     margin: 0 auto;
 }






 /* =========================
           SECCIONES GENERALES
        ========================= */
 section {
     padding: 100px 20px;
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-header h2 {
     font-size: 36px;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 .section-header p {
     color: #000000;
     font-size: 18px;
 }

 /* =========================
           PASOS WOOBE
        ========================= */
 .colab-pasos h2,
 .colab-servicios h2 {
     max-width: 1200px;
     margin: 0 auto 40px;
     font-size: 36px;
     color: #111827;
 }

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

 .paso-card {
     background: white;
     padding: 30px;
     border-radius: 16px;
     text-align: center;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
 }

 .paso-card span {
     display: inline-block;
     font-size: 30px;
     font-weight: 600;
     color: #111827;
     margin-bottom: 14px;
 }

 .paso-card h3 {
     font-size: 22px;
     color: #111827;
     margin-bottom: 12px;
 }

 .paso-card p {
     font-size: 16px;
     line-height: 1.5;
     color: #111827;
 }

 /* =========================
           SERVICIOS
        ========================= */
 .servicios-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .servicio-card {
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
 }

 .servicio-card h3 {
     font-size: 28px;
     color: #1d3f8e;
     margin-bottom: 16px;
 }

 .servicio-card p {
     font-size: 18px;
     color: #000000;
     line-height: 1.7;
 }

 .servicio-card.especial {
     background: linear-gradient(135deg, #1d3f8e, #204bae);
 }

 .servicio-card.especial h3,
 .servicio-card.especial p {
     color: white;
 }

 /* =========================
           CTA FINAL
        ========================= */
 .colab-cta {
     text-align: center;
     background: linear-gradient(135deg, #1d3f8e, #204bae);
     color: white;
     padding: 80px 20px;
 }

 .colab-cta h2 {
     font-size: 36px;
     margin-bottom: 12px;
 }

 .colab-cta p {
     margin: 20px 0;
     font-size: 18px;
 }

 .colab-cta .btn-principal {
     background: white;
     color: #1d3f8e;
 }


 /* =========================
             SECCIÓN PASO A PASO WOOBE 
            ========================= */
 .woobe-proceso {
     padding: 120px 20px;
     background: transparent;
 }

 /* =========================
              HEADER
             ========================= */
 .proceso-header {
     text-align: center;
     margin-bottom: 70px;
 }

 .linea-progreso {
     height: 4px;
     width: 200px;
     margin: 20px auto 0;
     border-radius: 10px;
     background: linear-gradient(to right, #22c55e, #3b82f6, #8b5cf6);
 }

 .proceso-header h2 {
     font-size: 38px;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 .proceso-header p {
     font-size: 18px;
     color: #000000;
 }

 /* =========================
   GRID FASES
========================= */
 .proceso-fases {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 /* =========================
   CARD FASE
========================= */
 .fase {
     background: white;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .fase:hover {
     transform: translateY(-8px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
 }

 .fase-central {
     transform: scale(1.08);
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
     z-index: 2;
 }

 /* =========================
   NUMERO FASE
========================= */
 .fase-numero {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     font-weight: bold;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     color: white;
 }

 .fase-numero.verde {
     background: #22c55e;
 }

 .fase-numero.azul {
     background: #3b82f6;
 }

 .fase-numero.morado {
     background: #8b5cf6;
 }

 /* =========================
   TITULOS
========================= */
 .fase h3 {
     font-size: 22px;
     margin-bottom: 5px;
     color: #111827;
 }

 .fase-sub {
     font-size: 14px;
     color: #6b7280;
     margin-bottom: 25px;
     display: block;
 }

 /* =========================
   PASOS
========================= */
 .pasos {
     display: flex;
     flex-direction: column;
     gap: 18px;
 }

 .paso {
     display: flex;
     align-items: center;
     gap: 14px;
     transition: transform 0.2s ease;
 }

 .paso:hover {
     transform: translateX(6px);
 }

 /* =========================
   ICONOS (🔥 IMPORTANTE)
========================= */

 /* caja fija */
 .paso-icono {
     width: 40px;
     height: 40px;
     object-fit: contain;

     /* 🔥 aquí controlas tamaño SIN romper layout */
     transform: scale(1.3);
     transition: transform 0.3s ease;
 }

 /* hover suave */
 .paso:hover .paso-icono {
     transform: scale(1.2);
 }

 /* =========================
   TEXTO PASO
========================= */
 .paso span {
     font-size: 15px;
     color: #000000;
 }

 /* /* ========================= */
 /* TIP */
 /* ========================= */
 .tip {
     margin-top: 20px;
     padding: 16px 18px;
     border-radius: 12px;
     background: #eef2ff;
     border-left: 4px solid #facc15;
     display: flex;
     align-items: center;
     gap: 14px;
     font-size: 14px;
     color: #1d3f8e;
 }

 .tip-icono {
     width: 28px;
     height: 20px;
     transform: scale(3);
 }


 .proceso-cta {
     text-align: center;
     margin-top: 70px;
 }

 .proceso-cta h3 {
     font-size: 28px;
     color: #1d3f8e;
 }

 /* =========================
   SERVICIOS CONVENCIONALES COLAB
========================= */

 .convencionales-colab {
     padding: 120px 20px;
     background: transparent;
 }

 /* HEADER */
 .conv-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 70px;
 }

 .conv-header h2 {
     font-size: 40px;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 .conv-header p {
     font-size: 18px;
     color: #4b5563;
 }

 /* GRID */
 .conv-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;

     max-width: 1100px;
     margin: 0 auto;
 }

 /* CARD */
 .conv-card {
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(10px);

     border-radius: 20px;
     padding: 30px;

     text-align: center;

     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

     transition: all 0.3s ease;

     display: flex;
     flex-direction: column;
     justify-content: space-between;

     align-items: center;
     /* 🔥 ESTA LÍNEA ARREGLA TODO */

     height: 100%;
 }

 .conv-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
 }

 /* ICONO */
 .conv-card img {
     width: 80px;
     margin-bottom: 15px;
 }

 /* TITULO */
 .conv-card h3 {
     font-size: 22px;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 /* TEXTO */
 .conv-card p {
     font-size: 15px;
     color: #4b5563;
     line-height: 1.5;
 }

 /* PRECIO */
 .conv-price {
     display: inline-block;
     margin-top: 15px;

     background: #eef2ff;
     color: #1d3f8e;

     padding: 6px 14px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
 }

 /* CARD MÁS */
 .conv-card.mas {
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 /* ICONO MÁS */
 .icono-mas {
     width: 60px;
     height: 60px;

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

     border-radius: 50%;

     font-size: 30px;
     font-weight: 600;

     background: #eef2ff;
     color: #1d3f8e;

     margin-bottom: 10px;
 }

 /* COPY FINAL */
 .conv-copy {
     text-align: center;
     margin-top: 60px;
 }

 .conv-copy p {
     font-size: 20px;
     font-weight: 500;
     color: #1d3f8e;
 }






 /* /* ========================= */
 /* SECCIÓN MEMBRESÍAS */
 /* ========================= */


 .woobe-membresias {
     padding: 40px 20px 120px;
     padding-top: 90px;
     margin-top: -60px;
     background: transparent;
     text-align: center;
 }

 /* HEADER */
 .membresias-header {
     max-width: 700px;
     margin: 0 auto 80px;
 }

 .membresias-header h2 {
     font-size: 40px;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 .membresias-header p {
     font-size: 18px;
     color: #000000;
     line-height: 1.6;
 }

 /* GRID */
 .membresias-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 60px;
     max-width: 1100px;
     margin: 0 auto;
 }

 /* CARD BASE */
 .plan {
     background: white;
     border-radius: 20px;
     padding: 40px 30px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     position: relative;
 }

 .plan:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
 }

 /* 🔥 PLAN DESTACADO (ESTÁNDAR) */
 .plan.recomendado {
     transform: scale(1.06);
     border: 2px solid #1d3f8e;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
     z-index: 2;
 }

 .plan.recomendado:hover {
     transform: scale(1.06) translateY(-10px);
 }

 /* BADGE */
 .badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: #1d3f8e;
     color: white;
     font-size: 12px;
     padding: 6px 12px;
     border-radius: 20px;
     font-weight: 600;
 }

 /* TITULOS */
 .plan h3 {
     font-size: 24px;
     color: #1d3f8e;
     margin-bottom: 5px;
 }

 .plan-sub {
     color: #000000;
     font-size: 14px;
     margin-bottom: 20px;
 }

 /* LISTA */
 .plan ul {
     list-style: none;
     padding: 0;
     margin-bottom: 30px;
 }

 .plan li {
     margin-bottom: 10px;
     font-size: 15px;
     color: #000000;
 }

 /* BENEFICIO NEGATIVO */
 .beneficio-no {
     color: #ef4444;
     font-weight: 500;
 }

 /* BOTÓN */
 .btn-plan {
     background: #f59e0b;
     color: white;
     border: none;
     padding: 14px 22px;
     border-radius: 12px;
     cursor: pointer;
     font-weight: 600;
     transition: 0.3s;
     width: 100%;
 }

 .btn-plan:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 /* INFO FINAL */
 .membresias-info {
     margin-top: 70px;
 }

 .frase {
     font-size: 20px;
     font-weight: 600;
     color: #1d3f8e;
     margin-bottom: 10px;
 }

 .nota {
     color: #000000;
     font-size: 15px;
 }


 /* =========================
   CTA DESCARGA PRO
========================= */
 .cta-descarga {
     padding: 120px 20px;
     background: transparent;
 }

 .cta-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 /* TEXTO */
 .cta-texto {
     max-width: 520px;
 }

 .cta-texto h2 {
     font-size: 42px;
     margin-bottom: 15px;
 }

 .cta-texto .azul {
     color: #1d3f8e;
 }

 .cta-texto p {
     font-size: 18px;
     color: #000000;
     margin-bottom: 25px;
 }

 /* BENEFICIOS */
 .cta-beneficios {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 30px;
     font-size: 15px;
     color: #000000;
 }

 /* BOTONES */
 .cta-botones {
     display: flex;
     gap: 15px;
     justify-content: center;
 }

 .cta-botones img {
     height: 50px;
     cursor: pointer;
     transition: 0.3s;
 }

 .cta-botones img:hover {
     transform: scale(1.05);
 }

 /* IMAGEN */
 .cta-imagen img {
     width: 420px;
     max-width: 100%;
 }




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


 .colaborador .woobe-footer {
     width: 100%;
     padding: 20px 20px 30px;
     /* 🔥 más aire abajo */
     background: #EEF2FF;
     margin-top: auto;
 }

 .colaborador .footer-container {
     all: unset;

     max-width: 1100px;
     margin: 0 auto;

     display: flex;
     flex-direction: column;
     align-items: center;

     text-align: center;
     color: #1d3f8e;

     gap: 35px;
     /* 🔥 antes 10 → más aire */
 }

 .colaborador .footer-bg {
     padding: 60px 20px;
     /* 🔥 igual que cliente */
 }

 .colaborador .footer-logo {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     margin-bottom: 0;

 }

 .colaborador .footer-logo img {
     height: 40px;
 }

 .colaborador .footer-logo span {
     font-size: 20px;
     font-weight: 600;
     color: #1d3f8e;
 }

 .colaborador .footer-links {
     display: flex;
     justify-content: center;
     gap: 25px;
     /* 🔥 más aire horizontal */
     margin-bottom: 10px;
     flex-wrap: wrap;
 }

 .colaborador .footer-links a {
     color: rgb(37, 37, 37);
     text-decoration: none;
     font-size: 15px;
     opacity: 0.8;
 }

 .colaborador .footer-links a:hover {
     opacity: 1;
 }

 .colaborador .footer-copy {
     font-size: 13px;
     opacity: 0.6;
     margin-top: 6px;
 }

 /* 🔥 refuerzo anti-base */
 .colaborador .footer-container * {
     text-align: center;
 }

 /* =========================================
   RESPONSIVE COLABORADOR COMPLETO
========================================= */

 /* =========================
   TABLET (<=1024px)
========================= */

 @media (max-width: 1024px) {

     /* HERO */
     .worker-hero-content {
         gap: 40px;
         padding: 0 20px;
     }

     .worker-hero-texto h1 {
         font-size: 42px;
     }

     /* GRIDS */
     .servicios-grid,
     .pasos-grid,
     .tips-grid,
     .seguridad-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }


 /* =========================
   MOBILE (<=900px)
========================= */

 @media (max-width: 900px) {

     /* NAV */
     nav {
         display: none;
     }

     .logo {
         margin-left: 15px;
     }

     /* HERO */
     .worker-hero {
         min-height: auto;
         padding: 90px 20px 60px;
     }

     .worker-hero-content {
         flex-direction: column;
         align-items: center;
         text-align: center;
         gap: 30px;
     }

     .worker-hero-texto {
         max-width: 100%;
         padding-right: 0;
         align-items: center;
     }

     .worker-hero-texto h1 {
         font-size: 34px;
         line-height: 1.2;
     }

     .worker-hero-texto p {
         font-size: 15px;
     }

     /* PERSONAJE */
     .worker-personaje-wrapper {
         width: 260px;
         max-width: 100%;
     }

     .worker-img {
         width: 100%;
     }

     /* CARDS FLOTANTES */
     .worker-cards {
         display: none;
     }

     /* SECCIONES GENERALES */
     section {
         padding-left: 20px;
         padding-right: 20px;
     }

     /* GRIDS */
     .servicios-grid,
     .pasos-grid,
     .tips-grid,
     .seguridad-grid {
         grid-template-columns: 1fr;
     }

     /* CARDS */
     .servicio-card,
     .tip-card,
     .paso-card {
         height: 100%;
         display: flex;
         flex-direction: column;
     }

     /* SEGURIDAD */
     .escudo-container {
         width: 100%;
         max-width: 300px;
         height: 300px;
         margin: 0 auto;
     }

     .img-escudo {
         width: 200px;
     }

     .img-verificado,
     .img-bloqueado {
         width: 45px;
     }

     .img-reputacion,
     .img-codigo {
         width: 70px;
     }

     .top {
         transform: translate(-50%, -50%) translateY(-95px);
     }

     .left {
         transform: translate(-50%, -50%) translateX(-95px);
     }

     .right {
         transform: translate(-50%, -50%) translateX(95px);
     }

     .bottom {
         transform: translate(-50%, -50%) translateY(95px);
     }

     /* DESCARGAR */
     .descargar {
         padding: 90px 20px 60px;
     }

     .descargar-content {
         flex-direction: column;
         gap: 40px;
         text-align: center;
     }

     .descarga-texto {
         max-width: 100%;
         margin-left: 0;
     }

     .descarga-texto h2 {
         font-size: 32px;
     }

     .descarga-texto .subtexto {
         font-size: 16px;
     }

     .botones-descarga {
         justify-content: center;
         flex-wrap: wrap;
     }

     .mockup {
         margin-right: 0;
     }

     .mockup img {
         width: 100%;
         max-width: 320px;
         transform: none;
     }

     .mockup img:hover {
         transform: translateY(-8px) scale(1.02);
     }

     /* FOOTER */
     footer {
         text-align: center;
     }
 }


 /* /* ========================= */
 /* SMALL MOBILE (<=480px) */
 /* ========================= */
 @media (max-width: 480px) {

     .worker-hero-texto h1 {
         font-size: 28px;
     }

     .worker-hero-texto p {
         font-size: 14px;
     }

     .descarga-texto h2 {
         font-size: 26px;
     }

     .descarga-texto .subtexto {
         font-size: 14px;
     }

 }

 @media (min-width: 1600px) {
     .container {
         max-width: 1400px;
     }
 }