body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Lifetime Header */
.lifetime-header {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px; /* Tamaño incrementado */
    line-height: 1.2em;
    color: #121212;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.lifetime-header span {
    color: green;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.lifetime-header span::before {
    content: "";
    display: block;
    position: absolute;
    width: 120%; /* Ancho ajustable */
    height: 20px;
    left: -10%; /* Centrado ajustado */
    bottom: -5px;
    z-index: -1;
    background-image: url('../assets/brush.svg'); /* Ruta del archivo SVG */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

/* License Box */
.license-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    min-height: 600px;
    width: 100%;
    text-align: left;
}

.license-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

/* PRO Text */
.pro-text {
    color: green;
    text-decoration: none;
    position: relative;
}

.pro-text::before {
    content: "";
    display: block;
    position: absolute;
    width: 120%; /* Ancho ajustable */
    height: 20px;
    left: -10%; /* Centrado ajustado */
    bottom: -10px;
    z-index: -1;
    background-image: url('probrush.svg'); /* Ruta del archivo SVG */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

/* Features */
.feature {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #000;
}

.feature i {
    color: #0FC271;
    margin-right: 12px;
    font-size: 1.3rem;
}

.feature strong {
    font-weight: bold; /* Negritas */
}

/* Responsive Design */
@media (max-width: 768px) {
    .license-box {
        max-width: 100%; /* Mejor ajuste en pantallas móviles */
        margin: 0 auto;
    }

    .lifetime-header {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    

    .row {
        gap: 0px; /* Reducir espacio entre columnas */
    }
}





















:root {
    --primary-blue: #1a56db;
    --input-blue: #2563eb;
    --error-red: #dc3545;
}

.plan-card, .payment-option {
    cursor: pointer;
    transition: all 0.3s ease;
}
.plan-card:hover, .payment-option:hover {
    transform: translateY(-2px);
}
.plan-card.selected, .payment-option.selected {
    border-color: #0d6efd !important;
    background-color: #f8f9ff !important;
}
.payment-method {
    cursor: pointer;
    transition: all 0.2s ease;
}
.payment-method.selected {
    border-color: #0d6efd !important;
    background-color: #f8f9ff !important;
}
.discount-badge {
    position: absolute;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
}
.payment-summary {
    position: sticky;
    top: 2rem;
}

/* Estilos específicos para los inputs */
.form-label {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1.25rem !important;
    transition: all 0.3s ease;
    color: var(--input-blue) !important;
    font-weight: 500;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
    font-size: 1.25rem;
}

.error-message {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.visible {
    display: block;
}

.form-control.error {
    border-color: var(--error-red);
}

.iti {
    width: 100%;
    display: block;
}

.iti__tel-input {
    width: 100%;
}

.iti__selected-flag {
    padding: 0 16px 0 16px !important;
    background-color: transparent !important;
    transition: background-color 0.2s ease;
}

.iti__selected-flag:hover {
    background-color: #f8fafc !important;
}

.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    margin-top: 8px;
    padding: 0;
    max-height: 400px;
    background-color: white;
}

.iti__country {
    font-size: 1.25rem !important;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.iti__country:hover {
    background-color: #f8fafc;
}

.iti__country-name,
.iti__dial-code {
    font-size: 1.25rem !important;
}

.iti input[type=tel] {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    padding-left: 110px !important;
    font-size: 1.25rem !important;
    transition: all 0.3s ease;
    color: var(--input-blue) !important;
    font-weight: 500;
}

.iti input[type=tel]:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}












.faq-section { 
   
    margin: 2rem auto; 
    padding: 0 1rem; 
}
.faq-title { 
    color: #2d5470; 
    font-family: 'Spectral', serif;
    font-size: 3.2rem; 
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    
}
.faq-description { 
    color: #6c757d; 
    margin-bottom: 2rem;
    font-size: 1.1rem;
   
}
.faq-item { 
    border-bottom: 1px solid #dee2e6; 
    margin-bottom: 1rem; 
}
.faq-question {
    background: none;
    border: none;
    color: #073b60;
    cursor: pointer;
    font-family: 'Spectral', serif;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    color: #1a3f5c;
}
.faq-answer {
    color: #0c2a44;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    line-height: 1.6;
}
.faq-answer.active {
    padding: 1rem 0;
    max-height: 600px;
}
.toggle-icon {
    transition: transform 0.3s ease;
    stroke-width: 1.5;
    width: 20px;
    height: 20px;
    margin-left: 23px;
}
.faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.faq-container {
    counter-reset: faq-counter;
}
.faq-question::before {
    content: "0" counter(faq-counter);
    counter-increment: faq-counter;
    color: #ccc;
    font-size: 1.1rem;
    margin-right: 1rem;
    opacity: 0.7;
    font-family: sans-serif;
    min-width: 30px;
}




#loading-wrapper {
    /*background: url('../images/ajax-loader.gif') no-repeat scroll 50% 10% #fff;*/
    background: #0F172A;
    /*background: linear-gradient(180deg, rgba(15,23,42,1) 0%, rgba(51,65,85,1) 74%, rgba(77,91,113,1) 100%);
    /*background: linear-gradient(360deg, rgba(15,23,42,1) 0%, rgba(51,65,85,1) 6%, rgba(255,255,255,1) 100%);*/
    height: 100%;
    left: 0;
    position: fixed;
    opacity: 0.7;
    top: 0;
    width: 100%;
    z-index: 999999;
    display:none;
}
#loading-content {
  display: flex;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: #4d5b71;
  border-bottom-color: #4d5b71;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#loading-content:before {
  border: 3px solid transparent;
  border-top-color: #9baaee;
  border-bottom-color: #9baaee;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}

#loading-content:after {
  border: 3px solid transparent;
  border-top-color: #4f46e5;
  border-bottom-color: #4f46e5;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes loader {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .btnActive{
    background: #08289f !important;
  }