@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/Poppins/Poppins-BlackItalic.ttf') format('truetype');
}

body, p, .hero-subtitle, .liderz-text, .choose-benefits, .choose-benefits-mobile, .choose-form, .faq-accordion, .faq-disclaimer {
  font-family: 'General Sans', 'General Sans Placeholder', sans-serif !important;
  line-height: 1.3;
}
@media (min-width: 577px) {
  .testimonio-desc, .testimonio-rol, .testimonio-ganancia {
    line-height: 1.4 !important;
  }
}
h1, h2, h3, h4, h5, h6, .btn, .join-button, .choose-title, .testimonios-main-title, .liderz-title, .faq-clan, .faq-supremo, .faq-title, .choose-tab, .choose-form-title, .choose-form .btn, .choose-form .join-button {
  font-family: 'Poppins', sans-serif !important;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
}

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

:root {
    --header-bg: #0c0c0c;
    --header-bg-opacity: rgba(12, 12, 12, 0.8);
    --header-height: 64px;
    --text-color: #ffffff;
    --hover-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--poppins);
    background-color: var(--header-bg);
    color: #fff;
    margin: 0;
    padding: 0;
}

.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    height: var(--header-height);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 8px 32px;
}

.desktop-nav {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.logo-image {
    height: 28px;
    width: auto;
    display: block;
}

.mobile-logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-button {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: var(--poppins);
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-button:hover {
    background-color: var(--hover-bg);
}

.nav-button img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.mobile-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-left {
    display: flex; 
    align-items: center; 
    gap: 12px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.menu-toggle:hover {
    border-radius: 4px;
}

.menu-toggle img {
    width: auto;
    height: 24px;
}

.mobile-logo {
    margin-left: 5px;
}

.mobile-user {
    padding: 0;
    width: 24px;
    height: 24px;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
    height: 24px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.drawer-close:hover {
    background-color: var(--hover-bg);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-nav-item {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    padding: 15px 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.drawer-nav-item:hover {
    background-color: var(--hover-bg);
    padding-left: 10px;
    color: #fff;
}

.drawer-nav-item:last-child {
    border-bottom: none;
}

.main-content {
    margin-top: var(--header-height);
    padding: 3rem 0;
    min-height: 100vh;
}

.demo-content {
    margin-top: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-title {
    color: var(--text-color);
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 901px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex !important;
    }
    
    .header-content {
        padding: 12px 20px;
    }
}

.mobile-drawer {
  position: fixed;
  top: 64px; 
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer.active {
  pointer-events: all;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: var(--transition);
}

.mobile-drawer.active .drawer-overlay {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(10px);
  padding: 27px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active .drawer-content {
  transform: translateY(0);
}

@media (max-width: 576px) {
    .header-content {
        padding: 5px 15px;
    }

    .nav-button img {
        width: 32px;
        height: 32px;
    }
}

.nav-button:focus,
.user-button:focus,
.menu-toggle:focus,
.drawer-close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.mobile-drawer.active .drawer-content {
    animation: slideIn 0.3s ease-out;
}


.custom-footer {
    background-color: rgba(12, 12, 12, 0.8);
    padding: 0 24px 16px 24px;
    color: white;
}

.horizontal-divider {
    height: 1px;
    background-color: #666;
    margin: 15px 0;
    border: none;
}

.vertical-divider {
    width: 1px;
    height: 24px;
    background-color: #666;
    margin: 0 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: white;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #007bff;
}

.bottom-icon {
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: white;
}

.policy-link {
    color: white;
    text-decoration: underline;
    font-style: italic;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 12px;
}

.copyright-text {
    color: white;
    font-style: italic;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.clickable {
    cursor: pointer;
}

@media (max-width: 899px) {
    .mobile-policy-right {
        text-align: right;
    }
    
    .mobile-policy-right .policy-link {
        display: block;
        margin-bottom: 4px;
    }

    .copyright-text {
        font-size: 12px;
    }
}

@media (min-width: 900px) {
    .desktop-center {
        justify-content: center;
    }
}

@media (max-width: 899px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 900px) {
    .mobile-only {
        display: none !important;
    }
}

.custom-modal-content {
    background-color: #0c0c0c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}

.custom-modal-header {
    background-color: #0c0c0c !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 25px !important;
}

.custom-modal-header .modal-title {
    color: #ffcf23 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.custom-modal-body {
    background-color: #0c0c0c !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6 !important;
}

.custom-modal-body p {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.custom-modal-body h1, 
.custom-modal-body h2, 
.custom-modal-body h3, 
.custom-modal-body h4, 
.custom-modal-body h5, 
.custom-modal-body h6 {
    color: #ffcf23 !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.custom-modal-body ul, 
.custom-modal-body ol {
    color: #ffffff !important;
    padding-left: 1.5rem !important;
}

.custom-modal-body li {
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
}

.custom-modal-footer {
    background-color: #0c0c0c !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 25px !important;
    justify-content: center !important;
    gap: 15px !important;
}

.btn-close-custom {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    padding: 8px !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.btn-close-custom:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffcf23 !important;
    transform: scale(1.1) !important;
}

.btn-close-custom svg {
    width: 20px !important;
    height: 20px !important;
}

.custom-btn-primary {
    background-color: #ffcf23 !important;
    border-color: #ffcf23 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.custom-btn-primary:hover {
    background-color: #e6b91e !important;
    border-color: #e6b91e !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 207, 35, 0.3) !important;
}

.custom-btn-secondary {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.custom-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .custom-modal-header .modal-title {
        font-size: 1rem !important;
    }
    
    .custom-modal-header,
    .custom-modal-footer {
        padding: 15px 20px !important;
    }
    
    .custom-modal-body {
        padding: 20px !important;
    }
    
    .custom-btn-primary,
    .custom-btn-secondary {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
}


@media (min-width: 1200px) {
    .modal-extra-large {
        max-width: 75% !important;
    }
}

@media (min-width: 1400px) {
    .modal-extra-large {
        max-width: 80% !important;
    }
}

#faq-section .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: color 0.2s;
    font-family: 'General Sans', 'General Sans Placeholder', sans-serif !important;
}
#faq-section .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}
#faq-section .accordion-button::after {
    filter: invert(77%) sepia(98%) saturate(749%) hue-rotate(1deg) brightness(104%) contrast(105%);
}
#faq-section .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
}
#faq-section .accordion-body {
    color: #fff8;
    font-size: 1.1rem;
}
#faq-section .faq-title {
    color: #fff8;
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    line-height: 0.9;
}
@media (max-width: 900px) {
    #faq-section .faq-title {
        font-size: 2rem;
    }
    #faq-section .accordion-button {
        font-size: 1rem;
    }
    #faq-section .accordion-body {
        font-size: 1rem;
    }
}

/* Utilidad para alinear texto a la izquierda en desktop y centrado en mobile */
.text-md-left, .text-md-start {
  text-align: center;
}
@media (min-width: 768px) {
  .text-md-left, .text-md-start {
    text-align: left;
  }
}

.join-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: #FFD600;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  font-style: italic;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  padding: 8px 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.10);
  min-width: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (min-width: 900px) {
  .join-button {
    font-size: 20px;
  }
}

.join-button:active {
  transform: scale(0.97);
}

.btn-text {
  position: relative;
  color: #000;
  white-space: nowrap;
  z-index: 2;
  transition: color 0.2s;
}

.join-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0; 
  height: 24px; 
  margin-left: 0; 
  margin-right: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0;
  transition: width 0.3s, opacity 0.3s, transform 0.3s, margin-left 0.3s;
  z-index: 1;
  overflow: hidden;
}

.join-arrow img, .join-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (min-width: 900px) {
  .join-button:hover .join-arrow,
  .join-button:active .join-arrow,
  .join-button:focus .join-arrow {
    opacity: 1;
    width: 24px; 
    margin-left: 12px;
  }
}

@media (max-width: 900px) {
  .join-button {
    font-size: 16px;
    padding: 8px 16px;
  }
  .join-arrow {
    opacity: 1 !important;
    width: 24px !important; 
    transform: translateX(0) !important;
    margin-left: 12px !important;
  }
}

.hero-title {
  color: rgba(255,255,255,0.9);
  font-size: 40px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  line-height: 0.9;
  font-style: italic;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
	.liderz-vh-section,
	.liderz-vh-container,
	.liderz-vh-row {
		height: 100vh !important;
		min-height: 100vh !important;
	}
	.liderz-text {
		font-size: 24px !important;
		line-height: 1.3;
	}
}

.testimonios-main-title {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonios-main-title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .testimonios-main-title {
    font-size: 28px !important;
  }
  html[lang="es"] .testimonios-main-title {
    font-size: 25px !important;
  }
  html[lang="en"] .testimonios-main-title {
    font-size: 28px !important;
  }
}

@media (max-width: 991.98px) {
  .choose-title,
  .choose-benefits {
    display: none !important;
  }
}

.choose-path-section {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.choose-title {
  color: #FFCE00;
  font-size: 44px;
  font-style: italic;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  line-height: 0.9;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .choose-title {
    font-size: 32px;
  }
}
.choose-benefits {
  margin-top: 32px;
}
.choose-benefits li,
.choose-benefits-mobile li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.choose-benefit-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.choose-benefits span,
.choose-benefits-mobile span {
  display: inline-block;
}
.choose-benefits li {
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .choose-benefits li {
    font-size: 20px;
  }
}
.choose-benefit-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 2px;
}
.choose-separator-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  z-index: 2;
}
.choose-separator {
  width: 1px;
  height: 90%;
  background: #666;
  border-radius: 2px;
  opacity: 1;
  margin: 0 auto;
}
.choose-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.choose-header .choose-subtitle,
.choose-header .choose-offer-label {
  margin-bottom: 0;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.choose-header .choose-offer-label {
  color: #FFCE00;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
}
.choose-header .choose-timer, .choose-timer {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  color: #FFCE00;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .choose-header .choose-timer, .choose-timer {
    font-size: 36px;
  }
}
.choose-tabs-block {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-bottom: 2rem !important;
  position: relative;
}
.choose-tabs-line {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 2px;
}
.choose-tabs {
  gap: 0;
  margin-top: 2px;
  position: relative;
  z-index: 2;
  border-bottom: none;
}
.choose-tab {
  flex: 1 1 0;
  background: transparent;
  border: none;
  border-radius: 0 0 24px 24px;
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  padding: 5px 0 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-top: none;
  border-bottom: none;
  outline: none;
  margin-bottom: -2px;
  position: relative;
}
.choose-tab.active,
.choose-tab:focus {
  background: #FFCE00;
  color: #000;
  outline: none;
  z-index: 3;
  box-shadow: 0 6px 0 0 #FFCE00;
}
.choose-tab.active {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 8px 0 0 #FFCE00;
}
.choose-header-texts {
  margin-bottom: 0.5rem;
}
@media (max-width: 991.98px) {
  .choose-header-texts {
    display: none !important;
  }
}
.choose-prices {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-bottom: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.choose-prices-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
  margin-right: 1rem;
}
.choose-discount {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: right;
}
.choose-original {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #fff;
  text-align: right;
}
.choose-price {
  color: #FFF;
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  text-align: right;
  margin-bottom: 0;
  margin-left: 0;
}
@media (max-width: 991.98px) {
  .choose-prices {
    max-width: 100%;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
  }
  .choose-prices-info {
    margin-right: 0.5rem;
    min-width: 0;
  }
  .choose-price {
    font-size: 36px;
    margin-left: 0;
  }
}
.choose-form-block {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.choose-form-title {
  color: #fff;
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.choose-form .form-control {
  background: #fff;
  border: 1.5px solid #fff8;
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  border-radius: 16px;
  padding: 12px 18px;
  margin-bottom: 1rem;
  box-shadow: none;
}
.choose-form .form-control:focus {
  background: #fff;
  color: #222;
  border-color: #FFCE00;
  box-shadow: 0 0 0 2px #FFCE0033;
}
.choose-form .form-check-label {
  color: #fff;
  font-style: italic;
  font-size: 16px;
  margin-left: 8px;
}
.choose-form .form-check-input:checked {
  background-color: #FFCE00;
  border-color: #FFCE00;
}
.choose-btn {
  font-size: inherit;
  font-weight: inherit;
  border-radius: inherit;
  padding: inherit;
  border: none;
  background: inherit;
  color: inherit;
  box-shadow: none;
  transition: none;
}
.choose-btn .join-arrow svg path {
  stroke: #000;
}
.choose-btn:active {
  background: #FFCE00;
  color: #000;
  border-color: #FFCE00;
}
@media (max-width: 991.98px) {
  .choose-form-block, .choose-prices, .choose-tabs {
    max-width: 100%;
  }
  .choose-form-title {
    font-size: 22px;
  }
  .choose-price {
    font-size: 44px;
  }
}

.opportunities-section {
  background: transparent;
  padding-top: 64px;
  padding-bottom: 64px;
}
.opportunities-title {
  color: #fff;
  font-size: 32px;
  font-style: italic;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .opportunities-title {
    font-size: 40px;
  }
}
.opportunities-subtitle {
  color: #fff8;
  font-size: 16px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .opportunities-subtitle {
    font-size: 24px;
  }
}
.opportunities-pick-label {
  color: #fff8;
  font-size: 16px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .opportunities-pick-label {
    font-size: 24px;
  }
}
.opportunities-timer {
  color: #FFCE00;
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-top: 5px;
  letter-spacing: 1px;
  line-height: 1;
}

.opportunities-carousel {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.opportunities-carousel-inner {
  width: 100%;
  min-height: 200px;
  justify-content: center;
  align-items: center;
}
.opportunities-carousel-images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.opportunity-img-wrap {
  width: 180px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .opportunity-img-wrap {
    width: 280px;
    height: 200px;
  }
}
.opportunity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.opportunities-arrow {
  background: #FFCE00CC;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: background 0.2s;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
}
.opportunities-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.opportunities-arrow svg {
  display: block;
}
@media (max-width: 991.98px) {
  .opportunities-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .opportunities-subtitle {
    font-size: 14px;
  }
  .opportunities-pick-label {
    font-size: 14px;
  }
  .opportunities-timer {
    font-size: 32px;
  }
  .opportunity-img-wrap {
    width: 140px;
    height: 90px;
  }
  .opportunities-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* --- Carrusel de testimonios (adaptado de vistas_privadas.css) --- */
.testimonios-section {
  padding: 0 2.5rem 2.5rem 2.5rem;
}
.testimonios-section h2 {
  font-family: 'Poppins', sans-serif !important;
  font-style: italic;
  text-align: center;
  font-size: 2rem;
  font-weight: 700 !important;
  opacity: 0.8 !important;
  margin-bottom: 2rem !important;
}
#testimonial-slider-video {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
#testimonies-container-video {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.testimonial-item-video {
  flex-shrink: 0;
  margin: 0 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: brightness(0.6);
}
.testimonial-item-video.active {
  opacity: 1;
  filter: brightness(1);
}
.testimonial-item-video img:not(.profile-img) {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.testimonial-item-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info-video {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 5px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  height: 46px;
}
.profile-img-video {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.profile-text-video {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.profile-name-video {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.profile-profits-video {
  color: #ffcc00;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.arrow-btn-video {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 45%;
  z-index: 10;
  transition: opacity 0.2s;
  background-color: transparent;
}
.arrow-btn-video:hover {
  opacity: 1;
}
.arrow-btn-video.next {
  right: 0;
  background-image: url('https://d1pg1u3k2emhg2.cloudfront.net/images/flecha_2.png');
}
.arrow-btn-video.prev {
  left: 0;
  background-image: url('https://d1pg1u3k2emhg2.cloudfront.net/images/flecha_2.png');
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  #testimonial-slider-video {
    padding: 0 40px;
  }
  .arrow-btn-video.next {
    right: -30px;
  }
  .arrow-btn-video.prev {
    left: -30px;
  }
}
@media (max-width: 768px) {
  .testimonios-section {
    padding: 0 1rem 1.5rem 1rem;
  }
  #testimonial-slider-video {
    padding: 0 20px;
  }
  .profile-img-video {
    width: 30px;
    height: 30px;
  }
}

#testimonial-slider-oportunidades {
  position: relative;
  max-width: 900px;
}
#testimonies-container-oportunidades {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.testimonial-item-oportunidades {
  flex-shrink: 0;
  margin: 0 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: brightness(0.6);
}
.testimonial-item-oportunidades.active {
  opacity: 1;
  filter: brightness(1);
}
.testimonial-item-oportunidades img:not(.profile-img) {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.profile-info-oportunidades {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 5px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  height: 46px;
}
.profile-img-oportunidades {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.profile-text-oportunidades {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.profile-name-oportunidades {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.profile-profits-oportunidades {
  color: #ffcc00;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.arrow-btn-oportunidades {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 45%;
  z-index: 10;
  transition: opacity 0.2s;
  background-color: transparent;
}
.arrow-btn-oportunidades:hover {
  opacity: 1;
}
.arrow-btn-oportunidades.next {
  right: 0;
  background-image: url('https://d1pg1u3k2emhg2.cloudfront.net/images/flecha_2.png');
}
.arrow-btn-oportunidades.prev {
  left: 0;
  background-image: url('https://d1pg1u3k2emhg2.cloudfront.net/images/flecha_2.png');
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .arrow-btn-oportunidades.next {
    right: -30px;
  }
  .arrow-btn-oportunidades.prev {
    left: -30px;
  }
}
@media (max-width: 768px) {
  #testimonial-slider-oportunidades {
    padding: 0 20px;
  }
  .profile-img-oportunidades {
    width: 30px;
    height: 30px;
  }
}

.liderz-bg {
    background: url('https://d1pg1u3k2emhg2.cloudfront.net/images/ZR_5.png') center center / cover no-repeat;
}
@media (max-width: 767.98px) {
    .liderz-bg {
        background: url('https://d1pg1u3k2emhg2.cloudfront.net/images/ZR_52.png') center center / cover no-repeat;
    }
}

.join-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin-top: -20px;
  width: 100%;
}

.avatars-container {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  position: relative;
  transition: transform 0.2s ease;
}

.avatar:not(:first-child) {
  margin-left: -12px;
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 10;
}

.join-text {
  color: #ffffff;
  font-size: 18px !important;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-align: left;
}

.number {
  font-weight: 600;
}

@media (max-width: 640px) {
  .join-section {
      gap: 12px;
  }

  .join-text {
      font-size: 0.9rem !important;
  }

  .avatar {
      width: 45px;
      height: 45px;
  }
}

@media (max-width: 991.98px) {
  .choose-benefits-mobile {
    display: block !important;
    margin-top: 32px;
  }
  .choose-benefits-mobile li {
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
  }
  .choose-benefits-mobile .choose-benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    margin-top: 2px;
  }
}
@media (min-width: 992px) {
  .choose-benefits-mobile {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .growth-graphic-img {
    width: 80vw !important;
    height: auto !important;
    max-width: unset !important;
  }
  .modal-dialog {
    min-height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .modal-content {
    min-height: 60vh;
    margin: auto;
  }
  .opp-title {
    font-size: 24px !important;
  }
}
@media (min-width: 768px) {
  .growth-graphic-img {
    height: 80vh !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .opp-title {
    font-size: 32px !important;
  }
}

.choose-offer-row {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
  width: 100%;
}
.choose-offer-label {
  font-style: italic;
  color: #FFCE00;
  font-size: 1.4rem;
}
.choose-timer {
  font-weight: bold;
  font-style: italic;
  color: #FFCE00;
  font-size: 2.8rem;
  line-height: 1;
}
@media (max-width: 576px) {
  .choose-offer-label {
    font-size: 1rem;
  }
  .choose-timer {
    font-size: 1.6rem;
  }
  .choose-offer-row {
    gap: 4px;
  }
}

/* --- ESTILOS PARA LA NUEVA SECCIÓN DE PRECIOS V2 --- */
.choose-path-section-v2 {
  font-family: 'Poppins', sans-serif;
  background: url('{% static "images/fn.png" %}') center center / cover no-repeat;
}

/* --- PESTAÑAS (TABS) V2 --- */
.pricing-tabs-block-v2 {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.pricing-tabs-v2 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  gap: 0;
}
.pricing-tab-v2 {
  flex: 1 1 0;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
}
.pricing-tab-v2.active,
.pricing-tab-v2:hover {
  color: #FFCE00;
  border-bottom-color: #FFCE00;
}
.pricing-tab-v2:focus {
  outline: none;
}

/* --- TARJETA DE PRECIOS PRINCIPAL V2 --- */
.pricing-card-v2 {
  background: rgba(29, 29, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 576px) {
  .pricing-card-v2 {
    padding: 1.5rem;
  }
}

/* --- CONTENIDO DE LA TARJETA V2 --- */
.card-discount-header-v2 {
  color: #FFCE00;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.pricing-display-v2 {
  gap: 0.5rem;
}
.price-original-v2 {
  color: #fff;
  font-size: 28px;
  font-style: italic;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.7;
}
.price-final-v2 {
  color: #FFCE00;
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.pricing-benefits-v2 {
  color: #fff;
  margin: 0 auto;
  max-width: 400px;
}
.pricing-benefits-v2 li {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.pricing-benefits-v2 svg {
  color: #FFCE00;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-form-inputs-v2 .form-control {
  background: #fff;
  border: 1.5px solid #fff8;
  color: #222;
  font-size: 16px;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: none;
  width: 100%; 
  max-width: 350px;
  margin-left: auto;
  margin-right: auto; 
  margin-bottom: 5px;
}

.pricing-form-inputs-v2 .form-control:focus {
  background: #fff;
  color: #222;
  border-color: #FFCE00;
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.2);
}

.error-message { 
    color: #ffcf23; 
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%; 
    display: block;
}

.post-card-form-v2 {
  max-width: 450px;
  margin: 0 auto;
}

.post-card-form-v2 .checkboxes-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: fit-content;
    margin: 0 auto; 
}

.post-card-form-v2 .form-check {
    display: flex; 
    align-items: center; 
    margin-bottom: 10px; 
}

.post-card-form-v2 .form-check-label {
  color: #fff;
  font-style: italic;
  font-size: 14px;
  margin-left: 8px;
  white-space: nowrap;
  text-align: left; 
}

.post-card-form-v2 .form-check-input:checked {
  background-color: #FFCE00;
  border-color: #FFCE00;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .price-final-v2 {
    font-size: 36px;
  }
  .price-original-v2 {
    font-size: 24px;
  }
}

.table-dark-navy {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f14 0%, #0f202e 100%);
  color: #fff8;
}

.table-dark-navy th,
.table-dark-navy td {
  padding: 12px 16px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-dark-navy tr:nth-child(even) td,
.table-dark-navy tr:nth-child(even) th {
  background-color: rgba(255, 255, 255, 0.03);
}

.table-dark-navy tr:hover td,
.table-dark-navy tr:hover th {
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

.table-dark-navy th {
  font-weight: 600;
  text-align: center;
  color: #fff8;
}

.table-dark-navy td {
  color: #fff8;
  text-align: center;
}

.table-dark-navy .text-success {
  color: #4caf50 !important;
}

.table-dark-navy .text-danger {
  color: #e53935 !important;
}

.table-dark-navy tr:first-child th {
  text-align: center;
  font-size: 1.25rem;
  border-bottom: none;
}

