/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
    background-color: #000;
  }
  
  /* CONTENEDORES */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* HEADER */
.main-header {
    background: linear-gradient(to right, #87cb28, #75a93b);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1.5rem);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo imagen */
  .logo img {
    height: clamp(30px, 5vw, 50px);
  }
  
  /* Menú normal */
  .navbar {
    display: flex;
    align-items: center;
  }
  
  /* Botones */
  .navbar a {
    margin-left: clamp(1rem, 2vw, 2rem);
    text-decoration: none;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  
  .btn {
    padding: clamp(0.5rem, 1vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 5px;
    font-weight: bold;
  }
  
  .btn-primary {
    background-color: #87cb28;
    color: black;
  }
  
  .btn-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
  }
  
  /* Botón hamburguesa */
  .menu-toggle {
    display: none;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .navbar {
      display: none;
      flex-direction: column;
      background: linear-gradient(to right, #87cb28, #75a93b);
      width: 100%;
      text-align: center;
      margin-top: 1rem;
      gap: 1rem;
    }
  
    .navbar.active {
      display: flex;
    }
  
    .header-container {
      flex-wrap: nowrap;
      justify-content: space-between;
    }
  }
  
  /* HERO SECTION */
  .hero {
    background: url('../images/kinxpay-bg-hero.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(6rem, 10vh, 8rem);
  }
  
  .hero-content {
    max-width: 700px;
  }
  
  .hero-box {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid #87cb28;
    padding: clamp(1rem, 4vw, 2rem);
    border-radius: 10px;
    text-align: left;
  }
  
  .hero-box h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #87cb28;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .hero-box p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    color: #fff;
  }
  
  .learn-more-btn {
    display: inline-block;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 2rem);
    border: 1px solid #87cb28;
    color: #87cb28;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero {
      text-align: center;
      padding-top: clamp(4rem, 8vh, 6rem);
    }
  
    .header-container {
      flex-direction: column;
      gap: 10px;
    }
  
    .navbar {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  }

  /* SECTION 1 */
.future-section {
    background: url('../images/kinxpay-bg-s1.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    align-items: center;
  }
  
  .future-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
  }
  
  .future-left {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .future-left .icon-large {
    width: clamp(200px, 30vw, 313px);
    height: auto;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }
  
  .future-left .icon-row {
    width: clamp(200px, 25vw, 276px);
    height: auto;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }
  
  .future-highlight {
    color: #87cb28;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    margin-top: clamp(1rem, 2vw, 2rem);
  }
  
  .future-right {
    flex: 1 1 50%;
    color: white;
  }
  
  .future-right h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .future-right p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  .btn-get-started {
    display: inline-block;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid #87cb28;
    color: #87cb28;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .future-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .future-right {
      margin-top: clamp(2rem, 5vw, 3rem);
    }
  }

  /* SECTION 2 */
.unified-payment-section {
    background: url('../images/kinxpay-bg-s2.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .unified-payment-container {
    text-align: center;
    max-width: 1000px;
    width: 90%;
    color: black;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  /* Fila 1 - Header */
  .unified-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .unified-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
  }
  
  /* Fila 2 - Tabla */
  .unified-table {
    width: 70%;
    margin: 0 auto;
  }
  
  .table-row {
    padding: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    font-weight: 500;
  }
  
  /* Colores alternos */
  .row-1, .row-3, .row-5 {
    background-color: #75a93b;
  }
  
  .row-2, .row-4, .row-6 {
    background-color: #87cb28;
  }
  
  /* Fila 3 - Footer */
  .unified-footer p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: bold;
  }

  /* SECTION 3 */
.global-section {
    background: url('../images/kinxpay-bg-s3.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    align-items: center;
  }
  
  .global-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
  }
  
  /* Columna izquierda */
  .global-left {
    flex: 1 1 50%;
    color: white;
  }
  
  .global-left h2 {
    color: #87cb28;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .global-left p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .btn-global {
    display: inline-block;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid #87cb28;
    color: #87cb28;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* Columna derecha */
  .global-right {
    flex: 1 1 40%;
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 2rem);
  }
  
  .graph-icon {
    width: clamp(8px, 2vw, 17px);
    height: clamp(200px, 30vh, 239px);
  }
  
  .global-list {
    list-style: none;
    padding: 0;
  }
  
  .global-list li {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .global-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .global-right {
      justify-content: center;
    }
  }

  /* SECTION 4*/
  .security-section {
    background: url('../images/kinxpay-bg-s4.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    justify-content: flex-end; /* Centra verticalmente el contenedor */
    align-items: center;     /* Centra horizontalmente el contenedor */
    flex-direction: column;
  }
  
  .security-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrar el contenido verticalmente */
    align-items: center;
   
  }
  
  /* Primera fila */
  .security-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }
  
  /* Columna izquierda */
  .security-left {
    flex: 1 1 50%;
    color: #000;
  }
  
  .security-left h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .security-left p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  /* Columna derecha */
  .security-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }
  
  .security-graph {
    width: clamp(8px, 2vw, 17px);
    height: clamp(200px, 30vh, 239px);
  }
  
  .security-list {
    list-style: none;
    padding: 0;
  }
  
  .security-list li {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  /* Segunda fila */
  .security-bottom {
    text-align: center;
  }
  
  .btn-security {
    display: inline-block;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid #87cb28;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .security-top {
      flex-direction: column;
      text-align: center;
    }
  
    .security-right {
      justify-content: center;
    }
  }

  /* SECTION 5 */
.platform-section {
    background: url('../images/kinxpay-bg-s5.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    align-items: center;
  }
  
  .platform-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
  }
  
  /* Columna izquierda */
  .platform-left {
    flex: 1 1 50%;
    color: white;
  }
  
  .platform-left h2 {
    color: #87cb28;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .platform-left p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .platform-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
  
  .platform-list li {
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  
  /* Botón */
  .btn-platform {
    display: inline-block;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid #87cb28;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* Columna derecha */
  .platform-right {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .platform-img {
    width: clamp(300px, 50vw, 570px);
    height: auto;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .platform-container {
      flex-direction: column;
      text-align: center;
    }
  
    .platform-right {
      margin-top: clamp(2rem, 5vw, 3rem);
    }
  }

  /* SECTION 6 */
.friction-section {
    background: url('../images/kinxpay-bg-s6.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
    display: flex;
    align-items: center;
  }
  
  .friction-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
  }
  
  /* Columna izquierda */
  .friction-left {
    flex: 1 1 50%;
    color: white;
  }
  
  .friction-left h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .friction-left p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  
  .btn-friction {
    display: inline-block;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid #87cb28;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* Columna derecha */
  .friction-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }
  
  .friction-graph {
    width: clamp(60px, 10vw, 109px);
    height: clamp(300px, 50vh, 391px);
  }
  
  .friction-list {
    list-style: none;
    padding: 0;
    color: #fff;
  }
  
  .friction-list li {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .friction-container {
      flex-direction: column;
      text-align: center;
    }
  
    .friction-right {
      justify-content: center;
    }
  }

  /* SECTION 7*/
.contact-section {
    background: url('../images/kinxpay-bg-s7.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .contact-container {
    width: clamp(300px, 90%, 1096px);
    min-height: clamp(400px, 60vh, 583px);
    background: rgba(0, 0, 0, 0.10) url('../images/kinxpay-bg-s7-cs.png') no-repeat center center/cover;
    background-blend-mode: overlay;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: clamp(2rem, 5vw, 4rem);
    gap: 20px;
  }
  
  /* Columna izquierda */
  .contact-info {
    flex: 1 1 40%;
    color: white;
  }
  
  .contact-info h2 {
    color: #87cb28;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .contact-info p {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  
  /* Columna derecha */
  .contactForm {
    flex: 1 1 55%;
    color: white;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    padding: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-bottom: 1px solid #87cb28;
  }
  
  .btn-send {
    background: transparent;
    border: 1px solid #87cb28;
    color: #87cb28;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn-send:hover {
    background: #87cb28;
    color: #000;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  }

  /* FOOTER */
.main-footer {
    background-color: #000;
    padding: clamp(1rem, 2vw, 2rem) 0;
    text-align: center;
  }
  
  .main-footer p {
    color: white;
    font-size: 14px;
  }

#footer {
    background: black;
    padding: 0 0 10px 0;
    color: #eee;
    font-size: 14px;
}

    #footer .footer-top {
        background: #4B0082;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 34px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                color: #fff;
                font-weight: 400;
                letter-spacing: 3px;
                text-transform: uppercase;
            }

            #footer .footer-top .footer-info p {
                font-size: 13px;
                line-height: 24px;
                margin-bottom: 0;
                color: #ecf5ff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #007bff;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #0067d5;
                color: #fff;
            }

        #footer .footer-top h4 {
            font-size: 14px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul li {
                    padding: 8px 0;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #ecf5ff;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #74b5fc;
                    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

        #footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-newsletter input[type="email"] {
                border: 0;
                padding: 6px 8px;
                width: 65%;
            }

            #footer .footer-top .footer-newsletter input[type="submit"] {
                background: #4B0082;
                border: 0;
                width: 35%;
                padding: 6px 0;
                text-align: center;
                color: #fff;
                transition: 0.3s;
                cursor: pointer;
            }

                #footer .footer-top .footer-newsletter input[type="submit"]:hover {
                    background: #4B0082;
                }

    #footer .copyright {
        text-align: center;
    }

        #footer .copyright a {
            text-align: center;
            color: white;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

    #footer .credits {
        text-align: center;
        font-size: 13px;
        color: #f1f7ff;
    }

        #footer .credits a {
            color: #bfddfe;
        }

            #footer .credits a:hover {
                color: #f1f7ff;
            }

    #footer .divSec {
        text-align: center;
        color: white;
        padding-bottom: 10px;
    }

.table1 {
    padding: 0;
    border: 10px;
    margin: 0;
}

table.table1 td {
    background: #f3f3f3;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 15px;
    font-weight: normal;
    vertical-align: middle;
    background-color: white;
}

a.astartSignUp {    
    cursor: pointer;
}

 #contact #sentMessage {
     color: White;     
     display: none;
     text-align: center;
     padding: 15px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 #contact .contactForm #errorMessage {
     color: red;
     display: none;
     border: 1px solid red;
     text-align: center;
     padding: 15px;
     font-weight: 600;
     margin-bottom: 15px;
 }

     #contact #sentMessage.show,
     #contact .contactForm #errorMessage.show,
     #contact .contactForm .show {
         display: block;
     }

 #contact .contactForm .validation {
     color: red;
     display: none;
     margin: 0 0 20px;
     font-weight: 400;
     font-size: 13px;
 }

 