﻿/* ===== VARIABLES Y CONFIGURACIÓN GENERAL ===== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #25D366; /* Color WhatsApp */
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 10px 0;
    margin-top: 56px; /* Compensa navbar fixed */
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== ACCESIBILIDAD ===== */
a:focus, 
button:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none !important;
    border: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ===== BOTONES ===== */
.btn-primary {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.btn-primary:hover {
    background-color: #004494 !important;
    border-color: #004494 !important;
}

.offer-section .whatsapp-btn {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

.offer-section .whatsapp-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    background-color: white;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: 999;
}

.navbar.scrolled {
    padding: 0.7rem 0;
}

.logo-img {
    height: 75px;
    margin-right: 5px;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.brand-text {
    color: var(--secondary-color);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.btn-cta {
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.nav-link.btn-cta:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 1rem;
    }
    
    .nav-link.btn-cta {
        margin: 0.5rem 0;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}

/* ===== SECCIÓN HERO ===== */
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {    
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/sistema-lms-gestion-del-aprendizaje-venezuela.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65; /* Ajusta la opacidad según necesites */
    z-index: 1;	
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 3;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    transform: rotate(3deg);
    opacity: 0.1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ===== ENCABEZADOS DE SECCIÓN ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SECCIÓN PLATAFORMA MOODLE ===== */
.platform-section {
    background-color: #f8f9fa;
}

.platform-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.platform-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.platform-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.platform-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.platform-card p {
    color: var(--text-light);
}

/* ===== SECCIÓN PREGUNTAS ===== */
.questions-section {
    background-color: white;
}

.question-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.question-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.question-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.solution-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    color: white;
    box-shadow: var(--box-shadow);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.solution-card .btn-primary {
    background-color: white !important;
    color: var(--secondary-color) !important;
    border: none;
}

.solution-card .btn-primary:hover {
    background-color: #f8f9fa !important;
}

/* ===== SECCIÓN PÚBLICO OBJETIVO ===== */
.audience-section {
    background-color: #f8f9fa;
}

.audience-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* ===== SECCIÓN BENEFICIOS ===== */
.benefits-section {
    background-color: white;
}

.whats-more-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed #eee;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

/* ===== SECCIÓN SOBRE SARA ===== */
.about-section {
    background-color: #f8f9fa;
}

.profile-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--box-shadow);
    border-radius: 50%;
}

.about-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
}

.certification-badge {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.certificate-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.certificate-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.certificate-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.certificate-preview {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.certificate-preview:hover .certificate-img {
    transform: scale(1.02);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-preview:hover .certificate-overlay {
    opacity: 1;
}

.view-certificate {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ===== SECCIÓN FAQ ===== */
.faq-section {
    background-color: white;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.accordion-body {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== SECCIÓN INNOVADORA ===== */
.innovative-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.innovative-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.innovative-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

/* ===== SECCIÓN TESTIMONIOS ===== */
.testimonials-section {
    background-color: white;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== SECCIÓN OFERTA ===== */
.offer-section {
    background-color: #f8f9fa;
}

.offer-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.offer-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* ===== CONTADOR DE CUENTA REGRESIVA ===== */
.countdown-container {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px dashed #ddd;
}

.countdown-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Poppins', monospace;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.countdown-progress {
    max-width: 400px;
    margin: 0 auto;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}

.progress-bar {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #2980b9 100%);
    border-radius: 5px;
    transition: width 1s linear;
}

/* ===== BOTÓN WHATSAPP OFERTA ===== */
.whatsapp-cta {
    margin: 2rem 0;
}

.whatsapp-btn {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.5);
}

/* ===== CARACTERÍSTICAS OFERTA ===== */
.feature-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    border: 1px solid #eee;
}

.feature-item:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer-logo {
    height: 30px;
    margin-right: 10px;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-text {
    color: #bbb;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

.footer-whatsapp .btn {
    padding: 0.5rem 1.5rem;
}

.footer-copyright {
    color: #999;
}

/* ===== OPTIMIZACIONES DE TEXTO PARA SEO ===== */
.hero-subtitle strong,
.platform-card strong,
.benefit-card strong,
.testimonial-content strong,
.faq-section strong,
.footer-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .innovative-subtitle {
        font-size: 1.5rem;
    }
    
    .innovative-card {
        padding: 2rem;
    }
}

/* ===== SEO OPTIMIZATION ===== */
.seoto {
    display: none !important;
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* Estilos para mejorar densidad de keywords */
.hero-subtitle strong,
.platform-card strong,
.benefit-card strong,
.testimonial-content strong,
.faq-section strong,
.footer-text strong {
    color: var(--primary-color);
    font-weight: 700;
    font-style: normal;
}

/* Mejorar legibilidad para SEO */
.accordion-body,
.testimonial-content,
.platform-card p,
.benefit-card p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Optimizar headings para jerarquía SEO */
h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* ===== FIX NAVBAR MENU ===== */
.navbar-nav .nav-link {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.7rem !important;
    white-space: nowrap;
    margin: 0 0.3rem !important;
}

/* Ajustar tamaño de fuente para textos largos */
.nav-link[href="#plataforma-moodle"] {
    font-size: 0.85rem !important;
}

.nav-link[href="#benefits"] {
    font-size: 0.85rem !important;
}

/* Asegurar que el menú no se rompa */
@media (min-width: 992px) {
    .navbar-collapse {
        overflow: visible !important;
    }
    
    .navbar-nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .nav-item {
        flex-shrink: 0;
    }
}

/* Ajustes específicos para pantallas medianas */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.82rem !important;
        padding: 0.5rem 0.5rem !important;
        margin: 0 0.2rem !important;
    }
    
    .nav-link.btn-cta {
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        margin-left: 0.5rem !important;
    }
}

/* Ajustar logo para hacer espacio */
@media (max-width: 1200px) {
    .logo-img {
        height: 75px !important;
        margin-right: 8px !important;
    }
    
    .brand-text {
        font-size: 1.6rem !important;
    }
}

/* ===== FIX FOOTER TEXT VISIBILITY ===== */
.footer-text strong {
    color: #ddd !important; /* Color más claro para mejor contraste */
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

.footer-text {
    color: #bbb !important;
    line-height: 1.6 !important;
}

/* Mejorar visibilidad de todo el footer */
.footer {
    background-color: var(--primary-color) !important;
}

.footer-link {
    color: #ccc !important;
}

.footer-link:hover {
    color: white !important;
    text-decoration: underline !important;
}

.footer-copyright {
    color: #999 !important;
    font-size: 0.9rem !important;
}