@font-face {
      font-family: 'Magneto';
      src: url('../fonts/Magneto-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --font-magneto: 'Magneto', cursive;
      --color-primary: #1e40af;
      --color-secondary: #1e3a8a;
      --color-accent: #3b82f6;
      --color-light-blue: #dbeafe;
      --color-dark-blue: #1e3a8a;
      --color-denim: #4f46e5;
      --color-dark: #0f172a;
      --color-light: #f8fafc;
      --color-gray: #64748b;
      --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
      --gradient-denim: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
      --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
    }

    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.6;
      color: var(--color-dark);
      overflow-x: hidden;
      background: linear-gradient(135deg, var(--color-light) 0%, #f1f5f9 100%);
    }

    /* Navbar moderna con glassmorphism */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
      padding: 1rem 0;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 8px 32px rgba(30, 64, 175, 0.15);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo {
      height: 50px;
      width: auto;
      border-radius: 10px;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .brand-text {
      font-family: var(--font-magneto);
      font-weight: 700;
      font-size: 1.8rem;
      background: var(--gradient-denim);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--color-dark);
      font-weight: 600;
      font-size: 0.95rem;
      position: relative;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 25px;
    }

    .nav-menu a:hover,
    .nav-menu a.activo {
      color: var(--color-primary);
      background: rgba(59, 130, 246, 0.1);
      transform: translateY(-1px);
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-menu a:hover::after,
    .nav-menu a.activo::after {
      width: 80%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--color-primary);
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 999;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu ul {
      list-style: none;
      text-align: center;
    }

    .mobile-menu li {
      margin: 1.5rem 0;
    }

    .mobile-menu a {
      text-decoration: none;
      color: var(--color-dark);
      font-size: 1.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 1rem 2rem;
      border-radius: 15px;
      display: block;
    }

    .mobile-menu a:hover,
    .mobile-menu a.activo {
      color: var(--color-primary);
      background: rgba(59, 130, 246, 0.1);
      transform: scale(1.05);
    }

    /* Hero Section */
    .hero-section {
      margin-top: 80px;
      padding: 4rem 0;
      text-align: center;
      background: var(--gradient-denim);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1920&q=80') center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .hero-title {
      font-family: var(--font-magneto);
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 
        -2px -2px 0 rgba(0, 0, 0, 0.8),
        2px -2px 0 rgba(0, 0, 0, 0.8),
        -2px 2px 0 rgba(0, 0, 0, 0.8),
        2px 2px 0 rgba(0, 0, 0, 0.8);
      animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      font-weight: 300;
      opacity: 0.9;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    /* Contenedor principal */
    .ubicaciones-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    /* Tarjetas de ubicación modernas */
    .mapa-tienda {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
      margin-bottom: 3rem;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid rgba(59, 130, 246, 0.1);
    }

    .mapa-tienda:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    }

    .store-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
    }

    .map-container {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(1.2) contrast(1.1);
      transition: filter 0.3s ease;
    }

    .map-container:hover iframe {
      filter: saturate(1.4) contrast(1.2);
    }

    .info-tienda {
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.8) 100%);
    }

    .info-tienda h3 {
      font-family: var(--font-magneto);
      font-size: 1.8rem;
      color: var(--color-primary);
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
    }

    .store-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      padding: 1rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(30, 64, 175, 0.05);
      transition: all 0.3s ease;
    }

    .store-detail:hover {
      transform: translateX(5px);
      box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
    }

    .detail-icon {
      width: 40px;
      height: 40px;
      background: var(--gradient-primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
      flex-shrink: 0;
    }

    .detail-text {
      font-size: 1rem;
      color: var(--color-gray);
      line-height: 1.4;
    }

    /* Animaciones */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mapa-tienda {
      animation: fadeInUp 0.6s ease-out;
    }

    .mapa-tienda:nth-child(2) {
      animation-delay: 0.1s;
    }

    .mapa-tienda:nth-child(3) {
      animation-delay: 0.2s;
    }

    .mapa-tienda:nth-child(4) {
      animation-delay: 0.3s;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .brand-text {
        font-size: 1.5rem;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }

      .store-content {
        grid-template-columns: 1fr;
      }

      .map-container {
        height: 300px;
      }

      .info-tienda {
        padding: 1.5rem;
      }

      .info-tienda h3 {
        font-size: 1.5rem;
      }

      .ubicaciones-container {
        padding: 2rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .store-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
      }

      .detail-icon {
        width: 35px;
        height: 35px;
      }

      .nav-container {
        padding: 0 1rem;
      }

      .brand-text {
        font-size: 1.2rem;
      }

      .hero-title {
        font-size: 2rem;
      }

      .mobile-menu a {
        font-size: 1.2rem;
      }
    }
