
    /* =========================================
       ROOT VARIABLES & BRAND COLORS
    ========================================= */
    :root {
      --sz-blue:       #2D89C7;
      --sz-blue-dark:  #1a5a8a;
      --sz-blue-deep:  #0d3d5f;
      --sz-gray:       #707B7C;
      --sz-gray-light: #F5F7F8;
      --sz-gray-dark:  #4A5556;
      --sz-red:        #D32F2F;
      --sz-red-dark:   #b71c1c;
      --sz-green:      #9CCC65;
    }

    /* =========================================
       BASE
    ========================================= */
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #fff;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--sz-gray-light); }
    ::-webkit-scrollbar-thumb { background: var(--sz-blue); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--sz-blue-dark); }

    /* =========================================
       LOADER
    ========================================= */
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--sz-blue);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #page-loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-gear-wrap {
      position: relative;
      width: 96px;
      height: 96px;
    }

    .gear-outer {
      width: 96px;
      height: 96px;
      color: #fff;
      animation: spin-cw 3s linear infinite;
    }

    .gear-inner {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      color: rgba(255,255,255,0.8);
      transform: translate(-50%, -50%);
      animation: spin-ccw 3s linear infinite;
    }

    .loader-text {
      margin-top: 24px;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      animation: pulse-text 2s ease-in-out infinite;
    }

    @keyframes spin-cw {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes spin-ccw {
      from { transform: rotate(360deg) translate(-50%, -50%); }
      to   { transform: rotate(0deg) translate(-50%, -50%); }
    }

    @keyframes pulse-text {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.45; }
    }

    /* =========================================
       NAVBAR
    ========================================= */
    #main-navbar {
      background: transparent;
      transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    #main-navbar.scrolled {
      background: #fff !important;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      padding-top: 0.4rem;
      padding-bottom: 0.4rem;
    }

    #main-navbar .navbar-brand img {
      border-radius: 10px;
      width: 68px;
      height: 68px;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #main-navbar.scrolled .navbar-brand img {
      width: 52px;
      height: 52px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
    }

    #main-navbar .brand-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      line-height: 1.1;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #main-navbar.scrolled .brand-name {
      color: var(--sz-blue);
      font-size: 1.12rem;
    }

    #main-navbar .nav-link {
      color: rgba(255,255,255,0.92);
      font-weight: 500;
      transition: color 0.3s;
      padding: 0.4rem 0.75rem;
    }

    #main-navbar .nav-link:hover { color: var(--sz-green); }

    #main-navbar.scrolled .nav-link { color: var(--sz-gray); }
    #main-navbar.scrolled .nav-link:hover { color: var(--sz-blue); }

    #main-navbar .navbar-toggler {
      border-color: rgba(255,255,255,0.5);
      color: #fff;
    }

    #main-navbar.scrolled .navbar-toggler { border-color: var(--sz-blue); color: var(--sz-blue); }

    .btn-sucursales {
      background: var(--sz-red);
      color: #fff;
      border: none;
      font-weight: 700;
      border-radius: 8px;
      padding: 0.45rem 1.1rem;
      font-size: 0.9rem;
      transition: background 0.25s, transform 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-sucursales:hover {
      background: var(--sz-red-dark);
      color: #fff;
      transform: translateY(-1px);
    }

    /* =========================================
       HERO
    ========================================= */
    #inicio {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--sz-blue) 0%, var(--sz-blue-dark) 55%, var(--sz-blue-deep) 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
      padding-bottom: 60px;
    }

    /* =========================================
       HERO CAROUSEL SYSTEM
    ========================================= */
    .hero-carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .hero-carousel-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 100px;
      padding-bottom: 220px; /* Espacio para las estadísticas fijas e indicadores al fondo */
    }

    .hero-carousel-item.active {
      opacity: 1;
      visibility: visible;
    }

    .hero-carousel-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.06);
      transition: transform 6s cubic-bezier(0.1, 0.8, 0.2, 1);
      z-index: 1;
    }

    .hero-carousel-item.active .hero-carousel-img {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(45, 137, 199, 0.82) 0%, rgba(26, 90, 138, 0.88) 55%, rgba(13, 61, 95, 0.94) 100%);
      z-index: 2;
    }

    .hero-slide-content {
      position: relative;
      z-index: 3;
      width: 100%;
    }

    .hero-carousel-fallback {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--sz-blue) 0%, var(--sz-blue-dark) 55%, var(--sz-blue-deep) 100%);
      z-index: 1;
    }

    /* Distintivos/Badges de Carrusel */
    .hero-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.45rem 1.2rem;
      border-radius: 100px;
      color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      backdrop-filter: blur(4px);
    }

    .hero-badge.badge-blue {
      background: rgba(45, 137, 199, 0.25);
      border: 1px solid var(--sz-blue);
    }

    .hero-badge.badge-red {
      background: rgba(211, 47, 47, 0.25);
      border: 1px solid var(--sz-red);
    }

    .hero-badge.badge-green {
      background: rgba(156, 204, 101, 0.25);
      border: 1px solid var(--sz-green);
    }

    /* Controles de Navegación */
    .hero-carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      backdrop-filter: blur(4px);
    }

    .hero-carousel-control:hover {
      background: var(--sz-green);
      border-color: var(--sz-green);
      color: #1a1a1a;
      transform: translateY(-50%) scale(1.1);
    }

    .hero-carousel-control.prev { left: 24px; }
    .hero-carousel-control.next { right: 24px; }

    /* Indicadores de diapositivas */
    .hero-carousel-indicators {
      position: absolute;
      bottom: 210px; /* Situado encima del indicador de scroll y debajo de estadísticas */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .hero-carousel-indicators .indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, width 0.3s;
    }

    .hero-carousel-indicators .indicator.active {
      background: var(--sz-green);
      transform: scale(1.1);
      width: 24px;
      border-radius: 5px;
    }

    /* Contenedor Estático de Estadísticas */
    .hero-static-stats {
      position: absolute;
      bottom: 80px;
      left: 0;
      right: 0;
      z-index: 5;
    }

    /* Ajustes responsivos para carrusel */
    @media (max-width: 767px) {
      .hero-carousel-item {
        padding-top: 120px;
        padding-bottom: 290px; /* Mayor espacio para estadísticas móviles de doble fila */
        align-items: flex-start;
      }
      .hero-static-stats {
        bottom: 70px;
      }
      .hero-carousel-control {
        width: 38px;
        height: 38px;
        font-size: 1rem;
      }
      .hero-carousel-control.prev { left: 10px; }
      .hero-carousel-control.next { right: 10px; }
      .hero-carousel-indicators { bottom: 250px; }
      .scroll-indicator { display: none !important; }
    }


    .hero-deco {
      position: absolute;
      border: 4px solid rgba(255,255,255,0.10);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-deco-1 { width: 220px; height: 220px; top: 60px; left: -60px; }
    .hero-deco-2 { width: 340px; height: 340px; bottom: -80px; right: -100px; }
    .hero-deco-3 {
      width: 130px; height: 130px;
      top: 50%; left: 30%;
      transform: rotate(45deg);
      border-radius: 0;
    }

    .hero-logo {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    }

    .hero-title {
      font-size: clamp(2rem, 5vw, 3.4rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.88);
      margin-bottom: 2rem;
    }

    .hero-accent { color: var(--sz-green); display: block; margin-top: 0.35rem; }

    .btn-hero-primary {
      background: var(--sz-red);
      color: #fff;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 0.85rem 2rem;
      border-radius: 10px;
      transition: background 0.25s, transform 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-primary:hover {
      background: var(--sz-red-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-hero-secondary {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 2px solid rgba(255,255,255,0.75);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 0.85rem 2rem;
      border-radius: 10px;
      backdrop-filter: blur(6px);
      transition: background 0.25s, color 0.25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-secondary:hover {
      background: #fff;
      color: var(--sz-blue);
      border-color: #fff;
    }

    .hero-stat-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--sz-green);
      display: block;
    }

    .hero-stat-label {
      color: rgba(255,255,255,0.75);
      font-size: 0.9rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.7);
      font-size: 2rem;
      animation: bounce 1.8s infinite;
      z-index: 10;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(10px); }
    }

    /* =========================================
       SECTION SHARED
    ========================================= */
    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      color: var(--sz-blue);
      margin-bottom: 0.75rem;
    }

    .section-sub {
      color: var(--sz-gray);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto;
    }

    /* =========================================
       SERVICES
    ========================================= */
    #servicios { background: var(--sz-gray-light); padding: 90px 0; }

    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 2.2rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
      border-top: 5px solid transparent;
      transition: box-shadow 0.3s, transform 0.3s;
      height: 100%;
    }

    .service-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.14);
      transform: translateY(-8px);
    }

    .service-card.blue  { border-top-color: var(--sz-blue); }
    .service-card.red   { border-top-color: var(--sz-red); }
    .service-card.green { border-top-color: var(--sz-green); }
    .service-card.cyan  { border-top-color: #00bcd4; }
    .service-card.orange { border-top-color: #fd7e14; }
    .service-card.purple { border-top-color: #6f42c1; }

    .service-icon {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 1.4rem;
      transition: transform 0.3s;
    }

    .service-card:hover .service-icon { transform: scale(1.1); }

    .service-icon.blue  { background: rgba(45,137,199,0.12); color: var(--sz-blue); }
    .service-icon.red   { background: rgba(211,47,47,0.12);  color: var(--sz-red); }
    .service-icon.green { background: rgba(156,204,101,0.15); color: #6aaf2b; }
    .service-icon.cyan  { background: rgba(0, 188, 212, 0.12); color: #00bcd4; }
    .service-icon.orange { background: rgba(253, 126, 20, 0.12);  color: #fd7e14; }
    .service-icon.purple { background: rgba(111, 66, 193, 0.12); color: #6f42c1; }

    .service-card h3 {
      color: var(--sz-blue);
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }

    .service-card.red h3 { color: var(--sz-red); }
    .service-card.green h3 { color: #6aaf2b; }
    .service-card.cyan h3 { color: #00bcd4; }
    .service-card.orange h3 { color: #fd7e14; }
    .service-card.purple h3 { color: #6f42c1; }

    .service-card p { color: var(--sz-gray); font-size: 0.97rem; }

    .service-feature {
      list-style: none;
      padding: 0;
      margin: 0 0 1.2rem;
    }

    .service-feature li {
      color: var(--sz-gray);
      font-size: 0.9rem;
      padding: 0.3rem 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .service-feature li::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 18px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239CCC65'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5l-4-4 1.41-1.41L10 13.67l6.59-6.59L18 8.5l-8 8z'/%3E%3C/svg%3E") center/contain no-repeat;
      flex-shrink: 0;
    }

    .service-location {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      font-weight: 600;
    }

    /* =========================================
       CATALOG / PORTAL DE COMPRAS
    ========================================= */
    #catalogo { background: #fff; padding: 90px 0; }

    .shop-card {
      border-radius: 20px;
      padding: 2.4rem;
      color: #fff;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .shop-card::before,
    .shop-card::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      pointer-events: none;
    }

    .shop-card::before { width: 160px; height: 160px; top: -60px; right: -60px; }
    .shop-card::after  { width: 110px; height: 110px; bottom: -40px; left: -40px; }

    .shop-card-blue { background: linear-gradient(135deg, var(--sz-blue), var(--sz-blue-dark)); }
    .shop-card-gray { background: linear-gradient(135deg, var(--sz-gray), var(--sz-gray-dark)); }

    .shop-card-icon {
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.9rem;
      margin-bottom: 1.3rem;
      position: relative;
      z-index: 1;
    }

    .shop-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.3rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .badge-green { background: var(--sz-green); color: #1a1a1a; }
    .badge-white { background: rgba(255,255,255,0.22); color: #fff; }

    .badge-dot {
      width: 8px; height: 8px;
      background: #1a1a1a;
      border-radius: 50%;
      animation: pulse-dot 1.2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    .shop-card h3 {
      font-size: 1.6rem;
      margin-bottom: 0.7rem;
      position: relative;
      z-index: 1;
    }

    .shop-card p {
      color: rgba(255,255,255,0.82);
      font-size: 0.97rem;
      position: relative;
      z-index: 1;
    }

    .shop-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.6rem;
      position: relative;
      z-index: 1;
    }

    .shop-features li {
      color: rgba(255,255,255,0.88);
      font-size: 0.93rem;
      padding: 0.3rem 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .shop-features li::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 18px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239CCC65'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5l-4-4 1.41-1.41L10 13.67l6.59-6.59L18 8.5l-8 8z'/%3E%3C/svg%3E") center/contain no-repeat;
      flex-shrink: 0;
    }

    .btn-cta-red {
      background: var(--sz-red);
      color: #fff;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      padding: 0.75rem 1.6rem;
      border-radius: 10px;
      font-size: 0.97rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.25s, transform 0.2s;
      position: relative;
      z-index: 1;
    }

    .btn-cta-red:hover {
      background: var(--sz-red-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    /* =========================================
       ABOUT
    ========================================= */
    #nosotros { background: var(--sz-gray-light); padding: 90px 0; }

    .about-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .about-icon-box.blue  { background: rgba(45,137,199,0.12); color: var(--sz-blue); }
    .about-icon-box.green { background: rgba(156,204,101,0.18); color: #6aaf2b; }

    .about-heading { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
    .about-heading.blue  { color: var(--sz-blue); }
    .about-heading.green { color: #6aaf2b; }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border-radius: 100px;
      padding: 0.45rem 1rem;
      font-size: 0.87rem;
      color: var(--sz-gray);
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }

    .trust-badge::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 18px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239CCC65'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5l-4-4 1.41-1.41L10 13.67l6.59-6.59L18 8.5l-8 8z'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    .why-card {
      background: linear-gradient(135deg, var(--sz-blue), var(--sz-blue-dark));
      border-radius: 20px;
      padding: 2.2rem;
      color: #fff;
    }

    .why-card h3 { font-size: 1.25rem; margin-bottom: 1.2rem; }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      font-size: 0.95rem;
      color: rgba(255,255,255,0.88);
    }

    .why-item:last-child { border-bottom: none; }

    .why-num {
      background: var(--sz-green);
      color: #1a1a1a;
      font-weight: 800;
      font-size: 0.78rem;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* =========================================
       BLOG
    ========================================= */
    #blog { background: #fff; padding: 90px 0; }

    .blog-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
      overflow: hidden;
      height: 100%;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .blog-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.13);
      transform: translateY(-6px);
    }

    .blog-card-img {
      background: linear-gradient(135deg, var(--sz-blue), var(--sz-blue-dark));
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      color: rgba(255,255,255,0.85);
    }

    .blog-card-body { padding: 1.4rem; }

    .blog-tag {
      display: inline-block;
      background: rgba(45,137,199,0.1);
      color: var(--sz-blue);
      font-size: 0.76rem;
      font-weight: 700;
      padding: 0.2rem 0.75rem;
      border-radius: 100px;
      margin-bottom: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .blog-card h4 { font-size: 1.05rem; color: #1a1a1a; margin-bottom: 0.5rem; }
    .blog-card p  { font-size: 0.9rem; color: var(--sz-gray); margin: 0; }

    .blog-read-more {
      color: var(--sz-blue);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 1rem;
      transition: gap 0.2s;
    }

    .blog-read-more:hover { color: var(--sz-blue-dark); gap: 10px; }

    /* =========================================
       CONTACT FORM
    ========================================= */
    
    .contact-section { background: var(--sz-gray-light); padding: 90px 0; }

    .contact-badge {
      display: inline-block;
      background: rgba(45,137,199,0.1);
      color: var(--sz-blue);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .contact-desc {
      color: var(--sz-gray);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .c-method-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .c-method-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .c-method-icon.blue { background: rgba(45,137,199,0.12); color: var(--sz-blue); }
    .c-method-icon.green { background: rgba(156,204,101,0.18); color: #6aaf2b; }
    .c-method-icon.red { background: rgba(211,47,47,0.12); color: var(--sz-red); }

    .c-method-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--sz-gray-dark);
      margin: 0 0 0.15rem 0;
    }
    .c-method-desc {
      font-size: 0.95rem;
      color: #1a1a1a;
      margin: 0;
      font-weight: 500;
    }

    .contact-card {
      background: #fff;
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .contact-card .form-control,
    .contact-card .form-select {
      background-color: var(--sz-gray-light);
      border: 1.5px solid transparent;
      border-radius: 10px;
      padding: 0.8rem 1.1rem;
      font-size: 0.95rem;
      color: #1a1a1a;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-card .form-control:focus,
    .contact-card .form-select:focus {
      background-color: #fff;
      border-color: var(--sz-blue);
      box-shadow: 0 0 0 4px rgba(45,137,199,0.15);
      outline: none;
    }

    .contact-card .form-control::placeholder {
      color: #a0aab2;
    }

    /* Subtle focus effect on labels */
    .contact-card .col-md-6:focus-within .form-label,
    .contact-card .col-md-12:focus-within .form-label {
      color: var(--sz-blue);
    }

    .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--sz-gray-dark);
      margin-bottom: 0.4rem;
      transition: color 0.3s ease;
    }

    .btn-submit-contact {
      background: var(--sz-blue);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 0.85rem 1.5rem;
      border-radius: 10px;
      border: none;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    }

    .btn-submit-contact:hover {
      background: var(--sz-blue-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(45,137,199,0.3);
    }

    /* Custom Alerts Styling */
    .contact-section .alert {
      border: none;
      border-radius: 14px;
      padding: 1.1rem 1.4rem;
      margin-top: 1.5rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .contact-section .alert-success {
      background: rgba(240, 248, 241, 0.95);
      border: 1px solid rgba(156, 204, 101, 0.3);
      color: #2e7d32;
    }

    .contact-section .alert-success i {
      color: #4caf50;
      font-size: 1.25rem;
    }

    .contact-section .alert-danger {
      background: rgba(254, 242, 242, 0.95);
      border: 1px solid rgba(211, 47, 47, 0.2);
      color: #c62828;
    }

    .contact-section .alert-danger i {
      color: var(--sz-red);
      font-size: 1.25rem;
    }

    .contact-section .alert .btn-close {
      margin-left: auto;
      padding: 0.5rem;
      font-size: 0.8rem;
      transition: opacity 0.2s;
    }

    @keyframes slideUpFade {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =========================================
       FOOTER
    ========================================= */
    #sucursales { background: var(--sz-blue-deep); padding: 80px 0 0; }

    .footer-col-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--sz-green);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }

    .footer-branch-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.35rem;
    }

    .footer-branch-focus {
      display: inline-block;
      background: rgba(156,204,101,0.2);
      color: var(--sz-green);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.2rem 0.75rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .footer-info {
      list-style: none;
      padding: 0;
      margin: 0 0 1.2rem;
    }

    .footer-info li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255,255,255,0.72);
      font-size: 0.92rem;
      padding: 0.35rem 0;
    }

    .footer-info li i { color: var(--sz-blue); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

    .footer-map-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--sz-blue);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.45rem 1.1rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.25s;
    }

    .footer-map-link:hover { background: var(--sz-blue-dark); color: #fff; }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { padding: 0.3rem 0; }

    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.93rem;
      transition: color 0.25s;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .footer-links a:hover { color: var(--sz-green); }

    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      font-size: 1.25rem;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }

    .social-btn.fb { background: rgba(66,103,178,0.25); color: #90b4f8; }
    .social-btn.ig { background: rgba(193,53,132,0.25); color: #f9a8d4; }
    .social-btn.wa { background: rgba(37,211,102,0.25); color: #6ee7b7; }
    .social-btn.em { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }

    .social-btn:hover { transform: translateY(-3px); }
    .social-btn.fb:hover { background: rgba(66,103,178,0.5); }
    .social-btn.ig:hover { background: rgba(193,53,132,0.5); }
    .social-btn.wa:hover { background: rgba(37,211,102,0.4); }
    .social-btn.em:hover { background: rgba(255,255,255,0.2); }

    .footer-divider {
      border-color: rgba(255,255,255,0.1);
      margin-top: 2.5rem;
    }

    .footer-bottom {
      padding: 1.2rem 0;
      text-align: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
    }

    .footer-bottom a { color: var(--sz-blue); text-decoration: none; }

    /* =========================================
       WHATSAPP FLOAT
    ========================================= */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      background: #25D366;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.9rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.5);
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
      animation: wa-pulse 2.5s ease-in-out infinite;
    }

    .wa-float:hover {
      color: #fff;
      transform: scale(1.12);
      box-shadow: 0 6px 28px rgba(37,211,102,0.65);
    }

    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
      50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
    }

    /* =========================================
       RESPONSIVE TWEAKS
    ========================================= */
    @media (max-width: 767px) {
      .hero-logo { width: 130px; height: 130px; }
      .hero-title { text-align: center; }
      .hero-subtitle { text-align: center; }
      .hero-stat-number { font-size: 1.8rem; }
      .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
      .shop-card { margin-bottom: 1.5rem; }
    }

    @media (max-width: 575px) {
      .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.6rem; }
    }

    /* =========================================
       SZ FLOATING MULTICONTACT BUTTON (FAB)
    ========================================= */
    .sz-fab-container {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 1050; /* Por encima de la navbar y el contenido */
      font-family: 'Inter', sans-serif;
    }

    /* Botón disparador principal (FAB) */
    .sz-fab-trigger {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sz-blue) 0%, var(--sz-blue-dark) 100%);
      border: none;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(45, 137, 199, 0.4);
      position: relative;
      z-index: 1052;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    }

    .sz-fab-trigger:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(45, 137, 199, 0.6);
    }

    .sz-fab-trigger:active {
      transform: scale(0.95);
    }

    /* Animación de pulso alrededor del FAB */
    .sz-fab-pulse {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--sz-blue);
      box-shadow: 0 0 0 0 rgba(45, 137, 199, 0.7);
      animation: sz-pulse 2.5s infinite;
      pointer-events: none;
      z-index: -1;
      transition: opacity 0.3s;
    }

    .sz-fab-container.active .sz-fab-pulse {
      opacity: 0; /* Desactivar pulso al estar activo */
    }

    @keyframes sz-pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(45, 137, 199, 0.7);
      }
      70% {
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(45, 137, 199, 0);
      }
      100% {
        transform: scale(1.4);
        box-shadow: 0 0 0 0 rgba(45, 137, 199, 0);
      }
    }

    /* Iconos del FAB */
    .sz-fab-trigger .sz-icon-open,
    .sz-fab-trigger .sz-icon-close {
      position: absolute;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
    }

    .sz-fab-trigger .sz-icon-close {
      opacity: 0;
      transform: rotate(-90deg) scale(0.5);
    }

    .sz-fab-container.active .sz-fab-trigger {
      background: linear-gradient(135deg, var(--sz-red) 0%, var(--sz-red-dark) 100%);
      box-shadow: 0 4px 18px rgba(211, 47, 47, 0.4);
    }

    .sz-fab-container.active .sz-fab-trigger .sz-icon-open {
      opacity: 0;
      transform: rotate(90deg) scale(0.5);
    }

    .sz-fab-container.active .sz-fab-trigger .sz-icon-close {
      opacity: 1;
      transform: rotate(0) scale(1);
    }

    /* Panel flotante (Menú) */
    .sz-fab-panel {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 320px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px) saturate(180%);
      -webkit-backdrop-filter: blur(14px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
      transform: translateY(20px) scale(0.92);
      transform-origin: bottom right;
      opacity: 0;
      visibility: hidden;
      transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s, visibility 0.3s;
      z-index: 1051;
      overflow: hidden;
    }

    .sz-fab-container.active .sz-fab-panel {
      transform: translateY(0) scale(1);
      opacity: 1;
      visibility: visible;
    }

    /* Cabecera del Panel */
    .sz-panel-header {
      padding: 1rem 1.25rem;
      background: linear-gradient(135deg, var(--sz-blue-dark) 0%, var(--sz-blue-deep) 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sz-panel-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
    }

    .sz-panel-close-btn {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      transition: color 0.2s, transform 0.2s;
    }

    .sz-panel-close-btn:hover {
      color: #fff;
      transform: scale(1.1);
    }

    /* Cuerpo del Panel */
    .sz-panel-body {
      padding: 1.25rem;
      max-height: 420px;
      overflow-y: auto;
    }

    /* Scrollbar personalizada para el panel */
    .sz-panel-body::-webkit-scrollbar {
      width: 5px;
    }
    .sz-panel-body::-webkit-scrollbar-track {
      background: transparent;
    }
    .sz-panel-body::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 4px;
    }

    /* Sección de Contenido */
    .sz-panel-section {
      display: flex;
      flex-direction: column;
    }

    .sz-section-label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--sz-gray-dark);
      margin-bottom: 0.75rem;
    }

    .sz-panel-divider {
      border: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      margin: 1rem 0;
    }

    /* Grid de Redes Sociales */
    .sz-social-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .sz-social-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 0.5rem;
      border-radius: 12px;
      text-decoration: none;
      transition: transform 0.25s, background-color 0.25s, box-shadow 0.25s;
    }

    .sz-social-item i {
      font-size: 1.35rem;
      margin-bottom: 4px;
      line-height: 1;
    }

    .sz-social-item span {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--sz-gray-dark);
    }

    /* Estilos individuales para Redes */
    .sz-social-item.sz-fb {
      background: rgba(24, 119, 242, 0.08);
      border: 1px solid rgba(24, 119, 242, 0.15);
    }
    .sz-social-item.sz-fb i { color: #1877F2; }
    .sz-social-item.sz-fb:hover {
      background: #1877F2;
      box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
    }

    .sz-social-item.sz-tt {
      background: rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    .sz-social-item.sz-tt i { color: #000000; }
    .sz-social-item.sz-tt:hover {
      background: #000000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .sz-social-item.sz-mail {
      background: rgba(234, 67, 53, 0.08);
      border: 1px solid rgba(234, 67, 53, 0.15);
    }
    .sz-social-item.sz-mail i { color: #EA4335; }
    .sz-social-item.sz-mail:hover {
      background: #EA4335;
      box-shadow: 0 4px 12px rgba(234, 67, 53, 0.25);
    }

    .sz-social-item:hover i,
    .sz-social-item:hover span {
      color: #fff !important;
    }
    .sz-social-item:hover {
      transform: translateY(-2px);
    }

    /* Tarjetas de Sucursal */
    .sz-branch-card {
      background: rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 12px;
      padding: 0.75rem 0.85rem;
    }

    .sz-branch-name {
      font-weight: 600;
      font-size: 0.85rem;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .sz-branch-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    /* Botones de acción */
    .sz-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 0.45rem 0.6rem;
      font-size: 0.78rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 8px;
      transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s;
    }

    .sz-btn-wa {
      background: #25D366;
      color: #fff;
    }
    .sz-btn-wa:hover {
      background: #128C7E;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(37, 211, 102, 0.35);
    }

    .sz-btn-maps {
      background: var(--sz-blue);
      color: #fff;
    }
    .sz-btn-maps:hover {
      background: var(--sz-blue-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(45, 137, 199, 0.35);
    }

    /* =========================================
       SZ FAB RESPONSIVE
    ========================================= */
    @media (max-width: 575px) {
      .sz-fab-container {
        bottom: 18px;
        right: 18px;
      }
      .sz-fab-trigger {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
      }
      .sz-fab-panel {
        bottom: 66px;
        right: 0;
        width: calc(100vw - 36px); /* Ocupa casi todo el ancho con márgenes */
        max-width: 320px;
      }
    }