*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 3px; 
    height: 2px;
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: transparent; /* Riel completamente transparente */
}

body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background-color: rgba(80, 80, 80, 0.25); /* Pulgar muy sutil, casi invisible */
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 100, 100, 0.4); /* Un poco más visible al pasar el mouse */
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .app-container {
    transition: filter 0.3s ease-in-out;
}


a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.app-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    transition: filter 0.3s ease-in-out;
}

.sidebar {
    width: 260px;
    background-color: #000000; 
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: fixed; 
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%); 
    transition: transform 0.3s ease-in-out;
}

.app-container.sidebar-active .sidebar {
    transform: translateX(0); 
    box-shadow: 3px 0px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.sidebar-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo-icon {
    height: 50px;
    width: 50px;
    color: #ffffff;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.sidebar-nav {
    flex-grow: 1;
}

.nav-item-header {
    font-size: 0.75rem;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    padding-left: 12px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #b3b3b3;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-item a:hover,
.nav-item a.active {
    background-color: #1a1a1a;
    color: #ffffff;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
}

.login-link-sidebar {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #b3b3b3;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.login-link-sidebar:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.main-content-wrapper {
    flex-grow: 1;
    padding-left: 0; 
    display: flex;
    flex-direction: column;
    transition: padding-left 0.3s ease-in-out; 
    width: 100%; 
}

.app-container.sidebar-active .main-content-wrapper {
    padding-left: 260px; 
}

.main-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 16px 24px; 
    height: 65px;
    position: sticky;
    top: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 900;
}

.sidebar-toggle-button {
    color: #b3b3b3;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-right: 16px; 
}
.sidebar-toggle-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}
.sidebar-toggle-button svg {
    display: block;
    width: 18.5px; 
    height: 18.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px; 
}

.header-search-button {
    color: #7a7a7a;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.header-search-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}
.header-search-button svg {
    display: block;
}


.login-button {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.login-button:hover {
    background-color: #f0f0f0;
}

.main-content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 24px; 
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px; 
    padding-bottom: 60px;
    flex-grow: 1;
    min-height: calc(100vh - 65px - 60px); 
    position: relative;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 700px;
}
.hero-title span {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 700px;
}
.luminous-form {
    width: 100%;
    max-width: 720px;
    margin-bottom: 24px;
    font-size: 0.6rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0d0d0d;
    border: 1px solid #333333;
    border-radius: 32px;
    padding: 4px;
   transition: all 0.3s ease-in-out;
       font-size: 0.6rem;


}

.input-wrapper::before {
   content: '';
   position: absolute;
   top: -3px;
   left: -3px;
   right: -3px;
   bottom: -3px;
   background: conic-gradient(
       from var(--gradient-angle, 0deg),
       #4a01b2,
       #5b12d9,
       #2d35ff,
       #007aff,
       #1b75d2,
       #4a01b2
   );
   border-radius: inherit;
   z-index: -1;
   filter: blur(6px);
   opacity: 0;
   transform: scale(0.95);
   transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.input-wrapper:focus-within {
   border: 1px solid rgba(255, 255, 255, 0.2);
   outline: none;
}

.input-wrapper:focus-within::before {
   opacity: 0.8;
   transform: scale(1);
   animation: rotateGradientBorder 1s linear infinite;
}

@keyframes rotateGradientBorder {
   0% { --gradient-angle: 0deg; }
   100% { --gradient-angle: 360deg; }
}

.luminous-input {
    flex-grow: 5;
    padding: 16px 20px;
    font-size: 1.125rem;
    color: #e0e0e0;
    background-color: transparent;
    border-radius: 32px;
}
.luminous-input::placeholder {
    color: #5c5c5c;
}

.luminous-submit-button {
    background-color: #333333;
    color: #b3b3b3;
    padding: 10px;
    margin-right: 2px;
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.luminous-submit-button:hover {
    background-color: #121d3d; /* Verde oscuro para el fondo en hover */
    color: #5e76b8; /* Verde claro para el texto en hover */
    border-color: #5e76b8; /* Borde verde */
    transform: scale(1.05);
}
.luminous-submit-button svg {
    width: 20px;
    height: 20px;
}


.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.chip {
    background-color: #1a1a1a;
    color: #b3b3b3;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #5c5c5c;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: auto; 
    padding-bottom: 30px;
    animation: bounce 2s infinite;
}
.scroll-indicator span {
    margin-bottom: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.content-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.floating-action-button {
    position: fixed; 
    bottom: 6px; 
    right: 30px;  
    left: 30px;
    margin: auto;
    padding: 7px 1px;
    max-width: 18%;
    font-size: 0.90rem;
    font-weight: 600;
    color: #8b8888; 
    background-color: rgba(30, 30, 30, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.18); 
    border-radius: 50px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
    z-index: 950; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.floating-action-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg,
        #4a01b2,
        #5b12d9,
        #2d35ff,
        #007aff,
        #1b75d2,
        #4a01b2);
    background-size: 300% 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-action-button:hover::before {
    opacity: 1;
    animation: borderMove 1s linear infinite;
}

.floating-action-button:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.floating-action-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}

.news-section .section-title { 
    text-align: center; 
    font-size: 2.25rem; 
    color: #e0e0e0;
    margin-bottom: 40px; 
}

.news-grid {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px; 
}

.news-card {
    background-color: #0d0d0d; 
    border: 1px solid #2a2a2a; 
    border-radius: 12px; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.news-card-image-container {
    width: 100%;
    height: 200px; 
    overflow: hidden; 
}

.news-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image-container img {
    transform: scale(1.05); 
}

.news-card-content {
    padding: 20px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ebebeb;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-date {
    font-size: 0.875rem;
    color: #7a7a7a; 
    margin-bottom: 16px;
}

.news-card-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5c9ce5; 
    text-decoration: none;
    margin-top: auto; 
    align-self: flex-start; 
    transition: color 0.2s ease;
}

.news-card-link:hover {
    color: #8ab4f8; 
    text-decoration: underline;
}

#nosotros-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    #nosotros-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

    
}

#nosotros-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 200px;
    height: 3px;
    
    background: linear-gradient(
        var(--angle, 135deg), 
        #4a01b2 0%, 
        #5b12d9 25%, 
        #2d35ff 50%, 
        #007aff 75%, 
        #1b75d2 100%
    );
    border-radius: 2px;

}

.nosotros-content-wrapper {
    display: flex;
    flex-direction: row; 
    gap: 40px; 
    align-items: flex-start; 
}

.nosotros-image-layout {
    display: flex;
    gap: 20px; 
    flex: 1; 
    min-width: 0; 
}

.nosotros-large-image {
    flex: 2; 
    min-width: 0;
}

.nosotros-large-image img {
    width: 100%;
    height: auto; 
    max-height: 700px; 
    object-fit: cover; 
    border-radius: 12px; 
}

.nosotros-text-content {
    flex: 1.5; 
    padding-top: 10px; 
    min-width: 0;
}

.nosotros-text-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.nosotros-text-content p {
    font-size: 1rem;
    color: #b3b3b3;
    margin-bottom: 20px;
    line-height: 1.7;
}

.button-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 10px;
}

.button-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.luminousai-section .section-title {
    text-align: left; 
    margin-bottom: 30px;
}

.luminousai-content-wrapper {
    display: flex;
    flex-direction: row; 
    gap: 40px; 
    align-items: flex-start; 
}

.luminousai-text-content {
    flex: 1.5; 
    padding-top: 10px; 
    min-width: 0;
}

.luminousai-text-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.luminousai-text-content p {
    font-size: 1rem;
    color: #b3b3b3;
    margin-bottom: 20px;
    line-height: 1.7;
}

.luminousai-image-layout {
    display: flex;
    gap: 20px; 
    flex: 1; 
    min-width: 0; 
}

.luminousai-large-image {
    flex: 2; 
    min-width: 0;
}

.luminousai-large-image img {
    width: 100%;
    height: auto;
    max-height: 500px; 
    object-fit: cover;
    border-radius: 12px;
}

.educme-section .section-title {
    text-align: center; 
    margin-bottom: 40px;
}

.educme-content-wrapper {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    gap: 30px; 
    margin-bottom: 40px;
}

.educme-text-left,
.educme-text-right {
    flex: 1; 
    min-width: 0; 
}

.educme-text-left h3,
.educme-text-right h3 {
    font-size: 1.5rem; 
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.educme-text-left p,
.educme-text-right p {
    font-size: 0.95rem;
    color: #b3b3b3;
    margin-bottom: 15px;
    line-height: 1.6;
}

.educme-text-left ul,
.educme-text-right ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #b3b3b3;
}

.educme-text-left ul li,
.educme-text-right ul li {
    margin-bottom: 8px;
}

.educme-image-center {
    flex: 1.2; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
    min-width: 0;
}

.educme-main-image img {
    width: 100%;
    max-width: 350px; 
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.educme-cta-container {
    text-align: center; 
    margin-top: 20px;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 10, 0.8); /* Fondo más oscuro y translúcido */
    display: flex;
    align-items: flex-start; /* Alinear arriba para dar espacio */
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 10vh; /* Espacio arriba */
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background-color: #101012; /* Ligeramente más claro que el fondo del modal */
    padding: 28px 32px; /* Más padding */
    border-radius: 16px; /* Bordes más redondeados */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(50, 50, 55, 0.7); /* Sombra + borde sutil */
    width: 90%;
    max-width: 680px; /* Un poco más ancho */
    max-height: 80vh; 
    display: flex; /* Usar flex para organizar el contenido interno */
    flex-direction: column;
    position: relative;
    color: #e8e8e8;
    transform: scale(0.98) translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active .search-modal-content {
    transform: scale(1) translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2e;
}

.search-modal-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
}

.search-modal-close-button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-modal-close-button:hover {
    background-color: #2c2c2f;
    color: #ffffff;
}
.search-modal-close-button svg {
    width: 22px;
    height: 22px;
}

.search-modal-title {
    font-size: 1.1rem; 
    font-weight: 500;
    color: #c0c0c0;
    text-align: left;
    margin-bottom: 20px; /* Espacio antes del input */
}

.modal-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
}

.modal-search-input {
    flex-grow: 1;
    padding: 14px 20px 14px 50px; /* Espacio para el icono */
    font-size: 1rem;
    color: #e0e0e0;
    background-color: #18181a; 
    border: 1px solid #38383d;
    border-radius: 10px; /* Bordes más suaves */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.modal-search-input::placeholder {
    color: #606060;
}
.modal-search-input:focus {
    border-color: #007AFF; /* Azul de acento */
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.25);
    outline: none;
}
.modal-search-form svg.search-icon-input {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #777;
    pointer-events: none; /* Para que no interfiera con el clic en el input */
}


.modal-search-submit {
    display: none; /* Ocultar si la búsqueda es en tiempo real */
}

.search-modal-results {
    flex-grow: 1; /* Ocupa el espacio restante */
    overflow-y: auto; /* Scroll si los resultados son muchos */
    padding-right: 8px; 
    margin-right: -8px; /* Compensar padding para la scrollbar */
    position: relative; /* Para el overlay de carga */
    min-height: 150px; /* Para que el spinner sea visible */
}

.search-modal-result-item {
    display: block;
    padding: 12px 15px;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
    line-height: 1.4;
}

.search-modal-result-item:last-child {
    margin-bottom: 0;
}

.search-modal-result-item:hover,
.search-modal-result-item:focus {
    background-color: #1f1f22;
    color: #ffffff;
    outline: none;
}
.search-modal-result-item strong {
    color: #50fa7b; /* Verde para resaltar término */
    font-weight: 500;
}
.search-modal-result-item .result-type-label {
    display: inline-block;
    background-color: #2a2a2e;
    color: #888;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.search-modal-no-results {
    text-align: center;
    color: #7a7a7a;
    padding: 30px 0;
    font-style: italic;
    font-size: 0.95rem;
}

.search-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 18, 0.92); /* Coincide con modal-content bg */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; 
    border-radius: 0 0 10px 10px; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-loading-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.search-spinner {
    border: 4px solid rgba(255, 255, 255, 0.15); 
    border-left-color: #00A0DC; 
    border-radius: 50%;
    width: 40px; 
    height: 40px;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.api-docs-footer {
    background-color: #080808;
    padding: 40px 25px 30px;
    margin-top: 50px;
    border-top: 1px solid #1f1f1f;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #d0d0d0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #bbb;
    text-decoration: underline;
}

.footer-social-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1f1f1f;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-social-links {
    margin-bottom: 15px;
}

.footer-social-links a {
    color: #777;
    margin: 0 12px;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    color: #ccc;
    transform: scale(1.1);
}

.footer-social-links i[data-lucide] {
    width: 22px;
    height: 22px;
}

.footer-social-copyright p {
    color: #666;
    font-size: 0.85rem;
}

.highlight-section-on-search {
    animation: highlightPulse 2.5s ease-out;
}

@keyframes highlightPulse {
    0% { background-color: transparent; }
    20% { background-color: rgba(92, 156, 229, 0.08); }
    100% { background-color: transparent; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.15rem); 
    }
    .luminous-input {
        font-size: 1rem;
        padding: 14px 18px;
    }
    .luminous-submit-button {
        padding: 10px;
    }
    .luminous-submit-button svg {
        width: 18px;
        height: 18px;
    }
    .main-header, .main-content-area {
        padding-left: 20px; 
        padding-right: 20px;
    }
    .floating-action-button {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
        gap: 20px;
    }
    .news-section .section-title {
        font-size: 2rem; 
        margin-bottom: 30px;
    }
    .news-card-title {
        font-size: 1.15rem;
    }

    .search-modal-content {
        padding: 25px 20px;
        max-height: 85vh;
    }
    .search-modal-title {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .modal-search-form {
        flex-direction: column;
    }
    .modal-search-submit {
        justify-content: center;
    }
    .search-modal-logo {
        top: 15px;
        left: 15px;
        height: 30px;
    }
}

@media (max-width: 1024px) {
    .nosotros-content-wrapper {
        flex-direction: column; 
        align-items: center; 
    }
    .nosotros-image-layout {
        flex-direction: column; 
        width: 100%;
        max-width: 700px; 
        align-items: center;
    }
    .nosotros-large-image {
        width: 100%;
        margin-bottom: 20px; 
    }
    .nosotros-large-image img {
        max-height: 400px; 
    }
    .nosotros-text-content {
        width: 100%;
        max-width: 700px; 
        padding-top: 30px;
        text-align: center;
    }
    .nosotros-section .section-title,
    .nosotros-text-content h3 {
        text-align: center;
    }

    .luminousai-content-wrapper {
        flex-direction: column-reverse; 
        align-items: center; 
    }
    .luminousai-image-layout {
        flex-direction: column; 
        width: 100%;
        max-width: 700px; 
        align-items: center;
        margin-bottom: 30px; 
    }
    .luminousai-large-image {
        width: 100%;
        margin-bottom: 20px; 
    }
    .luminousai-large-image img {
        max-height: 400px; 
    }
    .luminousai-text-content {
        width: 100%;
        max-width: 700px; 
        padding-top: 0; 
        text-align: center;
    }
    .luminousai-section .section-title,
    .luminousai-text-content h3 {
        text-align: center;
    }

    .educme-content-wrapper {
        flex-direction: column; 
        gap: 40px;
    }
    .educme-text-left,
    .educme-text-right {
        text-align: center; 
    }
    .educme-text-left ul,
    .educme-text-right ul {
        display: inline-block; 
        text-align: left; 
        margin: 0 auto;
    }
    .educme-image-center {
        order: -1; 
        flex: 1; 
        width: 100%;
        max-width: 450px; 
    }
    .educme-main-image img {
        max-width: 100%;
    }
}


@media (max-width: 600px) {
    .nosotros-image-layout {
        gap: 15px;
    }
     .nosotros-text-content h3 {
        font-size: 1.5rem;
    }
    .nosotros-text-content p {
        font-size: 0.95rem;
    }
    .button-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .luminousai-image-layout {
        gap: 15px;
    }
     .luminousai-text-content h3 {
        font-size: 1.5rem;
    }
    .luminousai-text-content p {
        font-size: 0.95rem;
    }

    .educme-text-left h3,
    .educme-text-right h3 {
        font-size: 1.3rem;
    }
    .educme-text-left p,
    .educme-text-right p,
    .educme-text-left ul,
    .educme-text-right ul {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .suggestion-chips {
        gap: 8px;
    }
    .chip {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    .sidebar {
        width: 240px; 
    }
    .app-container.sidebar-active .main-content-wrapper {
        padding-left: 240px; 
    }
    .main-header {
        padding-left: 16px;
        padding-right: 16px;
    }
     .main-content-area {
        padding-left: 0; 
        padding-right: 0;
    }
    .hero-section, .content-section { 
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-grid {
        grid-template-columns: 1fr; 
    }
}

.header-profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 12px;
    border: 2px solid #555;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-logout {
    background-color: #444;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid #555;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.button-logout:hover {
    background-color: #555;
}
.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.sidebar-footer-profile-card {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
}

.sidebar-footer-profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #444;
    flex-shrink: 0;
}

.sidebar-footer-user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-grow: 1;
}

.sidebar-footer-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-footer-user-email {
    font-size: 0.75rem;
    color: #b3b3b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button-logout-sidebar-footer {
    background: none;
    border: none;
    color: #7a7a7a;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.button-logout-sidebar-footer:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.button-logout-sidebar-footer svg {
    width: 18px;
    height: 18px;
}

.sidebar-footer .login-link-sidebar[style*="display: none"] {
    display: none !important;
}

.header-profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 12px;
    border: 2px solid #555;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}


.sidebar-footer-ip-info {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
    line-height: 1.5;
    text-align: left;
}

.sidebar-footer-ip-info .ip-label,
.sidebar-footer-ip-info .location-label {
    font-weight: 500;
    color: #aaa;
}

.toggle-ip-visibility {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0 5px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.toggle-ip-visibility .eye-icon {
    width: 14px;
    height: 14px;
    transition: color 0.2s ease;
}

.toggle-ip-visibility .eye-icon.gradient-text {
    stroke: #3B82F6;
}


.ip-address-value {
    margin-left: 4px;
}

.ip-address-value.hidden {
    display: none;
}

.toggle-ip-visibility .eye-icon.gradient-text {
    stroke: #3B82F6;
}



.gradient-text {
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.25) 48%,
    rgba(255, 255, 255, 0.40) 50%,
    rgba(255, 255, 255, 0.25) 52%,
    transparent 55%,
    transparent 100%
  ), linear-gradient(
    var(--angle, 135deg),
    #4a01b2 0%,
    #5b12d9 25%,
    #2d35ff 50%,
    #007aff 75%,
    #1b75d2 100%
  );
  background-size: 400% 100%, 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.80rem;
  display: inline-block;
  animation: flashSweep 20s linear infinite, gradientRotate 20s linear infinite;
}
@media (max-width: 768px) {
.hero-title span {
    font-size: clamp(2.4rem, 5vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 700px;
}
}
@media (max-width: 648px) {
.hero-title span {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 700px;
}
}
@keyframes flashSweep {
  0% {
    background-position: -400% 0, 0 0;
  }
  100% {
    background-position: 400% 0, 0 0;
  }
}

@keyframes gradientRotate {
  0% { --angle: 135deg; }
  100% { --angle: 495deg; }
}
.login-button.is-loading,
.login-link-sidebar.is-loading {
    position: relative;
    overflow: hidden;
    color: transparent !important;
    background-color: #333 !important;
    border-color: #444 !important;
    cursor: default;
    pointer-events: none;
}

.login-button.is-loading::before,
.login-link-sidebar.is-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.login-button.is-loading span,
.login-link-sidebar.is-loading span {
    visibility: hidden;
}

.header-actions .profile-container {
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-footer .sidebar-footer-profile-card {
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* REEMPLAZO SUGERIDO en public/css/index.css */
.product-showcase {
    padding: 40px 0; /* Ajustamos el padding para dar espacio vertical */
    margin-bottom: 40px;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}
.product-header {
    text-align: center;
    margin-bottom: 25px;
}

/* AJUSTE SUGERIDO en public/css/index.css */
.product-header .section-title {
    font-size: 2.25rem; /* Un poco más grande */
    color: #f0f0f0;
    margin-bottom: 12px; /* Un poco más de espacio debajo */
    font-weight: 700; /* Más peso para mayor jerarquía */
    text-align: center; /* Centramos el título de la sección */
}
.product-header .section-title .gradient-text {
    font-size: inherit;
}

.product-subtitle {
    font-size: 1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-content-grid {
    display: flex; /* Cambiamos a Flexbox */
    flex-wrap: wrap; /* Permitimos que se apile en móviles */
    gap: 40px; /* Un espaciado generoso entre imagen y texto */
    align-items: center; /* ¡La clave! Alinea verticalmente el logo y el texto */
    margin-bottom: 30px;
}
/* CÓDIGO NUEVO para public/css/index.css */
.product-image-container {
    flex: 1 1 300px; /* Permite crecer y encogerse, con una base de 300px */
    display: flex;
    justify-content: center; /* Centra el logo horizontalmente */
    align-items: center;
}

.product-core-description {
    flex: 2 1 400px; /* Le da más peso al texto, base de 400px */
}

/* Ajuste para la imagen del logo de LuminousAI */
.product-image-container.main-product-image img {
    max-width: 280px; /* Un tamaño controlado para el logo */
    width: 100%;
}

@media (min-width: 768px) {
    .product-content-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    .product-content-grid.reverse-grid-on-mobile {
        grid-template-columns: 1.5fr 1fr;
    }
     .product-content-grid.reverse-grid-on-mobile .product-image-container {
        order: 1;
    }
    .product-content-grid.reverse-grid-on-mobile .product-core-description {
        order: 0;
    }
}

.product-image-container.main-product-image {
    text-align: center;
}

.product-image-container.main-product-image img {
    max-width: 100%;
    width: auto;
    max-height: 280px;
    border-radius: 10px;
    object-fit: contain;
}

.product-core-description p {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.65;
    margin-bottom: 12px;
}
.product-core-description p:last-child {
    margin-bottom: 0;
}

.product-main-content {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #1f1f1f;
}

.product-features-compact h3 {
    font-size: 1.25rem;
    color: #d8d8d8;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.features-compact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.features-compact-list.two-columns {
    display: grid;
    gap: 15px 25px;
}

@media (min-width: 600px) {
    .features-compact-list.two-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}


.feature-compact-item {
    padding: 12px 0;
}

.feature-compact-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.feature-compact-icon {
    color: #888;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-compact-title {
    font-size: 1.05rem;
    color: #d8d8d8;
    font-weight: 500;
}

.feature-compact-description {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.55;
    padding-left: 30px;
}

.product-cta-section {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #1f1f1f;
}

.product-cta-section .button-primary,
.product-cta-section .button-secondary {
    margin: 8px;
    padding: 10px 22px;
    font-size: 0.9rem;
}

.main-footer-bottom {
    text-align: center;
    padding: 35px 20px;
    margin-top: 30px;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 20px 15px;
    }
    .product-header .section-title {
        font-size: 1.8rem;
    }
    .product-subtitle {
        font-size: 0.95rem;
    }
    .product-content-grid {
        gap: 20px;
    }
    .product-image-container.main-product-image img {
        max-height: 220px;
    }
    .product-core-description p {
        font-size: 0.9rem;
    }
    .product-features-compact h3 {
        font-size: 1.15rem;
    }
    .feature-compact-title {
        font-size: 1rem;
    }
    .feature-compact-description {
        font-size: 0.85rem;
        padding-left: 28px;
    }
    .feature-compact-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .product-header .section-title {
        font-size: 1.6rem;
    }
    .product-subtitle {
        font-size: 0.9rem;
    }
    .features-compact-list.two-columns {
        grid-template-columns: 1fr;
    }
    .feature-compact-item {
        padding: 10px 0;
    }
     .product-cta-section .button-primary,
    .product-cta-section .button-secondary {
        width: calc(100% - 16px);
        display: block;
        box-sizing: border-box;
    }
}



.promo-modal {
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.promo-modal.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal-content {
    background-color: #101012;
    color: #e0e0e0;
    padding: 25px 30px;
    border: 1px solid #28282a;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.promo-modal.active .promo-modal-content {
    transform: scale(1);
}

.promo-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #777;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.promo-modal-close:hover {
    color: #fff;
}

.promo-modal-icon-container {
    margin-bottom: 15px;
    line-height: 0;
}

.promo-modal-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    display: inline-block;
    object-fit: contain;
    border-radius: 32px;
}
.promo-modal-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.promo-modal-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-modal-description strong {
    color: #e0e0e0;
    font-weight: 600;
}

.promo-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.promo-button-decline,
.promo-button-accept {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    border: none;
    flex-grow: 1;
    max-width: 200px;
}

.promo-button-decline {
    background-color: transparent;
    color: #5c9ce5;
}

.promo-button-decline:hover {
    color: #8ab4f8;
    text-decoration: underline;
}

.promo-button-accept {
    background: linear-gradient(var(--angle, 135deg), #4a01b2, #2d35ff, #007aff);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(45, 53, 255, 0.2);
}

.promo-button-accept:hover {
    opacity: 0.9;
    box-shadow: 0 6px 15px rgba(45, 53, 255, 0.3);
    transform: translateY(-1px);
}

.highlight-nav-link {
    background-color: rgba(92, 156, 229, 0.15) !important;
    border: 1px solid #5c9ce5;
    box-shadow: 0 0 10px rgba(92, 156, 229, 0.3);
    color: #ffffff !important;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    animation: pulseHighlight 1.5s infinite alternate;
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 8px rgba(92, 156, 229, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 15px 3px rgba(92, 156, 229, 0.4);
        transform: scale(1.02);
    }
}


@media (max-width: 480px) {
    .promo-modal-content {
        padding: 20px 20px;
    }
    .promo-modal-title {
        font-size: 1.4rem;
    }
    .promo-modal-description {
        font-size: 0.9rem;
    }
    .promo-modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    .promo-button-decline,
    .promo-button-accept {
        width: 100%;
        max-width: none;
    }
}

/* Estilos para los nuevos Suggestion Chips Interactivos */
.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* Espacio entre wrappers */
    margin-bottom: 40px;
    position: relative; /* Para el posicionamiento de los paneles */
}

.chip-wrapper {
    position: relative; /* Clave para posicionar el panel de explicación */
    display: inline-block; /* O flex si necesitas más control interno */
}

.chip {
    background-color: #1a1a1a;
    color: #b3b3b3;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: flex; /* Para alinear icono y texto */
    align-items: center;
    gap: 6px; /* Espacio entre icono y texto */
    border: 1px solid transparent; /* Borde inicial transparente */
}

.chip-wrapper.active .chip {
    background-color: #121d3d; /* Verde oscuro para el fondo en hover */
    color: #5e76b8; /* Verde claro para el texto en hover */
    border-color: #5e76b8; /* Borde verde */
    transform: translateY(-2px);
}

.chip-icon svg { /* Estilo para el SVG del icono Lucide */
    width: 16px;
    height: 16px;
    stroke-width: 2;
    /* El color se hereda del chip o se puede definir aquí */
}

.chip-explanation-panel {
    position: absolute;
    top: 100%; /* Se posiciona debajo del chip-wrapper */
    left: 50%;
    transform: translateX(-50%);
    background-color: #101012; /* Fondo oscuro para el panel */
    color: #c0c0c0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    width: 280px; /* Ancho del panel */
    z-index: 10;
    margin-top: 8px; /* Pequeño espacio entre el chip y el panel */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #2a2a2e;
}

.chip-wrapper.active .chip-explanation-panel {
    opacity: 1;
    /* max-height se establece dinámicamente en JS */
    transform: translateX(-50%) translateY(0);
}

.chip-explanation-panel p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
/* Estilos para el Modal de Perfil de Usuario (añadir a index.css) */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    z-index: 1050; /* Asegura que esté por encima de otros contenidos */
}

.profile-modal.active {
    display: flex;
}

.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
    z-index: 1;
}

.profile-modal-content {
    background-color: #101012; /* Fondo oscuro para el contenido del modal */
    color: #e0e0e0;
    padding: 0; /* El padding se manejará en header/body/footer */
    border-radius: 12px;
    width: 90%;
    max-width: 380px; /* Ancho del modal */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    animation: profileModalOpenAnim 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    border: 1px solid #2a2a2e;
}

@keyframes profileModalOpenAnim {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #2a2a2e;
}

.profile-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.profile-modal-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}
.profile-modal-close:hover svg {
    color: #fff;
}
.profile-modal-close svg {
    width: 22px;
    height: 22px;
}

.profile-modal-body {
    padding: 24px;
    text-align: center;
}

.profile-modal-user-info {
    margin-bottom: 25px;
}

.modal-profile-pic-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid #4A00E0; /* Color de acento */
}

.modal-user-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.modal-user-email {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 8px;
}
.modal-user-role {
    font-size: 0.8rem;
    color: #888;
    text-transform: capitalize;
    background-color: #2a2a2e;
    padding: 3px 8px;
    border-radius: 15px;
    display: inline-block;
}


.profile-modal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-modal-nav li {
    margin-bottom: 10px;
}

.profile-modal-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #1c1c1e;
    color: #c0c0c0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.profile-modal-link:hover {
    background-color: #2a2a2e;
    color: #ffffff;
}

.profile-modal-link svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    color: #888;
    transition: color 0.2s ease;
}
.profile-modal-link:hover svg {
    color: #4A00E0; /* Color de acento al pasar el mouse */
}


.profile-modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #2a2a2e;
    text-align: center;
}

.button-logout-modal {
    background-color: #333;
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-logout-modal:hover {
    background-color: #c9302c; /* Rojo para logout */
    color: #ffffff;
}
.button-logout-modal:hover svg {
    color: #ffffff;
}
