:root {
    --primary: #ff6b00;
    --dark-bg: #121212;
    --card-bg: var(--grey-color);
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --divider: rgba(255, 107, 0, 0.3);
}

.modal-content {
    color: var(--text-light);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-body {
    padding: 0;
}

.modern-card {
    background: var(--primary-light-color);
    padding: 32px;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    text-align: justify !important;
}

.modern-card:last-child {
    border-bottom: none;
}

.modern-card:hover {
    transform: none;
    background: var(--grey-color);
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.emphasis-box {
    background: #2f2e2e;
    border-left: 4px solid var(--primary);
    padding: 16px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.cta-banner {
    padding: 20px;
    text-align: center;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 24px 0 12px 0;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

strong {
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .modern-card {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .modal-body {
        text-align: left;
    }

    .modern-card,
    .cta-banner {
        text-align: left;
        align-items: flex-start;
    }

    .cta-banner p {
        text-align: justify !important;
    }
}

/* Tooltip CSS solo para mobile */
.mobile-tooltip {
    position: relative;
}

.mobile-tooltip:hover::after {
    content: attr(data-text);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.mobile-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    margin-bottom: -5px;
}

/* Solo en mobile */
.bullet-list {
    margin: 10px 0 15px 20px;
    padding-left: 15px;
    list-style-type: disc;
}

.bullet-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-muted);
}

.awards-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0 20px 0;
    font-size: 0.95rem;
}

.awards-table th,
.awards-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.awards-table th {
    color: var(--text-light);
    font-weight: 600;
    background: rgba(255, 107, 0, 0.1);
}

.awards-table td {
    color: var(--text-muted);
}

.awards-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .awards-table {
        font-size: 0.85rem;
    }

    .awards-table th,
    .awards-table td {
        padding: 8px;
    }
}