*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --red: #C41F1F;
    --dark-gray: #484848;
    --black: #111111;
    --white: #ffffff;
    --light-bg: #F6F6F6;
    --border: #E3E3E3;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.03em; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.015em; }
p { margin-bottom: 0.85rem; font-weight: 400; }
.highlight { color: var(--red); font-weight: 700; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

/* SECTION LABELS */
.section-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--red); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-title { color: var(--black); margin-bottom: 1.25rem; }
.section-title span { color: var(--red); }
.section-subtitle { font-size: 1.05rem; color: var(--dark-gray); max-width: 620px; margin-bottom: 2.75rem; font-weight: 400; }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0; font-size: 1.2rem; font-weight: 800; text-decoration: none; letter-spacing: -0.04em; }
.logo .logo-red { color: var(--red); }
.logo .logo-gray { color: var(--dark-gray); }
.logo-sub { font-size: 0.57rem; font-weight: 400; color: #888; letter-spacing: 0.02em; line-height: 1; margin-top: 1px; text-decoration: none; }
.logo-sub strong { font-weight: 700; color: #666; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark-gray); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; letter-spacing: -0.01em; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.46rem 1.15rem; border-radius: 5px; font-weight: 600 !important; letter-spacing: -0.01em; }
.nav-cta:hover { background: #a51a1a !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: 0.3s; }

/* BREADCRUMB */
.breadcrumb-nav { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 0.65rem 0; margin-top: 68px; }
.breadcrumb-nav ol { display: flex; align-items: center; gap: 0.4rem; list-style: none; flex-wrap: wrap; }
.breadcrumb-nav li { font-size: 0.78rem; color: var(--dark-gray); }
.breadcrumb-nav li + li::before { content: "/"; margin-right: 0.4rem; color: #ccc; }
.breadcrumb-nav li a { color: var(--dark-gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav li a:hover { color: var(--red); }
.breadcrumb-nav li[aria-current="page"] { color: var(--black); font-weight: 500; }

/* HERO */
#hero { padding: 8rem 0 5rem; background: var(--white); }
#hero.local-hero { padding: 3.5rem 0 4.5rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #FDF0F0; color: var(--red); padding: 0.3rem 0.9rem; border-radius: 30px; border: 1px solid #F5CCCC; font-size: 0.76rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.hero-title { margin-bottom: 1.3rem; }
.hero-desc { font-size: 1.02rem; color: var(--dark-gray); margin-bottom: 2rem; max-width: 490px; line-height: 1.7; font-weight: 400; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--red); color: var(--white); padding: 0.82rem 1.85rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: background 0.2s, transform 0.15s; letter-spacing: -0.01em; }
.btn-primary:hover { background: #a51a1a; transform: translateY(-1px); }
.btn-secondary { display: inline-block; border: 1.5px solid var(--border); color: var(--black); padding: 0.82rem 1.85rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: all 0.2s; letter-spacing: -0.01em; background: var(--white); }
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--red); letter-spacing: -0.04em; }
.hero-stat span { font-size: 0.78rem; color: var(--dark-gray); font-weight: 400; }

/* Hero Visual */
.hero-visual { background: var(--light-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.hero-visual-header { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #E74C3C; }
.dot-yellow { background: #F39C12; }
.dot-green { background: #2ECC71; }
.hero-visual-title { font-size: 0.78rem; color: var(--dark-gray); font-weight: 600; margin-left: auto; }
.module-list { display: flex; flex-direction: column; gap: 0.55rem; }
.module-item { display: flex; align-items: center; gap: 0.7rem; background: var(--white); padding: 0.58rem 0.85rem; border-radius: 6px; border: 1px solid var(--border); font-size: 0.83rem; font-weight: 500; }
.module-icon { width: 28px; height: 28px; background: #FFF0F0; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.module-badge { margin-left: auto; font-size: 0.7rem; padding: 0.18rem 0.5rem; border-radius: 10px; font-weight: 600; }
.badge-green { background: #E8F5E9; color: #2E7D32; }
.badge-orange { background: #FFF3E0; color: #E65100; }
.badge-blue { background: #E3F2FD; color: #1565C0; }

/* TRUST BAR */
#trust { padding: 1.75rem 0; background: var(--light-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: var(--dark-gray); letter-spacing: -0.01em; }
.trust-icon { color: var(--red); font-size: 0.95rem; }

/* LOCAL COVERAGE */
#cobertura { background: var(--white); }
.cobertura-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cobertura-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.cobertura-stat { text-align: center; padding: 1.4rem 1rem; background: var(--light-bg); border-radius: 10px; border: 1px solid var(--border); }
.cobertura-stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--red); letter-spacing: -0.04em; }
.cobertura-stat span { font-size: 0.79rem; color: var(--dark-gray); }
.cobertura-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.cobertura-list li { font-size: 0.85rem; color: var(--dark-gray); display: flex; align-items: flex-start; gap: 0.5rem; }
.cobertura-list li::before { content: "&#x2714;"; color: var(--red); flex-shrink: 0; font-weight: 700; }

/* MODULES */
#modulos { background: var(--white); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.4rem; }
.module-card { border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s; background: var(--white); }
.module-card:hover { border-color: #dbb; box-shadow: 0 6px 24px rgba(196,31,31,0.07); transform: translateY(-2px); }
.module-card-icon { width: 44px; height: 44px; background: #FDF2F2; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.module-card > p { font-size: 0.84rem; color: var(--dark-gray); margin-bottom: 1rem; line-height: 1.6; font-weight: 400; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.feature-list li { font-size: 0.79rem; color: var(--dark-gray); display: flex; align-items: flex-start; gap: 0.45rem; font-weight: 400; }
.feature-list li::before { content: "–"; color: var(--red); flex-shrink: 0; font-weight: 600; }

/* TECH */
#tecnologia { background: var(--light-bg); }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.75rem; }
.tech-pill { background: var(--white); border: 1px solid var(--border); padding: 0.45rem 1rem; border-radius: 20px; font-size: 0.83rem; font-weight: 600; color: var(--dark-gray); }
.tech-pill strong { color: var(--red); }
.tech-list { display: flex; flex-direction: column; gap: 1.2rem; }
.tech-item { display: flex; gap: 1rem; align-items: flex-start; }
.tech-item-icon { width: 40px; height: 40px; background: #FFF0F0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.tech-item h4 { font-size: 0.93rem; margin-bottom: 0.2rem; }
.tech-item p { font-size: 0.82rem; color: var(--dark-gray); margin: 0; }

/* PRECIOS */
#precios { background: var(--white); }
.precios-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.precios-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 3rem; }
.precio-pillar { border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; transition: box-shadow 0.25s, transform 0.2s; }
.precio-pillar:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
.precio-pillar-icon { font-size: 1.8rem; margin-bottom: 0.25rem; }
.precio-pillar h3 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin: 0; }
.precio-pillar p { font-size: 0.82rem; color: var(--dark-gray); margin: 0; line-height: 1.6; }
.precios-included-wrap { background: var(--light-bg); border-radius: 14px; padding: 2.25rem 2.5rem; margin-bottom: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.precios-included-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.precios-included-title::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--red); }
.precios-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
.precios-features-grid li { font-size: 0.82rem; display: flex; align-items: flex-start; gap: 0.4rem; list-style: none; color: var(--dark-gray); font-weight: 400; }
.precios-features-grid li .check { color: var(--red); flex-shrink: 0; font-size: 0.78rem; margin-top: 2px; }
.precios-cta-box { background: var(--red); border-radius: 14px; padding: 3rem 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.precios-cta-box h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 800; color: #fff; margin: 0 0 0.4rem; letter-spacing: -0.03em; }
.precios-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin: 0; max-width: 480px; }
.precios-cta-box .btn-cta-white { background: #fff; color: var(--red); padding: 0.88rem 2rem; border-radius: 7px; font-weight: 700; font-size: 0.9rem; text-decoration: none; white-space: nowrap; transition: background 0.2s, transform 0.15s; display: inline-block; }
.precios-cta-box .btn-cta-white:hover { background: #f5f5f5; transform: translateY(-1px); }
.precios-garantias { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.precios-garantia { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: var(--dark-gray); font-weight: 500; }
.precios-garantia span { color: var(--red); font-size: 0.9rem; }

/* EMPRESA */
#empresa { background: var(--light-bg); }
.empresa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.empresa-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.75rem; }
.value-item { background: var(--white); border-radius: 8px; padding: 1.2rem; border: 1px solid var(--border); }
.value-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.value-item h4 { font-size: 0.88rem; color: var(--red); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.79rem; color: var(--dark-gray); margin: 0; }
.sectores-list { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.4rem; }
.sector-tag { background: var(--white); border: 1px solid var(--border); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500; color: var(--dark-gray); }
.empresa-stat-block { background: var(--white); border-radius: 10px; padding: 2rem; border: 1px solid var(--border); }
.empresa-big-stat { font-size: 3.5rem; font-weight: 800; color: var(--red); line-height: 1; display: block; letter-spacing: -0.05em; }
.empresa-stat-label { font-size: 1rem; color: var(--black); font-weight: 600; margin-top: 0.2rem; margin-bottom: 0.5rem; }

/* FAQ */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item { background: var(--white); }
.faq-question { width: 100%; background: none; border: none; padding: 1.4rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.87rem; font-weight: 600; color: var(--black); transition: background 0.2s; font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif; letter-spacing: -0.01em; }
.faq-question:hover { background: var(--light-bg); }
.faq-arrow { color: var(--red); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 1.4rem 1.4rem; font-size: 0.855rem; color: var(--dark-gray); line-height: 1.7; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* CONTACTO */
#contacto { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: #FFF0F0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.83rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.855rem; color: var(--dark-gray); margin: 0; }
.contact-item a { color: var(--red); text-decoration: none; }
.contact-form { background: var(--white); border-radius: 10px; padding: 2rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border); border-radius: 6px; font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif; font-size: 0.855rem; color: var(--black); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,31,31,0.08); }
.form-group textarea { resize: vertical; min-height: 95px; }
.form-submit { width: 100%; background: var(--red); color: var(--white); border: none; padding: 0.88rem; border-radius: 7px; font-size: 0.88rem; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif; transition: background 0.2s; letter-spacing: -0.01em; }
.form-submit:hover { background: #a51a1a; }
.form-success { background: #E8F5E9; color: #2E7D32; padding: 1rem; border-radius: 4px; font-weight: 600; font-size: 0.88rem; display: none; margin-bottom: 1rem; }
.form-error { background: #FFEBEE; color: #B71C1C; padding: 1rem; border-radius: 4px; font-weight: 600; font-size: 0.88rem; display: none; margin-bottom: 1rem; }
.form-checks { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.1rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: var(--red); cursor: pointer; }
.form-check label { font-size: 0.8rem; color: var(--dark-gray); line-height: 1.5; cursor: pointer; }
.form-check label a { color: var(--red); text-decoration: underline; }
.form-clause { background: var(--light-bg); border: 1px solid var(--border); border-radius: 6px; margin-bottom: 1.1rem; }
.form-clause-toggle { width: 100%; background: none; border: none; padding: 0.7rem 1rem; font-size: 0.78rem; font-weight: 600; color: var(--dark-gray); cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.form-clause-toggle:hover { color: var(--red); }
.form-clause-toggle .clause-arrow { transition: transform 0.2s; font-size: 0.7rem; }
.form-clause-toggle.open .clause-arrow { transform: rotate(180deg); }
.form-clause-body { display: none; padding: 0 1rem 0.9rem; font-size: 0.75rem; color: var(--dark-gray); line-height: 1.65; }
.form-clause-body.open { display: block; }
.form-clause-body p { margin-bottom: 0.45rem; font-size: 0.75rem; }
.form-clause-body strong { color: var(--black); }

/* SOPORTE */
#soporte { background: #2d2d2d; border-top: none; color: #fff; }
#soporte .section-label { color: rgba(255,255,255,0.75); }
#soporte .section-label::before { background: rgba(255,255,255,0.5); }
#soporte .section-title { color: #fff; }
#soporte .section-title span { color: #fff; }
#soporte p, #soporte strong { color: rgba(255,255,255,0.9); }
.soporte-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem; align-items: center; }
.soporte-card { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); border-radius: 12px; padding: 2rem; text-align: center; }
.soporte-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.soporte-card > p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.soporte-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.btn-soporte { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--red); color: #fff; padding: 0.82rem 1.65rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: background 0.2s, transform 0.15s; }
.btn-soporte:hover { background: #a81a1a; }
.soporte-email { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.65rem; }
.device-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.7rem; }
.device-pill { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 0.22rem 0.7rem; font-size: 0.75rem; color: var(--dark-gray); font-weight: 500; }

/* COBERTURA LOCALIDADES */
#cobertura-localidades { background: var(--light-bg); padding: 3.5rem 0; border-top: 1px solid var(--border); }
.localidades-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.localidad-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.83rem;
    color: var(--dark-gray);
    font-weight: 500;
    background: var(--white);
    transition: border-color 0.18s, color 0.18s, background 0.18s, box-shadow 0.18s;
    line-height: 1.25;
}
.localidad-link::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D8D8D8;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.2s;
}
.localidad-link:hover {
    border-color: #f0bdbd;
    color: var(--red);
    background: #FFF8F8;
    box-shadow: 0 2px 10px rgba(196,31,31,0.07);
}
.localidad-link:hover::before {
    background: var(--red);
    transform: scale(1.4);
}
.localidad-link.current {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(196,31,31,0.18);
}
.localidad-link.current::before { background: rgba(255,255,255,0.55); }

/* LOCALITY HUB */
.localidades-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.localidad-card {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.25rem 1.1rem 1rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.88rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
    background: var(--white);
}
.localidad-card:hover {
    border-color: #f0bdbd;
    border-left-color: var(--red);
    color: var(--red);
    background: #FFF8F8;
    box-shadow: 0 4px 16px rgba(196,31,31,0.08);
}
.localidad-card small { display: block; font-size: 0.74rem; color: var(--dark-gray); font-weight: 400; margin-top: 0.25rem; line-height: 1.4; }
.localidad-card:hover small { color: #c47070; }

/* FOOTER */
footer { background: #1a1a1a; color: #ccc; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #333; }
.footer-brand p { font-size: 0.8rem; color: #888; margin-top: 0.7rem; }
.footer-col h4 { color: #fff; font-size: 0.83rem; margin-bottom: 0.9rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul li a { color: #888; text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.77rem; color: #555; }
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* SCROLL ANIMATION */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s, transform 0.5s; }
.fade-up.visible { opacity: 1; transform: none; }

/* FLOATING BUTTONS */
.float-btn {
    position: fixed; right: 1.25rem; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 998; box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
    text-decoration: none; cursor: pointer; border: none;
}
.float-btn:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.float-top {
    bottom: 4.75rem; background: var(--red); color: #fff;
    font-size: 1.15rem; font-weight: 700; font-family: inherit;
    opacity: 0; pointer-events: none; transform: translateY(12px);
}
.float-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.float-wa {
    bottom: 1.25rem; background: #25D366; color: #fff;
}
.float-wa svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 720px) {
    .float-btn { width: 44px; height: 44px; right: 1rem; }
    .float-top { bottom: 4.25rem; font-size: 1rem; }
    .float-wa { bottom: 1rem; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-grid, .tech-grid, .empresa-grid, .contact-grid, .cobertura-grid, .soporte-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { display: none; }
    .precios-pillars { grid-template-columns: repeat(2, 1fr); }
    .precios-included-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
    .precios-cta-box { flex-direction: column; padding: 2.25rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; gap: 1rem; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .modules-grid { grid-template-columns: 1fr; }
    .precios-pillars { grid-template-columns: 1fr; }
    .precios-features-grid { grid-template-columns: 1fr; }
    .precios-garantias { gap: 1rem; justify-content: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .empresa-values { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cobertura-stats { grid-template-columns: 1fr 1fr; }
    .localidades-links { grid-template-columns: repeat(2, 1fr); }
}
