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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

.hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto 1rem;
    padding: 0 1rem;
    position: relative;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f5f5f5;
    border-radius: 14px;
    overflow: hidden;
}

.food-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
}

.hamburger {
    width: 90px;
    height: 65px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 10px;
    position: relative;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.hamburger::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 14px;
    background: linear-gradient(135deg, #F4A460 0%, #DEB887 100%);
    border-radius: 7px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.hamburger::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 14px;
    background: linear-gradient(135deg, #F4A460 0%, #DEB887 100%);
    border-radius: 7px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.cheese {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 5px;
}

.lettuce {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 5px;
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    border-radius: 2.5px;
}

.tomato {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 5px;
    background: linear-gradient(135deg, #FF6347 0%, #DC143C 100%);
    border-radius: 2.5px;
}

.fries {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
}

.fry {
    width: 5px;
    height: 18px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.spices {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spice {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: #FF69B4;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.spice:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.spice:nth-child(2) { top: 35%; left: 25%; animation-delay: 0.5s; }
.spice:nth-child(3) { top: 50%; left: 35%; animation-delay: 1s; }
.spice:nth-child(4) { top: 65%; left: 45%; animation-delay: 1.5s; }
.spice:nth-child(5) { top: 80%; left: 55%; animation-delay: 2s; }
.spice:nth-child(6) { top: 30%; left: 65%; animation-delay: 0.3s; }
.spice:nth-child(7) { top: 45%; left: 75%; animation-delay: 0.8s; }
.spice:nth-child(8) { top: 60%; left: 85%; animation-delay: 1.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-6px); opacity: 0.8; }
}

.ui-icons {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: flex;
    gap: 0.7rem;
}

.ui-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.3);
}

.ui-icon:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.ui-icon i {
    font-size: 14px;
    color: #333;
}

.logo-section {
    position: absolute;
    top: 210px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 16px rgba(0,0,0,0.12);
    border: 3px solid white;
    margin: 0 auto 0.7rem;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-letter {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Modal para compartir — Design System (bottom sheet) */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.share-content {
    background: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.share-modal.modal-active .share-content {
    transform: translateY(0);
}

.share-header {
    padding: 16px 24px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: #fafafa;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.share-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #3A2E22;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-header h3 i {
    color: #FF7A1A;
}

.share-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: none;
    line-height: 1;
}

.share-close:hover {
    background: #FF7A1A;
    color: #fff;
    transform: scale(1.1);
}

.share-body {
    padding: 24px;
    background: white;
}

.share-section {
    margin-bottom: 0;
    background: none;
    padding: 20px 0;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #E8DFD3;
}

.share-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.share-section h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #3A2E22;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-section h4 i {
    color: #FF7A1A;
    font-size: 14px;
}

.url-container {
    display: flex;
    gap: 8px;
}

.url-container input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #E8DFD3;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: white;
    color: #3A2E22;
    min-width: 0;
}

.url-container input:focus {
    border-color: #FF7A1A;
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.12);
    outline: none;
}

.copy-btn {
    padding: 10px 16px;
    background: #FF7A1A;
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: #e86b0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

.share-actions {
    display: flex;
    gap: 10px;
}

.share-action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.qr-btn {
    background: #FF7A1A;
}

.qr-btn:hover {
    background: #e86b0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

/* QR Section */
.qr-section {
    text-align: center;
}

.qr-section img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border: 2px solid #E8DFD3;
    border-radius: 12px;
    padding: 12px;
    background: white;
}

.qr-hint {
    color: #6E5947;
    font-size: 13px;
    margin-top: 12px;
}

.download-qr-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #FF7A1A;
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.download-qr-btn:hover {
    background: #e86b0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

/* Share modal — Desktop (centered scale animation) */
@media (min-width: 768px) {
    .share-modal {
        align-items: center;
    }

    .share-content {
        border-radius: 16px;
        max-width: 600px;
        max-height: 85vh;
        transform: scale(0.9);
        opacity: 0;
    }

    .share-modal.modal-active .share-content {
        transform: scale(1);
        opacity: 1;
    }

    .share-header {
        border-radius: 16px 16px 0 0;
        padding: 24px 32px 20px;
    }

    .share-body {
        padding: 32px;
    }

    .share-header .drag-indicator {
        display: none;
    }
}

/* Sección de categorías */
.categories-section {
    margin: 100px auto 1rem;
    padding: 0 1rem;
    max-width: 1200px;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
}

.categories-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    white-space: nowrap;
    position: relative;
    border: 1px solid rgba(240, 240, 240, 0.8);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Ocultar scrollbar en WebKit browsers */
.categories-container::-webkit-scrollbar {
    display: none;
}

/* Indicadores de scroll */
.scroll-indicator-left,
.scroll-indicator-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.scroll-indicator-left {
    left: 4px;
}

.scroll-indicator-right {
    right: 4px;
}

.scroll-indicator-left:hover,
.scroll-indicator-right:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-50%) scale(1.05);
}

.scroll-indicator-left.hidden,
.scroll-indicator-right.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

.category-item {
    position: relative;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    flex-shrink: 0;
    min-width: max-content;
    background: transparent;
    border: 1px solid transparent;
}

.category-item:hover {
    background-color: rgba(231, 76, 60, 0.06);
    border-color: rgba(231, 76, 60, 0.15);
    transform: translateY(-1px);
}

.category-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-text::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.category-item:hover .category-text::after {
    color: #e74c3c;
    transform: translateY(-50%) translateY(-1px);
}

.category-item.active .category-text {
    color: #e74c3c;
    font-weight: 600;
}

.category-item.active {
    background-color: rgba(231, 76, 60, 0.08);
    border-color: rgba(231, 76, 60, 0.25);
}

.category-item.active::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background-color: #e74c3c;
    border-radius: 1px;
    animation: activeIndicator 0.3s ease-out;
}

@keyframes activeIndicator {
    from {
        width: 0%;
        opacity: 0;
    }
    to {
        width: 40%;
        opacity: 1;
    }
}

.category-item:hover .category-text {
    color: #e74c3c;
}

.category-item:hover::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background-color: #e74c3c;
    border-radius: 1px;
    opacity: 0.7;
}

/* Responsive para categorías */
@media (max-width: 768px) {
    .hero-banner {
        height: 150px;
    }
    
    .food-container {
        width: 45%;
        padding: 1rem;
    }
    
    .hamburger {
        width: 75px;
        height: 55px;
        margin-bottom: 0.6rem;
    }
    
    .hamburger::before,
    .hamburger::after {
        width: 95px;
        height: 12px;
    }
    
    .cheese {
        width: 65px;
        height: 8px;
    }
    
    .lettuce {
        width: 55px;
        height: 4px;
    }
    
    .tomato {
        width: 45px;
        height: 4px;
    }
    
    .fry {
        width: 4px;
        height: 16px;
    }
    
    .ui-icons {
        top: 0.8rem;
        right: 0.8rem;
        gap: 0.5rem;
    }
    
    .ui-icon {
        width: 28px;
        height: 28px;
    }
    
    .ui-icon i {
        font-size: 12px;
    }
    
    .logo-section {
        top: 125px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }
    
    .logo-letter {
        font-size: 1.9rem;
    }
    
    .menu-title {
        font-size: 1.4rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .share-body {
        padding: 16px;
    }

    .share-section {
        padding: 16px 0;
    }

    .share-actions {
        flex-direction: column;
    }

    .url-container {
        flex-direction: column;
    }

    .url-container input {
        width: 100%;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .categories-section {
        margin: 95px auto 0.8rem;
        padding: 0 0.8rem;
    }
    
    .categories-container {
        gap: 1rem;
        padding: 0.7rem 1rem;
        border-radius: 10px;
    }
    
    .category-text {
        font-size: 0.8rem;
    }
    
    .category-item {
        padding: 0.45rem 0.75rem;
    }
    
    .scroll-indicator-left,
    .scroll-indicator-right {
        width: 22px;
        height: 22px;
    }
    
    /* Ajustes para sticky en tablet */
    .categories-section.sticky {
        padding: 0.4rem 0;
    }
    
    .categories-section.sticky .categories-container {
        width: calc(100% - 1.6rem);
        max-width: 100%;
        border-radius: 10px;
        padding: 0.7rem 1rem;
    }
}

/* Efectos adicionales para categorías sticky - CORREGIDO */
.categories-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin: 0;
    padding: 0.5rem 0;
    border-radius: 0;
    animation: slideDown 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centrado específico para escritorio */
@media (min-width: 1200px) {
    .categories-section.sticky {
        left: 277px;
        right: auto;
        width: calc(100% - 554px);
        margin: 0 auto;
    }
}

.categories-section.sticky .categories-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    width: calc(100% - 2rem);
    margin: 0 auto;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ajustar el contenido cuando las categorías están sticky */
.categories-section.sticky + .products-section {
    margin-top: 80px;
    transition: margin-top 0.3s ease;
}

/* Asegurar que la transición sea suave */
.products-section {
    transition: margin-top 0.3s ease;
}

/* Indicador visual de scroll */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
    background-size: 200% 100%;
    animation: scrollProgress 3s ease-in-out infinite;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.scroll-indicator.visible {
    opacity: 1;
}

@keyframes scrollProgress {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* Mejoras para dispositivos móviles */
@media (max-width: 480px) {
    .hero-banner {
        height: 130px;
    }
    
    /* Estilos para manejar títulos largos dinámicamente */
    .logo-section {
        min-height: auto;
        /* Permitir que el contenedor se ajuste al contenido */
    }
    
    .menu-title {
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .food-container {
        width: 50%;
        padding: 0.8rem;
    }
    
    .hamburger {
        width: 65px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .hamburger::before,
    .hamburger::after {
        width: 80px;
        height: 10px;
    }
    
    .cheese {
        width: 55px;
        height: 6px;
    }
    
    .lettuce {
        width: 45px;
        height: 3px;
    }
    
    .tomato {
        width: 35px;
        height: 3px;
    }
    
    .fry {
        width: 3px;
        height: 14px;
    }
    
    .ui-icons {
        top: 0.6rem;
        right: 0.6rem;
        gap: 0.4rem;
    }
    
    .ui-icon {
        width: 24px;
        height: 24px;
    }
    
    .ui-icon i {
        font-size: 10px;
    }
    
    .logo-section {
        top: 57px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 0.4rem;
    }
    
    .logo-letter {
        font-size: 1.6rem;
    }
    
    .menu-title {
        font-size: 1.2rem;
    }
    
    .categories-section {
        margin: 85px auto 0.8rem;
        padding: 0 0.5rem;
        /* Se ajustará dinámicamente con JavaScript */
    }
    
    .categories-container {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
        border-radius: 8px;
    }
    
    .category-text {
        font-size: 0.75rem;
        padding-right: 12px;
    }
    
    .category-item {
        padding: 0.4rem 0.7rem;
    }
    
    .scroll-indicator-left,
    .scroll-indicator-right {
        width: 20px;
        height: 20px;
        left: 3px;
        right: 3px;
    }
    
    .scroll-indicator-left i,
    .scroll-indicator-right i {
        font-size: 0.6rem;
    }
    
    /* Ajustes para sticky en móviles */
    .categories-section.sticky {
        padding: 0.3rem 0;
    }
    
    .categories-section.sticky .categories-container {
        width: calc(100% - 1rem);
        max-width: 100%;
        border-radius: 8px;
        padding: 0.6rem 0.8rem;
    }
    
    .categories-section.sticky + .products-section {
        margin-top: 70px;
    }
}

/* Animación de entrada para las categorías */
.category-item {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(12px);
}

.category-item:nth-child(1) { animation-delay: 0.05s; }
.category-item:nth-child(2) { animation-delay: 0.1s; }
.category-item:nth-child(3) { animation-delay: 0.15s; }
.category-item:nth-child(4) { animation-delay: 0.2s; }
.category-item:nth-child(5) { animation-delay: 0.25s; }
.category-item:nth-child(6) { animation-delay: 0.3s; }

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

/* Ajustes para pantallas muy grandes */
@media (min-width: 1400px) {
    .categories-section.sticky {
        left: 277px;
        right: auto;
        width: calc(100% - 554px);
        margin: 0 auto;
    }
    
    .categories-section.sticky .categories-container {
        max-width: 1200px;
        width: 1200px;
        margin: 0 auto;
    }
}

/* Ajustes para pantallas medianas */
@media (min-width: 1200px) and (max-width: 1399px) {
    .categories-section.sticky {
        left: 277px;
        right: auto;
        width: calc(100% - 554px);
        margin: 0 auto;
    }
    
    .categories-section.sticky .categories-container {
        max-width: 1200px;
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
}

/* Asegurar que la transición sea suave */
.products-section {
    transition: margin-top 0.3s ease;
}

/* Footer de Wenu */
.wenu-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}

.wenu-logo {
    height: 20px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.wenu-logo:hover {
    opacity: 1;
}

/* Responsive para el footer */
@media (max-width: 768px) {
    .wenu-footer {
        padding: 67px 0 100px;
        margin-top: 15px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-text {
        font-size: 24px;
        font-weight: 700;
    }
    
    .wenu-logo {
        height: 37px;
    }
}

