/* ===== VARIABLES ===== */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --accent: #f4a261;
    --dark: #1a1a1a;
    --gray-900: #2d2d2d;
    --gray-800: #404040;
    --gray-600: #737373;
    --gray-400: #a3a3a3;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 900px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-accent { color: var(--accent); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--dark);
}

.btn--outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-800);
}

.btn--ghost:hover {
    background: var(--gray-100);
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--block {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav__logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.nav__logo-icon {
    font-size: 1.8rem;
}

.nav__menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    animation: fadeInUp 0.6s ease-out;
}

.tag {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__text {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat__label {
    color: var(--gray-600);
    font-weight: 500;
}

.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__card i {
    color: #fbbf24;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section--light {
    background: var(--gray-100);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.card--featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card__icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card__icon i {
    font-size: 2rem;
    color: var(--primary);
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card__price {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.card__price strong {
    color: var(--dark);
    font-size: 1.5rem;
}

.card__features {
    list-style: none;
    margin-bottom: 32px;
}

.card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.card__features i {
    color: #10b981;
    font-size: 1.1rem;
}

/* ===== FRANQUICIA PACKAGE ===== */
.franchise-package {
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.package-card:hover {
    box-shadow: var(--shadow-xl);
}

.package-card__header {
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(244, 162, 97, 0.03) 100%);
}

.package-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
}

.package-card__icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.package-card__title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.package-card__subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.package-card__body {
    padding: 40px;
}

.feature-block {
    margin-bottom: 32px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-block__header i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 32px;
    text-align: center;
}

.feature-block__header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px 24px;
    list-style: none;
    padding-left: 44px;
}

.feature-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.feature-grid i {
    color: #10b981;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 44px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.feature-list i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.feature-text {
    padding-left: 44px;
    color: var(--gray-700);
    font-size: 1rem;
}

.feature-block--highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.feature-block--highlight .feature-block__header h4,
.feature-block--highlight .feature-block__header i {
    color: var(--white);
}

.stock-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    padding-left: 44px;
}

.stock-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stock-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.package-card__footer {
    padding: 30px 40px 40px;
    text-align: center;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.package-card__footer .btn {
    margin-bottom: 16px;
    min-width: 280px;
}

.package-card__note {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===== RESPONSIVE PACKAGE ===== */
@media (max-width: 768px) {
    .package-card__header {
        padding: 30px 24px 24px;
    }
    
    .package-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .package-card__icon i {
        font-size: 2rem;
    }
    
    .package-card__title {
        font-size: 1.8rem;
    }
    
    .package-card__body {
        padding: 30px 24px;
    }
    
    .package-card__footer {
        padding: 24px 24px 30px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        padding-left: 32px;
    }
    
    .feature-list {
        padding-left: 32px;
    }
    
    .feature-text {
        padding-left: 32px;
    }
    
    .stock-badge {
        padding-left: 32px;
    }
    
    .package-card__footer .btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-block__header {
        flex-wrap: wrap;
    }
    
    .feature-grid,
    .feature-list,
    .feature-text,
    .stock-badge {
        padding-left: 0;
    }
    
    .feature-grid li {
        font-size: 0.9rem;
    }
}


/* ===== ABOUT ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__title {
    font-size: 2.5rem;
    margin: 16px 0 24px;
    letter-spacing: -0.02em;
}

.about__text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.about__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.pillar i {
    color: var(--primary);
}

.testimonial {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.testimonial i {
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin: 16px 0;
}

.testimonial__author strong {
    display: block;
    color: var(--dark);
}

.testimonial__author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.about__media {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image img {
    width: 100%;
    display: block;
}

.about__badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about__badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

/* ===== FAQ ===== */
.faq {
    margin: 40px 0;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--gray-100);
}

.faq__question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq__item.active .faq__question i {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
}

.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--gray-400);
    margin-bottom: 28px;
}

/* ===== RESTAURANTS PAGE ===== */
.page-header {
    padding: 60px 0 30px;
    text-align: center;
}

.page-header__title {
    font-size: 3rem;
    margin-bottom: 12px;
}

.page-header__subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.search-section {
    margin-bottom: 40px;
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 24px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    min-height: 400px;
}

.restaurant-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.restaurant-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.restaurant-card__badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.restaurant-card__title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.restaurant-card__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.restaurant-card__info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.restaurant-card__info i {
    width: 20px;
    color: var(--primary);
}

.restaurant-card__actions {
    display: flex;
    gap: 10px;
}

.btn--copy,
.btn--whatsapp {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-align: center;
}

.btn--copy {
    background: var(--gray-100);
    color: var(--dark);
}

.btn--copy:hover {
    background: var(--gray-200);
}

.btn--whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #128c7e;
}

.loading-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
}

.footer__brand p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer__links ul,
.footer__contact ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-900);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Invierte colores para fondo oscuro si el logo es oscuro */
.footer__logo-img--light {
    filter: brightness(0) invert(1);
}

/* O si el logo es claro y quieres que se vea bien en header claro */
.nav__logo-img--dark {
    filter: brightness(0);
}


/* ===== FLOAT WHATSAPP ===== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 99;
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128c7e;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero__grid,
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: var(--transition);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__contact li {
        justify-content: center;
    }
    
    .about__badge {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-banner {
        padding: 32px 20px;
    }
}

/* ===== COMING SOON ===== */
.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon i {
    font-size: 2rem;
    color: var(--white);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.empty-state p {
    margin-bottom: 12px;
    color: var(--gray-600);
}

.empty-state .btn {
    margin-top: 16px;
}

.filter-btn--coming {
    border-style: dashed;
    opacity: 0.7;
}

.filter-btn--coming:hover {
    opacity: 1;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.filter-btn--coming small {
    font-size: 0.7rem;
    font-weight: 400;
}

/* ===== ESTADO VACÍO MEJORADO ===== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-200);
}