
        /* Variables de color inspiradas en ambigoo.com */
        :root {
            --backClaro:#F2F6F8;
            --plnAppClr:#2888AA;
            --scnPlnAppClr:#729AA9;
            --txtColor:#5F6161;
            --backOscuro:#E9EBEC;

            --primary-color: #4888AA;
            --secondary-color: #6d8bc7;
            --accent-color: #7CA7B7;
            --light-color: #f8f9fa;
            --dark-color: #333;
            --gray-color: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        
   /***log in**/
  .modalMainLogIn{
   position: fixed;
      inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999999999999999999999999999999;
      
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(77, 77, 77, 0.774); /* Fallback color */
    animation-name: loadModal;
    animation-duration: 0.3s;
  }
  
  @keyframes loadModal {
    0% {
      opacity: 0;
      transform: translateZ(70%);
    } 100% {
      opacity: 1;
      transform: translateZ(0%);
    }
  }
  /* Añade esto a tu CSS existente */
@keyframes unloadModal {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
}

  form {
     /*position: fixed;
     inset: 0;
      align-items: center;
      justify-content: center;*/
    width: 440px;
    height: 570px;
    max-width: 90%; /* Para responsive en pantallas pequeñas */
    margin: 0; /* Eliminado el margin anterior */
    
    border-radius: 30px;
    padding: 15px 15px;
    background-color: white;
    box-shadow:0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19);
    /*background: url("../../folder/img/bkLogin.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 99% 100%;*/
  }
  .txtShwPw{
    padding-left: 7px;
    font-family:'poppinsRegular';
  }
  .dvAmgImg{
    text-align: center;
    padding-top: 70px;
    padding-bottom: 34px;
  }
  #imgAmbgLog{
    border-radius: 25px;
    width: 100%;
  }
  .divEml{
    margin-left: 7%;
    margin-right: 7%;
  }
  #loginEmail{
    background-color: white;
    text-align: center;
    width:96%;
    height: 34px;
    font-size: 17px;
    padding: 7px;
    outline: none;
    border: 1px solid #2888AA;
    border-radius: 12px;
    background-image: url("../../folder/img/Correo.svg");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 1% 45%;
    font-family:'poppinsLight';
  }
  #loginEmail:focus{
    background-image: url("../../folder/img/Correo.svg");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 1% 45%;
    outline: none;
  }
  #loginEmail:active{
    background-image: url("../../folder/img/Correo.svg");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 1% 45%;
    outline: none;
  }
  .divPass{
    margin-left: 7%;
    margin-right: 7%;
    margin-top: 3%;
  }
  #loginPassword{
    text-align: center;
    width: 96%;
    padding: 7px;
    height: 34px;
    font-size: 17px;
    border: 1px solid #2888AA;
    border-radius: 12px;
    background-image: url("../../folder/img/Contraseña.svg");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 1% 45%;
  }
  .dvShwPs{
    text-align: left;
    margin-top: 4%;
  }
  .txBxPss{
    margin-left: 7%;
  }
  .txBxPss:hover{
    cursor: pointer;
  }
  .txtRcvPw{
    margin-left: 7%;
    font-size: px;
    font-family:'poppinsLight';
    text-decoration: underline;
  }
  .txtRcvPw:hover{
    cursor: pointer;
    color: #2888AA;
  }
  .dvLgBtn{
    text-align: center;
  }
  .dvGl{
    text-align: center;
    margin-top: 4%;
  }
  .dvGlB{
    text-align: center;
    margin-top: 5%;
  }
  .btnRgst{
    padding: 7px 55px 7px 55px;
    color: white;
    background-color: #2888AA;
    font-size: 17px;
    font-family: 'poppinsRegular';
    margin: 30px 0px 0px;
    text-align: center;
    border: 0.5px solid #2888AA;
    border-radius: 20px;
    font-family:'poppinsLight';
  }
  .btnRgst:hover{
    cursor:pointer;
    transform: scale(1.02);
    background-color: #2888AA;
    box-shadow: 5px 5px 5px #C7C7C7;
    opacity: 0.9;
  }
   button {
    padding: 18px 20px;
    color: white;
    background-color: #2888AA;
    font-size: 1rem;
    font-family: 'poppinsRegular';
    margin: 30px 0px 0px;
    width: 50%;
    height: auto;
    padding: 20px;
    text-align: center;
    line-height: 0px;
    border: 0.5px solid #2888AA;
    border-radius: 20px;
  }
  
  button:hover{
    cursor:pointer;
    transform: scale(1.02);
    background-color: #2888AA;
    box-shadow: 5px 5px 5px #C7C7C7;
    opacity: 0.9;
  }

/***********/

        /*Modal de recuperación de contraseña*/
        /* Estilos del modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 99999999999999999999999999999999999999999999999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s;
        }
        .mnTxRcvPw{
          font-size: 27px;
          font-family:'poppinsSemiBold';
        }
        .sbTxtRcvPw{
          font-size: 14px;
          font-family:'poppinsLight';
        }
        .btnRcvPw{
          font-size: 17px;
          font-family:'poppinsLight';
          padding: 5px 25px 5px 25px;
          background-color: #4888AA;
          color: white;
          border: 3px solid #4888AA;
          border-radius: 25px;
        }
        .btnRcvPw:hover{
          cursor: pointer;
          box-shadow: 2px 2px 7px #888888;
              
        }
        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            height: auto;
            max-width: 500px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.3s;
            align-items: center;
            text-align: center;
        }
        @keyframes slideDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-modal:hover {
            color: #333;
        }
        /* Estilos del formulario */
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
            transition: border 0.3s;
        }
        .form-group input:focus {
            border-color: #4888AA;
            outline: none;
        }
        .btn-submit {
            background-color: #4888AA;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: #4888AA;
        }
        /* Estilos del mensaje */
        .message {
            margin-top: 20px;
            padding: 12px;
            border-radius: 4px;
            text-align: center;
            display: none;
        }
        .success {
            background-color: #dff0d8;
            color: #4888AA;
            border: 1px solid #d6e9c6;
            display: block;
        }
        .error {
            background-color: #f2dede;
            color: #a94442;
            border: 1px solid #ebccd1;
            display: block;
        }
        /* Estilos para el título */
        h2 {
            color: #333;
            margin-top: 0;
            text-align: center;
        }
        p {
            color: #666;
            text-align: center;
            margin-bottom: 25px;
        }


/*******  Modal email confirmation *********/

.modalConfirm {
  display: none;
  position: fixed;
  z-index: 999999999999999999999999999999999999999999999999999999999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modalContentConfirm {
  background-color: #fefefe;
  margin: auto;
  margin-top: 7.7%;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 450px;
  text-align: center;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
.tpTxt{
  color: #333;
  margin-bottom: 15px;
  font-size: 27px;
  font-family: "poppinsSemiBold";
}
.sbtpTxt{
  text-align: justify;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "poppinsLight";
  font-size: 17px;
}
.smltpTxt{
  text-align: justify;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "poppinsLight";
  font-size: 14px;
}
.sbsbTxt{
  color: #333;
  font-size: 14px;
  font-family: "poppinsSemiBold";
}
.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0px;
}
.dvMdlVrf{
  width: 100%;
  text-align: right;
}
.clsMdlEmlVrf{
  font-family:'poppinsLight';
  font-size: 19px;
  color: #777777;
}
.clsMdlEmlVrf:hover{
  cursor: pointer;
  color: #0e0e0e;
  font-size: 20px;
}
.resend-btn, .logout-btn {
  padding: 20px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  
}
.resend-btn {
  background-color: #4888AA;
  color: white;
  border-radius: 25px;
  font-family: "poppinsLight";
  font-size: 14px;
}
.resend-btn:hover {
  background-color: #3367D6;
}
.logout-btn {
  background-color: #4888AA;
  color: #ffffff;
  border-radius: 25px;
}
.logout-btn:hover {
  background-color: #e2e2e2;
}

        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: white;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        @font-face{
      font-family:'poppinsExtraBold';
      src:url("/flsCss/filesCss/fonts/Poppins-ExtraBold.ttf")
  }@font-face{
      font-family:'poppinsExtraBoldItalic';
      src:url('/flsCss/filesCss/fonts/Poppins-ExtraBoldItalic.ttf');
  }@font-face{
      font-family:'poppinsSemiBold';
      src:url('/flsCss/filesCss/fonts/Poppins-SemiBold.ttf');
  }
  @font-face{
      font-family:'poppinsRegular';
      src:url('/flsCss/filesCss/fonts/Poppins-Regular.ttf');
  }@font-face{
      font-family:'poppinsLight';
      src:url('/flsCss/filesCss/fonts/Poppins-Light.ttf');
  }


        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
            
        }

        /* Tipografía */
        h1, h2, h3, h4 {
            color: var(--plnAppClr);
            line-height: 1.3;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2.9rem;
            font-family:'poppinsRegular';
        }
        

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .btnTxt{
                color: var(red);
            }
        h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--gray-color);
             font-family:'poppinsRegular';
            
        }
        .sbTxt{
            text-align: justify;
            color: var(--txtColor);
        }
        .nvImg{
            width: 250px;
            height: auto;
        }
        .mnTxt{
            color: var(--txtColor);
            font-family:'poppinsRegular';
            font-size: 2.2rem;
        }
        .highlight {
            color: var(--accent-color);
            font-family:'poppinsRegular';
            font-size: 2.2rem;
        }
        .highlightB {
            color: var(--plnAppClr);
            font-family:'poppinsRegular';
            font-size: 2.2rem;
        }
        .highlightBtn {
            color: var(--txtColor);
            font-family:'poppinsRegular';
        }

        /* Botones */
        .btn {
            display: inline-block;
            padding: 4px 40px;
            background-color: var(--scnPlnAppClr);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-family:'poppinsRegular';
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background-color: var(--plnAppClr);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 111, 165, 0.3);
        }
        .btnTp{
            display: inline-block;
            padding: 1px 20px;
            background-color: var(--scnPlnAppClr);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-family:'poppinsRegular';
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow);
        }

        .btnTp:hover {
            background-color: var(--plnAppClr);
            transform: translateY(-3px);
            box-shadow: 0 2px 2px rgba(74, 111, 165, 0.3);
            color: white;
            text-decoration: none;
        }

        .btn-accent {
            background-color: var(--accent-color);
        }

        .btn-accent:hover {
            background-color: #2272B2;
            color: white;
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 5px 0;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }


        .logo h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            padding: 5px 30px;
        }

        nav a {
            font-family:'poppinsRegular';
            text-decoration: none;
            color: var(--txtColor);
            transition: var(--transition);
            font-size: 17px;
        }

        nav a:hover {
            color: var(--plnAppClr);
            text-decoration: underline;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            margin: 0px;
            width: 30px;
        }
        .mobile-menu-btn:hover{
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            padding-top: 180px;
            padding-bottom: 100px;
            /*background: linear-gradient(135deg, rgba(74, 111, 165, 0.1) 0%, rgba(109, 139, 199, 0.05) 100%);*/
            background-color: var(--backClaro);
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-text {
            
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        

        .hero-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .hero-image {
            flex: 1;
            text-align: center;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        
        /* Beneficios Section */

        .section-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            max-width: 1100px;
            margin: 80px auto; /* Centrado automático */
            padding: 20px;
            opacity: 0; /* Inicialmente oculto para la animación */
            transform: translateY(50px);
            transition: all 0.8s ease-out;
            border-bottom: 0.2px solid #dcdcdc;
            border-top: 0.2px solid #dcdcdc;
            border-left: 0.2px solid #dcdcdc;
            border-right: 0.2px solid #dcdcdc;
            border-radius: 25px;
        }

        .section-containerB {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            max-width: 1100px;
            margin: 80px auto; /* Centrado automático */
            padding: 20px;
            opacity: 0; /* Inicialmente oculto para la animación */
            transform: translateY(50px);
            transition: all 0.8s ease-out;
            border-bottom: 0.2px solid #dcdcdc;
            border-top: 0.2px solid #dcdcdc;
            border-left: 0.2px solid #dcdcdc;
            border-right: 0.2px solid #dcdcdc;
            border-radius: 25px;
        }

        /* Clase que activa la animación */
        .section-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .section-containerB.visible {
            opacity: 1;
            transform: translateY(0);
        }
         /* --- LADO IZQUIERDO: LA TARJETA --- */
        .card {
            position: relative;
             width: 100%;
            max-width: 500px;
            height: 320px;
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            flex-shrink: 0;
            background-color: var(--backClaro);
        }

        .card-left {
            background-color: var(--backClaro);
            width: 100%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            
        }
        .card-left img {
            width: 100%;
            opacity: 0.8;
            height: auto;
            max-height: 180px;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
            
        }
        .ftsTxt{
            padding: 10px 20px;
            margin: 0px;
            color: var(--txtColor);
            font-family:'poppinsLight';
      
            font-size: 35px;
        }
        .ftsTxtB{
            padding:10px 20px;
            margin: 30px;
            color: var(--txtColor);
            font-family:'poppinsLight';
      
            font-size: 35px;
        }
        .txtPlnAppA{
            color: var(--plnAppClr);
            font-size: 38px;
            font-family:'poppinsLight';   
        }
        .txtPlnAppB{
            color: var(--plnAppClr);
            font-size: 38px;
            font-family:'poppinsSemiBold';
      
        }
        /* Cuando la sección es visible, activamos la animación de la card-left */
        .section-container.visible .card-left,
        .section-containerB.visible .card-left {
            animation: cardExpandAnimation 1s ease-out forwards;
        }
        
        /* Animación que comienza en 90% y termina en 45% */
        @keyframes cardExpandAnimation {
            0% {
                width: 1000%;
                opacity: 0.7;
            }
            40% {
                opacity: 1;
            }
            60% {
                width: 90%;
            }
            100% {
                width: 45%;
                opacity: 1;
            }
        }
        

        .card-right {
            background-color: var(--light-beige);
            width: 55%;
            position: relative;
        }

        .brand-logoLft {
            color: white;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 40px;
            position: absolute;
            top: 25px;
            right: 25px;
        }
        .brand-logoRgt {
            color: white;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 40px;
            position: absolute;
            top: 25px;
            left: 25px;
        }
        .bicycle-img {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            height: 85%;
            object-fit: contain;
        }
        /* --- LADO DERECHO: TEXTO --- */
        .content-right {
            max-width: 450px;
        }
        .label {
            color: var(--txtColor);
            text-transform: uppercase;
            font-weight: bold;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }
        .section-container.visible .label,
        .section-containerB.visible .label {
            animation-duration:1s;
            animation-name: uptToDwn;
        }
        .main-title {
            font-size: 35px;
            line-height: 1.1;
            margin: 0 0 20px 0;
            font-weight: 600;
            
        }
        .section-container.visible .main-title,
        .section-containerB.visible .main-title{
             animation-duration:1.5s;
            animation-name: uptToDwn;
        }
        .description {
            font-size: 18px;
            line-height: 1.5;
            color: var(--txtColor);
            text-align: left;
            
        }
        .section-container.visible .description,
        .section-containerB.visible .description{
            animation-duration:2s;
            animation-name: uptToDwn;
        }

        /* Responsive */

         /* Tablets y Laptops pequeñas */
        @media (max-width: 1024px) {
            .section-container, .section-containerB {
                gap: 30px;
                padding: 40px;
            }
            .main-title { font-size: 28px; }
            .card { height: 280px; }
        }

        /* Celulares y Tablets Verticales */
        @media (max-width: 768px) {
            .section-container, .section-containerB {
                flex-direction: column !important; /* Apilar vertical */
                text-align: center;
                margin: 40px auto;
            }

            /* En móviles, la sección B invierte orden para que imagen salga arriba */
            .section-containerB {
                flex-direction: column-reverse !important;
            }

            .card {
                max-width: 100%;
                height: 250px;
            }

            .content-right {
                max-width: 100%;
            }
            @keyframes cardExpandAnimation {
                0% { width: 100%; opacity: 0.7; }
                100% { width: 50%; opacity: 1; }
            }
        }
        /* Celulares pequeños */
        @media (max-width: 480px) {
            .main-title { font-size: 24px; }
            .description { font-size: 16px; }
            .card { height: 200px; }
        }
        @media (max-width: 900px) {
            .section-container {
                flex-direction: column;
                text-align: center;
            }
            .section-containerB {
                flex-direction: column;
                text-align: center;
            }
            .card {
                width: 100%;
                max-width: 450px;
            }
        }

@keyframes uptToDwn {
  0%, 50% { /* Los primeros 50% son de espera */
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

        .beneficios {
            background-color: var(--white);
            padding: 20px 20px 5px 20px;
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .beneficio-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
        }

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

        .beneficio-card:nth-child(1) { transition-delay: 0.1s; }
        .beneficio-card:nth-child(2) { transition-delay: 0.2s; }
        .beneficio-card:nth-child(3) { transition-delay: 0.3s; }
        .beneficio-card:nth-child(4) { transition-delay: 0.4s; }

        .beneficio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .beneficio-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Como funciona Section */
        .como-funciona {
            background-color: var(--backOscuro);
        }
        .hwWrk{
            color: var(--txtColor);
        }

        .pasos-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .paso {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .paso:nth-child(1) { transition-delay: 0.1s; }
        .paso:nth-child(2) { transition-delay: 0.3s; }
        .paso:nth-child(3) { transition-delay: 0.5s; }

        .paso-numero {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            position: relative;
        }

        .paso-numero:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Testimonios Section */
        .testimonios {
            background-color: var(--white);
        }

        .testimonios-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonio-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
            
        .testimonio {
            min-width: 100%;
            padding: 40px;
            background-color: var(--backClaro);
            border-radius: 15px;
            text-align: left;
            box-shadow: var(--shadow);
        }

        .testimonio-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid var(--white);
            box-shadow: var(--shadow);
        }

        .testimonio-text {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .testimonio-author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 1px;
            height: 1px;
            border-radius: 50%;
            background-color: var(--light-gray);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* CTA Section */
        .cta {
            /*background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);*/
            background-color: var(--backClaro);
           /* color: color: var(--txtColor);;*/
            text-align: center;
        }

       /* .cta h2, .cta p {
            color: white;
        }

        .cta h2:after {
            background-color: var(--accent-color);
        }*/

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            text-align: left;
        }

        .cta-content.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background-color: var(--plnAppClr);
            color: white;
            padding: 70px 0 30px;
        }
        .ftrTxt{
            color: white;
            padding-left: 80px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 10px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text, .hero-image {
                transform: translateY(50px);
            }
            
            .hero-text.animate, .hero-image.animate {
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: var(--shadow);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 80px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }