/**
 * GESMED EDITION - MODERN COMPONENTS
 * Sistema de componentes CSS modernos para la web
 * Version: 2.0.0
 * Creado: 2025-01-15
 */

/* ============================================
   1. TOGGLE SWITCHER (Opción A vs B)
   ============================================ */

.product-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
    max-width: 600px;
}

.product-toggle__container {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    box-shadow: 0 2px 8px rgba(26, 135, 160, 0.1);
}

.product-toggle__option {
    padding: 12px 32px;
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.product-toggle__option.active {
    background: var(--primary-teal, #1a87a0);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 135, 160, 0.3);
}

.product-toggle__option:hover:not(.active) {
    color: var(--primary-teal, #1a87a0);
    background: rgba(26, 135, 160, 0.05);
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   2. HERO VARIANTS
   ============================================ */

.hero {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

/* Hero Principal (Homepage) */
.hero--primary {
    background: linear-gradient(135deg, #1a87a0 0%, #127085 50%, #0c5565 100%);
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero SEO (Landing Pages) */
.hero--seo {
    background: linear-gradient(to right, #f8f9fa 50%, transparent 50%),
        linear-gradient(135deg, #1a87a0, #127085);
    padding: 80px 20px;
}

/* Hero Corporativo (Sobre Nosotros, etc) */
.hero--corporate {
    background: white;
    border-bottom: 4px solid var(--primary-teal, #1a87a0);
    padding: 60px 20px;
}

/* Hero Minimalista (FAQ, etc) */
.hero--minimal {
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Background Patterns */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}


/* ============================================
   3. TIMELINE (Primeros Pasos, Hitos)
   ============================================ */

.timeline {
    position: relative;
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            var(--primary-teal, #1a87a0),
            var(--primary-dark, #127085));
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline__item:nth-child(odd) {
    flex-direction: row;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline__content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 135, 160, 0.15);
}

.timeline__marker {
    width: 50px;
    height: 50px;
    background: var(--primary-teal, #1a87a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(26, 135, 160, 0.1);
}

.timeline__title {
    font-size: 1.4rem;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline__description {
    color: #666;
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 25px;
    }

    .timeline__item,
    .timeline__item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline__content {
        margin-left: 60px;
        margin-right: 0;
    }

    .timeline__marker {
        position: absolute;
        left: 0;
    }
}


/* ============================================
   4. ACCORDION / COLLAPSE (FAQ)
   ============================================ */

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion__item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion__item:hover {
    box-shadow: 0 4px 16px rgba(26, 135, 160, 0.1);
}

.accordion__header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
    user-select: none;
}

.accordion__header:hover {
    background: #f8f9fa;
}

.accordion__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.accordion__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-teal, #1a87a0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.active .accordion__content {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.accordion__text {
    color: #666;
    line-height: 1.7;
}


/* ============================================
   5. TABLA COMPARATIVA PRECIOS
   ============================================ */

.pricing-table {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--primary-teal, #1a87a0);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table th:first-child {
    text-align: left;
    background: #f8f9fa;
    color: #333;
    border-radius: 8px 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 8px 0 0;
}

.pricing-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
    border-left: 1px solid #e9ecef;
    border-radius: 8px 0 0 8px;
}

.pricing-table td:last-child {
    border-right: 1px solid #e9ecef;
    border-radius: 0 8px 8px 0;
}

.pricing-table tr:hover td {
    background: #f8f9fa;
}

.pricing-table .check {
    color: var(--primary-teal, #1a87a0);
    font-weight: 700;
    font-size: 1.3rem;
}

.pricing-table .cross {
    color: #ccc;
    font-size: 1.2rem;
}

/* Responsive Table */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
    }
}


/* ============================================
   6. CARDS DE BLOG
   ============================================ */

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(26, 135, 160, 0.15);
}

.blog-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-card__category {
    background: var(--primary-teal, #1a87a0);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card__date {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.blog-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card__title:hover {
    color: var(--primary-teal, #1a87a0);
}

.blog-card__excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__link {
    color: var(--primary-teal, #1a87a0);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card__link:hover {
    gap: 0.8rem;
}


/* ============================================
   7. CARDS CASOS DE ÉXITO (Storytelling)
   ============================================ */

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.case-card__header {
    background: linear-gradient(135deg, #1a87a0, #127085);
    color: white;
    padding: 2.5rem 2rem;
    position: relative;
}

.case-card__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-orange, #d67544);
}

.case-card__clinic-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-card__clinic-type {
    font-size: 1rem;
    opacity: 0.9;
}

.case-card__body {
    padding: 2.5rem 2rem;
}

.case-card__section {
    margin-bottom: 2rem;
}

.case-card__section-title {
    font-size: 1.3rem;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-card__section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-teal, #1a87a0);
    border-radius: 2px;
}

.case-card__text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-card__list {
    list-style: none;
    padding: 0;
}

.case-card__list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.case-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal, #1a87a0);
    font-weight: 700;
    font-size: 1.2rem;
}

.case-card__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.case-card__metric {
    text-align: center;
}

.case-card__metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 0.5rem;
}

.case-card__metric-label {
    color: #666;
    font-size: 0.95rem;
}

.case-card__quote {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid var(--primary-teal, #1a87a0);
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    position: relative;
}

.case-card__quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-teal, #1a87a0);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.case-card__quote-author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-teal, #1a87a0);
}


/* ============================================
   8. BADGES (Categorías, Especialidades)
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.badge:hover {
    transform: scale(1.05);
}

.badge--primary {
    background: var(--primary-teal, #1a87a0);
    color: white;
}

.badge--secondary {
    background: var(--primary-dark, #127085);
    color: white;
}

.badge--accent {
    background: var(--accent-orange, #d67544);
    color: white;
}

.badge--light {
    background: #e0f4f7;
    color: var(--primary-teal, #1a87a0);
}

.badge--outline {
    background: transparent;
    border: 2px solid var(--primary-teal, #1a87a0);
    color: var(--primary-teal, #1a87a0);
}


/* ============================================
   9. PULL QUOTES (Testimonios destacados)
   ============================================ */

.pull-quote {
    padding: 3rem 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e0f4f7 100%);
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.pull-quote::before {
    content: '"';
    font-size: 8rem;
    color: var(--primary-teal, #1a87a0);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pull-quote__text {
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pull-quote__author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 0.3rem;
}

.pull-quote__role {
    font-size: 0.95rem;
    color: #666;
}


/* ============================================
   10. CTA SECTIONS
   ============================================ */

.cta-section {
    padding: 4rem 2rem;
    border-radius: 16px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section--primary {
    background: linear-gradient(135deg, #1a87a0, #127085);
    color: white;
}

.cta-section--gradient {
    background: linear-gradient(135deg, #1a87a0 0%, #127085 50%, #d67544 100%);
    color: white;
}

.cta-section--light {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.cta-section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones modernos */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--primary-teal, #1a87a0);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 135, 160, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark, #127085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 135, 160, 0.4);
}

.btn--secondary {
    background: white;
    color: var(--primary-teal, #1a87a0);
    border: 2px solid var(--primary-teal, #1a87a0);
}

.btn--secondary:hover {
    background: var(--primary-teal, #1a87a0);
    color: white;
}

.btn--accent {
    background: var(--accent-orange, #d67544);
    color: white;
}

.btn--accent:hover {
    background: #c46534;
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}


/* ============================================
   11. BREADCRUMBS MEJORADOS
   ============================================ */

.breadcrumbs {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumbs__item::after {
    content: '›';
    color: #999;
    margin-left: 0.5rem;
}

.breadcrumbs__item:last-child::after {
    content: '';
}

.breadcrumbs__link {
    color: var(--primary-teal, #1a87a0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
    color: var(--primary-dark, #127085);
    text-decoration: underline;
}

.breadcrumbs__current {
    color: #666;
    font-weight: 600;
}


/* ============================================
   12. BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal, #1a87a0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 135, 160, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark, #127085);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 135, 160, 0.4);
}

/* .back-to-top::before {
    content: '↑';
    font-size: 1.5rem;
    font-weight: 700;
} */

.back-to-top svg{
    width: 1.25rem;
    height: 1.25rem;
}


/* ============================================
   13. PROGRESS BAR SCROLL
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-teal, #1a87a0), var(--accent-orange, #d67544));
    z-index: 9999;
    transition: width 0.1s ease;
}


/* ============================================
   14. CARDS DE BENEFICIOS CON HOVER
   ============================================ */

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    color: #1f2d3d;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(26, 135, 160, 0.15);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e0f4f7, #d0eef5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 1rem;
}

.benefit-card__description {
    color: #1f2d3d;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
}


/* ============================================
   15. COMPONENTES DE TESTIMONIOS
   ============================================ */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-teal, #1a87a0);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial__text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-teal, #1a87a0);
}

.testimonial__info {
    flex: 1;
}

.testimonial__name {
    font-weight: 600;
    color: var(--primary-teal, #1a87a0);
    margin-bottom: 0.2rem;
}

.testimonial__role {
    font-size: 0.9rem;
    color: #666;
}


/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero--primary {
        min-height: 450px;
    }

    .hero__cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .case-card__header {
        padding: 2rem 1.5rem;
    }

    .case-card__body {
        padding: 2rem 1.5rem;
    }

    .case-card__metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-toggle__option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .pull-quote {
        padding: 2rem 1rem;
    }

    .pull-quote__text {
        font-size: 1.2rem;
    }
}


/* ============================================
   MODULE FEATURE ITEMS
   ============================================ */

.feature-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 135, 160, 0.1);
    border-radius: 12px;
    color: var(--primary-teal, #1a87a0);
    flex-shrink: 0;
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* ============================================
   DARK MODE SUPPORT (Opcional)
   ============================================ */

@media (prefers-color-scheme: dark) {
    /* Activar solo si se desea dark mode */
    /* body.dark-mode {
        background: #1a1a1a;
        color: #f0f0f0;
    } */
}
