    /* ═══════ VARIABLES ═══════ */
    :root {
      --bg:       #0a0a0c;
      --bg2:      #111116;
      --bg3:      #18181e;
      --surface:  #1e1e26;
      --surface2: #26262f;
      --border:   #2c2c38;
      --border2:  #38384a;
      --amber:    #f0a200;
      --amber2:   #c8840a;
      --orange:   #e0581a;
      --text:     #edebe4;
      --text2:    #9e9b92;
      --text3:    #58574f;
      --green:    #4caf7d;
      --radius:   4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── TYPOGRAPHY ─── */
    .label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--amber);
    }
    h1, h2, h3 {
      font-family: 'Barlow Condensed', sans-serif;
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: 1.05;
    }
    h1 { font-size: clamp(42px, 8vw, 88px); font-weight: 800; }
    h2 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; }
    h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; }
    p { color: var(--text2); line-height: 1.7; }
    a { color: var(--amber); text-decoration: none; }
    a:hover { color: var(--amber2); }
    img { display: block; max-width: 100%; }

    /* ─── GRID / TEXTURE ─── */
    .metal-grid {
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 14px 30px;
      border: none;
      cursor: pointer;
      transition: all .18s ease;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--amber);
      color: #0a0a0c;
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    }
    .btn-primary:hover { background: #f8b820; color: #0a0a0c; transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border2);
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    }
    .btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
    .btn-sm { padding: 10px 22px; font-size: 13px; }
    .btn-whatsapp {
      background: #25D366;
      color: #fff;
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    }
    .btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }

    /* ─── HEADER ─── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10,10,12,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: 64px;
      display: flex;
      align-items: center;
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
    .logo-icon img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
    .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--text);
      line-height: 1.1;
    }
    .logo-text span { color: var(--amber); }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text2);
      padding: 8px 12px;
      border-radius: var(--radius);
      transition: color .15s;
      text-decoration: none;
    }
    nav a:hover { color: var(--amber); }
    .nav-cta {
      margin-left: 8px;
      background: var(--amber);
      color: #0a0a0c !important;
      padding: 8px 18px;
      clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
    }
    .nav-cta:hover { background: #f8b820; color: #0a0a0c !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .2s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 16px 24px;
      z-index: 99;
    }
    .mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }
    .mobile-nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text2);
      padding: 12px 8px;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--amber); }

    /* ─── HERO ─── */
    #inicio {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 64px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('Dobladora_estandar_002.webp');
      background-size: cover;
      background-position: center 30%;
      filter: brightness(.28) saturate(.6);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(10,10,12,.96) 45%, rgba(10,10,12,.6) 100%);
    }
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(240,162,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240,162,0,.04) 1px, transparent 1px);
      background-size: 56px 56px;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 24px;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,162,0,.12);
      border: 1px solid rgba(240,162,0,.3);
      border-radius: 2px;
      padding: 6px 14px;
      margin-bottom: 24px;
    }
    .hero-badge .dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero-title { color: var(--text); margin-bottom: 12px; }
    .hero-title em { color: var(--amber); font-style: normal; }
    .hero-subtitle {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(18px, 3vw, 28px);
      font-weight: 600;
      color: var(--text2);
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-desc { max-width: 560px; font-size: 16px; color: var(--text2); margin-bottom: 36px; }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

    /* Hero price pills */
    .hero-prices {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }
    .hero-price-pill {
      background: rgba(240,162,0,.08);
      border: 1px solid rgba(240,162,0,.25);
      border-radius: 2px;
      padding: 8px 16px;
    }
    .hero-price-pill .pill-label {
      font-size: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 2px;
    }
    .hero-price-pill .pill-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--amber);
      line-height: 1;
    }
    .hero-price-pill .pill-since {
      font-size: 10px;
      color: var(--text3);
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      border: 1px solid var(--border2);
      border-radius: var(--radius);
      overflow: hidden;
      max-width: 640px;
    }
    .hero-stat {
      flex: 1;
      min-width: 130px;
      padding: 16px 20px;
      border-right: 1px solid var(--border2);
      background: rgba(255,255,255,.03);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: var(--amber);
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-stat-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; }

    /* ─── CONTAINER ─── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    section { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .section-head .label { margin-bottom: 12px; }
    .section-head h2 { margin-bottom: 16px; }
    .section-head p { max-width: 560px; }

    /* ─── PRODUCT OVERVIEW CARDS ─── */
    #productos { background: var(--bg2); }
    .product-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .product-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .2s, transform .2s;
    }
    .product-card:hover { border-color: var(--amber); transform: translateY(-3px); }
    .product-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      filter: brightness(.88) saturate(.85);
      transition: filter .3s;
    }
    .product-card:hover img { filter: brightness(1) saturate(1); }
    .guillotina-card img { height: auto; max-height: 420px; object-fit: contain; background: var(--bg); }
    .card-accent { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--amber); }
    .card-body { padding: 24px 24px 28px; }
    .card-tag {
      font-size: 11px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 8px;
    }
    .card-body h3 { margin-bottom: 10px; }
    .card-body p { font-size: 14px; margin-bottom: 12px; }
    .card-price-tag {
      display: inline-flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 16px;
    }
    .card-price-from { font-size: 12px; color: var(--text3); font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .06em; }
    .card-price-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--amber);
      line-height: 1;
    }
    .card-price-iva { font-size: 11px; color: var(--text3); }
    .card-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .spec-pill {
      font-size: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      letter-spacing: .04em;
      padding: 4px 12px;
      background: var(--bg);
      border: 1px solid var(--border2);
      border-radius: 2px;
      color: var(--text2);
      text-transform: uppercase;
    }

    /* ─── PRODUCT DETAIL SECTIONS ─── */
    .product-section { background: var(--bg); }
    .product-section.alt { background: var(--bg2); }
    .product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .product-layout.reverse { direction: rtl; }
    .product-layout.reverse > * { direction: ltr; }

    .feature-list { list-style: none; margin: 24px 0 28px; }
    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      color: var(--text2);
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li::before { content: '▸'; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

    /* Specs table */
    .specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14px; }
    .specs-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--amber);
      background: var(--surface2);
      padding: 10px 14px;
      text-align: left;
      border-bottom: 2px solid var(--amber);
    }
    .specs-table td {
      padding: 9px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
    }
    .specs-table tr:hover td { background: rgba(240,162,0,.04); }
    .specs-table td:first-child { color: var(--text); font-weight: 600; }
    .tag-reforzada {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 2px 6px;
      background: rgba(240,162,0,.15);
      color: var(--amber);
      border-radius: 2px;
      margin-left: 6px;
    }

    /* ═══ PRICE TABLE ═══ */
    .price-section {
      margin-top: 48px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-top: 3px solid var(--amber);
      border-radius: var(--radius);
      padding: 32px;
    }
    .price-section-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }
    .price-iva-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(76,175,125,.12);
      border: 1px solid rgba(76,175,125,.3);
      border-radius: 2px;
      padding: 5px 12px;
      font-size: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green);
    }
    .price-iva-badge::before { content: '✓'; }

    .price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .price-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--text3);
      background: var(--surface2);
      padding: 10px 14px;
      text-align: left;
      border-bottom: 1px solid var(--border2);
    }
    .price-table th.price-col { text-align: right; color: var(--amber); }
    .price-table td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--text2);
      vertical-align: middle;
    }
    .price-table tr:hover td { background: rgba(240,162,0,.04); }
    .price-table td:first-child { color: var(--text); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; }
    .price-table .price-val {
      text-align: right;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--amber);
      white-space: nowrap;
    }
    .price-table .price-val.na { color: var(--text3); font-size: 14px; font-weight: 400; }
    .price-table tr.featured td { background: rgba(240,162,0,.06); }
    .price-table tr.featured .price-val { color: #f8b820; }
    .price-note {
      margin-top: 12px;
      font-size: 12px;
      color: var(--text3);
    }
    .price-note a { color: var(--text3); }
    .price-note a:hover { color: var(--amber); }

    /* Video embed */
    .video-wrap {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .video-wrap.facade { cursor: pointer; }
    .video-wrap.facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .video-wrap.facade .play-btn {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 68px; height: 48px; background: rgba(10,10,12,.75); border: 2px solid var(--amber);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      transition: background .15s, transform .15s;
    }
    .video-wrap.facade:hover .play-btn { background: var(--amber); transform: translate(-50%, -50%) scale(1.08); }
    .video-wrap.facade .play-btn svg { width: 22px; height: 22px; fill: var(--text); }
    .video-wrap.facade:hover .play-btn svg { fill: #0a0a0c; }
    .video-caption { font-size: 13px; color: var(--text3); text-align: center; margin-top: 10px; }

    /* Dados table */
    .dados-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 20px; }
    .dados-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--amber);
      background: var(--surface2);
      padding: 10px 14px;
      text-align: left;
      border-bottom: 2px solid var(--amber);
    }
    .dados-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text2); }
    .dados-table tr:hover td { background: rgba(240,162,0,.04); }
    .dados-table td:first-child { color: var(--text); font-weight: 600; }

    /* Divider */
    .divider-line {
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--orange), transparent);
    }

    /* ─── APPLICATIONS ─── */
    #aplicaciones { background: var(--bg3); }
    .apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .app-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      transition: border-color .2s, transform .2s;
    }
    .app-card:hover { border-color: var(--amber); transform: translateY(-2px); }
    .app-icon {
      width: 44px;
      height: 44px;
      background: rgba(240,162,0,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
      margin-bottom: 14px;
    }
    .app-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; }
    .app-card h3 { font-size: 18px; margin-bottom: 8px; }
    .app-card p { font-size: 13px; }

    /* ═══ CAROUSEL GALLERY ═══ */
    #galeria { background: var(--bg2); }
    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      user-select: none;
    }
    .carousel-track {
      display: flex;
      transition: transform .45s cubic-bezier(.25,.46,.45,.94);
      will-change: transform;
    }
    .carousel-slide {
      flex-shrink: 0;
      width: calc(100% / 3);
      padding: 0 6px;
    }
    .carousel-slide img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      filter: saturate(.85) brightness(.88);
      transition: filter .3s;
      pointer-events: none;
    }
    .carousel-slide:hover img { filter: saturate(1) brightness(1); }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: rgba(10,10,12,.85);
      border: 1px solid var(--border2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background .2s, border-color .2s;
      backdrop-filter: blur(4px);
    }
    .carousel-btn:hover { background: var(--amber); border-color: var(--amber); }
    .carousel-btn:hover svg { stroke: #0a0a0c; }
    .carousel-btn svg { width: 20px; height: 20px; stroke: var(--text); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border2);
      cursor: pointer;
      transition: background .2s, transform .2s;
      border: none;
      padding: 0;
    }
    .carousel-dot.active { background: var(--amber); transform: scale(1.25); }
    .carousel-caption {
      text-align: center;
      margin-top: 14px;
      font-size: 13px;
      color: var(--text3);
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* ─── COVERAGE ─── */
    #cobertura { background: var(--bg); }
    .coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .coverage-points { list-style: none; margin-top: 20px; }
    .coverage-points li {
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 8px 0;
      font-size: 15px;
      color: var(--text2);
      border-bottom: 1px solid var(--border);
    }
    .coverage-points li:last-child { border-bottom: none; }
    .coverage-points li::before { content: '✓'; color: var(--amber); font-weight: 700; }
    .coverage-visual {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 32px;
      text-align: center;
    }
    .coverage-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 80px;
      font-weight: 800;
      color: var(--amber);
      line-height: 1;
      margin-bottom: 4px;
    }
    .coverage-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text2);
    }

    /* ─── FAQ ─── */
    #faq { background: var(--bg3); }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 20px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
      color: var(--text); text-transform: none; letter-spacing: 0;
    }
    .faq-question .faq-icon { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; transition: transform .2s; }
    .faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
    .faq-item.open .faq-answer { max-height: 240px; }
    .faq-answer p { padding: 0 4px 20px; font-size: 15px; }

    /* ─── CONTACT ─── */
    #contacto { background: var(--bg2); }
    .contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
    .contact-info h3 { margin-bottom: 12px; }
    .contact-info p { margin-bottom: 24px; }
    .contact-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
    .contact-item:last-child { border-bottom: none; }
    .contact-item-icon {
      width: 38px; height: 38px;
      flex-shrink: 0;
      background: rgba(240,162,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
    }
    .contact-item-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 2; }
    .contact-item-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
    .contact-item-value { font-size: 15px; color: var(--text); }
    .contact-item-value a { color: var(--text); }
    .contact-item-value a:hover { color: var(--amber); }

    .form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
    .form-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 24px;
      border-left: 3px solid var(--amber);
      padding-left: 12px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text2);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border2);
      border-radius: var(--radius);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      padding: 11px 14px;
      outline: none;
      transition: border-color .15s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--amber); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9b92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }
    .form-honey { display: none; }
    #form-status { display: none; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-top: 14px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
    #form-status.success { display: block; background: rgba(80,160,60,.15); border: 1px solid rgba(80,160,60,.4); color: #7dd870; }
    #form-status.error { display: block; background: rgba(220,60,40,.15); border: 1px solid rgba(220,60,40,.4); color: #ff8070; }

    /* ─── FOOTER ─── */
    footer { background: #080809; border-top: 1px solid var(--border); padding: 48px 0 28px; }
    .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
    .footer-brand p { font-size: 14px; margin-top: 14px; max-width: 280px; }
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 14px;
    }
    .footer-links { list-style: none; }
    .footer-links li { padding: 5px 0; }
    .footer-links a { font-size: 14px; color: var(--text2); text-decoration: none; }
    .footer-links a:hover { color: var(--text); }
    .footer-contact-item { font-size: 14px; color: var(--text2); margin-bottom: 8px; }
    .footer-contact-item a { color: var(--text2); }
    .footer-contact-item a:hover { color: var(--amber); }
    .social-links { display: flex; gap: 10px; margin-top: 16px; }
    .social-link {
      width: 36px; height: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .15s, background .15s;
    }
    .social-link:hover { border-color: var(--amber); background: rgba(240,162,0,.1); }
    .social-link svg { width: 16px; height: 16px; fill: var(--text2); }
    .social-link:hover svg { fill: var(--amber); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
    .footer-bottom p { font-size: 13px; color: var(--text3); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 13px; color: var(--text3); }
    .footer-bottom-links a:hover { color: var(--text2); }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 200;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .2s;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
    .whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
    .whatsapp-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.5); animation: pulse 2s ease-out infinite; }
    @keyframes pulse { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.5);opacity:0} }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 960px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .product-cards { grid-template-columns: 1fr; }
      .product-layout { grid-template-columns: 1fr; }
      .product-layout.reverse { direction: ltr; }
      .coverage-inner { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .carousel-slide { width: calc(100% / 2); }
    }
    @media (max-width: 600px) {
      section { padding: 56px 0; }
      h2 { font-size: 30px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; }
      .hero-stat { border-right: none; border-bottom: 1px solid var(--border2); }
      .hero-stat:last-child { border-bottom: none; }
      .carousel-slide { width: 100%; }
      .price-section { padding: 20px 16px; }
      .price-table td, .price-table th { padding: 8px 10px; }
      .price-table td:first-child { font-size: 14px; }
      .price-table .price-val { font-size: 16px; }
      .tables-row { grid-template-columns: 1fr !important; }
      .guillotina-gallery { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 440px) {
      .hero-prices { gap: 6px; }
      .hero-price-pill { padding: 6px 10px; }
      .hero-price-pill .pill-price { font-size: 16px; }
    }
