:root {
            --primary-purple: #8b5cf6;
            --dark-gray: #1f2937;
            --light-gray: #374151;
            --yellow: #fbbf24;
            --text-light: #ffffff;
            --text-dark: #000000;
            --bg-dark: #111827;
            --bg-light: #ffffff;			
        }

        [data-theme="dark"] {
            --bg-primary: var(--bg-dark);
            --bg-secondary: var(--dark-gray);
            --bg-tertiary: var(--light-gray);
            --text-primary: var(--text-light);
            --text-secondary: #d1d5db;
			--icon-bg-primary: #4b4b4b33;
			--border-icon-primary: 1px solid rgba(255, 255, 255, 0.3);
			--header-background : rgb(0 0 0 / 12%);
        }

        [data-theme="light"] {
            --bg-primary: var(--bg-light);
            --bg-secondary: #f3f4f6;
            --bg-tertiary: #e5e7eb;
            --text-primary: var(--text-dark);
            --text-secondary: #6b7280;
			--icon-bg-primary: #4b4b4b33;
			--border-icon-primary: 1px solid #000000;
			--header-background : rgb(255 255 255 / 12%);
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background-color: var(--bg-secondary) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--primary-purple);
        }

        .navbar-brand {
            color: var(--primary-purple) !important;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .nav-link {            
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }
.header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: var(--header-background);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
			border-bottom: 1px solid #00000026;
        }

        .logo {            
            font-size: 24px;
            font-weight: bold;
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s;
        }

        .nav a:hover {
            opacity: 0.7;
        }

        /* Burger Menu */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation */
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            transition: right 0.4s ease;
            z-index: 999;
        }

        .nav-mobile.active {
            right: 0;
        }

        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 300;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .nav-mobile.active a {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
        .nav-mobile a:nth-child(2) { transition-delay: 0.2s; }
        .nav-mobile a:nth-child(3) { transition-delay: 0.3s; }
        .nav-mobile a:nth-child(4) { transition-delay: 0.4s; }
        .nav-mobile a:nth-child(5) { transition-delay: 0.5s; }

        .nav-mobile a:hover {
            color: #8e44ad;
            transform: scale(1.1);
        }

        .nav-mobile .cta-button-mobile {
            background: linear-gradient(45deg, #e74c3c, #8e44ad);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .nav-mobile.active .cta-button-mobile {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .nav-mobile .cta-button-mobile:hover {
            transform: scale(1.05) translateY(0);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
		.cta-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
		.btn-primary {
            background: linear-gradient(45deg, #e74c3c, #8e44ad);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			line-height: 30px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
		        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                height: auto;
                flex-direction: column;
                padding-top: 80px;
            }

            .header {
                padding: 15px 20px;
            }

            .nav {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .cta-button {
                display: none;
            }
		}

.navbar-left span {
    font-weight: bold;
}

.navbar-right {
    position: relative; /* Clave para posicionar el menú desplegable */
}

/* Icono de perfil que activa el menú */
.profile-icon {
    width: 45px;
    height: 45px;   
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
	/*background: rgba(255, 255, 255, 0.2); */
	background: var(--icon-bg-primary); 
	border: var(--border-icon-primary);
}

.profile-icon:hover {
    background: rgba(255, 255, 255, 0.3);	
}

/* Estilo del menú desplegable */
.dropdown-menu {
    position: absolute;
    top: 55px; /* Distancia desde el icono de perfil */
    right: 0;
    background-color: #1f1f1f; /* Color de fondo del menú */
    border-radius: 12px; /* Esquinas redondeadas */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 240px;
    overflow: hidden; /* Asegura que el contenido respete el borde redondeado */
    z-index: 1000;
    
    /* Inicialmente oculto con una transición suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Clase 'show' que se añade con JavaScript para mostrar el menú */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0; /* Espaciado interior vertical */
}

.dropdown-menu ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.dropdown-menu ul li a:hover {
    background-color: #333333; /* Efecto hover en cada opción */
}

.dropdown-menu ul li a i {
    width: 20px; /* Ancho fijo para el icono */
    margin-right: 15px; /* Espacio entre el icono y el texto */
    color: #aaa; /* Color de los iconos */
}

.dropdown-menu ul li a span {
    flex-grow: 1;
}
        .btn-primary {
            background: linear-gradient(45deg, #e74c3c, #8e44ad);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			line-height: 30px;
			border: 1px solid #000;
			text-align:center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
			border: 1px solid #000;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }


        .btn-outline-primary {
            border-color: var(--yellow);
            color: var(--yellow);
            background-color: transparent;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			line-height: 30px;
			border: 1px solid #000;
        }

        .btn-outline-primary:hover {
            background-color: var(--yellow);
            border-color: var(--yellow);
            color: var(--text-dark) !important;
        }

        .btn-outline-primary:focus, .btn-outline-primary:active {
            background-color: var(--yellow) !important;
            border-color: var(--yellow) !important;
            color: var(--text-dark) !important;
            box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25) !important;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/portal/hero1.jpg');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--text-primary);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
        }

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

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

        .price {
            color: var(--yellow);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .feature-icon {
            color: var(--primary-purple);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .modal-content {
            background-color: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            color: var(--text-primary);
        }

        .modal-header {
            border-bottom: 1px solid var(--bg-tertiary);
        }

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

        .form-control {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--bg-tertiary);
            color: var(--text-primary);
        }

        .form-control:focus {
            background-color: var(--bg-tertiary);
            border-color: var(--primary-purple);
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
        }

        .form-control::placeholder {
            color: var(--text-secondary);
        }

        .form-label {
            color: var(--text-primary);
        }

        .form-check-label {
            color: var(--text-primary);
        }

        .theme-toggle {            
            color: var(--text-primary);
            border-radius: 50px;
            text-decoration: none;            
            transition: all 0.3s;
            width:45px;
            height:45px;
			background: var(--icon-bg-primary);
			border: var(--border-icon-primary);
        }

        .theme-toggle:hover {
			background: rgba(255, 255, 255, 0.3);
            color: var(--text-primary);
        }

        .footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--bg-tertiary);
            margin-top: 5rem;
            color: var(--text-primary);
        }

        .footer h5, .footer h6 {
            color: var(--text-primary);
        }

        .footer a {
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-purple);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary-purple), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lead {
            color: var(--text-primary);
        }

        .display-4, .display-5 {
            color: var(--text-primary);
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--text-primary);
        }

        p {
            color: var(--text-primary);
        }

        .list-unstyled li {
            color: var(--text-primary);
        }

        .text-center p {
            color: var(--text-primary);
        }

        .btn-close {
            filter: var(--bs-btn-close-white-filter, invert(1) grayscale(100%) brightness(200%));
        }

        [data-theme="light"] .btn-close {
            filter: none;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
                text-align: center;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
        }
.content{
	padding-top:80pt;
}
/* ================================
   ESTILOS MYACCOUNT - GENIOS MALVADOS (AHORA COMPATIBLE CON TEMAS)
   ================================ */

.agent-profile-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .agent-profile-container {
        /* Centra el contenido en pantallas grandes */
        grid-template-columns: 1fr minmax(auto, 600px) 1fr;
    }
}

/* Tarjeta de Identidad del Agente */
.agent-id-card {
    background: var(--bg-secondary); /* Cambio a variable de tema */
    border: 1px solid var(--primary-purple);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.agent-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary-purple);
    object-fit: cover;
}

.agent-avatar .agent-level {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: var(--text-dark); /* Color fijo porque el fondo es amarillo */
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.agent-name {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 8px var(--primary-purple);
}

.agent-title {
    color: var(--text-secondary); /* Cambio a variable de tema */
    font-style: italic;
    margin-bottom: 2rem;
}

.agent-data-field {
    text-align: left;
    margin-bottom: 1rem;
}

.agent-data-field label {
    display: block;
    color: var(--text-secondary); /* Cambio a variable de tema */
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.agent-data-field label i {
    margin-right: 8px;
    color: var(--primary-purple);
}

.agent-data-field span {
    color: var(--text-primary); /* Cambio a variable de tema */
    font-weight: 500;
}

.status-active {
    color: #34d399; /* Verde Neón */
    font-weight: bold;
}
.status-inactive {
    color: #f87171; /* Rojo Peligro */
    font-weight: bold;
}


/* Panel de Acciones */
.agent-actions-panel {
    background: transparent;
    border-radius: 8px;
    padding: 0;
}

.actions-title {
    font-size: 1.5rem;
    color: var(--text-primary); /* Cambio a variable de tema */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bg-tertiary); /* Cambio a variable de tema */
}

.action-box {
    background: var(--bg-secondary); /* Cambio a variable de tema */
    border: 1px solid var(--bg-tertiary); /* Cambio a variable de tema */
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column; /* Cambiado para mejor adaptabilidad */
    gap: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.action-box:hover {
    border-color: var(--yellow);
}

.action-icon i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    width: 50px;
    text-align: center;
}

.action-details h5 {
    font-size: 1.2rem;
    color: var(--text-primary); /* Cambio a variable de tema */
    margin: 0 0 0.5rem 0;
}

.action-details p {
    color: var(--text-secondary); /* Cambio a variable de tema */
    margin: 0 0 1rem 0;
    line-height: 1.5;
}
.btn-primary-evil {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: var(--yellow);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #18009c;
    transition: all 0.3s ease;
}
.btn-primary-evil:hover {
    background-color: #0b021e;
    color: #ffffff; /* Color fijo porque el fondo es amarillo */
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.btn-primary-evil:disabled {
    border-color: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: not-allowed;
}
.btn-primary-evil:disabled:hover {
    background-color: transparent;
    color: var(--text-secondary);
    box-shadow: none;
}
.btn-secondary-evil {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--yellow);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid var(--yellow);
    transition: all 0.3s ease;
}

.btn-secondary-evil:hover {
    background-color: var(--yellow);
    color: var(--text-dark); /* Color fijo porque el fondo es amarillo */
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.btn-secondary-evil:disabled {
    border-color: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: not-allowed;
}
.btn-secondary-evil:disabled:hover {
    background-color: transparent;
    color: var(--text-secondary);
    box-shadow: none;
}


/* ================================
   AJUSTES PARA UNIFICAR LOGIN/REGISTER CON MYACCOUNT
   ================================ */

/* Ajustes para los inputs y labels dentro del nuevo contenedor */
.action-box .form-label,
.action-box .custom_inputBox label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.action-box .form-control {
    width: 100%;
}

/* Quitamos los estilos originales que ya no necesitamos */
.container_login .content, .container_join .content {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Asegurar que los links dentro del formulario se vean bien */
.action-box a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.action-box a:hover {
    color: var(--primary-purple);
}

/* Ajustes para el icono de ver/ocultar contraseña */
.action-box .input-group-text {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
}
/* ================================
   ESTILOS PARA MODALES DE LOGIN Y REGISTRO
   ================================ */

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid var(--bg-tertiary);
    padding: 1.5rem;
}

.modal-header .modal-title {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Reutilizamos el estilo del link que ya teníamos */
.modal-body a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--primary-purple);
}

/* Ajustes para el botón de cerrar en tema oscuro/claro */
.btn-close {
    filter: var(--bs-btn-close-white-filter, invert(1) grayscale(100%) brightness(200%));
}

[data-theme="light"] .btn-close {
    filter: none;
}

/* Contenedor de Cursos */
.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Tarjeta de Curso */
.course-card {
    background-color: var(--dark-gray);
    border: 1px solid var(--primary-purple);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Banner del Curso */
.course-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.course-banner-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0) 100%);
}

.course-teacher, .course-price {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 4px;
}

.course-price {
    margin-left: auto;
    background-color: var(--yellow);
    color: var(--text-dark);
    font-weight: bold;
}

/* Detalles del Curso */
.course-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-description {
    flex-grow: 1;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item {
    display: inline-block;
}

.breadcrumb-custom .breadcrumb-item::after {
    /**content: '|';**/
    display: inline-block;
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumb-custom .breadcrumb-item:last-child::after {
    content: '';
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-purple);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}
.btn-subscribe-evil { 
background-color: #fbbf24; 
color: #000 !important; 
border-color: #fbbf24; 
font-weight: bold;
} 
.btn-subscribe-evil:hover { 
background-color: #e0a800; 
border-color: #e0a800; 
}
.cta-button {
	

            background: var(--icon-bg-primary);
            color: var(--text-primary);
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            border: var(--border-icon-primary);
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
		
		
.separator[data-v-62ad7f65] {
    width: 100%;
    height: 24px;
    display: flex
;
    flex-direction: row;
    align-items: center;
}
.separator .separator-line[data-v-62ad7f65] {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex-grow: 100;
    flex-shrink: 1;
}
.separator .separator-text[data-v-62ad7f65] {
    margin-left: 24px;
    margin-right: 24px;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.header-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}


.profile-container{
	display:flex;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--text-primary);
}
.boton-principal{
	width: 100%;
    text-align: center;
    font-size: 20pt;
    padding: 20pt;
    border-radius: 50px;
}

