/* Estilos base corregidos */
:root {
    --rojo: #d52b1e;
    --naranja: #ff6b35;
    --amarillo: #ffeb3b;
    --verde: #4caf50;
    --marron: #8d6e63;
    --oscuro: #2c1e1e;
    --claro: #f8f1e5;
    --texto: #333333;
    --sombra: 0 4px 12px rgba(0,0,0,0.15);
    --sombra-intensa: 0 8px 25px rgba(0,0,0,0.25);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--claro);
    color: var(--texto);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header corregido */
header {
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--sombra-intensa);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(213, 43, 30, 0.95);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.2rem;
    color: white;
    text-shadow: 2px 2px 0 var(--oscuro);
    letter-spacing: 1px;
}

.logo .flash {
    color: var(--amarillo);
}

.slogan {
    font-size: 0.8rem;
    color: var(--amarillo);
    font-style: italic;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.navbar li {
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--amarillo);
    color: var(--rojo);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pedido {
    background: var(--amarillo);
    color: var(--rojo);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 0 #b3a125;
    font-size: 0.9rem;
}

.btn-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #b3a125;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section corregido */
.hero {
    background: linear-gradient(135deg, var(--naranja), var(--rojo));
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    line-height: 1.2;
}

.highlight {
    color: var(--amarillo);
    text-shadow: 2px 2px 0 var(--rojo);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--amarillo);
    color: var(--rojo);
    box-shadow: 0 4px 0 #b3a125;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #b3a125;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--rojo);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.food-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra-intensa);
    width: 280px;
    text-align: center;
    color: var(--texto);
}

.food-img {
    height: 180px;
    background: var(--claro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-emoji {
    font-size: 4rem;
}

.food-card h3 {
    padding: 15px 15px 5px;
    color: var(--rojo);
    font-size: 1.3rem;
}

.food-card p {
    padding: 0 15px 10px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.price {
    background: var(--amarillo);
    color: var(--rojo);
    font-weight: bold;
    padding: 10px;
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Counter Section corregido */
.counter-section {
    padding: 80px 0;
    background: white;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--rojo);
    margin-bottom: 10px;
    display: block;
}

.counter-item p {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Menu Section corregido */
.menu-section {
    padding: 80px 0;
    background: var(--claro);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--oscuro);
    margin-bottom: 15px;
}

.accent {
    color: var(--rojo);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: white;
    border: 2px solid var(--rojo);
    color: var(--rojo);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--rojo);
    color: white;
    transform: translateY(-2px);
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.menu-item.hidden {
    display: none !important;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-intensa);
}

.menu-item-img {
    height: 200px;
    background: var(--claro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.menu-item-img .food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-img .food-image {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.menu-item-header h3 {
    color: var(--oscuro);
    font-size: 1.2rem;
    flex: 1;
}

.menu-item .price {
    background: none;
    color: var(--rojo);
    font-weight: bold;
    font-size: 1.3rem;
    padding: 0;
}

.menu-item p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.tag {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tag.picante {
    background: #ffeaa7;
    color: #e17055;
}

.tag.popular {
    background: #fab1a0;
    color: #d63031;
}

.tag.tradicional {
    background: #a29bfe;
    color: white;
}

.tag.saludable {
    background: #55efc4;
    color: #00b894;
}

.btn-add {
    background: var(--rojo);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add:hover {
    background: var(--naranja);
    transform: scale(1.1);
}

.menu-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--sombra);
}

.menu-cta a {
    color: var(--rojo);
    font-weight: bold;
    text-decoration: none;
}

.menu-cta a:hover {
    text-decoration: underline;
}

/* Specials Section corregido */
.specials-section {
    padding: 80px 0;
    background: white;
}

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

.special-card {
    background: var(--claro);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra);
    position: relative;
    transition: all 0.3s;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-intensa);
}

.special-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--amarillo);
    color: var(--rojo);
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
    font-size: 0.9rem;
}

.special-img {
    height: 220px;
    background: var(--claro);
    overflow: hidden;
}

.special-img .food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-card:hover .special-img .food-image {
    transform: scale(1.1);
}

.special-content {
    padding: 25px;
    text-align: center;
}

.special-content h3 {
    color: var(--oscuro);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.special-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.special-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1rem;
}

.new-price {
    color: var(--rojo);
    font-weight: bold;
    font-size: 1.5rem;
}

.special-content .btn {
    width: 100%;
    max-width: 200px;
}

/* About Section corregido */
.about-section {
    padding: 80px 0;
    background: var(--claro);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-story p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--sombra);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-intensa);
}

.feature i {
    font-size: 2.5rem;
    color: var(--rojo);
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: var(--oscuro);
    font-size: 1.1rem;
}

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

.about-image {
    flex: 1;
}
.image-frame {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--sombra-intensa);
}

.chef-img {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.chef-img .food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section - COMPLETAMENTE CORREGIDO */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

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

.testimonial-card {
    background: var(--claro);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--sombra);
    transition: all 0.3s;
    border-left: 4px solid var(--rojo);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-intensa);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.rating {
    color: var(--amarillo);
    margin-bottom: 15px;
    font-size: 1rem;
}

.rating i {
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--rojo);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--oscuro);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section - COMPLETAMENTE CORREGIDO */
.contact-section {
    padding: 80px 0;
    background: var(--claro);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--sombra);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--rojo);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--oscuro);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    color: var(--oscuro);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--rojo);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--naranja);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--sombra);
}

.contact-form h3 {
    color: var(--oscuro);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Footer - COMPLETAMENTE CORREGIDO */
.footer {
    background: var(--oscuro);
    color: white;
    padding: 60px 0 0;
}

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

.footer-section h3, .footer-section h4, .footer-section h5 {
    margin-bottom: 20px;
    color: var(--amarillo);
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--amarillo);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--rojo);
    transform: translateY(-2px);
}

.footer-hours {
    margin-bottom: 20px;
}

.footer-hours p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-hours strong {
    color: var(--amarillo);
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--rojo);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--naranja);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 25px 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rojo), transparent);
    margin-bottom: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

.footer-links a:hover {
    color: var(--amarillo);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--rojo);
        padding: 20px;
        box-shadow: var(--sombra-intensa);
    }
    
    .navbar.active {
        display: block;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}
/* Estilos para los botones de filtro */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--rojo);
    background: transparent;
    color: var(--rojo);
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover {
    background: var(--rojo);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--rojo);
    color: white;
    box-shadow: 0 4px 15px rgba(213, 43, 30, 0.4);
}

/* Para que los items ocultos no ocupen espacio */
.menu-item.hidden {
    display: none;
}

.menu-item {
    transition: all 0.4s ease;
}
/* SOLO para hacer funcionar las 3 rayitas */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }
  /* COLOR BLANCO para las rayitas del hamburguesa en móviles */
@media (max-width: 768px) {
    .hamburger span {
        background: #ffffff !important;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }  

}

}
/* FORZAR COLOR BLANCO - MÁXIMA PRIORIDAD */
#hamburger span {
    background: #ffffff !important;
}

.hamburger span {
    background: #ffffff !important;
}

@media (max-width: 768px) {
    #hamburger span {
        background: #ffffff !important;
    }
    
    .hamburger span {
        background: #ffffff !important;
    }
}
/* HACER VISIBLE LAS RAYITAS - COLOR QUE CONTRASTE */
@media (max-width: 768px) {
    .hamburger span {
        background: #FF0000 !important; /* ROJO para que se vea */
        box-shadow: 0 0 8px #FF0000 !important;
        border: 1px solid #FFFFFF !important;
    }
}
