Tul xxx Tul
User / IP
:
216.73.216.227
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
aircan.me
/
public_html
/
manaexpress
/
Viewing: style.css
/*************************************** * SAN PIO BURGER - HOJA DE ESTILOS * * ÍNDICE: * 1. Variables y configuración global * 2. Estilos básicos (body, enlaces, tipografía) * 3. Header y navegación * 4. Sección landing * 5. Contenido principal * 6. Componentes reutilizables * 7. Footer * 8. Elementos flotantes * 9. Utilidades y animaciones * 10. Media queries * 11. Sección de contacto ***************************************/ /*************************************** * 1. VARIABLES Y CONFIGURACIÓN GLOBAL ***************************************/ :root { /* Colores principales */ --color-primary: #b30000; --color-primary-dark: #d20000; --color-secondary: #ffc107; --color-text: #212529; --color-light: #f8f9fa; --color-white: #fff; --color-gray: #aaaaaa; /* Sombras */ --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1); --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2); --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3); /* Fuentes */ --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; --font-logo: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; /* Tamaños */ --header-height: 80px; --header-height-scrolled: 60px; /* Transiciones */ --transition-fast: 0.3s ease; --transition-normal: 0.5s ease; } /* Protección de imágenes global */ img { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; } /* Protecciones específicas para el logo */ #header .logo img, .preloader-logo { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; } /*************************************** * 2. ESTILOS BÁSICOS ***************************************/ body { font-family: var(--font-primary); color: var(--color-text); background: url('assets/img/background.png') fixed; background-size: cover; background-position: center center; line-height: 1.6; } @media (max-width: 576px) { body { background-position: 10% center; } } body.has-fixed-header { padding-top: var(--header-height); } a { text-decoration: none; color: var(--color-primary); transition: color var(--transition-fast); } a:hover { color: var(--color-secondary); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; } /*************************************** * 3. HEADER Y NAVEGACIÓN ***************************************/ #header { background: var(--color-primary); transition: all var(--transition-normal); z-index: 997; padding: 20px 0; box-shadow: var(--shadow-sm); position: fixed; top: 0; left: 0; right: 0; overflow: visible; } #header.header-scrolled { padding: 10px 0; box-shadow: var(--shadow-md); } /* Logo */ #header .logo { font-size: 28px; margin: 0; padding: 0; line-height: 1; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-logo); position: relative; z-index: 1000; transition: all var(--transition-normal); } #header .logo a { display: block; position: relative; height: 60px; color: var(--color-white); overflow: visible; transition: all var(--transition-normal); } #header.header-scrolled .logo a { height: 45px; } #header .logo a:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background-color: var(--color-secondary); transition: width var(--transition-fast); } #header .logo a:hover:after { width: 100%; } #header .logo img { max-height: 180px; max-width: 180px; position: absolute; top: 0px; left: 0; transition: all var(--transition-normal); filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3)); animation: burgerBounce 2s infinite; z-index: 1001; } #header.header-scrolled .logo img { max-height: 120px; max-width: 120px; top: -10px; } #header .logo a:hover img { filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.4)); } /* Barra de navegación */ .navbar { padding: 0; margin-left: 100px; transition: all var(--transition-normal); } #header.header-scrolled .navbar { margin-left: 80px; } .navbar-nav .nav-item { margin-right: 5px; transition: all var(--transition-fast); } .navbar-nav .nav-link { color: var(--color-white) !important; font-weight: 600; font-size: 14px; padding: 8px 15px; transition: all var(--transition-fast); } #header.header-scrolled .navbar-nav .nav-link { padding: 6px 12px; font-size: 13px; } .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--color-secondary) !important; } /* Botón de menú móvil */ .navbar-toggler { border-color: rgba(255, 255, 255, 0.5); transition: all var(--transition-fast); } #header.header-scrolled .navbar-toggler { padding: 0.2rem 0.5rem; } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } /* Formulario de búsqueda */ .search-form { margin-left: 10px; transition: all var(--transition-fast); } #header.header-scrolled .search-form { margin-left: 5px; } .search-form input { border-radius: 20px; padding-left: 15px; border: none; min-width: 200px; transition: all var(--transition-fast); } #header.header-scrolled .search-form input { min-width: 180px; padding: 4px 12px; } /*************************************** * 4. SECCIÓN LANDING ***************************************/ .landing-page { width: 100%; min-height: 60vh; background: url('assets/img/banner.png') no-repeat center center; background-size: cover; position: relative; padding: 40px 0; display: flex; align-items: center; overflow-x: hidden; margin-top: 0; } .landing-page .container { position: relative; z-index: 1; } .content-wrapper { position: relative; padding: 30px; width: 100%; } .content-wrapper.text-end .fast-food { margin-left: auto; margin-right: 0; } .productos-circle { position: relative; width: 350px; height: 350px; border-radius: 50%; overflow: hidden; margin: 20px auto; border: 12px solid var(--color-white); box-shadow: var(--shadow-lg); } .productos-circle img { width: 120%; height: 120%; object-fit: cover; object-position: center; display: block; margin: -10% 0 0 -10%; } .content-wrapper .d-flex.justify-content-end { width: 100%; margin-right: 20px; position: relative; z-index: 1; } .content-wrapper .text-md-end { text-align: right; margin-right: 0; width: 100%; } .content-wrapper .btn-order { display: inline-block; margin-left: auto; } .pattern-dots { position: absolute; width: 80px; height: 80px; background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px); background-size: 10px 10px; opacity: 0.3; } .pattern-dots-1 { top: 0; left: 0; } .pattern-dots-2 { bottom: 0; right: 0; z-index: 0; } .fast-food { font-size: 50px; font-weight: 700; color: var(--color-white); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); background: var(--color-primary); display: inline-block; padding: 10px 10px; margin-bottom: 0; border-radius: 10px; } .special-menu { font-size: 48px; color: var(--color-primary); margin-top: 10px; margin-bottom: 20px; font-weight: 700; } .burger-image { border-radius: 50%; max-width: 90%; box-shadow: var(--shadow-md); border: 10px solid var(--color-white); } .discount-badge { position: absolute; bottom: 20px; right: 20px; background: var(--color-primary); color: var(--color-white); border-radius: 50%; width: 100px; height: 100px; display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; box-shadow: var(--shadow-md); animation: pulse 2s infinite; } .discount-badge span { font-size: 28px; font-weight: 800; line-height: 1; } /*************************************** * 5. CONTENIDO PRINCIPAL ***************************************/ main section:not(.landing-page) { padding-top: 50px; padding-bottom: 30px; scroll-margin-top: 60px; /* Propiedad moderna para scroll-snap */ } /* Sección de título */ .section-title { padding-bottom: 40px; text-align: end; } .section-title h2 { font-size: 14px; font-weight: 500; padding: 0; line-height: 1px; margin: 0 0 5px 0; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gray); font-family: var(--font-logo); } .section-title h2::before { content: ""; width: 120px; height: 1px; display: inline-block; background: rgba(255, 255, 255, 0.2); margin: 4px 10px; } .section-title p { margin: 0; font-size: 36px; font-weight: 700; font-family: var(--font-heading); color: var(--color-primary); } /* Filtros del menú */ #menu-flters { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0 auto; padding: 0; gap: 10px; } #menu-flters li { background: var(--color-primary); color: var(--color-white); border-radius: 30px; padding: 8px 20px; font-weight: 600; margin-bottom: 10px; cursor: pointer; transition: all var(--transition-fast); box-shadow: var(--shadow-sm); text-align: center; } #menu-flters li:hover, #menu-flters li.filter-active { background: var(--color-primary-dark); color: var(--color-secondary); transform: translateY(-3px); box-shadow: var(--shadow-md); } #menu-flters li:last-child { background-color: var(--color-secondary); color: var(--color-primary); } #menu-flters li:last-child:hover { background-color: #e6ac00; color: var(--color-primary-dark); } /*************************************** * 6. COMPONENTES REUTILIZABLES ***************************************/ .btn-order { background: var(--color-primary); color: var(--color-white); border-radius: 30px; padding: 12px 30px; font-weight: 600; transition: all var(--transition-fast); } .btn-order:hover { background: var(--color-primary-dark); color: var(--color-primary); transform: translateY(-3px); box-shadow: var(--shadow-md); } /* Animación para destacar los precios especiales */ @keyframes destacarPrecio { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } /* Botón de pedido para cards */ .btn-order2 { background: var(--color-secondary); color: var(--color-primary-dark); border-radius: 30px; padding: 10px 25px; font-weight: 600; transition: all var(--transition-fast); border: 2px solid var(--color-primary); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; } .btn-order2:hover { background: var(--color-primary); color: var(--color-secondary); transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; } /* Botón de pedido principal en el banner */ .landing-page .btn-order { padding: 15px 40px; font-size: 22px; font-weight: 700; box-shadow: var(--shadow-md); animation: pulse 2s infinite; position: relative; overflow: hidden; z-index: 1; text-transform: uppercase; } .landing-page .btn-order:hover { transform: translateY(-5px) scale(1.05); box-shadow: var(--shadow-lg); } .landing-page .btn-order i { font-size: 28px; margin-right: 10px; vertical-align: middle; } .landing-page .btn-order::after { content: ''; position: absolute; background: rgba(255, 255, 255, 0.2); height: 100%; width: 100px; top: 0; left: -150px; transform: skewX(-20deg); transition: all 0.8s ease; z-index: -1; } .landing-page .btn-order:hover::after { left: 120%; } .social-icons a { color: var(--color-primary); font-size: 24px; margin-right: 15px; transition: all var(--transition-fast); } .social-icons a:hover { color: var(--color-secondary); transform: translateY(-3px); } /*************************************** * 7. FOOTER ***************************************/ #footer { background: var(--color-primary); color: var(--color-white); font-size: 14px; text-align: center; padding: 30px 0; } #footer .copyright { padding-bottom: 10px; } #footer .credits { padding-top: 10px; text-align: center; font-size: 13px; color: var(--color-white); } #footer .credits a { color: var(--color-secondary); } /*************************************** * 8. ELEMENTOS FLOTANTES ***************************************/ /* Contenedor de botones flotantes */ .float-buttons-container { position: fixed; bottom: 30px; right: 30px; display: flex; gap: 15px; z-index: 1000; } #alerta-agregado { pointer-events: none; } .add-toast { pointer-events: auto; display: flex; align-items: flex-start; gap: 12px; padding: 14px 14px 12px; border-radius: 18px; background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(15, 23, 42, 0.12); box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #0f172a; position: relative; overflow: hidden; animation: addToastIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both; } .add-toast.is-leaving { animation: addToastOut 220ms ease both; } .add-toast-icon { width: 38px; height: 38px; border-radius: 999px; background: linear-gradient(135deg, #16a34a, #22c55e); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35); } .add-toast-body { flex: 1 1 auto; min-width: 0; } .add-toast-title { font-weight: 900; font-size: 0.92rem; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.1; } .add-toast-message { margin-top: 2px; font-size: 0.92rem; color: rgba(15, 23, 42, 0.78); line-height: 1.25; display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .add-toast-close { border: 0; background: rgba(15, 23, 42, 0.06); color: rgba(15, 23, 42, 0.55); width: 34px; height: 34px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; padding: 0; flex: 0 0 auto; transition: transform 120ms ease, background 160ms ease, color 160ms ease; } .add-toast-close:hover { transform: translateY(-1px); background: rgba(15, 23, 42, 0.10); color: rgba(15, 23, 42, 0.75); } .add-toast-progress { position: absolute; left: 10px; right: 10px; bottom: 8px; height: 3px; border-radius: 999px; background: rgba(15, 23, 42, 0.10); overflow: hidden; } .add-toast-progress::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34, 197, 94, 0.95), rgba(16, 185, 129, 0.90)); transform-origin: left; transform: scaleX(1); animation: addToastProgress 2400ms linear both; border-radius: 999px; } @keyframes addToastProgress { to { transform: scaleX(0); } } @keyframes addToastIn { from { opacity: 0; transform: translateY(-8px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } } @keyframes addToastOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-8px) scale(0.98); } } @media (prefers-reduced-motion: reduce) { .add-toast, .add-toast.is-leaving, .add-toast-progress::after { animation: none !important; } } /* Botón de WhatsApp */ .whatsapp-float { width: 55px; height: 55px; background-color: #25d366; color: var(--color-white); border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); } .whatsapp-float img { width: 55px; height: 55px; object-fit: contain; display: block; } .whatsapp-float:hover { transform: scale(1.1); box-shadow: 3px 3px 5px #888; background-color: #22c15e; } /* Botón de volver arriba */ .back-to-top { width: 55px; height: 55px; visibility: hidden; opacity: 0; border-radius: 50px; transition: all 0.4s; background: var(--color-primary); color: var(--color-white); display: flex; align-items: center; justify-content: center; } .back-to-top i { font-size: 28px; line-height: 0; } .back-to-top:hover { background: var(--color-primary-dark); color: var(--color-white); transform: scale(1.1); box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); } .back-to-top.active { visibility: visible; opacity: 1; } /* Preloader */ #preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; overflow: hidden; background: #ffc107; display: flex; align-items: center; justify-content: center; } .preloader-content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .preloader-logo { width: 150px; height: auto; margin-bottom: 20px; animation: logoAnimation 2s infinite alternate; } .preloader-text { position: relative; color: #fff; font-family: var(--font-heading); font-size: 24px; text-align: center; animation: fadeInOut 2s ease-in-out infinite; } .preloader-text span { display: inline-block; color: #FF4500; font-weight: bold; position: relative; } .preloader-text span:after { content: ""; position: absolute; width: 100%; height: 2px; bottom: -5px; left: 0; background: linear-gradient(90deg, #FF4500, #FF6B00); animation: expand 2s ease-in-out infinite; } @keyframes logoAnimation { 0% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(5deg); } 100% { transform: scale(1) rotate(0deg); } } @keyframes fadeInOut { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } } @keyframes expand { 0%, 100% { width: 0; left: 50%; } 50% { width: 100%; left: 0; } } /* Media queries para el preloader en dispositivos móviles */ @media (max-width: 768px) { .preloader-logo { width: 120px; } .preloader-text { font-size: 30px; } } @media (max-width: 480px) { .preloader-logo { width: 100px; } .preloader-text { font-size: 25px; } } /*************************************** * 9. UTILIDADES Y ANIMACIONES ***************************************/ @keyframes burgerBounce { 0% { transform: translateY(0); } 50% { transform: translateY(-10px) rotate(3deg); } 100% { transform: translateY(0); } } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } /*************************************** * 10. MEDIA QUERIES ***************************************/ @media (max-width: 991px) { body.has-fixed-header { padding-top: 60px; } .landing-page { min-height: auto; padding: 80px 0 60px 0; margin-top: 0; } .fast-food { font-size: 40px; } .special-menu { font-size: 32px; } .burger-image { margin-top: 40px; max-width: 80%; } } @media (max-width: 768px) { .landing-page { text-align: center; } .social-icons { justify-content: center; display: flex; } .content-wrapper .text-md-end { text-align: center; } .content-wrapper .d-flex.justify-content-end { justify-content: center !important; margin-right: 0; } .float-buttons-container { bottom: 20px; right: 20px; } #menu-flters { margin: 0 auto; } } /*************************************** * 11. SECCIÓN DE CONTACTO ***************************************/ section.contact { background: url('assets/img/back.jpg') no-repeat center center; background-size: cover; background-attachment: fixed; position: relative; padding: 60px 0; } section.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); z-index: 0; } section.contact .container { position: relative; z-index: 1; } section.contact .section-title h2, section.contact .section-title p { color: var(--color-white); } .info { padding: 30px; background: rgba(255, 255, 255, 0.9); border-radius: 15px; box-shadow: var(--shadow-md); margin-bottom: 30px; backdrop-filter: blur(5px); } .info .address, .info .open-hours, .info .email, .info .phone { position: relative; padding: 20px; margin-bottom: 20px; background: #f8f9fa; border-radius: 10px; transition: all var(--transition-fast); } .info .address:hover, .info .open-hours:hover, .info .email:hover, .info .phone:hover { background: var(--color-primary); color: white; transform: translateY(-5px); } .info i { font-size: 32px; color: var(--color-primary); float: left; width: 50px; height: 50px; background: rgba(255, 193, 7, 0.2); display: flex; justify-content: center; align-items: center; border-radius: 50px; transition: all var(--transition-fast); } .info .address:hover i, .info .open-hours:hover i, .info .email:hover i, .info .phone:hover i { background: rgba(255, 255, 255, 0.2); color: var(--color-white); } .info h4 { padding-left: 60px; font-size: 20px; font-weight: 700; margin-bottom: 5px; color: var(--color-text); font-family: var(--font-heading); } .info p { padding-left: 60px; margin-bottom: 0; font-size: 14px; color: var(--color-gray); word-break: break-word; overflow-wrap: anywhere; } .info .address:hover h4, .info .open-hours:hover h4, .info .email:hover h4, .info .phone:hover h4, .info .address:hover p, .info .open-hours:hover p, .info .email:hover p, .info .phone:hover p { color: var(--color-white); } /* Estilo tipo hexágono para horarios de apertura */ .open-hours-hexagon { background: var(--color-secondary); color: var(--color-text); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); padding: 40px 30px; text-align: center; margin: 30px auto; max-width: 350px; } .open-hours-hexagon h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; color: var(--color-text); text-transform: uppercase; } .open-hours-hexagon .day { margin-bottom: 10px; font-weight: 600; } .contact-heading { position: relative; margin-bottom: 30px; padding-bottom: 15px; text-align: center; } .contact-heading:after { content: ''; position: absolute; width: 80px; height: 3px; background: var(--color-primary); bottom: 0; left: 50%; transform: translateX(-50%); } .menu { padding: 90px 0 60px 0; position: relative; background: url('assets/img/background1.png') no-repeat center center; background-size: cover; background-attachment: fixed; } .menu::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); z-index: 0; } .menu .container { position: relative; z-index: 1; } .menu .section-title { margin-bottom: 50px; } .menu .section-title h2, .menu .section-title p { color: var(--color-white); } .menu .menu-container { padding: 0; position: relative; overflow: visible; max-width: none; margin: 0; --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; } @media (max-width: 991.98px) { .menu .menu-container { max-width: 720px; margin: 0 auto; } } @media (min-width: 992px) { .menu .container { padding-left: clamp(28px, 4vw, 70px); padding-right: clamp(28px, 4vw, 70px); } .menu .menu-container { --bs-gutter-x: 2.5rem; --bs-gutter-y: 2.25rem; } .menu .menu-card { max-width: clamp(320px, 92%, 520px); margin-left: auto; margin-right: auto; padding: 16px; gap: 16px; } } .menu .menu-content { padding: 10px 0; display: flex; justify-content: space-between; align-items: center; position: relative; margin-bottom: 15px; border-bottom: 2px dashed rgba(0, 0, 0, 0.1); } .menu .menu-content a { font-weight: 700; font-size: 20px; color: var(--color-primary); transition: 0.3s; font-family: var(--font-heading); text-decoration: none; } .menu .menu-content a:hover { color: var(--color-secondary); } .menu .menu-content span { background: #2e8b57; color: var(--color-white); font-size: 18px; font-weight: 700; padding: 8px 15px; border-radius: 50px; position: relative; z-index: 2; animation: destacarPrecio 3s infinite; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); display: inline-block; min-width: 80px; text-align: center; } .menu .menu-item { padding: 0; position: relative; margin-bottom: 0; transition: none; } .menu-card { background: rgba(255, 255, 255, 0.96); border-radius: 28px; border: 1px solid rgba(15, 23, 42, 0.08); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10); padding: 18px; position: relative; height: auto; transition: transform 160ms ease, box-shadow 220ms ease, background 220ms ease; overflow: hidden; display: flex; flex-direction: row; align-items: center; gap: 18px; margin-top: 0; } .menu-card[role="button"] { cursor: pointer; } .menu-card[role="button"]:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.35); outline-offset: 4px; } .menu-card:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12); } .menu-card::before { display: none; } .menu-card:hover::before { display: none; } .menu .menu-img-container { width: 96px; height: 96px; position: relative; top: auto; left: auto; transform: none; z-index: 1; overflow: hidden; border-radius: 22px; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16); border: 0; background-color: #f8fafc; flex: 0 0 auto; } .menu-card:hover .menu-img-container { box-shadow: 0 12px 24px rgba(15, 23, 42, 0.20); } .menu .menu-img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease; display: block; transform: none; } .menu-card:hover .menu-img { transform: scale(1.04); } .menu-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; } .menu-title { font-weight: 950; font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.15; color: #0f172a; } .menu .menu-ingredients { font-style: normal; font-size: 0.86rem; color: rgba(100, 116, 139, 0.92); margin: 0; line-height: 1.45; white-space: normal; overflow: visible; } .menu-price { margin-top: 6px; font-weight: 950; font-size: 1.06rem; color: #0f172a; } .menu-add-btn { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(148, 163, 184, 0.35); background: rgba(241, 245, 249, 0.95); color: rgba(100, 116, 139, 0.85); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; padding: 0; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12); transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease; } .menu-add-btn span { font-size: 24px; line-height: 1; font-weight: 700; } .menu-add-btn:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.98); box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14); } .menu-add-btn:active { transform: translateY(0); box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10); } .menu-add-btn:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.35); outline-offset: 3px; } .menu-card .btn-order2 { align-self: center; margin-top: 20px; padding: 8px 20px; font-size: 14px; transition: all 0.3s ease; } /* Estilo para el botón de pedido a domicilio en la barra de navegación */ #ver-pedido-btn, #ver-pedido-btn-mobile { background: var(--color-secondary) !important; color: var(--color-primary) !important; border: 2px solid var(--color-primary) !important; font-weight: 600; transition: all var(--transition-fast); } #ver-pedido-btn:hover, #ver-pedido-btn-mobile:hover { background: var(--color-primary) !important; color: var(--color-secondary) !important; transform: translateY(-3px); box-shadow: var(--shadow-md); } /* Ajuste para el contador de items en el botón */ #contador-items, #contador-items-mobile { background-color: var(--color-primary) !important; color: var(--color-secondary) !important; font-weight: bold; } /* Animación para destacar los precios */ @keyframes destacarPrecio { 0% { transform: scale(1); box-shadow: 0 3px 8px rgba(46, 139, 87, 0.2); } 50% { transform: scale(1.05); box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3); } 100% { transform: scale(1); box-shadow: 0 3px 8px rgba(46, 139, 87, 0.2); } } /* Ajustes específicos para dispositivos móviles */ @media (max-width: 768px) { .menu .menu-ingredients { font-size: 0.78rem; margin-bottom: 0; } .menu-card { padding: 14px; } .menu-card .btn-order2 { margin-top: 15px; } } /* === FOOTER SAN PIO BURGER MODERNO SIN ENLACES === */ .footer-spb { position: relative; background: linear-gradient(120deg, #b30000 0%, #d20000 100%); color: #fff; overflow: hidden; box-shadow: 0 -8px 32px rgba(0,0,0,0.15); font-family: var(--font-primary); } .footer-wave { position: absolute; top: -30px; left: 0; width: 100%; height: 60px; background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30C120 60 360 0 720 30C1080 60 1320 0 1440 30V60H0V30Z" fill="%23fff" fill-opacity="0.15"/></svg>') repeat-x; background-size: cover; z-index: 2; pointer-events: none; animation: waveMove 8s linear infinite; } @keyframes waveMove { 0% { background-position-x: 0; } 100% { background-position-x: 1000px; } } .footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.10); background: #fff; margin-bottom: 8px; transition: transform 0.3s; } .footer-logo:hover { transform: scale(1.08) rotate(-5deg); } .footer-brand { font-family: var(--font-logo); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; color: #ffc107; margin-bottom: 0.2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.10); } .footer-slogan { font-size: 1rem; color: #fff; opacity: 0.85; font-style: italic; margin-bottom: 0; } .footer-phrase { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80px; padding: 10px 0; } .footer-phrase-text { font-size: 1.15rem; font-weight: 600; color: #ffc107; text-shadow: 0 2px 8px rgba(0,0,0,0.10); letter-spacing: 0.5px; margin-bottom: 2px; animation: fadeInFooter 2s; } .footer-phrase-sub { font-size: 1rem; color: #fff; opacity: 0.85; font-style: italic; animation: fadeInFooter 2.5s; } @keyframes fadeInFooter { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} } .footer-contact { color: #fff; font-size: 1rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; opacity: 0.92; transition: color 0.2s; justify-content: flex-end; } .footer-contact i { color: #ffc107; font-size: 1.2rem; margin-right: 4px; transition: color 0.2s; } .footer-contact:hover { color: #ffc107; } .footer-contact:hover i { color: #fff; } .footer-divider { border: none; border-top: 1.5px solid rgba(255,255,255,0.18); margin: 1.5rem 0; } .footer-copyright { color: #fff; font-size: 1rem; opacity: 0.85; margin-bottom: 2px; letter-spacing: 0.5px; } .footer-credits { color: #ffc107; font-size: 0.95rem; opacity: 0.95; display: flex; align-items: center; justify-content: center; gap: 4px; } @media (max-width: 767px) { .footer-spb .row > div { text-align: center !important; margin-bottom: 18px; } .footer-logo { margin: 0 auto 8px auto; } .footer-divider { margin: 1rem 0; } .footer-contact { justify-content: center; } } .precio-especial { font-weight: bold; margin-top: 15px; font-size: 18px; } .precio-especial span { color: #2e8b57; background: -webkit-linear-gradient(#2e8b57, #006400); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 22px; padding: 5px 10px; position: relative; font-weight: 700; text-shadow: 0px 0px 1px rgba(0, 100, 0, 0.3); animation: brillar 2s infinite alternate; } @keyframes brillar { from { opacity: 0.8; } to { opacity: 1; text-shadow: 0px 0px 5px rgba(46, 139, 87, 0.5); } } /* Estilos para las imágenes del menú */ .menu .menu-img { width: 100%; height: 100%; border-radius: 22px; object-fit: cover; transition: transform 260ms ease; cursor: pointer; border: 0; box-shadow: none; margin-right: 0; } .menu .menu-img:hover { transform: none; border-color: transparent; box-shadow: none; } /* Ajustes para el lightbox */ .glightbox-clean .gslide-media { box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) !important; border-radius: 8px; overflow: hidden; } .carrito-pedido { background-color: #f8f9fa; border-radius: 8px; padding: 15px; margin-top: 20px; } .carrito-pedido h5 { color: #000; margin-bottom: 15px; font-weight: 600; } .lista-pedido { max-height: 200px; overflow-y: auto; } .item-seleccionado { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #eee; margin-bottom: 5px; } .item-seleccionado:last-child { border-bottom: none; } .item-seleccionado .info-item { flex-grow: 1; } .item-seleccionado .info-item h6 { margin: 0; color: #333; } .item-seleccionado .info-item p { margin: 0; color: #666; font-size: 0.9em; } .item-seleccionado .acciones-item { display: flex; align-items: center; gap: 10px; } .item-seleccionado .acciones-item button { background: none; border: none; color: #dc3545; cursor: pointer; padding: 5px; } .item-seleccionado .acciones-item button:hover { color: #c82333; } .item-seleccionado .cantidad { font-weight: bold; color: #000; } /* Estilos para el botón de carrito en la barra de navegación */ #ver-pedido-btn { transition: all 0.3s ease; } #ver-pedido-btn:hover { transform: scale(1.05); background-color: #f8f8f8 !important; } #contador-items, #contador-items-mobile { font-size: 10px; font-weight: bold; padding: 0.25em 0.6em; transform: translate(-50%, -50%); } @keyframes badgePop { 0% { transform: translate(-50%, -50%) scale(0.85); } 60% { transform: translate(-50%, -50%) scale(1.15); } 100% { transform: translate(-50%, -50%) scale(1); } } .badge-pop { animation: badgePop 180ms ease-out; will-change: transform; } /* Estilos para el botón de pedido móvil */ #ver-pedido-btn-mobile { font-size: 0.9rem; padding: 0.5rem 0.8rem; display: flex; align-items: center; justify-content: center; background-color: #b30000; color: white; border: none; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.15); } #ver-pedido-btn-mobile i { font-size: 1.1rem; } #ver-pedido-btn-mobile:hover { background-color: #8c0000; } /* Estilos para el botón Pedir en Local */ .btn-order-local { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); color: white; border: none; padding: 12px 30px; border-radius: 25px; font-weight: 600; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .btn-order-local:hover { background: linear-gradient(135deg, #20c997 0%, #28a745 100%); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4); } .btn-order-local i { margin-right: 8px; font-size: 1.2rem; } /* Estilos para el modal de pedido local */ .modal-local .modal-header { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); color: white; border-bottom: none; } #pedidoModal .modal-dialog { max-width: 980px; } #pedidoModal .modal-content { border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 18px; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22); background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); overflow: hidden; } #pedidoModal .modal-header { border: 0; padding: 18px 22px; background: linear-gradient(135deg, #b30000 0%, #ff3b30 100%); color: #fff; } #pedidoModal .modal-title { font-weight: 800; letter-spacing: 0.2px; } #pedidoModal .btn-close { filter: invert(1); opacity: 0.95; } #pedidoModal .modal-body { padding: 18px 22px 10px; } #pedidoModal .form-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(15, 23, 42, 0.78); margin-bottom: 8px; } #pedidoModal .form-control, #pedidoModal .form-select, #pedidoModal textarea.form-control { border-radius: 12px; border-color: rgba(15, 23, 42, 0.12); background: rgba(255, 255, 255, 0.9); box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02); padding: 0.7rem 0.85rem; } #pedidoModal .select-arrow-wrap, #pedidoLocalModal .select-arrow-wrap { position: relative; } #pedidoModal .select-arrow-wrap > .form-select, #pedidoLocalModal .select-arrow-wrap > .form-select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: none !important; padding-right: 2.35rem; } #pedidoModal .select-arrow, #pedidoLocalModal .select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%) rotate(0deg); transform-origin: center; pointer-events: none; transition: transform 160ms ease, opacity 160ms ease; opacity: 0.75; color: rgba(15, 23, 42, 0.75); font-size: 1rem; line-height: 1; } #pedidoModal .select-arrow-wrap.is-open .select-arrow, #pedidoLocalModal .select-arrow-wrap.is-open .select-arrow { transform: translateY(-50%) rotate(180deg); opacity: 0.95; } #pedidoModal .form-control:focus, #pedidoModal .form-select:focus, #pedidoModal textarea.form-control:focus { border-color: rgba(179, 0, 0, 0.55); box-shadow: 0 0 0 0.25rem rgba(179, 0, 0, 0.16); } #pedidoModal .carrito-pedido { background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%); border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 14px; padding: 16px; margin-top: 14px; } #pedidoModal .lista-pedido { max-height: 240px; overflow-y: auto; padding-right: 6px; } #pedidoModal .lista-pedido::-webkit-scrollbar { width: 8px; } #pedidoModal .lista-pedido::-webkit-scrollbar-thumb { background: rgba(15, 23, 42, 0.18); border-radius: 999px; } #pedidoModal .item-seleccionado { border-bottom: 1px solid rgba(15, 23, 42, 0.08); padding: 10px 8px; border-radius: 10px; } #pedidoModal .item-seleccionado:hover { background: rgba(255, 255, 255, 0.8); } #pedidoModal .total-pedido { border: 1px solid rgba(15, 23, 42, 0.08); background: rgba(255, 255, 255, 0.75); border-radius: 14px; padding: 14px 16px; } #pedidoModal .total-pedido h4 { margin-bottom: 0; font-weight: 900; letter-spacing: 0.2px; } #pedidoModal .card { border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 14px; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); } #pedidoModal .card-body { padding: 12px; } #pedidoModal .btn { border-radius: 12px; } #pedidoModal .btn-success { border: 0; background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); box-shadow: 0 12px 26px rgba(34, 197, 94, 0.25); } #pedidoModal .btn-success:hover { filter: brightness(0.98); box-shadow: 0 14px 30px rgba(34, 197, 94, 0.3); } #pedidoModal .btn-outline-primary { border-color: rgba(179, 0, 0, 0.35); color: #b30000; } #pedidoModal .btn-outline-primary:hover { background: rgba(179, 0, 0, 0.08); border-color: rgba(179, 0, 0, 0.5); color: #b30000; } #pedidoModal .modal-footer { border-top: 1px solid rgba(15, 23, 42, 0.08); padding: 14px 18px; background: rgba(255, 255, 255, 0.92); } @media (max-width: 575.98px) { #pedidoModal .modal-dialog { margin: 0.75rem; } #pedidoModal .modal-content { border-radius: 16px; } #pedidoModal .modal-body { padding: 16px 16px 10px; } #pedidoModal .modal-footer { display: flex; flex-wrap: nowrap; gap: 10px; justify-content: space-between; } #pedidoModal .modal-footer .btn { min-width: 0; white-space: normal; line-height: 1.15; padding: 0.7rem 0.75rem; font-size: 0.92rem; } #pedidoModal .modal-footer .btn.btn-secondary { flex: 0 0 auto; } #pedidoModal .modal-footer .btn.btn-success { flex: 1 1 auto; } } .modal-local .modal-title { font-weight: 700; letter-spacing: 1px; } .modal-local .btn-close { filter: invert(1); } .mesa-selector { display: grid; grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); gap: 10px; margin-top: 10px; } #pedidoLocalModal .mesa-selector.is-invalid { border: 2px solid rgba(220, 53, 69, 0.85); border-radius: 14px; padding: 10px; background: rgba(220, 53, 69, 0.04); } .mesa-option { padding: 15px 10px; border: 2px solid #e9ecef; border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: white; font-weight: 600; font-size: 1.1rem; } .mesa-option:hover { border-color: #28a745; background: #f8fff9; transform: scale(1.05); } .mesa-option.selected { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); color: white; border-color: #28a745; box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); } .mesa-option.selected:hover { background: linear-gradient(135deg, #20c997 0%, #28a745 100%); } /* Estilos específicos para dispositivos móviles */ @media (max-width: 991.98px) { .navbar { position: relative; } .navbar-collapse { text-align: right; } .navbar-nav { width: 100%; } .navbar-nav .nav-link { padding-right: 0; text-align: right; } .navbar .d-flex { margin-top: 15px; justify-content: flex-end !important; width: 100%; } .navbar-toggler { border: none; padding-right: 0; } #header .logo { margin-right: auto; } /* Ajustar altura del header en móvil */ #header { height: auto; padding: 15px 0; } /* Cuando el menú está abierto */ #header.menu-open { padding-top: 10px; } #header.menu-open .logo { position: absolute; top: 10px; left: 15px; z-index: 1030; transform: scale(0.85); transform-origin: top left; transition: all 0.3s ease; } #header.menu-open .navbar-collapse { margin-top: 40px; padding-top: 10px; } /* Animación suave para los cambios */ #header .logo, #header .navbar-collapse { transition: all 0.3s ease; } /* Estilos para los filtros del menú en móvil */ #menu-flters { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; padding: 0 10px; } #menu-flters li { font-size: 14px; padding: 6px 12px; margin: 0; border-radius: 20px; min-width: auto; white-space: nowrap; } /* Sobrescribir padding para el contenedor en tabletas */ .filtros-container { padding: 0px 30px; } /* Espaciado correcto entre logo y botones */ #header .container-fluid { align-items: center; } } /* Ajuste específico para pantallas muy pequeñas */ @media (max-width: 380px) { #ver-pedido-btn-mobile { padding: 0.4rem 0.6rem; font-size: 0.8rem; } #ver-pedido-btn-mobile i { font-size: 1rem; } } @media (max-width: 767px) { .filtros-container { padding: 0px 20px; } } /* Media query específico para dispositivos muy pequeños */ @media (max-width: 480px) { #menu-flters { gap: 4px; padding: 0 5px; } #menu-flters li { font-size: 12px; padding: 5px 10px; } .filtros-container { padding: 0px 10px !important; } } /* Estilos para el contenedor de filtros */ .filtros-container { padding: 0px 120px; } /* Estilos para el contador de items en el botón */ #contador-items, #contador-items-mobile { background-color: var(--color-primary) !important; color: var(--color-secondary) !important; font-weight: bold; } /* Estilos para destacar la cantidad en la lista de pedido */ .cantidad-destacada { font-size: 1.2em; /* Make font size larger */ font-weight: bold; /* Make text bold */ color: var(--color-primary-dark); /* Use a prominent color */ margin-right: 10px; /* Add some spacing */ } .subtotal { font-weight: bold; color: #000; /* Use a prominent color, like black */ } /* === FOOTER MODERNO CON ENLACE DESTACADO === */ .footer-spb { position: relative; background: linear-gradient(120deg, #b30000 0%, #d20000 100%); color: #fff; overflow: hidden; box-shadow: 0 -8px 32px rgba(0,0,0,0.15); font-family: var(--font-primary); } .footer-wave { position: absolute; top: -30px; left: 0; width: 100%; height: 60px; background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30C120 60 360 0 720 30C1080 60 1320 0 1440 30V60H0V30Z" fill="%23fff" fill-opacity="0.15"/></svg>') repeat-x; background-size: cover; z-index: 2; pointer-events: none; animation: waveMove 8s linear infinite; } @keyframes waveMove { 0% { background-position-x: 0; } 100% { background-position-x: 1000px; } } .footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 12px; box-shadow: none; background: transparent; margin-bottom: 8px; transition: transform 0.3s; } .footer-logo:hover { transform: scale(1.08) rotate(-2deg); } .footer-brand { font-family: var(--font-logo); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; color: #ffc107; margin-bottom: 0.2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.10); } .footer-slogan { font-size: 1rem; color: #fff; opacity: 0.85; font-style: italic; margin-bottom: 0; } .footer-phrase { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80px; padding: 10px 0; } .footer-phrase-text { font-size: 1.15rem; font-weight: 600; color: #ffc107; text-shadow: 0 2px 8px rgba(0,0,0,0.10); letter-spacing: 0.5px; margin-bottom: 2px; animation: fadeInFooter 2s; } .footer-phrase-sub { font-size: 1rem; color: #fff; opacity: 0.85; font-style: italic; animation: fadeInFooter 2.5s; } @keyframes fadeInFooter { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} } .footer-contact { color: #fff; font-size: 1rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; opacity: 0.92; transition: color 0.2s; justify-content: flex-end; } .footer-contact i { color: #ffc107; font-size: 1.2rem; margin-right: 4px; transition: color 0.2s; } .footer-contact:hover { color: #ffc107; } .footer-contact:hover i { color: #fff; } .footer-divider { border: none; border-top: 1.5px solid rgba(255,255,255,0.18); margin: 1.5rem 0; } .footer-copyright { color: #fff; font-size: 1rem; opacity: 0.85; margin-bottom: 2px; letter-spacing: 0.5px; } .footer-credits { color: #ffc107; font-size: 1.05rem; opacity: 0.95; display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 2px; } .footer-link-sb { color: #fff; font-weight: 700; background: linear-gradient(90deg, #ffc107 0%, #ff4d4d 100%); padding: 3px 14px 3px 10px; border-radius: 20px; margin-left: 6px; text-decoration: none; box-shadow: 0 2px 8px rgba(255,193,7,0.10); display: inline-flex; align-items: center; gap: 5px; transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; } .footer-link-sb i { color: #fff700; font-size: 1.1em; margin-right: 2px; transition: color 0.2s; } .footer-link-sb:hover { background: linear-gradient(90deg, #ff4d4d 0%, #ffc107 100%); color: #b30000; transform: scale(1.08) rotate(-2deg); box-shadow: 0 4px 16px rgba(255,77,77,0.18); text-decoration: none; } .footer-link-sb:hover i { color: #b30000; } @media (max-width: 767px) { .footer-spb .row > div { text-align: center !important; margin-bottom: 18px; } .footer-logo { margin: 0 auto 8px auto; } .footer-divider { margin: 1rem 0; } .footer-contact { justify-content: center; } } /* ALERTA FLOTANTE RESPONSIVE */ #alerta-agregado { display: none; position: fixed; top: 90px; right: 30px; z-index: 2000; min-width: 260px; max-width: 350px; transition: left 0.3s, right 0.3s, transform 0.3s; } @media (max-width: 768px) { #alerta-agregado { left: 50%; right: auto; transform: translateX(-50%); top: 80px; } } /* Imagen destacada sobre el mapa - MEJORA SORPRENDENTE */ .map-highlight-container { width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.15); margin-bottom: 1rem; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border: 3px solid rgba(255,255,255,0.8); transition: box-shadow 0.3s, transform 0.3s; } .map-highlight-container:hover { box-shadow: 0 12px 40px rgba(179,0,0,0.18), 0 2px 12px rgba(255,193,7,0.10); transform: scale(1.015); } .map-highlight-img { width: 100%; aspect-ratio: 16/9; height: auto; object-fit: cover; border-radius: 17px; filter: brightness(0.97) contrast(1.08) saturate(1.08); box-shadow: inset 0 0 20px rgba(0,0,0,0.08); display: block; transition: all 0.5s cubic-bezier(.4,2,.6,1); transform: scale(1.00); } .map-highlight-container:hover .map-highlight-img { transform: scale(1.06) rotate(-1deg); filter: brightness(1.05) contrast(1.15) saturate(1.18); } @media (max-width: 991px) { .map-highlight-container { max-width: 100%; } .map-highlight-img { aspect-ratio: 16/10; } } @media (max-width: 575px) { .map-highlight-img { aspect-ratio: 16/12; } } .ubicacion-badge { display: flex; align-items: center; justify-content: center; gap: 14px; background: linear-gradient(90deg, #fff 60%, #ffe5e5 100%); border-radius: 2em; box-shadow: 0 4px 24px rgba(179,0,0,0.10), 0 1.5px 8px rgba(179,0,0,0.08); padding: 10px 38px 10px 22px; font-weight: 700; font-size: 1.25rem; color: #b30000; position: relative; margin: 0 auto 12px auto; border: 2.5px solid #fff3f3; transition: box-shadow 0.2s, background 0.2s; max-width: 420px; min-width: 260px; width: fit-content; white-space: nowrap; overflow: hidden; letter-spacing: 0.5px; /* Efecto de brillo animado */ box-shadow: 0 0 0 4px rgba(255,193,7,0.08), 0 4px 24px rgba(179,0,0,0.10); z-index: 1; } .ubicacion-badge::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 2em; pointer-events: none; z-index: 2; border: 2.5px solid transparent; background: linear-gradient(120deg, #ffc107 0%, #b30000 100%) border-box; mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); mask-composite: exclude; -webkit-mask-composite: xor; opacity: 0.7; animation: ubicacionBrillo 2.5s linear infinite; } @keyframes ubicacionBrillo { 0% { opacity: 0.7; box-shadow: 0 0 0 0 #ffc107; } 50% { opacity: 1; box-shadow: 0 0 16px 4px #ffc10788; } 100% { opacity: 0.7; box-shadow: 0 0 0 0 #ffc107; } } .ubicacion-badge:hover { box-shadow: 0 8px 32px rgba(179,0,0,0.18), 0 2px 12px rgba(255,193,7,0.10), 0 0 16px 2px #ffc10755; background: linear-gradient(90deg, #fff 40%, #ffd6d6 100%); transform: scale(1.03) rotate(-1deg); } @media (max-width: 600px) { .ubicacion-badge { font-size: 1em; padding: 8px 10vw 8px 6vw; max-width: 98vw; min-width: 0; } } .ubicacion-icon { background: linear-gradient(135deg, #b30000 0%, #ffc107 100%); color: #fff; border-radius: 50%; width: 2.5em; height: 2.5em; display: flex; align-items: center; justify-content: center; font-size: 1.6em; box-shadow: 0 2px 8px rgba(179,0,0,0.12); animation: pulseUbicacion 2.2s infinite; } @keyframes pulseUbicacion { 0%, 100% { transform: scale(1);} 50% { transform: scale(1.12);} } .ubicacion-text { display: flex; flex-direction: column; font-family: var(--font-primary); font-size: 1.1em; color: #b30000; line-height: 1.1; letter-spacing: 0.5px; } .ubicacion-text small { color: #444; font-size: 0.95em; font-weight: 500; letter-spacing: 0.2px; margin-top: 2px; } @media (max-width: 600px) { .ubicacion-badge { font-size: 1em; padding: 10px 12px 10px 10px; gap: 10px; } .ubicacion-icon { width: 2em; height: 2em; font-size: 1.2em; } } @keyframes badgeFadeIn { from { opacity: 0; transform: translateY(-18px);} to { opacity: 1; transform: translateY(0);} } .info .address h4, .info .address p, .info .email h4, .info .email p, .info .phone h4, .info .phone p { color: #111 !important; font-weight: 600; letter-spacing: 0.2px; } /* Galería del local */ .gallery-wrapper { max-width: 980px; margin: 0 auto 0.75rem auto; } .gallery-video-container { position: relative; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 6px 22px rgba(0,0,0,0.10); margin: 0 auto 1rem auto; max-width: 980px; aspect-ratio: 16 / 9; } .gallery-video { width: 100%; height: 100%; object-fit: cover; display: block; } .video-mute-btn { position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(0,0,0,0.55); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; z-index: 3; } .video-mute-btn:hover { background: rgba(0,0,0,0.7); transform: translateY(-1px); } .video-mute-btn:active { transform: scale(0.96); } .video-mute-btn.pulse { animation: btnPulse .28s ease; } @keyframes btnPulse { from { box-shadow: 0 0 0 0 rgba(255,255,255,.35);} to { box-shadow: 0 0 0 12px rgba(255,255,255,0);} } @media (max-width: 575px) { .gallery-video-container { aspect-ratio: 16 / 10; } } .gallery-title { font-weight: 800; letter-spacing: 0.5px; color: #b30000; } .gallery-item { position: relative; border-radius: 14px; overflow: hidden; background: #f8f9fa; box-shadow: 0 6px 22px rgba(0,0,0,0.10); aspect-ratio: 1 / 1; } .gallery-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.5s cubic-bezier(.4,2,.6,1), filter 0.3s ease; display: block; } .gallery-item:hover .gallery-img { transform: scale(1.08); filter: contrast(1.05) saturate(1.05); } .gallery-zoom { position: absolute; right: 10px; bottom: 10px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.55); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; transform: translateY(6px); transition: opacity .22s ease, transform .22s ease; pointer-events: none; } .gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); } @media (max-width: 991.98px) { body.menu-overlay-open { overflow: auto; touch-action: auto; } #header .navbar { position: static; } #header .navbar > .container-fluid { position: static; padding-left: 0; padding-right: 0; } #header .navbar-toggler { width: 48px; height: 44px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.35); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12); display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 1101; } #header.menu-open .navbar-toggler { position: fixed; top: 16px; right: 16px; left: auto; z-index: 1103; } #header.menu-open #ver-pedido-btn-mobile { opacity: 0; pointer-events: none; } #header .navbar-toggler:focus { outline: 0; box-shadow: 0 0 0 0.25rem rgba(179, 0, 0, 0.18), 0 10px 28px rgba(15, 23, 42, 0.12); } #header .navbar-toggler .navbar-toggler-icon { background-image: none; width: 20px; height: 2px; background: rgba(15, 23, 42, 0.92); border-radius: 999px; position: relative; transition: background 180ms ease; } #header .navbar-toggler .navbar-toggler-icon::before, #header .navbar-toggler .navbar-toggler-icon::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: rgba(15, 23, 42, 0.92); border-radius: 999px; transition: transform 260ms cubic-bezier(.2, .9, .2, 1), top 260ms cubic-bezier(.2, .9, .2, 1); } #header .navbar-toggler .navbar-toggler-icon::before { top: -7px; } #header .navbar-toggler .navbar-toggler-icon::after { top: 7px; } #header.menu-open .navbar-toggler .navbar-toggler-icon { background: transparent; } #header.menu-open .navbar-toggler .navbar-toggler-icon::before { top: 0; transform: rotate(45deg); } #header.menu-open .navbar-toggler .navbar-toggler-icon::after { top: 0; transform: rotate(-45deg); } #navbarNav.navbar-collapse { position: fixed; top: calc(env(safe-area-inset-top, 0px) + 76px); right: 14px; left: auto; bottom: auto; z-index: 1100; width: min(92vw, 360px); max-height: calc(100vh - 96px); padding: 12px 14px 14px; background: rgba(255, 255, 255, 0.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.45); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; pointer-events: none; border-radius: 22px; -webkit-clip-path: circle(22px at calc(100% - 22px) 22px); clip-path: circle(22px at calc(100% - 22px) 22px); transition: opacity 220ms ease, -webkit-clip-path 560ms cubic-bezier(.2, .9, .2, 1), clip-path 560ms cubic-bezier(.2, .9, .2, 1); display: flex !important; flex-direction: column; gap: 12px; } #navbarNav.navbar-collapse::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1200px 600px at 120% -10%, rgba(179, 0, 0, 0.22) 0%, rgba(179, 0, 0, 0) 55%), radial-gradient(900px 540px at -10% 20%, rgba(255, 193, 7, 0.22) 0%, rgba(255, 193, 7, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.86) 100%); opacity: 1; pointer-events: none; } #navbarNav.navbar-collapse > * { position: relative; z-index: 1; } #navbarNav .mobile-menu-brand { display: flex; align-items: center; gap: 12px; max-width: 520px; margin: 0 auto; padding: 10px 12px; border-radius: 18px; background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(15, 23, 42, 0.10); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10); } #navbarNav .mobile-menu-brand img { width: 46px; height: 46px; border-radius: 14px; object-fit: contain; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(15, 23, 42, 0.08); padding: 6px; filter: drop-shadow(0px 10px 18px rgba(0, 0, 0, 0.14)); } #navbarNav .mobile-menu-brand-title { font-family: var(--font-logo); font-weight: 950; letter-spacing: 0.02em; color: rgba(15, 23, 42, 0.92); text-transform: uppercase; line-height: 1.05; font-size: 1rem; } #navbarNav .mobile-menu-brand-subtitle { font-family: var(--font-primary); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; color: rgba(15, 23, 42, 0.62); margin-top: 2px; } #header.menu-open #navbarNav.navbar-collapse { opacity: 1; visibility: visible; pointer-events: auto; -webkit-clip-path: circle(160% at calc(100% - 22px) 22px); clip-path: circle(160% at calc(100% - 22px) 22px); } #navbarNav.collapse:not(.show) { display: block !important; } #navbarNav.collapsing, #navbarNav.show { height: auto !important; } #navbarNav .mobile-menu-title { font-family: var(--font-logo); font-weight: 950; letter-spacing: 0.02em; color: rgba(15, 23, 42, 0.92); text-transform: uppercase; line-height: 1.05; font-size: 0.95rem; padding: 6px 4px 2px; } #navbarNav .mobile-menu-header { display: flex; align-items: center; gap: 10px; max-width: 520px; margin: 0 auto; padding: 2px 4px 0; } #navbarNav .mobile-menu-header-logo { width: 34px; height: 34px; border-radius: 12px; object-fit: contain; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(15, 23, 42, 0.10); padding: 4px; filter: drop-shadow(0px 10px 18px rgba(0, 0, 0, 0.10)); } #navbarNav .navbar-nav { width: 100%; margin: 0 auto; padding: 0; max-width: 520px; display: flex; flex-direction: column; gap: 12px; } #navbarNav .navbar-nav.me-auto { margin-top: 0; } #navbarNav .nav-item { width: 100%; } #navbarNav .nav-link { text-align: left; padding: 15px 16px; border-radius: 18px; font-family: var(--font-logo); font-weight: 800; font-size: 0.98rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(15, 23, 42, 0.92) !important; background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%); border: 1px solid rgba(15, 23, 42, 0.10); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10); display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease; } #navbarNav .nav-link .nav-link-left { display: inline-flex; align-items: center; gap: 10px; min-width: 0; } #navbarNav .nav-link .nav-link-left span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #navbarNav .nav-link .nav-link-icon { width: 34px; height: 34px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(179, 0, 0, 0.08); color: rgba(179, 0, 0, 0.92); flex: 0 0 auto; } #navbarNav .nav-link .nav-link-icon svg { width: 18px; height: 18px; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; } #navbarNav .nav-link .nav-link-chevron { opacity: 0.55; color: rgba(15, 23, 42, 0.80); flex: 0 0 auto; } #navbarNav .nav-link .nav-link-chevron svg { width: 18px; height: 18px; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; } #navbarNav .nav-link:hover, #navbarNav .nav-link:focus { background: rgba(255, 255, 255, 0.96); transform: translateY(-1px); box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14); } #navbarNav .nav-link:active { transform: translateY(0); box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1); } #header.menu-open .logo { opacity: 1; pointer-events: auto; } #header.menu-open .navbar-collapse { margin-top: 0; padding-top: 5; } #navbarNav .d-flex { width: 100%; max-width: 520px; margin: 0 auto; justify-content: flex-start !important; } #navbarNav > .d-flex { display: none !important; } #navbarNav #ver-pedido-btn { display: none !important; } #navbarNav #installAppBtnMobile { width: 100%; max-width: 520px; border-radius: 16px; font-weight: 900; letter-spacing: 0.02em; padding: 12px 14px; box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12); border: 0; background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); } #navbarNav #installAppBtnMobile svg { width: 18px; height: 18px; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; margin-right: 8px; } #installAppBtnDesktop.btn-install-pro { border-radius: 999px; padding: 12px 28px; font-weight: 800; letter-spacing: 0.02em; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18); position: relative; overflow: hidden; } #installAppBtnDesktop.btn-install-pro i { margin-right: 8px; vertical-align: -2px; } #installAppBtnDesktop.btn-install-pro::after { content: ''; position: absolute; top: 0; left: -140px; width: 95px; height: 100%; background: rgba(255, 255, 255, 0.26); transform: skewX(-20deg); transition: left 0.8s ease; pointer-events: none; } #installAppBtnDesktop.btn-install-pro:hover::after { left: 130%; } #ver-pedido-btn-mobile, #ver-pedido-btn { border-radius: 999px !important; } #ver-pedido-btn-mobile img, #ver-pedido-btn img { width: 18px; height: 18px; object-fit: contain; display: inline-block; vertical-align: -3px; margin-right: 8px; transform-origin: 50% 70%; will-change: transform; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18)); animation: cart-pro 4.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite; } #ver-pedido-btn-mobile:hover img, #ver-pedido-btn-mobile:focus-visible img, #ver-pedido-btn:hover img, #ver-pedido-btn:focus-visible img { animation-duration: 1.6s; } @media (prefers-reduced-motion: reduce) { #ver-pedido-btn-mobile img, #ver-pedido-btn img { animation: none !important; transition: none !important; } } #navbarNav .w-100.d-lg-none.text-end.mt-3 { text-align: left !important; margin-top: auto !important; } #navbarNav .nav-item { opacity: 0; transform: translateY(10px); transition: opacity 220ms ease, transform 220ms ease; } #header.menu-open #navbarNav .nav-item { opacity: 1; transform: translateY(0); } #header.menu-open #navbarNav .nav-item:nth-child(1) { transition-delay: 40ms; } #header.menu-open #navbarNav .nav-item:nth-child(2) { transition-delay: 80ms; } #header.menu-open #navbarNav .nav-item:nth-child(3) { transition-delay: 120ms; } #header.menu-open #navbarNav .nav-item:nth-child(4) { transition-delay: 160ms; } } #ver-pedido-btn-mobile img, #ver-pedido-btn img { width: 18px; height: 18px; object-fit: contain; display: inline-block; vertical-align: -3px; margin-right: 8px; transform-origin: 50% 70%; will-change: transform; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18)); animation: cart-pro 4.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite; } #ver-pedido-btn-mobile:hover img, #ver-pedido-btn-mobile:focus-visible img, #ver-pedido-btn:hover img, #ver-pedido-btn:focus-visible img { animation-duration: 1.6s; } @keyframes cart-pro { 0%, 72%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); } 78% { transform: translate3d(2px, -1px, 0) rotate(-6deg); } 84% { transform: translate3d(-1px, 0px, 0) rotate(4deg); } 90% { transform: translate3d(1px, -1px, 0) rotate(-3deg); } } @media (prefers-reduced-motion: reduce) { #ver-pedido-btn-mobile img, #ver-pedido-btn img { animation: none !important; transition: none !important; } } #contacto [data-aos] { opacity: 1 !important; transform: none !important; } .btn-como-llegar-maps-img { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; color: #222; font-weight: 600; font-size: 1.13rem; border: 2px solid #4285F4; border-radius: 16px; box-shadow: 0 4px 18px rgba(66,133,244,0.10), 0 1.5px 8px rgba(0,0,0,0.04); padding: 16px 24px 12px 24px; text-decoration: none; transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s, color 0.18s; margin-top: 0.5rem; min-width: 200px; max-width: 100%; text-align: center; gap: 7px; position: relative; overflow: hidden; z-index: 2; cursor: pointer; outline: none; user-select: none; } .btn-como-llegar-maps-img:hover, .btn-como-llegar-maps-img:focus { box-shadow: 0 8px 32px rgba(66,133,244,0.18), 0 2px 12px rgba(0,0,0,0.08); border-color: #EA4335; color: #4285F4; transform: translateY(-2px) scale(1.035); text-decoration: none; } .btn-como-llegar-maps-img:active { box-shadow: 0 2px 8px rgba(66,133,244,0.10); transform: scale(0.98); } .btn-como-llegar-maps-img .icono-maps-img { margin-bottom: 2px; display: flex; align-items: center; justify-content: center; transition: filter 0.18s; } .btn-como-llegar-maps-img:hover .icono-maps-img img, .btn-como-llegar-maps-img:focus .icono-maps-img img { filter: drop-shadow(0 4px 12px rgba(234,67,53,0.18)) brightness(1.08); } .btn-como-llegar-maps-img .texto-btn-maps-img { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.5px; color: #222; margin-bottom: 2px; transition: color 0.18s; display: inline-block; } .btn-como-llegar-maps-img:hover .texto-btn-maps-img, .btn-como-llegar-maps-img:focus .texto-btn-maps-img { color: #4285F4; } .btn-como-llegar-maps-img .direccion-btn-maps-img { font-size: 1.01rem; color: #444; font-weight: 500; margin-top: 2px; line-height: 1.2; opacity: 0.93; transition: color 0.18s; } .btn-como-llegar-maps-img:hover .direccion-btn-maps-img, .btn-como-llegar-maps-img:focus .direccion-btn-maps-img { color: #4285F4; } @media (max-width: 767px) { .btn-como-llegar-maps-img { font-size: 1rem; padding: 11px 7px 8px 7px; min-width: 120px; } .btn-como-llegar-maps-img .icono-maps-img img { width: 22px; height: 22px; } .btn-como-llegar-maps-img .direccion-btn-maps-img { font-size: 0.97rem; } } @media (max-width: 480px) { .btn-como-llegar-maps-img { font-size: 0.97rem; padding: 8px 2vw 6px 2vw; } .btn-como-llegar-maps-img .icono-maps-img img { width: 18px; height: 18px; } .btn-como-llegar-maps-img .direccion-btn-maps-img { font-size: 0.93rem; } } body.product-sheet-open { overflow: hidden; } body.product-sheet-open #alerta-agregado { z-index: 2600 !important; } .product-sheet-overlay { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.52); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 220ms ease, visibility 220ms ease; z-index: 2400; } .product-sheet { position: fixed; left: 0; right: 0; bottom: 0; transform: translate3d(0, 110%, 0); transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1); z-index: 2500; pointer-events: none; } .product-sheet-inner { width: min(560px, 100%); margin-left: auto; margin-right: auto; background: rgba(255, 255, 255, 0.98); border-top-left-radius: 26px; border-top-right-radius: 26px; box-shadow: 0 -18px 44px rgba(15, 23, 42, 0.26); border: 1px solid rgba(15, 23, 42, 0.08); border-bottom: 0; overflow: hidden; } .product-sheet-top { position: relative; padding: 10px 14px 8px 14px; } .product-sheet-handle { width: 54px; height: 6px; border-radius: 999px; background: rgba(15, 23, 42, 0.16); margin: 0 auto; } .product-sheet-close { position: absolute; right: 10px; top: 8px; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(15, 23, 42, 0.10); background: rgba(255, 255, 255, 0.9); color: rgba(15, 23, 42, 0.8); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10); } .product-sheet-close:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.35); outline-offset: 3px; } .product-sheet-scroll { max-height: min(72vh, 620px); overflow: auto; padding: 14px 18px 16px 18px; -webkit-overflow-scrolling: touch; } .product-sheet-media { width: 100%; aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden; background: #f8fafc; box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14); border: 1px solid rgba(15, 23, 42, 0.08); } .product-sheet-media img { width: 100%; height: 100%; object-fit: cover; display: block; } .product-sheet-title { margin-top: 14px; font-weight: 950; letter-spacing: 0.02em; text-transform: uppercase; font-size: 1.7rem; line-height: 1.05; color: #0f172a; } .product-sheet-price { margin-top: 10px; font-weight: 950; font-size: 1.25rem; color: var(--color-primary); } .product-sheet-incart { margin-top: 10px; display: none; font-weight: 800; font-size: 0.95rem; color: rgba(100, 116, 139, 0.92); } .product-sheet-desc { margin-top: 14px; font-size: 1.02rem; line-height: 1.55; color: rgba(15, 23, 42, 0.78); white-space: pre-wrap; } .product-sheet-bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) 14px; border-top: 1px solid rgba(15, 23, 42, 0.08); background: rgba(255, 255, 255, 0.98); } .product-sheet-actions { flex: 1 1 auto; display: flex; align-items: center; gap: 10px; min-width: 0; } .product-sheet-qty { display: inline-flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 16px; background: rgba(241, 245, 249, 0.95); border: 1px solid rgba(148, 163, 184, 0.30); } .product-sheet-qty-btn { width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(15, 23, 42, 0.10); background: rgba(255, 255, 255, 0.9); color: rgba(15, 23, 42, 0.82); font-weight: 900; display: inline-flex; align-items: center; justify-content: center; } .product-sheet-qty-value { min-width: 34px; text-align: center; font-weight: 950; color: #0f172a; font-size: 1.05rem; } .product-sheet-add { flex: 1 1 auto; height: 52px; border-radius: 18px; border: 0; background: var(--color-primary); color: var(--color-white); font-weight: 900; letter-spacing: 0.02em; box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16); padding: 0 16px; } .product-sheet-go { height: 52px; border-radius: 18px; border: 1px solid rgba(15, 23, 42, 0.12); background: rgba(255, 255, 255, 0.92); color: rgba(15, 23, 42, 0.82); font-weight: 900; letter-spacing: 0.02em; padding: 0 14px; box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10); white-space: nowrap; } .product-sheet-go:hover { background: rgba(255, 255, 255, 0.98); box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12); } .product-sheet-add:focus-visible, .product-sheet-go:focus-visible, .product-sheet-qty-btn:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.35); outline-offset: 3px; } body.product-sheet-open .product-sheet-overlay { opacity: 1; visibility: visible; pointer-events: auto; } body.product-sheet-open .product-sheet { transform: translate3d(0, 0, 0); pointer-events: auto; } @media (max-width: 575.98px) { .product-sheet-bar { flex-direction: column; align-items: stretch; } .product-sheet-actions { width: 100%; } .product-sheet-scroll { max-height: 74vh; padding: 12px 14px 14px 14px; } .product-sheet-title { font-size: 1.5rem; } } @media (prefers-reduced-motion: reduce) { .product-sheet, .product-sheet-overlay { transition: none !important; } } @keyframes modalIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } } #alerta-pedido-local { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 3000; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); } #alerta-pedido-local .btn { margin-top: 10px; } @media (max-width: 480px) { #alerta-pedido-local > div { width: 90vw !important; padding: 28px 8vw 18px 8vw !important; } }
Coded With 💗 by
0x6ick