/*
Theme Name: Cult Machine
Description: A professional music culture magazine theme with modern design and responsive layout. Features include dynamic blog posts, concert news, team management, and customizable sections.
Author: Cult Machine Team
Version: 1.0
Text Domain: cult-machine
*/

/* Elimino el import de Google Fonts, ya está en el header.php */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #333;
}

.nav-link.active {
    color: #000;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-background {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

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

/* Featured Stories */
.featured-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-stories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.story-card {
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.story-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.main-story img {
    height: 300px;
}

.story-content {
    padding: 25px;
}

.category {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.3;
}

.main-story h3 {
    font-size: 2rem;
}

.story-content p {
    color: #666;
    margin-bottom: 15px;
}

.author {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-post a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* Concerts Section */
.concerts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.concerts-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.concert-news-card {
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.concert-news-card:hover {
    transform: translateY(-5px);
}

.concert-news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.concert-news-content {
    padding: 25px;
}

.news-category {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.concert-news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.concert-news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.news-meta .date {
    font-weight: 500;
}

.news-meta .author {
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 0;
    border: 2px solid #000;
    max-width: 600px;
    margin: 0 auto;
}

.no-reviews h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.no-reviews p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    padding: 25px;
}

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

.review-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.artist {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #000;
    font-size: 1.1rem;
}

.score {
    font-weight: 600;
    color: #000;
}

.review-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Merch Section */
.merch-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.coming-soon h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.notify-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.notify-form button {
    padding: 15px 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background: #f0f0f0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-section h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    background: #fff;
    border-radius: 0;
    border: 2px solid #000;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.role {
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    border: 2px solid #000;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 10px;
    color: #666;
}

.contact-details strong {
    color: #000;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #999;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Article Page Styles */
.article-page {
    padding: 40px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    margin-bottom: 20px;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: #000;
}

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

.share-btn {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background: #333;
}

.article-image {
    margin: 40px 0;
    border: 2px solid #000;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.article-body p {
    margin-bottom: 20px;
    color: #333;
}

.article-body blockquote {
    border-left: 4px solid #000;
    padding: 20px 30px;
    margin: 40px 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.2rem;
}

.article-body blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.article-tags {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-tags h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: #f0f0f0;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.tag:hover {
    background: #000;
    color: #fff;
}

.related-articles {
    margin-top: 60px;
}

.related-articles h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-post {
    border: 2px solid #000;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-category {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.3;
}

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

/* WordPress specific styles */
.wp-block-group {
    margin: 0;
}

.entry-content {
    margin: 0;
}

.wp-post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 60px 0;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #000;
    color: #fff;
}

/* Responsive Design - Mobile Optimized */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 30px;
        text-align: center;
    }
    
    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
        margin-top: 10px;
    }
    
    .featured-stories {
        padding: 60px 0;
    }
    
    .featured-stories h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-story img {
        height: 250px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .main-story h3 {
        font-size: 1.5rem;
    }
    
    .story-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-section,
    .concerts-section,
    .reviews-section,
    .about-section {
        padding: 60px 0;
    }
    
    .blog-section h2,
    .concerts-section h2,
    .reviews-section h2,
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .blog-grid,
    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content,
    .concert-news-content {
        padding: 20px;
    }
    
    .blog-content h3,
    .concert-news-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta,
    .news-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .review-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .review-card img {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    
    .no-reviews {
        padding: 40px 15px;
    }
    
    .no-reviews h3 {
        font-size: 1.5rem;
    }
    
    .merch-section {
        padding: 60px 0;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .coming-soon h3 {
        font-size: 2.5rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .notify-form input,
    .notify-form button {
        width: 100%;
        font-size: 16px;
    }
    
    .contact-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }
    
    .team-member:hover img {
        filter: grayscale(0%);
    }
    
    .member-info h4 {
        font-size: 1.2rem;
    }
    
    .bio {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-info h4 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    /* Article Page Mobile Styles */
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .article-image {
        margin: 30px 15px;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-content {
        padding: 0 20px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- NAVIGATION VISIBILITY FIX (CORRECTO PARA JS) --- */
.mobile-menu {
    display: none;
}
@media (max-width: 768px) {
    .nav-menu.desktop-menu {
        display: none !important;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 40px 0 20px 0;
        transition: left 0.3s;
    }
    .mobile-menu.active {
        display: block;
    }
}
/* --- FIN FIX --- */

/* Forzar los enlaces del menú a tener la clase nav-link */
.nav-menu.desktop-menu a,
.mobile-nav-list a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
}
.nav-menu.desktop-menu a:hover,
.mobile-nav-list a:hover {
    color: #333;
}
