
    /* =========================================
       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: 56px;
      height: 56px;
      object-fit: cover;
    }

    #main-navbar .brand-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: #fff;
      transition: color 0.3s;
    }

    #main-navbar.scrolled .brand-name { color: var(--sz-blue); }

    #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-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;
    }

    @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-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-card h3 {
      color: var(--sz-blue);
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }

    .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);
    }

    .custom-input {
      background-color: var(--sz-gray-light);
      border: 1px solid transparent;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .custom-input:focus {
      background-color: #fff;
      border-color: var(--sz-blue);
      box-shadow: 0 0 0 4px rgba(45,137,199,0.15);
      outline: none;
    }

    .custom-input::placeholder {
      color: #a0aab2;
    }

    .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--sz-gray-dark);
      margin-bottom: 0.4rem;
    }

    .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);
    }

    /* =========================================
       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; }
    }