 /* Añadimos estilos adicionales para mejorar el contraste con el nuevo color */
 .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #49c9b8;
    border-color: #49c9b8;
    color: #000000;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-lighten {
    background-color: var(--primary-light) !important;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #000000;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

.page-link {
    color: var(--primary-color);
}

:root {
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-border: #333333;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --primary-color: #5CE6D2;
    --primary-light: rgba(92, 230, 210, 0.2);
    --secondary-color: #7b8ab8;
    --success-color: #1cc88a;
    --success-light: rgba(28, 200, 138, 0.2);
    --info-color: #36b9cc;
    --info-light: rgba(54, 185, 204, 0.2);
    --warning-color: #f6c23e;
    --warning-light: rgba(246, 194, 62, 0.2);
    --danger-color: #e74a3b;
    --danger-light: rgba(231, 74, 59, 0.2);
    --gold-color: #ffd700;
    --silver-color: #c0c0c0;
    --bronze-color: #cd7f32;
    --section-padding: 80px 0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--dark-border);
    border-radius: 10px;
}

/* Navbar styling */
.navbar {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
    padding: 15px 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.user-profile {
    display: flex;
    align-items: center;
}

/* Hero section */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--primary-light), transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 200;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Features section */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.feature-box {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-top: 15px;
    margin-bottom: 40px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 28px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* How it works section */
.step-box {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.steps-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Stats section */
.stats-box {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.stats-icon {
    margin-bottom: 20px;
}

.stats-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Testimonials section */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    margin: 20px 15px;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing section */
.pricing-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--warning-light);
    color: var(--warning-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-duration {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* FAQ section */
.faq-item {
    background-color: var(--dark-card);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, var(--primary-light), transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-card);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

span.logo-lg img {
height: 34px !important;
}