﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green: #16a34a;
      --green-light: #22c55e;
      --green-dark: #15803d;
      --green-pale: #dcfce7;
      --orange: #f97316;
      --yellow: #eab308;
      --bg: #ffffff;
      --bg2: #f0fdf4;
      --bg3: #f8fafc;
      --surface: #ffffff;
      --border: rgba(0,0,0,0.08);
      --border-green: rgba(22,163,74,0.2);
      --text: #111827;
      --muted: #6b7280;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
      --shadow-green: 0 8px 32px rgba(22,163,74,0.25);
      --radius: 18px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f1f5f9; }
    ::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

    /* ═══════════════════════════════════
       NAV
    ═══════════════════════════════════ */
    nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 999;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 2.5rem);
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: 1px solid transparent;
      transition: background .4s, box-shadow .4s, border-color .4s;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .55rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-pot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      animation: sway 4s ease-in-out infinite;
      color: var(--green);
    }
    .logo-pot svg { width: 1.7rem; height: 1.7rem; }
    @keyframes sway { 0%,100%{transform:rotate(-6deg)} 50%{transform:rotate(6deg)} }
    .logo-name {
      font-size: .95rem;
      font-weight: 800;
      color: var(--green);
      line-height: 1.15;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    nav:not(.scrolled) .logo-name { color: #fff; }
    nav:not(.scrolled) .logo-pot { color: #fff; }
    nav:not(.scrolled) .logo-name small { color: rgba(255,255,255,.65); }
    .logo-name small {
      display: block;
      color: var(--muted);
      font-weight: 500;
      font-size: .62rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-menu a {
      color: var(--muted);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 600;
      letter-spacing: .02em;
      transition: color .2s;
      position: relative;
    }
    nav:not(.scrolled) .nav-menu a { color: rgba(255,255,255,.85); }
    nav:not(.scrolled) .nav-menu a:hover { color: #fff; }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--green);
      transition: width .25s;
      border-radius: 2px;
    }
    .nav-menu a:hover { color: var(--green); }
    .nav-menu a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--green);
      color: #fff;
      padding: .5rem 1.25rem;
      border-radius: 50px;
      font-size: .875rem;
      font-weight: 700;
      text-decoration: none;
      transition: background .2s, transform .2s, box-shadow .2s;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(22,163,74,0.35);
    }
    .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px) scale(1.03); box-shadow: 0 6px 20px rgba(22,163,74,0.45); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      border-radius: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: background .3s, transform .3s, opacity .3s;
    }
    nav.scrolled .hamburger span { background: var(--text); }
    .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); }

    /* ═══════════════════════════════════
       HERO
    ═══════════════════════════════════ */
    #inicio {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 0 clamp(1rem, 5vw, 3rem);
      background: #000;
    }

    #hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 1;
      pointer-events: none;
      transition: opacity 1s ease;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.75) 100%);
    }

    /* decorative blobs — solo fuera del hero */
    .blob { display: none; }

    /* animated dots pattern */
    #inicio::before { display: none; }

    .hero-inner {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.3);
      color: #fff;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .38rem 1.1rem;
      border-radius: 50px;
      margin-bottom: 1.4rem;
      animation: fadeDown .8s ease both;
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
      backdrop-filter: blur(8px);
    }
    .hero-badge svg { width: .9rem; height: .9rem; flex-shrink: 0; }

    .hero-title {
      font-size: clamp(2.6rem, 7vw, 5.2rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -.03em;
      color: #fff;
      animation: fadeUp .9s .15s ease both;
    }
    .hero-title .word-color {
      background: linear-gradient(135deg, var(--green) 0%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      margin-top: 1.2rem;
      font-size: clamp(.95rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.78);
      line-height: 1.7;
      animation: fadeUp .9s .3s ease both;
    }

    .hero-actions {
      margin-top: 2.2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp .9s .45s ease both;
    }

    .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.9rem; border-radius: 50px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: transform .25s, box-shadow .25s, background .2s; }
    .btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
    .btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(22,163,74,0.35); }
    .btn-green:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(22,163,74,0.45); }
    .btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
    .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    .hero-scroll {
      position: absolute;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,.7);
      font-size: .875rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      animation: bounce 2.5s ease-in-out infinite;
    }
    .hero-scroll svg { width: 20px; opacity: .55; color: #fff; }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

    #hero-particles {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    /* ═══════════════════════════════════
       STATS
    ═══════════════════════════════════ */
    @keyframes statsGradient {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    #stats {
      background: linear-gradient(120deg, #15803d 0%, #22c55e 25%, #16a34a 50%, #06b6d4 75%, #16a34a 100%);
      background-size: 300% 300%;
      animation: statsGradient 6s ease infinite;
      padding: 3.5rem clamp(1rem,4vw,2.5rem);
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .stats-row {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .stat-val {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -.03em;
    }
    .stat-lbl {
      margin-top: .35rem;
      font-size: .875rem;
      font-weight: 500;
      color: rgba(255,255,255,.8);
    }

    /* ═══════════════════════════════════
       SECTION COMMON
    ═══════════════════════════════════ */
    .section { padding: 6rem clamp(1rem,4vw,2.5rem); }
    .section-inner { max-width: 1140px; margin: 0 auto; }

    .chip {
      display: inline-block;
      background: rgba(22,163,74,.1);
      border: 1.5px solid rgba(22,163,74,.25);
      color: var(--green);
      font-size: .875rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 50px;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: -.03em;
      line-height: 1.1;
      color: var(--text);
    }
    @keyframes gradientShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .section-title .accent {
      background: linear-gradient(120deg, #16a34a 0%, #22c55e 30%, #06b6d4 55%, #22c55e 75%, #16a34a 100%);
      background-size: 250% 250%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: gradientShift 4s ease infinite;
      display: inline-block;
    }
    .section-desc {
      margin-top: .8rem;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 560px;
    }
    .center { text-align: center; }
    .center .section-desc { margin-inline: auto; }

    /* ═══════════════════════════════════
       PRODUCTOS
    ═══════════════════════════════════ */
    #productos { background: var(--bg); }

    .products-grid {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .product-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s, border-color .3s;
      cursor: pointer;
      box-shadow: var(--shadow);
    }
    .product-card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow: 0 28px 60px rgba(22,163,74,0.15), 0 8px 20px rgba(0,0,0,0.08);
      border-color: rgba(22,163,74,0.4);
    }
    .product-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    .product-body { padding: 1.4rem; }
    .product-size {
      font-size: .875rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: .35rem;
    }
    .product-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
    .product-text { font-size: .875rem; color: var(--muted); line-height: 1.55; margin-top: .4rem; }
    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }
    .products-info {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .products-info-pills {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      justify-content: center;
    }
    .info-pill {
      background: var(--bg2);
      border: 1.5px solid var(--border-green);
      border-radius: 50px;
      padding: .5rem 1.25rem;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: .45rem;
    }
    .info-pill svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
    .products-cta {
      font-size: 1.1rem !important;
      padding: .9rem 3rem !important;
    }

    /* ═══════════════════════════════════
       USOS
    ═══════════════════════════════════ */
    #usos { background: var(--bg3); }

    .usos-grid {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.2rem;
    }
    .uso-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s, border-color .3s;
      box-shadow: var(--shadow);
    }
    .uso-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.3); }
    .uso-icon { flex-shrink: 0; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; background: var(--green-pale); border-radius: 12px; color: var(--green); transition: background .2s; }
    .uso-card:hover .uso-icon { background: var(--green); color: #fff; }
    .uso-icon svg { width: 1.4rem; height: 1.4rem; }
    .uso-title { font-size: .95rem; font-weight: 700; color: var(--text); }
    .uso-text { font-size: .875rem; color: var(--muted); margin-top: .3rem; line-height: 1.55; }

    /* ═══════════════════════════════════
       COLORES
    ═══════════════════════════════════ */
    #colores { background: var(--bg); }

    .colors-gallery {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }
    .color-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 3/4;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s;
    }
    .color-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,0.15); }
    .color-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s;
    }
    .color-card:hover img { transform: scale(1.07); }
    .color-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
      display: flex;
      align-items: flex-end;
      padding: .9rem;
    }
    .color-name {
      font-size: .875rem;
      font-weight: 700;
      color: #fff;
    }

    .colors-dots {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: 2.5rem;
    }
    .dot-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      cursor: pointer;
    }
    .dot {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 3px solid rgba(0,0,0,.08);
      box-shadow: 0 4px 12px rgba(0,0,0,.15);
      transition: transform .25s cubic-bezier(.22,.68,0,1.4), box-shadow .25s;
    }
    .dot:hover { transform: scale(1.3) translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
    .dot-label { font-size: .875rem; color: var(--muted); font-weight: 500; }

    .colors-note {
      text-align: center;
      margin-top: 2rem;
      font-size: .9rem;
      color: var(--muted);
    }
    .colors-note a { color: var(--green); text-decoration: none; font-weight: 600; }
    .colors-note a:hover { text-decoration: underline; }

    /* ═══════════════════════════════════
       GALERÍA VIDEOS
    ═══════════════════════════════════ */
    #galeria { background: var(--bg); }

    .gallery-grid {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1rem;
    }
    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 9/16;
      cursor: pointer;
      background: #e8f5e9;
      box-shadow: var(--shadow);
      transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s;
    }
    .gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.14); }
    .gallery-item video, .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }
    .gallery-item:hover video, .gallery-item:hover img { transform: scale(1.05); }
    .gallery-hover {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s;
    }
    .gallery-item:hover .gallery-hover { opacity: 1; }
    .play-btn {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      border: 2px solid rgba(255,255,255,.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      backdrop-filter: blur(6px);
    }
    .play-btn svg { width: 1.4rem; height: 1.4rem; }

    /* ═══════════════════════════════════
       LIGHTBOX
    ═══════════════════════════════════ */
    #lb {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,.95);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #lb.open { display: flex; }
    #lb-content video, #lb-content img {
      max-width: min(90vw, 600px);
      max-height: 90svh;
      border-radius: 14px;
      object-fit: contain;
    }
    #lb-close {
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      background: rgba(255,255,255,.1);
      border: none;
      color: #fff;
      width: 42px; height: 42px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    #lb-close:hover { background: rgba(255,255,255,.22); }

    /* ═══════════════════════════════════
       MAYORISTA
    ═══════════════════════════════════ */
    #mayorista { background: var(--bg2); }

    .mayor-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .mayor-media { position: relative; }
    .mayor-media img {
      width: 100%;
      border-radius: var(--radius);
      object-fit: cover;
      max-height: 520px;
      display: block;
      box-shadow: var(--shadow-lg);
    }
    .mayor-badge {
      position: absolute;
      bottom: -1rem; right: -1rem;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      font-size: .875rem;
      padding: .9rem 1.1rem;
      border-radius: 14px;
      line-height: 1.25;
      text-align: center;
      box-shadow: 0 10px 30px rgba(249,115,22,.4);
    }
    .mayor-badge svg { width: 1.2rem; height: 1.2rem; vertical-align: middle; margin-bottom: .1rem; }
    .mayor-feats {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .mayor-feat {
      background: var(--bg2);
      border: 1.5px solid var(--border-green);
      border-radius: 14px;
      padding: 1.1rem;
      transition: border-color .3s, box-shadow .3s, transform .3s;
    }
    .mayor-feat:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(22,163,74,0.12); transform: translateY(-3px); }
    .mayor-feat-emoji { margin-bottom: .4rem; color: var(--green); }
    .mayor-feat-emoji svg { width: 1.5rem; height: 1.5rem; }
    .mayor-feat-title { font-size: .88rem; font-weight: 700; color: var(--text); }
    .mayor-feat-text { font-size: .875rem; color: var(--muted); margin-top: .2rem; line-height: 1.5; }

    /* ═══════════════════════════════════
       CONTACTO
    ═══════════════════════════════════ */
    #contacto { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); }

    .contact-box {
      max-width: 620px;
      margin: 3rem auto 0;
      background: var(--surface);
      border: 1.5px solid var(--border-green);
      border-radius: 28px;
      padding: 3rem 2.5rem;
      text-align: center;
      box-shadow: 0 20px 60px rgba(22,163,74,0.1);
    }
    .contact-emoji { margin-bottom: 1rem; display: flex; justify-content: center; color: var(--green); }
    .contact-emoji svg { width: 3.5rem; height: 3.5rem; }
    .contact-box p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
    .contact-actions {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-wa {
      background: #25d366;
      color: #fff;
      padding: .85rem 1.8rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .95rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .2s, transform .2s, box-shadow .2s;
      animation: pulse-wa 2.5s ease-in-out infinite;
    }
    @keyframes pulse-wa {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
      50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    }
    .btn-wa:hover { background: #1aad53; transform: translateY(-2px); animation: none; }
    .btn-wa svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
    .btn-email {
      background: transparent;
      border: 2px solid var(--border);
      color: var(--muted);
      padding: .85rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: border-color .2s, color .2s;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }
    .btn-email:hover { border-color: var(--green); color: var(--green); }
    .btn-email svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
    .wa-float svg { width: 1.7rem; height: 1.7rem; }

    /* ═══════════════════════════════════
       FLOAT WA
    ═══════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 800;
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(37,211,102,.5);
      animation: float-wa 3s ease-in-out infinite;
      transition: transform .2s;
    }
    @keyframes float-wa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    .wa-float:hover { transform: scale(1.12); animation: none; }

    /* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */
    footer {
      background: var(--text);
      border-top: none;
      padding: 2.5rem clamp(1rem,4vw,2.5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      text-align: center;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      text-decoration: none;
    }
    .footer-brand span { display: inline-flex; align-items: center; color: var(--green-light); }
    .footer-brand span svg { width: 1.4rem; height: 1.4rem; }
    .footer-brand strong { font-size: .9rem; font-weight: 700; color: var(--green-light); }
    .footer-sub { font-size: .875rem; color: rgba(255,255,255,.5); }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .6rem 1.4rem;
      list-style: none;
    }
    .footer-links a {
      font-size: .875rem;
      color: rgba(255,255,255,.5);
      text-decoration: none;
      transition: color .2s;
    }
    address.footer-sub { text-align: center !important; }
    .comnic-credit {
      background: #000;
      text-align: center;
      padding: .75rem 1rem;
      font-size: .78rem;
      color: rgba(255,255,255,.35);
      letter-spacing: .03em;
    }
    .comnic-credit a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-weight: 600;
      transition: color .2s;
    }
    .comnic-credit a:hover { color: var(--green-light); }
    .footer-links a:hover { color: var(--green-light); }

    /* ═══════════════════════════════════
       REVEAL ANIMATION
    ═══════════════════════════════════ */
    @keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
    @keyframes scaleIn  { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
    @keyframes slideLeft { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .65s cubic-bezier(.22,.68,0,1), transform .65s cubic-bezier(.22,.68,0,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ═══════════════════════════════════
       MOBILE OVERLAY MENU
    ═══════════════════════════════════ */
    .mobile-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100vw; height: 100vh;
      z-index: 9998;
      background: #071209;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: max(72px, 10vh);
      overflow-y: auto;
      clip-path: circle(0% at calc(100% - 2.8rem) 3.4rem);
      visibility: hidden;
      pointer-events: none;
      transition: clip-path .65s cubic-bezier(.77,0,.175,1), visibility 0s .65s;
    }
    .mobile-overlay.open {
      clip-path: circle(200vmax at calc(100% - 2.8rem) 3.4rem);
      visibility: visible;
      pointer-events: all;
      transition: clip-path .65s cubic-bezier(.77,0,.175,1), visibility 0s 0s;
    }
    .mobile-close {
      position: absolute;
      top: 1.1rem;
      right: 1.3rem;
      background: none;
      border: none;
      color: rgba(255,255,255,.7);
      cursor: pointer;
      padding: .5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: color .2s, background .2s;
    }
    .mobile-close:hover { color: #fff; background: rgba(255,255,255,.1); }

    .mobile-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
      width: min(92vw, 360px);
    }
    .mobile-nav ul li {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .mobile-nav ul li:first-child {
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .mobile-cta-item {
      border-top: none !important;
      border-bottom: none !important;
      padding-top: 2rem;
    }

    .mobile-link {
      display: block;
      padding: 1.2rem 1rem;
      color: rgba(255,255,255,.85);
      font-size: 1.25rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: .01em;
      transition: color .2s;
    }
    .mobile-link:hover { color: var(--green-light); }

    .mobile-cta-item {
      margin-top: 2.2rem;
    }
    .mobile-cta-btn {
      display: inline-block !important;
      background: var(--green);
      color: #fff !important;
      border-radius: 50px;
      padding: .9rem 3rem !important;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 4px 22px rgba(22,163,74,.45);
      transition: background .2s, transform .2s, box-shadow .2s !important;
    }
    .mobile-cta-btn:hover {
      background: var(--green-dark) !important;
      transform: translateY(-2px) scale(1.03) !important;
      box-shadow: 0 8px 28px rgba(22,163,74,.55) !important;
    }

    /* ═══════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════ */
    @media (max-width: 900px) {
      .mayor-layout { grid-template-columns: 1fr; }
      .mayor-badge { right: .5rem; bottom: .5rem; }
    }
    @media (max-width: 700px) {
      .stats-row { grid-template-columns: repeat(2,1fr); }
      .nav-menu { display: none !important; }
      .hamburger { display: flex; }
      .nav-cta { display: none; }
      .mayor-feats { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .stats-row { grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
    }
  