:root {
      --primary: #2F6690;
      --primary-dark: #1E4A6E;
      --primary-light: #4A8AB8;
      --accent: #7c3aed;
      --accent-light: #a78bfa;
      --accent-dark: #5b21b6;
      --success: #059669;
      --success-light: #d1fae5;
      --warning: #f59e0b;
      --white: #ffffff;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-400: #94a3b8;
      --gray-500: #64748b;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --gray-900: #0f172a;
      --whatsapp: #25d366;
      --facebook: #1877f2;
      --instagram: #e4405f;
      --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--gray-800);
      line-height: 1.6;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ══════════════════════════════════════════════════════════════
       ANIMATIONS
       ══════════════════════════════════════════════════════════════ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
      50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Fallback: mostrar elementos si JavaScript no funciona */
    @media screen {
      .animate-on-scroll {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ══════════════════════════════════════════════════════════════
       TOP BAR
       ══════════════════════════════════════════════════════════════ */
    .topbar {
      background: linear-gradient(90deg, var(--gray-900) 0%, var(--primary-dark) 100%);
      color: var(--white);
      padding: 12px 0;
      font-size: 13px;
    }

    .topbar-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .topbar-item {
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.9;
      transition: opacity 0.2s;
    }

    .topbar-item:hover {
      opacity: 1;
    }

    .topbar-item i {
      color: var(--accent-light);
    }

    .topbar-promo {
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 700;
      animation: pulse 2s infinite;
    }

    /* ══════════════════════════════════════════════════════════════
       HEADER
       ══════════════════════════════════════════════════════════════ */
    .header {
      background: var(--white);
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 12px 0;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s;
    }

    .logo:hover {
      transform: scale(1.02);
    }

    .logo-img {
      height: 70px;
      width: auto;
      filter: none;
      mix-blend-mode: normal;
    }
    /* Para header con fondo blanco */
    .header.scrolled .logo-img {
      filter: none;
      mix-blend-mode: normal;
    }

    .search-box {
      flex: 1;
      max-width: 550px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 16px 24px 16px 56px;
      border: 2px solid var(--gray-200);
      border-radius: 16px;
      font-size: 15px;
      background: var(--gray-50);
      transition: all 0.3s;
    }

    .search-box input:focus {
      outline: none;
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(47, 102, 144, 0.15);
    }

    .search-box i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray-400);
      font-size: 18px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      background: transparent;
      color: var(--gray-600);
      transition: all 0.3s;
    }

    .header-btn:hover {
      background: var(--gray-100);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .header-btn i {
      font-size: 20px;
    }

    .cart-btn {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: var(--white);
      position: relative;
    }

    .cart-btn:hover {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(47, 102, 144, 0.3);
    }

    .cart-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      width: 22px;
      height: 22px;
      background: var(--warning);
      color: var(--white);
      font-size: 11px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: bounce 1s infinite;
    }

    /* ══════════════════════════════════════════════════════════════
       MEGA MENU NAVIGATION
       ══════════════════════════════════════════════════════════════ */
    .nav {
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      position: sticky;
      top: 84px;
      z-index: 999;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-list {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 18px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-700);
      transition: all 0.3s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 3px;
      transition: width 0.3s;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link:hover::after {
      width: 80%;
    }

    .nav-badge {
      padding: 4px 10px;
      font-size: 10px;
      font-weight: 700;
      border-radius: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .nav-badge--buy {
      background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
      color: var(--white);
    }

    .nav-badge--quote {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: var(--white);
    }

    /* Mega Menu */
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      min-width: 700px;
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      padding: 32px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
    }

    .nav-item:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .mega-menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .mega-menu-column h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--gray-100);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mega-menu-column h4 i {
      color: var(--accent);
    }

    .mega-menu-column ul {
      list-style: none;
    }

    .mega-menu-column li {
      margin-bottom: 10px;
    }

    .mega-menu-column a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-600);
      padding: 10px 14px;
      border-radius: 10px;
      transition: all 0.2s;
    }

    .mega-menu-column a:hover {
      background: var(--gray-50);
      color: var(--primary);
      padding-left: 20px;
    }

    .mega-menu-column a i {
      color: var(--gray-400);
      transition: color 0.2s;
    }

    .mega-menu-column a:hover i {
      color: var(--accent);
    }

    .mega-menu-promo {
      grid-column: span 3;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
    }

    .mega-menu-promo-text {
      color: var(--white);
    }

    .mega-menu-promo-text h5 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .mega-menu-promo-text p {
      font-size: 14px;
      opacity: 0.9;
    }

    .mega-menu-promo-btn {
      background: var(--white);
      color: var(--primary);
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
    }

    .mega-menu-promo-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      background: var(--gray-100);
      border-radius: 12px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-menu-toggle span {
      width: 22px;
      height: 2px;
      background: var(--gray-700);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }

    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile Menu Panel */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      max-width: 85vw;
      height: 100vh;
      background: var(--white);
      z-index: 999;
      overflow-y: auto;
      transition: right 0.3s ease;
      box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      border-bottom: 1px solid var(--gray-200);
    }

    .mobile-menu-header img {
      height: 36px;
    }

    .mobile-menu-close {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-100);
      border-radius: 10px;
      font-size: 20px;
      color: var(--gray-600);
      cursor: pointer;
      transition: all 0.2s;
    }

    .mobile-menu-close:hover {
      background: var(--gray-200);
    }

    .mobile-nav {
      padding: 16px 0;
    }

    .mobile-nav-item {
      border-bottom: 1px solid var(--gray-100);
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-700);
      transition: all 0.2s;
    }

    .mobile-nav-link:hover {
      background: var(--gray-50);
      color: var(--primary);
    }

    .mobile-nav-link i {
      transition: transform 0.3s;
    }

    .mobile-nav-item.active .mobile-nav-link i {
      transform: rotate(180deg);
    }

    .mobile-submenu {
      display: none;
      background: var(--gray-50);
      padding: 8px 0;
    }

    .mobile-nav-item.active .mobile-submenu {
      display: block;
    }

    .mobile-submenu a {
      display: block;
      padding: 12px 20px 12px 40px;
      font-size: 14px;
      color: var(--gray-600);
      transition: all 0.2s;
    }

    .mobile-submenu a:hover {
      background: var(--gray-100);
      color: var(--primary);
    }

    .mobile-menu-footer {
      padding: 20px;
      border-top: 1px solid var(--gray-200);
      margin-top: auto;
    }

    .mobile-menu-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .mobile-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--gray-600);
    }

    .mobile-contact-item i {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-100);
      border-radius: 8px;
      color: var(--primary);
    }

    .mobile-menu-cta {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mobile-menu-cta .btn {
      width: 100%;
      justify-content: center;
      font-size: 14px;
    }

    /* ══════════════════════════════════════════════════════════════
       HERO
       ══════════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      font-size: 0; /* Oculta alt text si imagen no carga */
      color: transparent;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 74, 110, 0.85) 50%, rgba(47, 102, 144, 0.75) 100%);
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
    .particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 2s; }
    .particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; }
    .particle:nth-child(5) { left: 65%; top: 25%; animation-delay: 1.5s; }
    .particle:nth-child(6) { left: 80%; top: 55%; animation-delay: 2.5s; }
    .particle:nth-child(7) { left: 90%; top: 35%; animation-delay: 0.8s; }
    .particle:nth-child(8) { left: 75%; top: 80%; animation-delay: 1.8s; }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 60px 0;
    }

    .hero-text {
      color: var(--white);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
      animation: fadeInUp 0.8s ease;
    }

    .hero-badge-dot {
      width: 10px;
      height: 10px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .hero-title span {
      background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
    }

    .hero-desc {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 40px;
      line-height: 1.8;
      max-width: 500px;
      animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      margin-bottom: 56px;
      animation: fadeInUp 0.8s ease 0.6s backwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 32px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 14px;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn i {
      font-size: 18px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      color: var(--white);
      box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.1);
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.2);
      border-color: var(--white);
      transform: translateY(-4px);
    }

    .btn-whatsapp {
      background: linear-gradient(135deg, var(--whatsapp) 0%, #20bd5a 100%);
      color: var(--white);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    .btn-whatsapp:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      animation: fadeInUp 0.8s ease 0.8s backwards;
    }

    .hero-stat {
      text-align: left;
    }

    .hero-stat-value {
      font-size: 40px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
    }

    .hero-stat-value span {
      color: var(--accent-light);
    }

    .hero-stat-label {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
    }

    .hero-visual {
      position: relative;
      animation: fadeInRight 1s ease 0.4s backwards;
      min-height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-main {
      display: none;
    }

    .hero-image-main img {
      display: none;
    }

    .hero-person-circle {
      width: 420px;
      height: 420px;
      border-radius: 50%;
      overflow: hidden;
      border: 6px solid rgba(255,255,255,0.3);
      box-shadow: 0 25px 60px rgba(0,0,0,0.3);
      position: relative;
      z-index: 1;
    }

    .hero-person-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero-float-card {
      position: absolute;
      background: var(--white);
      border-radius: 20px;
      padding: 20px 24px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      animation: float 4s ease-in-out infinite;
    }

    .hero-float-card--1 {
      bottom: -20px;
      left: -60px;
      display: flex;
      align-items: center;
      gap: 16px;
      animation-delay: 0s;
      z-index: 2;
    }

    .hero-float-card--2 {
      top: -30px;
      right: 20px;
      text-align: center;
      animation-delay: 1s;
      z-index: 2;
    }

    .hero-float-card--3 {
      bottom: 160px;
      right: -60px;
      animation-delay: 2s;
      z-index: 2;
    }

    .float-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
    }

    .float-icon--purple {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    }

    .float-icon--blue {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    }

    .float-text strong {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-900);
    }

    .float-text span {
      font-size: 13px;
      color: var(--gray-500);
    }

    /* ══════════════════════════════════════════════════════════════
       TRUST BAR - BIGGER & BETTER
       ══════════════════════════════════════════════════════════════ */
    .trust-bar {
      background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
      padding: 60px 0;
      border-bottom: 1px solid var(--gray-200);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .trust-item {
      text-align: center;
      padding: 32px 20px;
      background: var(--white);
      border-radius: 20px;
      border: 1px solid var(--gray-200);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .trust-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border-color: var(--primary);
    }

    .trust-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, rgba(47, 102, 144, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      transition: all 0.4s;
    }

    .trust-item:hover .trust-icon {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      transform: scale(1.1) rotate(5deg);
    }

    .trust-item:hover .trust-icon i {
      color: var(--white);
    }

    .trust-icon i {
      color: var(--primary);
      transition: color 0.4s;
    }

    .trust-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
    }

    .trust-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════════════════════════
       CATEGORIES
       ══════════════════════════════════════════════════════════════ */
    .section {
      padding: 100px 0;
    }

    .section--gray {
      background: var(--gray-50);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: linear-gradient(135deg, rgba(47, 102, 144, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 800;
      color: var(--gray-900);
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--gray-500);
      max-width: 600px;
      margin: 0 auto;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .category-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

    .category-card:hover .category-img img {
      transform: scale(1.15);
    }

    .category-img {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .category-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.9) 100%);
    }

    .category-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px;
      color: var(--white);
    }

    .category-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 8px;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .category-badge--buy {
      background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
    }

    .category-badge--quote {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    }

    .category-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .category-count {
      font-size: 14px;
      opacity: 0.8;
    }

    .category-arrow {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s;
    }

    .category-card:hover .category-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* ══════════════════════════════════════════════════════════════
       PRODUCTS
       ══════════════════════════════════════════════════════════════ */
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }

    .products-tabs {
      display: flex;
      gap: 10px;
    }

    .products-tab {
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-500);
      background: var(--white);
      border: 2px solid var(--gray-200);
      border-radius: 12px;
      transition: all 0.3s;
    }

    .products-tab:hover,
    .products-tab.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      border-color: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .product-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--gray-200);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      border-color: transparent;
    }

    .product-image {
      position: relative;
      aspect-ratio: 1;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover .product-image img {
      transform: scale(1.1);
    }

    .product-badges {
      position: absolute;
      top: 16px;
      left: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .product-badge {
      padding: 7px 14px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .product-badge--buy {
      background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
      color: var(--white);
    }

    .product-badge--quote {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: var(--white);
    }

    .product-badge--promo {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      color: var(--white);
      animation: pulse 2s infinite;
    }

    .product-wishlist {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      background: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--gray-400);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s;
      cursor: pointer;
    }

    .product-wishlist:hover {
      transform: scale(1.15);
      color: #ef4444;
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    }

    .product-content {
      padding: 24px;
    }

    .product-brand {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .product-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 12px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .product-stars {
      color: #fbbf24;
      font-size: 14px;
      letter-spacing: 2px;
    }

    .product-rating-count {
      font-size: 13px;
      color: var(--gray-500);
    }

    .product-price {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 18px;
    }

    .product-price-current {
      font-size: 26px;
      font-weight: 800;
      color: var(--gray-900);
    }

    .product-price-old {
      font-size: 16px;
      color: var(--gray-400);
      text-decoration: line-through;
    }

    .product-price-quote {
      font-size: 16px;
      font-weight: 700;
      color: var(--accent);
    }

    .product-btn {
      width: 100%;
      padding: 16px 24px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 14px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
    }

    .product-btn--cart {
      background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
      color: var(--white);
    }

    .product-btn--cart:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    }

    .product-btn--quote {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: var(--white);
    }

    .product-btn--quote:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    }

    .view-all-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 60px auto 0;
      padding: 18px 48px;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      background: var(--white);
      border: 2px solid var(--primary);
      border-radius: 14px;
      transition: all 0.3s;
    }

    .view-all-btn:hover {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      border-color: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(47, 102, 144, 0.3);
    }

    /* ══════════════════════════════════════════════════════════════
       FINANCING BANNER - MORE PUNCH
       ══════════════════════════════════════════════════════════════ */
    .financing-banner {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }

    .financing-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    }

    .financing-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }

    .financing-bg::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }

    .financing-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .financing-text {
      color: var(--white);
    }

    .financing-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255,255,255,0.2);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .financing-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .financing-desc {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .financing-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }

    .financing-feature {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 24px;
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s;
    }

    .financing-feature:hover {
      background: rgba(255,255,255,0.2);
      transform: translateX(10px);
    }

    .financing-feature-icon {
      width: 56px;
      height: 56px;
      background: var(--white);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      flex-shrink: 0;
    }

    .financing-feature-text {
      font-size: 17px;
      font-weight: 600;
    }

    .financing-ctas {
      display: flex;
      gap: 16px;
    }

    .btn-white {
      background: var(--white);
      color: var(--accent);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

    .btn-white:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.5);
    }

    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
      transform: translateY(-4px);
    }

    .financing-visual {
      position: relative;
    }

    .financing-image {
      border-radius: 30px;
      overflow: hidden;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    .financing-image img {
      width: auto;
      height: 400px;
      object-fit: contain;
      filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    }

    .financing-float {
      position: absolute;
      bottom: -30px;
      left: -30px;
      background: var(--white);
      border-radius: 20px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      animation: float 4s ease-in-out infinite;
      z-index: 10;
    }

    .financing-float-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .financing-float strong {
      display: block;
      font-size: 20px;
      font-weight: 800;
      color: var(--gray-900);
    }

    .financing-float span {
      font-size: 14px;
      color: var(--gray-500);
    }

    /* ══════════════════════════════════════════════════════════════
       BRANDS
       ══════════════════════════════════════════════════════════════ */
    .brands-section {
      padding: 80px 0;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .brands-title {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 48px;
    }

    .brands-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .brand-item {
      padding: 16px 32px;
      background: var(--gray-50);
      border-radius: 12px;
      font-size: 22px;
      font-weight: 800;
      color: var(--gray-400);
      transition: all 0.3s;
    }

    .brand-item:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(47, 102, 144, 0.3);
    }

    /* ══════════════════════════════════════════════════════════════
       CTA SECTION
       ══════════════════════════════════════════════════════════════ */
    .cta-section {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
      background-size: 50px 50px;
    }

    .cta-content {
      text-align: center;
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-icon {
      font-size: 64px;
      margin-bottom: 24px;
      animation: bounce 2s infinite;
    }

    .cta-visual {
      margin-bottom: 40px;
    }

    .cta-icons-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .cta-icon-item {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s;
    }

    .cta-icon-item:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .cta-icon-main {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: var(--white);
      animation: float 3s ease-in-out infinite;
    }

    .cta-icon-main:hover {
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    }

    .cta-title {
      font-size: 52px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.2;
      letter-spacing: -1px;
    }

    .cta-desc {
      font-size: 20px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 48px;
      line-height: 1.7;
    }

    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* ══════════════════════════════════════════════════════════════
       FOOTER
       ══════════════════════════════════════════════════════════════ */
    .footer {
      background: var(--gray-900);
      color: var(--white);
      padding: 100px 0 40px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 80px;
    }

    .footer-brand {
      padding-right: 40px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .footer-logo img {
      height: 65px;
      filter: brightness(0) invert(1);
    }

    .footer-desc {
      font-size: 15px;
      color: var(--gray-400);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .footer-social {
      display: flex;
      gap: 14px;
    }

    .footer-social a {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: all 0.3s;
    }

    .footer-social a.social-facebook {
      background: var(--facebook);
    }

    .footer-social a.social-instagram {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    }

    .footer-social a.social-whatsapp {
      background: var(--whatsapp);
    }

    .footer-social a:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .footer-social a svg {
      width: 22px;
      height: 22px;
    }

    .footer-column h4 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 28px;
      color: var(--white);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 16px;
    }

    .footer-column a {
      font-size: 15px;
      color: var(--gray-400);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-column a:hover {
      color: var(--white);
      padding-left: 8px;
    }

    .footer-column a i {
      font-size: 12px;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .footer-column a:hover i {
      opacity: 1;
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-copyright {
      font-size: 14px;
      color: var(--gray-500);
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--gray-500);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-payment {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-payment span {
      font-size: 13px;
      color: var(--gray-500);
    }

    .footer-payment-icons {
      display: flex;
      gap: 8px;
    }

    .footer-payment-icons i {
      font-size: 28px;
      color: var(--gray-400);
    }

    /* ══════════════════════════════════════════════════════════════
       WHATSAPP FLOAT
       ══════════════════════════════════════════════════════════════ */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .whatsapp-tooltip {
      background: var(--gray-900);
      color: var(--white);
      padding: 14px 24px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    .whatsapp-btn {
      width: 68px;
      height: 68px;
      background: linear-gradient(135deg, var(--whatsapp) 0%, #20bd5a 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
      transition: all 0.3s;
      animation: bounce 2s infinite;
      color: var(--white);
    }

    .whatsapp-btn svg {
      width: 34px;
      height: 34px;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════════════════════════════ */
    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE - TABLET LANDSCAPE (max-width: 1200px)
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 1200px) {
      .container { padding: 0 20px; }
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-visual { display: block; margin-top: 30px; }
      .hero-stats { justify-content: center; }
      .hero-ctas { justify-content: center; }
      .hero-desc { margin: 0 auto 40px; max-width: 600px; }
      .hero-title { font-size: 48px; }
      .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .financing-content { grid-template-columns: 1fr; text-align: center; align-items: center; }
      .financing-visual { display: block; margin-top: 40px; }
      .financing-features { max-width: 600px; margin: 0 auto 40px; }
      .financing-ctas { justify-content: center; }
      .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .footer-content { grid-template-columns: repeat(3, 1fr); gap: 30px; }
      .mega-menu { width: 95vw; left: 2.5vw; }
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE - TABLET PORTRAIT (max-width: 992px)
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 992px) {
      .nav { display: none; }
      .mobile-menu-toggle { display: flex; }
      .hero-title { font-size: 42px; }
      .hero-desc { font-size: 18px; }
      .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .category-card { padding: 24px 16px; }
      .category-icon { width: 60px; height: 60px; font-size: 28px; }
      .category-name { font-size: 15px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .trust-item { padding: 28px 20px; }
      .trust-icon { width: 70px; height: 70px; font-size: 28px; }
      .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
      .search-box { max-width: 280px; }
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE - MOBILE LARGE (max-width: 768px)
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .container { padding: 0 16px; }
      /* Topbar */
      .topbar { padding: 10px 0; }
      .topbar-left { display: none; }
      .topbar-promo { font-size: 12px; padding: 6px 14px; }
      /* Header */
      .header { padding: 12px 0; }
      .header-content { gap: 12px; }
      .search-box { display: none; }
      .header-btn span { display: none; }
      .header-btn { padding: 10px; }
      .logo-img { height: 55px !important; 
    mix-blend-mode: normal;}
      /* Hero */
      .hero { min-height: auto; padding: 50px 0 60px; }
      .hero-title { font-size: 32px; line-height: 1.2; }
      .hero-desc { font-size: 16px; margin-bottom: 30px; }
      .hero-ctas { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
      .btn { width: 100%; max-width: 320px; justify-content: center; }
      .hero-stats { flex-direction: column; gap: 20px; margin-top: 40px; }
      .stat-item { padding: 16px 24px; }
      .stat-number { font-size: 28px; }
      .stat-label { font-size: 13px; }
      /* Sections */
      .section { padding: 50px 0; }
      .section-title { font-size: 26px; margin-bottom: 12px; }
      .section-desc { font-size: 15px; }
      /* Categories */
      .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .category-card { padding: 20px 12px; border-radius: 16px; }
      .category-icon { width: 50px; height: 50px; font-size: 22px; margin-bottom: 12px; }
      .category-name { font-size: 13px; }
      .category-count { font-size: 11px; }
      /* Products */
      .products-header { flex-direction: column; align-items: stretch; gap: 16px; }
      .product-tabs { justify-content: center; flex-wrap: wrap; }
      .product-tab { padding: 10px 16px; font-size: 13px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .product-card { border-radius: 16px; }
      .product-image { height: 140px; }
      .product-info { padding: 14px; }
      .product-title { font-size: 14px; -webkit-line-clamp: 2; }
      .product-price { font-size: 18px; }
      .product-actions { padding: 12px; gap: 8px; }
      .product-btn { padding: 10px 14px; font-size: 12px; }
      /* Financing */
      .financing-banner { padding: 50px 0; }
      .financing-title { font-size: 26px; }
      .financing-desc { font-size: 15px; }
      .financing-features { gap: 12px; }
      .financing-feature { padding: 14px 18px; font-size: 14px; }
      .financing-ctas { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
      .financing-ctas .btn { width: 100%; max-width: 320px; }
      /* Trust */
      .trust-grid { grid-template-columns: 1fr; gap: 16px; }
      .trust-item { padding: 24px 20px; flex-direction: row; text-align: left; gap: 20px; }
      .trust-icon { width: 60px; height: 60px; font-size: 24px; flex-shrink: 0; }
      .trust-title { font-size: 17px; }
      .trust-desc { font-size: 14px; }
      /* CTA Section */
      .cta-section { padding: 50px 0; }
      .cta-title { font-size: 26px; }
      .cta-desc { font-size: 15px; }
      .cta-btns { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
      .cta-btns .btn { width: 100%; max-width: 320px; }
      /* Footer */
      .footer { padding: 50px 0 20px; }
      .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
      .footer-brand { padding-right: 0; border-right: none; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .footer-logo img { margin: 0 auto; height: 45px !important; }
      .footer-social { justify-content: center; }
      .footer-col h4 { font-size: 16px; }
      .footer-links li { font-size: 14px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 20px; }
      /* WhatsApp Float */
      .whatsapp-float { bottom: 16px; right: 16px; }
      .whatsapp-tooltip { display: none; }
      .whatsapp-btn { width: 56px; height: 56px; }
      .whatsapp-btn svg { width: 28px; height: 28px; }
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE - MOBILE SMALL (max-width: 480px)
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 480px) {
      .container { padding: 0 12px; }
      /* Header */
      .header-content { gap: 8px; }
      .logo-img { height: 50px !important; 
    mix-blend-mode: normal;}
      .header-actions { gap: 4px; }
      .header-btn { padding: 8px; }
      .header-btn i { font-size: 18px; }
      /* Hero */
      .hero { padding: 40px 0 50px; }
      .hero-badge { font-size: 11px; padding: 6px 14px; }
      .hero-title { font-size: 26px; }
      .hero-desc { font-size: 15px; }
      .btn { padding: 14px 20px; font-size: 14px; }
      .stat-item { padding: 14px 20px; }
      .stat-number { font-size: 24px; }
      .stat-label { font-size: 12px; }
      /* Sections */
      .section { padding: 40px 0; }
      .section-title { font-size: 22px; }
      .section-desc { font-size: 14px; }
      /* Categories */
      .categories-grid { gap: 10px; }
      .category-card { padding: 16px 10px; }
      .category-icon { width: 44px; height: 44px; font-size: 20px; }
      .category-name { font-size: 12px; }
      .category-count { font-size: 10px; }
      /* Products */
      .products-grid { gap: 10px; }
      .product-image { height: 120px; }
      .product-badge { font-size: 10px; padding: 4px 8px; }
      .product-wishlist { width: 32px; height: 32px; }
      .product-info { padding: 12px; }
      .product-category { font-size: 10px; }
      .product-title { font-size: 13px; }
      .product-price { font-size: 16px; }
      .product-original { font-size: 12px; }
      .product-actions { padding: 10px; }
      .product-btn { padding: 8px 12px; font-size: 11px; }
      /* Trust - Stack vertically on very small screens */
      .trust-item { flex-direction: column; text-align: center; gap: 16px; }
      .trust-icon { margin: 0 auto; }
      /* Financing */
      .financing-banner { padding: 40px 0; }
      .financing-title { font-size: 22px; }
      .financing-feature { padding: 12px 14px; font-size: 13px; }
      /* CTA */
      .cta-section { padding: 40px 0; }
      .cta-title { font-size: 22px; }
      .cta-visual svg { transform: scale(0.8); }
      /* Footer */
      .footer { padding: 40px 0 16px; }
      .footer-logo img { height: 40px !important; }
      .footer-desc { font-size: 13px; }
      .footer-social a { width: 44px; height: 44px; }
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE - MOBILE EXTRA SMALL (max-width: 360px)
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 360px) {
      .container { padding: 0 10px; }
      .logo-img { height: 45px !important; 
    mix-blend-mode: normal;}
      .hero-title { font-size: 22px; }
      .hero-desc { font-size: 14px; }
      .section-title { font-size: 20px; }
      .categories-grid { gap: 8px; }
      .category-card { padding: 14px 8px; }
      .category-icon { width: 40px; height: 40px; font-size: 18px; }
      .category-name { font-size: 11px; }
      .products-grid { grid-template-columns: 1fr; gap: 16px; }
      .product-image { height: 180px; }
      .product-info { padding: 16px; }
      .product-title { font-size: 15px; }
      .product-price { font-size: 20px; }
      .financing-title { font-size: 20px; }
      .cta-title { font-size: 20px; }
    }

    /* ══════════════════════════════════════════════════════════════
       UTILITY - TOUCH DEVICES
       ══════════════════════════════════════════════════════════════ */
    @media (hover: none) and (pointer: coarse) {
      .category-card:hover { transform: none; }
      .product-card:hover { transform: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
      .trust-item:hover { transform: none; }
      .btn:hover { transform: none; }
      /* Better touch targets */
      .btn { min-height: 48px; }
      .product-btn { min-height: 44px; }
      .header-btn { min-width: 44px; min-height: 44px; }
      .footer-links a { padding: 8px 0; display: inline-block; }
    }

    /* ══════════════════════════════════════════════════════════════
       UTILITY - LANDSCAPE MOBILE
       ══════════════════════════════════════════════════════════════ */
    @media (max-width: 900px) and (orientation: landscape) {
      .hero { min-height: auto; padding: 30px 0 40px; }
      .hero-title { font-size: 28px; }
      .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
      .stat-item { flex: 0 1 auto; }
      .section { padding: 40px 0; }
      .categories-grid { grid-template-columns: repeat(3, 1fr); }
      .products-grid { grid-template-columns: repeat(3, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item { flex-direction: row; text-align: left; }
    }

    /* ══════════════════════════════════════════════════════════════
       UTILITY - PRINT STYLES
       ══════════════════════════════════════════════════════════════ */
    @media print {
      .topbar, .header, .whatsapp-float, .mobile-menu { display: none !important; }
      .hero { min-height: auto; padding: 20px 0; }
      .section { padding: 20px 0; }
      body { font-size: 12pt; }
      .btn { border: 1px solid #333 !important; }
    }

    /* ══════════════════════════════════════════════════════════════
       UTILITY - REDUCED MOTION
       ══════════════════════════════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
    }

    /* ══════════════════════════════════════════════════════════════
       UTILITY - HIGH CONTRAST
       ══════════════════════════════════════════════════════════════ */
    @media (prefers-contrast: high) {
      :root {
        --gray-500: #333;
        --gray-400: #444;
      }
      .btn { border: 2px solid currentColor; }
      .product-card, .category-card, .trust-item { border: 1px solid var(--gray-300); }
    }
    /* === Ajustes solicitados (Zoho / mobile) === */
    /* Oculta los badges de "Compra" / "Cotiza" en el menú */
    .nav-badge{ display:none !important; }

    /* Evita que se muestre el alt text si Zoho bloquea imágenes externas */
    .financing-image img,
    .category-card img,
    .product-card img,
    .mega-menu img{
      font-size:0;
      color:transparent;
      display:block;
    }

    /* En móvil, quitamos tarjetas flotantes para evitar duplicados/recortes */
    @media (max-width: 768px){
      .hero{ min-height: 70vh; }
      .hero-float-card,
      .financing-float{ display:none !important; }

      .financing-image img{ height: 280px; }

      /* Evita overflow raro por offsets negativos */
      .hero-visual{ margin-top: 24px; }
      .hero-person-circle {
        width: 200px;
        height: 200px;
      }
    }


    /* === Fix: evitar recuadro / icono de imagen rota (Zoho bloquea imágenes externas) === */
    .hero-bg-media{
      position:absolute; inset:0;
      background:
        linear-gradient(135deg, rgba(15,23,42,0.25) 0%, rgba(30,74,110,0.25) 50%, rgba(47,102,144,0.25) 100%),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 55%);
      /* Si subes una imagen a Zoho, descomenta y ajusta la ruta:
         background-image: linear-gradient(...), url('/images/hero-lab.jpg'); */
      background-size: cover;
      background-position: center;
    }
    .financing-bg-media{
      display: none;
    }

    /* Cambio de color del bloque morado (financiamiento) a azul Norlab */
    .financing-section{
      background: linear-gradient(135deg, #0b2a4a 0%, #1e4a6e 55%, #2f6690 100%) !important;
    }
    .financing-bg{
      background: linear-gradient(135deg, #0b2a4a 0%, #1e4a6e 55%, #2f6690 100%) !important;
    }

    .brands-grid{
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 18px !important;
    }
    .brand-card{
      min-width: 140px;
      text-align:center;
    }

    /* ══════════════════════════════════════════════════════════════
       NOSOTROS SECTION
       ══════════════════════════════════════════════════════════════ */
    .about-section {
      padding: 100px 0;
      background: var(--gray-50);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }
    .about-content h2 {
      font-size: 44px;
      font-weight: 800;
      color: var(--gray-900);
      margin-bottom: 24px;
    }
    .about-content p {
      color: var(--gray-600);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .about-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      border-radius: 12px;
      font-weight: 700;
      transition: all 0.3s;
    }
    .about-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(47, 102, 144, 0.3);
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .benefit-card {
      background: var(--white);
      padding: 28px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
      border: 1px solid var(--gray-100);
      transition: all 0.3s;
    }
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .benefit-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      margin-bottom: 18px;
    }
    .benefit-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
    }
    .benefit-desc {
      color: var(--gray-500);
      font-size: 14px;
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════════════════════
       CREDITO NORLAB SECTION
       ══════════════════════════════════════════════════════════════ */
    .credit-section {
      background: linear-gradient(135deg, #0b2a4a 0%, #1e4a6e 55%, #2f6690 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .credit-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }
    .credit-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .credit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .credit-image {
      display: flex;
      justify-content: center;
    }
    .credit-image img {
      max-width: 420px;
      animation: float 5s ease-in-out infinite;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    }
    .credit-content {
      color: white;
    }
    .credit-content h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .credit-content p {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 32px;
      line-height: 1.7;
    }
    .credit-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: white;
      color: var(--primary);
      border-radius: 50px;
      font-weight: 700;
      font-size: 17px;
      transition: all 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .credit-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .credit-btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    /* Brand logos */
    .brand-logo {
      height: 50px;
      opacity: 1;
      transition: all 0.4s;
      filter: contrast(1.2) brightness(0.85);
    }
    .brand-logo:hover {
      opacity: 1;
      filter: contrast(1.3) brightness(0.9);
      transform: scale(1.1);
    }
    .brand-logo img {
      max-height: 50px;
      max-width: 140px;
      object-fit: contain;
    }

    /* Responsive para nuevas secciones */
    @media (max-width: 992px) {
      .about-grid, .credit-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
      }
      .benefits-grid {
        max-width: 500px;
        margin: 0 auto;
      }
      .about-content h2, .credit-content h2 {
        font-size: 36px;
      }
    }
    @media (max-width: 768px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      .credit-image img {
        max-width: 300px;
      }
    }

  
    .financing-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
    .financing-stat{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.14);border-radius:16px;padding:28px 16px;text-align:center;transition:background 0.2s}
    .financing-stat:hover{background:rgba(255,255,255,0.13)}
    .financing-stat-number{font-family:"DM Sans",sans-serif;font-size:40px;font-weight:700;color:#4AB8C8;line-height:1;margin-bottom:8px}
    .financing-stat-label{font-size:13px;color:rgba(255,255,255,0.7);font-weight:400;line-height:1.4}
    .financing-trust{background:rgba(255,255,255,0.06);border-radius:12px;padding:14px 18px;text-align:center}
    .financing-trust p{font-size:13px;color:rgba(255,255,255,0.55);font-style:italic;margin:0}
    @media(max-width:480px){.financing-stat-number{font-size:28px}.financing-stat{padding:18px 12px}.financing-stats{gap:10px}}

    .financing-stat-number{color:#ffffff !important}
    .financing-cta-float{display:inline-flex;align-items:center;gap:10px;margin:0 auto 16px;padding:18px 48px;font-size:19px;font-weight:700;border-radius:14px;background:linear-gradient(135deg,#4AB8C8 0%,#2D7EA8 100%);color:#ffffff;text-decoration:none;box-shadow:0 6px 32px rgba(74,184,200,0.5),0 2px 8px rgba(0,0,0,0.2);transition:all 0.25s;font-family:"DM Sans",sans-serif;letter-spacing:0.02em;border:1px solid rgba(255,255,255,0.2)}
    .financing-cta-float:hover{transform:translateY(-3px);box-shadow:0 12px 40px rgba(74,184,200,0.65),0 4px 12px rgba(0,0,0,0.25)}

    @media(max-width:768px){
      .financing-content{display:flex;flex-direction:column}
      .financing-text{order:1}
      .financing-visual{order:2;margin-top:0}
      .financing-ctas{order:10;margin-top:20px;width:100%}
      .financing-ctas a{width:100%;justify-content:center;box-sizing:border-box}
      .financing-cta-float{width:100%;justify-content:center;box-sizing:border-box}
      .financing-stats{gap:10px}
      .financing-stat-number{font-size:28px}
      .financing-stat{padding:16px 10px}
      .financing-visual > div:first-child{text-align:center}
      .financing-visual > div:first-child img{margin:0 auto;max-width:280px}
    }
    @media(max-width:480px){
      .financing-title{font-size:24px !important}
      .financing-stat-number{font-size:24px}
      .financing-stat-label{font-size:12px}
    }

    .financing-content{align-items:center !important}
    .financing-text{display:flex;flex-direction:column;justify-content:center}
    .financing-visual{display:flex;flex-direction:column;justify-content:center}
    .financing-ctas a[href*="wa.me"]{
      display:inline-flex;align-items:center;gap:10px;
      padding:16px 32px;font-size:16px;font-weight:700;border-radius:12px;
      background:linear-gradient(135deg,rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.05) 100%);
      color:#fff;border:2px solid rgba(255,255,255,0.6);text-decoration:none;
      font-family:"DM Sans",sans-serif;
      box-shadow:0 4px 24px rgba(0,0,0,0.25),inset 0 1px 0 rgba(255,255,255,0.2);
      backdrop-filter:blur(8px);
      transition:all 0.25s;
      letter-spacing:0.02em
    }
    .financing-ctas a[href*="wa.me"]:hover{
      background:rgba(255,255,255,0.22);
      border-color:#fff;
      box-shadow:0 8px 32px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.3);
      transform:translateY(-2px)
    }

    /* ── Precio producto - más impacto ───────────────────────── */
    .product-price-current{font-size:26px;font-weight:800;color:#2D7EA8 !important}

    /* ── Product card - botón siempre al fondo ───────────────── */
    .product-card .product-info{display:flex;flex-direction:column;flex:1}
    .product-card{display:flex;flex-direction:column}
    .product-card .product-price{margin-top:auto}
    .product-card .add-to-cart{margin-top:8px}

    /* ── About section mobile - imagen al lado de stats ─────── */
    @media(max-width:768px){
      .about-grid{grid-template-columns:1fr !important;gap:30px !important}
      .about-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:start}
      .about-image-wrap{display:flex;justify-content:center}
      .about-image-wrap img, .about-image-wrap > div{width:160px !important;height:160px !important}
      .about-section{padding:50px 0 !important}
      .about-content h2{font-size:28px !important}
      .about-content p{font-size:15px !important}
    }
    @media(max-width:480px){
      .about-stats .stat-number{font-size:32px !important}
      .about-stats .stat-label{font-size:12px}
    }

    /* ── Botón hablar asesor en financing = estilo credit ────── */
    .financing-ctas a[href*="wa.me"]{
      display:inline-flex !important;align-items:center !important;gap:12px !important;
      padding:18px 36px !important;font-size:16px !important;font-weight:700 !important;
      border-radius:50px !important;
      background:#ffffff !important;color:#2D7EA8 !important;
      border:none !important;text-decoration:none !important;
      font-family:"DM Sans",sans-serif !important;
      box-shadow:0 4px 20px rgba(0,0,0,0.15) !important;
      transition:all 0.25s !important
    }
    .financing-ctas a[href*="wa.me"]:hover{
      background:#f0f8ff !important;
      box-shadow:0 8px 30px rgba(0,0,0,0.2) !important;
      transform:translateY(-2px) !important
    }

    /* ── Product cards mobile - alineación ──────────────────── */
    @media(max-width:600px){
      .product-card .product-info{padding:16px !important}
      .product-card .product-name{font-size:14px !important;min-height:40px}
      .product-card .product-desc{font-size:12px !important;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
      .product-card .product-price-current{font-size:20px !important}
    }

    /* ── Hero mobile: imagen al lado de stats ───────────────── */
    @media(max-width:768px){
      .hero-content{display:flex;flex-direction:column}
      .hero-text{order:1}
      .hero-visual{order:2;margin-top:24px}
      .hero-stats{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-top:16px}
      .hero-stat{text-align:center}
      .hero-stat-number{font-size:24px !important}
      .hero-stat-label{font-size:11px !important}
      .hero-image-wrap, .hero-image{
        display:flex;justify-content:center;
        max-height:280px;overflow:hidden
      }
      .hero-image img{max-height:280px;width:auto;object-fit:contain}
    }
    @media(max-width:480px){
      .hero-stats{gap:6px}
      .hero-stat-number{font-size:20px !important}
    }

    /* Alinear botones productos - descripcion fija */
    .product-desc{
      display:-webkit-box;
      -webkit-line-clamp:3;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height:60px;
    }
    .product-info{display:flex;flex-direction:column;height:100%}
    .product-price{margin-top:auto !important}
    .add-to-cart{margin-top:8px !important}
    /* Imagen producto placeholder */
    .product-image{background:#f0f4f8}
    .product-image img[src=""]{display:none}

    @media(max-width:768px){
      .hero{padding-bottom:40px !important;min-height:unset !important}
      .hero-visual{margin-top:0 !important;padding-bottom:0 !important}
      .hero-image-wrap{margin-bottom:0 !important}
      .hero-image{max-height:260px !important;overflow:hidden}
      .hero-image img{max-height:260px !important;object-fit:cover;object-position:top}
    }


