/* Global Lead Solutions — Main Stylesheet */
/* Editá aquí para cambiar estilos globales */


  :root {
    --navy: #0b1f3a;
    --navy-mid: #152d4e;
    --navy-light: #1e3d66;
    --gold: #c9a84c;
    --gold-light: #e4c97a;
    --white: #ffffff;
    --off-white: #f5f6f8;
    --gray: #8a95a3;
    --border: #e4e8ee;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6%; height: 74px;
    background: rgba(11,31,58,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    transition: box-shadow .3s;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--navy);
  }
  .logo-text { display: flex; flex-direction: column; gap: 2px; }
  .logo-main { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); }
  .logo-main span { color: var(--gold); }
  .logo-sub { font-size: 9px; letter-spacing: 2.5px; color: rgba(201,168,76,0.7); text-transform: uppercase; }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
    text-decoration: none; letter-spacing: 0.3px; transition: color .2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 10px 24px; border-radius: 4px; font-weight: 700 !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-img {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&auto=format&fit=crop&q=80');
    background-size: cover; background-position: center;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(11,31,58,0.95) 45%, rgba(11,31,58,0.55) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 140px 6% 100px;
    max-width: 680px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold); padding: 7px 18px; border-radius: 100px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 28px; animation: fadeUp .6s ease both;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; color: var(--white);
    line-height: 1.1; margin-bottom: 22px; animation: fadeUp .6s .15s ease both;
  }
  .hero-title em { font-style: normal; color: var(--gold); }
  .hero-sub {
    font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.65);
    margin-bottom: 40px; max-width: 500px; animation: fadeUp .6s .3s ease both;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .6s .45s ease both; }
  .btn-gold {
    background: var(--gold); color: var(--navy);
    padding: 15px 34px; border-radius: 4px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    transition: all .2s; letter-spacing: 0.3px;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
  .btn-ghost {
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 15px 34px; border-radius: 4px;
    font-weight: 500; font-size: 14px; text-decoration: none; transition: all .2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* HERO STATS BAR */
  .hero-statsbar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .stat-item {
    padding: 24px 32px;
    border-right: 1px solid rgba(201,168,76,0.12);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 700; color: var(--gold); display: block;
  }
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

  /* ── SLIDER BANNER ── */
  .slider-banner {
    background: var(--navy-mid);
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .slides-wrapper {
    display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1);
  }
  .slide {
    min-width: 100%;
    display: grid; grid-template-columns: 55% 45%;
    min-height: 480px;
  }
  .slide-text {
    padding: 70px 6%;
    display: flex; flex-direction: column; justify-content: center;
  }
  .slide-tag {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 16px;
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 16px;
  }
  .slide-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
  .slide-img {
    background-size: cover; background-position: center;
    position: relative;
  }
  .slide-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--navy-mid) 0%, transparent 40%);
  }
  .slider-nav {
    position: absolute; bottom: 24px; left: 6%;
    display: flex; gap: 8px; z-index: 10;
  }
  .dot {
    width: 28px; height: 3px; background: rgba(255,255,255,0.2);
    border-radius: 2px; cursor: pointer; transition: background .3s;
  }
  .dot.active { background: var(--gold); }
  .slider-arrows {
    position: absolute; top: 50%; right: 6%; transform: translateY(-50%);
    display: flex; gap: 10px; z-index: 10;
  }
  .arrow-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
    background: rgba(255,255,255,0.04); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px; transition: all .2s; user-select: none;
  }
  .arrow-btn:hover { background: var(--gold); color: var(--navy); }

  /* ── SOLUCIONES ── */
  #soluciones { padding: 90px 6%; background: var(--off-white); }
  .sol-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: end; margin-bottom: 52px;
  }
  .section-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.15;
  }
  .section-desc { font-size: 15px; line-height: 1.75; color: var(--gray); }

  .sol-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    background: var(--border); border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 32px rgba(11,31,58,0.08);
  }
  .sol-card {
    background: var(--white); padding: 44px 36px;
    box-shadow: inset -1px -1px 0 0 var(--border);
    position: relative; overflow: hidden; transition: all .35s; cursor: default;
  }
  .sol-card:nth-child(3n) { box-shadow: inset 0 -1px 0 0 var(--border); }
  .sol-card:last-child { box-shadow: none; }
  .sol-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s;
  }
  .sol-card:hover { background: var(--navy); }
  .sol-card:hover::after { transform: scaleX(1); }
  .sol-card:hover .sol-icon { background: rgba(201,168,76,0.15); }
  .sol-card:hover .sol-icon svg { stroke: var(--gold); }
  .sol-card:hover .sol-title { color: var(--white); }
  .sol-card:hover .sol-desc { color: rgba(255,255,255,0.55); }
  .sol-card:hover .sol-link { color: var(--gold); }
  .sol-icon {
    width: 54px; height: 54px; background: var(--off-white);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; transition: background .35s;
  }
  .sol-icon svg { width: 24px; height: 24px; stroke: var(--navy-light); fill: none; stroke-width: 1.8; transition: stroke .35s; }
  .sol-title {
    font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px; transition: color .35s;
  }
  .sol-desc { font-size: 14px; line-height: 1.7; color: var(--gray); margin-bottom: 22px; transition: color .35s; }
  .sol-link { font-size: 13px; font-weight: 600; color: var(--navy-light); text-decoration: none; transition: color .35s; }
  .sol-link:hover { gap: 8px; }

  /* ── NOSOTROS / SPLIT ── */
  #nosotros {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
  }
  .nos-img {
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=900&auto=format&fit=crop&q=80');
    background-size: cover; background-position: center; position: relative;
  }
  .nos-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(11,31,58,0.3) 100%);
  }
  .nos-content {
    background: var(--navy); padding: 80px 7%; display: flex; flex-direction: column; justify-content: center;
  }
  .nos-content .section-tag { color: var(--gold); }
  .nos-content .section-title { color: var(--white); margin-bottom: 20px; }
  .nos-content .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
  .nos-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px;
  }
  .val-item { display: flex; gap: 10px; align-items: flex-start; }
  .val-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
  .val-text { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; line-height: 1.4; }

  /* ── INDUSTRIAS ── */
  #industrias { padding: 90px 6%; background: var(--white); }
  .ind-header { text-align: center; margin-bottom: 56px; }
  .ind-header .section-tag { justify-content: center; }
  .ind-header .section-tag::before { display: none; }
  .ind-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .ind-card {
    border-radius: 10px; overflow: hidden; position: relative;
    aspect-ratio: 3/4; cursor: default; transition: transform .3s;
  }
  .ind-card:hover { transform: translateY(-6px); }
  .ind-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform .4s;
  }
  .ind-card:hover .ind-img { transform: scale(1.05); }
  .ind-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(11,31,58,0.9) 30%, rgba(11,31,58,0.2) 100%);
  }
  .ind-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
  }
  .ind-tag { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
  .ind-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); }

  /* ── TESTIMONIALES ── */
  #testimoniales { padding: 90px 6%; background: var(--off-white); }
  .test-header { margin-bottom: 52px; }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .test-card {
    background: var(--white); border-radius: 10px; padding: 36px 30px;
    border: 1px solid var(--border); position: relative; overflow: hidden; transition: all .3s;
    box-shadow: 0 2px 12px rgba(11,31,58,0.05);
  }
  .test-card:hover { box-shadow: 0 12px 40px rgba(11,31,58,0.12); transform: translateY(-4px); border-color: var(--gold); }
  .test-quote {
    font-family: 'Playfair Display', serif; font-size: 72px; color: var(--gold);
    opacity: 0.15; position: absolute; top: 10px; left: 20px; line-height: 1;
  }
  .test-stars { display: flex; gap: 3px; margin-bottom: 18px; }
  .star { color: var(--gold); font-size: 13px; }
  .test-text { font-size: 14px; line-height: 1.8; color: var(--gray); margin-bottom: 26px; font-style: italic; }
  .test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
  .test-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white);
    flex-shrink: 0;
  }
  .test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
  .test-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

  /* ── CLIENTES LOGOS ── */
  .logos-band {
    padding: 44px 6%; background: var(--white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .logos-band p {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray);
    text-align: center; margin-bottom: 28px;
  }
  .logos-row {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  }
  .logo-pill {
    background: var(--off-white); border: 1px solid var(--border);
    padding: 12px 28px; border-radius: 100px;
    font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700;
    color: #b0bac6; letter-spacing: 0.5px; transition: all .2s;
  }
  .logo-pill:hover { color: var(--navy); border-color: var(--navy-light); }

  /* ── CONTACTO ── */
  #contacto { display: grid; grid-template-columns: 1fr 1.2fr; }
  .contact-img {
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=900&auto=format&fit=crop&q=80');
    background-size: cover; background-position: center; position: relative; min-height: 600px;
  }
  .contact-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 50%, rgba(11,31,58,0.15) 100%);
  }
  .contact-info-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: linear-gradient(0deg, rgba(11,31,58,0.95) 60%, transparent 100%);
    padding: 40px;
  }
  .cinfo-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
  .cinfo-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
  .cinfo-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
  .cinfo-val { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

  .contact-form-area { background: var(--navy); padding: 80px 7%; display: flex; flex-direction: column; justify-content: center; }
  .contact-form-area h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .contact-form-area > p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 36px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; font-weight: 500; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
    padding: 13px 16px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--white);
    outline: none; transition: border-color .2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn-submit {
    width: 100%; background: var(--gold); color: var(--navy);
    padding: 16px; border: none; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: all .2s; letter-spacing: 0.3px; margin-top: 4px;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: #060f1d; padding: 60px 6% 28px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.35); margin-top: 18px; max-width: 220px; }
  .footer-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
  .socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; font-weight: 700;
    transition: all .2s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay { transition-delay: .15s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .slide { grid-template-columns: 1fr; }
    .slide-img { display: none; }
    .sol-grid { grid-template-columns: 1fr 1fr; }
    #nosotros { grid-template-columns: 1fr; }
    .nos-img { min-height: 320px; }
    .ind-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    #contacto { grid-template-columns: 1fr; }
    .contact-img { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sol-header { grid-template-columns: 1fr; }
    .hero-statsbar { grid-template-columns: 1fr 1fr; }
  }

/* ── RESPONSIVE MÓVIL ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { 
    display: none;
    position: fixed; top: 74px; left: 0; right: 0;
    background: rgba(11,31,58,0.99);
    flex-direction: column; gap: 0; padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 5%; font-size: 15px; }
  .nav-cta { margin: 8px 5%; border-radius: 4px; text-align: center; }
  .nav-toggle { 
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-toggle span { 
    display: block; width: 24px; height: 2px; 
    background: var(--white); border-radius: 2px; transition: all .3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  #hero { min-height: 90vh; padding: 100px 5% 120px; }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 14px; }
  .hero-statsbar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 16px; }
  .stat-num { font-size: 22px; }

  .slide { grid-template-columns: 1fr; }
  .slide-img { display: none; }
  .slide-text { padding: 48px 5%; }

  .sol-header { grid-template-columns: 1fr; gap: 16px; }
  .sol-grid { grid-template-columns: 1fr; }
  .sol-card { box-shadow: inset 0 -1px 0 0 var(--border) !important; }
  .sol-card:last-child { box-shadow: none !important; }

  #nosotros { grid-template-columns: 1fr; }
  .nos-img { min-height: 260px; }
  .nos-content { padding: 48px 5%; }
  .nos-values { grid-template-columns: 1fr 1fr; }

  #industrias { padding: 60px 5%; }
  .ind-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .logos-row { gap: 12px; justify-content: center; }

  #testimoniales { padding: 60px 5%; }
  .test-grid { grid-template-columns: 1fr; }

  #contacto { grid-template-columns: 1fr; }
  .contact-img { min-height: 280px; }
  .contact-form-area { padding: 48px 5%; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 48px 5% 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-statsbar { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; }
}

/* ── BOTÓN WHATSAPP FLOTANTE ───────────────────────────────────────── */
.gls-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
.gls-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.gls-wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── LOGO REAL (imagen) ────────────────────────────────────────────── */
/* Tamaño del logo controlado por el Personalizador (ver functions.php → gls_dynamic_css) */

