
        @font-face {
            font-family: 'Dominos Sans Header';
            src: url('../tipografia/Dominos Sans Header 1.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Dominos Sans Header 2';
            src: url('../tipografia/Dominos Sans Header 2.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Dominos Sans Subhead 2';
            src: url('../tipografia/Dominos Sans Subhead 2.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Dominos Sans Text';
            src: url('../tipografia/Dominos Sans Text VF.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dominos-blue: #0090E2;
            --dominos-red: #FF0000;
            --dominos-light-blue: #FEFAF6;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Header */
        header {
            background: var(--dominos-blue);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            background: var(--dominos-red);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            background-color: var(--dominos-red);
            border: 2px solid var(--dominos-red);
            border-radius: 5px;
            font-family: 'Dominos Sans Header 2', sans-serif;
        }

        nav a:hover {
            background-color: white;
            color: var(--dominos-red);
        }

        /* Hero Banner */
        .hero-banner {
            background: #FEFAF6;
            color: var(--text-dark);
            padding: 3rem 20px;
            text-align: center;
        }

        .hero-banner h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            font-family: 'Dominos Sans Header', sans-serif;
            color: var(--dominos-blue);
        }

        .hero-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .promo-banner {
            background: transparent;
            color: white;
            padding: 0;
            border-radius: 0;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: none;
            position: relative;
            overflow: hidden;
            border: none;
        }

        .promo-image-container {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .promo-image {
            max-width: 100%;
            height: auto;
            display: none;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .promo-link {
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .promo-link:hover .promo-image,
        .promo-link:focus .promo-image {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            filter: brightness(1.1);
        }
        
        .promo-link:active .promo-image {
            transform: scale(0.98);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            filter: brightness(0.95);
        }

        .promo-pc {
            display: block;
        }

        .promo-mobile {
            display: none;
        }

        .promo-banner h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-family: 'Dominos Sans Header', sans-serif;
            color: var(--dominos-blue);
        }

        /* Search and Filter Section */
        .search-section {
            background: white;
            padding: 2rem 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .search-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .search-box {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .search-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--dominos-blue);
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--dominos-red);
            color: white;
        }

        .btn-primary:hover {
            background: #c41230;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
        }

        .btn-secondary {
            background: var(--dominos-blue);
            color: white;
        }

        .btn-secondary:hover {
            background: #005177;
        }

        .filter-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.7rem 1.5rem;
            background: var(--bg-light);
            border: 2px solid #ddd;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--dominos-blue);
            color: white;
            border-color: var(--dominos-blue);
        }

        .view-toggle {
            display: flex;
            gap: 0.5rem;
        }

        .view-btn {
            padding: 0.7rem 1rem;
            background: var(--bg-light);
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .view-btn.active {
            background: var(--dominos-blue);
            color: white;
            border-color: var(--dominos-blue);
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        .results-info {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Grid View */
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .store-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .store-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .store-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .store-info {
            padding: 1.5rem;
        }

        .store-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dominos-blue);
            margin-bottom: 0.5rem;
            font-family: 'Dominos Sans Header 2', sans-serif;
        }

        .store-city {
            display: inline-block;
            background: var(--dominos-blue);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .store-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.8rem;
            color: #603913;
            font-family: 'Dominos Sans Text', sans-serif;
            text-transform: none;
        }

        .store-detail i {
            color: var(--dominos-red);
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            min-width: 20px;
        }

        .store-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .btn-small {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }

        /* Map View */
        .map-container {
            display: none;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .map-container.active {
            display: block;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* List View */
        .stores-list {
            display: none;
        }

        .stores-list.active {
            display: block;
        }

        .store-list-item {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .store-list-item img {
            width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }

        .store-list-info {
            flex: 1;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            max-width: 1000px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s;
        }

        .modal-header {
            background: var(--dominos-blue);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-family: 'Dominos Sans Header', sans-serif;
            color: white;
        }

        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
        }

        .modal-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: row;
            gap: 2rem;
        }
        
        .modal-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .modal-info .store-detail {
            font-family: 'Dominos Sans Text', sans-serif;
            text-transform: none;
            color: #603913;
        }
        
        .modal-info h3 {
            margin: 0 0 1rem 0;
            color: var(--dominos-blue);
            font-size: 1.2rem;
            font-family: 'Dominos Sans Header', sans-serif;
        }
        
        .modal-image-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .modal-image-container h3 {
            margin: 0;
            color: var(--dominos-blue);
            font-size: 1.2rem;
            font-family: 'Dominos Sans Header', sans-serif;
        }
        
        .modal-image-container .store-image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 0;
        }
        
        .modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .modal-map {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
        }

        .modal-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .modal-content-new {
            animation: slideUp 0.5s, bounce 1.5s 0.5s;
            max-width: 1000px;
            width: 95%;
        }
        
        .modal-content-new .modal-body {
            display: flex;
            flex-direction: row;
            gap: 2rem;
        }
        
        .modal-content-new .modal-info {
            flex: 1;
        }
        
        .modal-content-new .modal-image-container {
            flex: 1;
        }
        
        .modal-content-new .store-image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .modal-content-new .modal-body {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        /* Footer */
        footer {
            background: var(--dominos-blue);
            color: white;
            text-align: center;
            padding: 2rem 20px;
            margin-top: 4rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--dominos-red);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                margin: 0 0.5rem;
            }

            .hero-banner h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .stores-grid {
                grid-template-columns: 1fr;
            }

            .store-list-item {
                flex-direction: column;
            }

            .store-list-item img {
                width: 100%;
            }

            .search-box {
                flex-direction: column;
            }

            .view-toggle {
                width: 100%;
            }

            .view-btn {
                flex: 1;
            }
            
            .modal-body {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .modal-content {
                width: 95%;
                max-height: 95vh;
            }
            
            /* Cambiar imágenes de promo para versión móvil */
            .promo-pc {
                display: none;
            }
            
            .promo-mobile {
                display: block;
            }
        }

        .no-results {
            text-align: center;
            padding: 3rem;
            color: var(--text-light);
        }

        .no-results i {
            font-size: 4rem;
            color: var(--dominos-red);
            margin-bottom: 1rem;
        }

        .no-results h2 {
            font-family: 'Dominos Sans Header', sans-serif;
            margin-bottom: 0.5rem;
            color: var(--dominos-blue);
        }

        /* Apply Dominos Sans Header to all h1, h2, h3 elements */
        h1, h2, h3 {
            font-family: 'Dominos Sans Header', sans-serif;
            color: var(--dominos-blue);
        }
