   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fdff 0%, #e8f8ff 100%);
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #2eb5c9 0%, #1a8b9e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 15px rgba(46, 181, 201, 0.3);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .logo {
            width: 50%;
            height: 50%;
           
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .logo-svg {
            width: 100%;
            height: 100%;
        }

        .brand-text {
            text-align: left;
        }

        .brand-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .brand-text .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            color: #2eb5c9;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(46, 181, 201, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(46, 181, 201, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2eb5c9, #1a8b9e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 0;
            background: linear-gradient(135deg, #2eb5c9 0%, #1a8b9e 100%);
            color: white;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .pricing-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin: 0 auto;
            max-width: 1000px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            background: linear-gradient(135deg, #2eb5c9, #1a8b9e);
            color: white;
            padding: 1.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
        }

        td {
            padding: 1rem;
            text-align: center;
            color: #333;
            border-bottom: 1px solid #eee;
        }

        tr:hover {
            background: #f8fdff;
        }

        .package-name {
            font-weight: 700;
            color: #2eb5c9;
            font-size: 1.1rem;
        }

        .price {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a8b9e;
        }

        .savings {
            color: #27ae60;
            font-weight: 600;
        }

        .cta-section {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            /*background-color: white;
            margin: 1.5% auto;
            padding: 3rem;
            border: none;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease;*/
            background-color: white;
            margin: 1.5% auto;
            padding: 3rem;
            border: none;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;

            max-height: 90vh;
            overflow-y: scroll; /* Scroll funcional */

            /* Ocultar barra de scroll */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE 10+ */

        }
        .modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Opera */
}

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

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #2eb5c9;
        }

        .modal h3 {
            color: #2eb5c9;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #2eb5c9;
        }

        .payment-button {
            width: 100%;
            background: linear-gradient(135deg, #2eb5c9, #1a8b9e);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 181, 201, 0.3);
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .brand-text h1 {
                font-size: 1.8rem;
            }
            
            .pricing-table {
                overflow-x: auto;
            }
            
            table {
                min-width: 600px;
            }
        }
        .boton-modal {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal-personalizado {
  display: none;
  position: fixed;
  z-index: 1000;
 
  top: 0;
  width: 100vw;
  height: 100vh;
  
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 6vh;

}

.modal-contenido {
  background: white;
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  box-shadow: 0px 0px 36px 0px rgba(131, 28, 45, 0.952);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.animar-entrada {
  transform: scale(1);
  opacity: 1;
}

.animar-salida {
  transform: scale(0.7);
  opacity: 0;
}

.modal-header-personalizada {
  background-image: url('https://pasarela.test/assets/images/header-modalpago.png');
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  padding: 40px 20px 60px 20px;
  position: relative;
  text-align: center;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.modal-body, .modal-footer {
  padding: 20px;
}

.form-control, .form-select {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 150px;
}

.btn-success {
  padding: 10px 20px;
  background-color: #28a745;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .modal-contenido {
    max-width: 95%;
  }

  .modal-header-personalizada img {
    width: 50%;
  }

  .cerrar {
    font-size: 20px;
  }
}




.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}