@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f9fafb;
    color: #111827;
    line-height: 1.5;
}

:root {
    --red: #FF1F1F;
    --red2: #FF4444;
    --red-dark: #cc0000;
    --red-soft: rgba(255,31,31,.07);
    --red-mid: rgba(255,31,31,.16);
    --wh: #25D366;
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(15,23,42,.09);
    --radius: 16px;
    --shadow: 0 8px 28px rgba(2,6,23,.10);
    --shadow-red: 0 10px 28px rgba(255,31,31,.22);
}

a {
    text-decoration: none !important;
    color: inherit;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.top-banner {
    background: #ef4444;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(239,68,68,0.3);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-text {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: #dc2626;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    border: 1.5px solid transparent;
}

.btn-contact.phone {
    background: #f3f4f6;
    color: #1f2937;
    border-color: #e5e7eb;
}

.btn-contact.phone:hover {
    background: #e5e7eb;
}

.btn-contact.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 16px rgba(37,211,102,0.25);
}

.btn-contact.whatsapp:hover {
    background: #20b859;
    transform: translateY(-2px);
}

/* Menú de navegación */
.nav-bar {
    background: white;
    border-radius: 60px;
    padding: 8px 24px;
    margin-bottom: 30px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.nav-links {
    display: flex;
    gap: 28px;
    font-weight: 600;
}
.nav-links a {
    color: var(--ink);
    transition: 0.2s;
    font-size: 0.95rem;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-radius: 32px;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid var(--line);
}
.mobile-menu a {
    padding: 12px 0;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a.active {
    color: var(--red);
}
@media (max-width: 700px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-menu.show {
        display: flex;
    }
}

/* Hero banner */
.hero-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 48px 40px;
    margin-bottom: 40px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 25px 35px -15px rgba(0,0,0,0.3);
}
.hero-text {
    flex: 1;
    min-width: 280px;
}
.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.hero-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 500px;
    margin-bottom: 24px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc2626;
    color: white;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.2s;
    box-shadow: 0 15px 25px -8px rgba(220,38,38,0.3);
}
.hero-btn:hover {
    background: #b91c1c;
    transform: translateY(-3px);
}
.hero-image {
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid #334155;
}
.hero-image .emoji-big {
    font-size: 5rem;
}
.hero-image p {
    color: #94a3b8;
    margin-top: 10px;
    font-weight: 500;
}

/* Nota tipo post-it */
.note-card {
    background: #fffbeb;
    border-left: 8px solid #f59e0b;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 48px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.note-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #92400e;
}
.note-content p {
    font-size: 1rem;
    color: #b45309;
    max-width: 500px;
}
.note-emoji {
    font-size: 4rem;
    background: white;
    padding: 8px 24px;
    border-radius: 100px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* Filtro ciudades */
.city-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0 20px;
}
.city-btn {
    padding: 10px 22px;
    border-radius: 60px;
    border: 1.5px solid #e5e7eb;
    background: white;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    transition: 0.15s;
}
.city-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}
.city-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    box-shadow: 0 8px 16px rgba(220,38,38,0.2);
}
.filter-summary {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin: 10px 0 20px;
    font-weight: 600;
}
.city-missing {
    background: #f1f5f9;
    border-radius: 60px;
    padding: 16px 24px;
    text-align: center;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
}
.city-missing p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}
.city-missing a {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.city-missing a:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Grid de centros */
.centros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.centro-card {
    background: white;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.centro-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px -12px rgba(220,38,38,0.2);
    border-color: #fecaca;
}
.centro-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.centro-icon {
    width: 56px;
    height: 56px;
    background: #fee2e2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #b91c1c;
}
.centro-nombre h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.centro-nombre p {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
}
.tamanos {
    margin: 16px 0 12px;
    background: #f3f4f6;
    border-radius: 40px;
    padding: 10px 16px;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}
.tamanos span {
    color: #dc2626;
    font-weight: 700;
}
.servicios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}
.servicio-badge {
    background: #f3f4f6;
    border-radius: 40px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e5e7eb;
}
.servicio-badge.parking {
    background: #dbeafe;
    color: #1e40af;
    border-color: #bfdbfe;
}
.servicio-badge.wh {
    background: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}
.servicio-badge.proxima {
    background: #fef9c3;
    color: #854d0e;
    border-color: #fde047;
}
.servicio-badge.seguro {
    background: #fee2e2;
    color: #b91c1c;
    border-color: #fecaca;
}
.servicio-badge.escaleras {
    background: #fed7aa;
    color: #7b341e;
    border-color: #fdba74;
}
.servicio-badge.ascensor {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}
.centro-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.btn-card {
    flex: 1;
    padding: 12px 0;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    background: #f1f5f9;
    border: 1px solid #d1d5db;
    color: #374151;
}
.btn-card.mapa:hover {
    background: #e5e7eb;
}
.btn-card.reserva {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}
.btn-card.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 48px 0 30px;
}
.feature-item {
    background: white;
    border-radius: 60px;
    padding: 10px 24px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
}
.feature-item::before {
    content: "✓";
    color: #dc2626;
    margin-right: 8px;
}

/* Casos de uso */
.cases-section {
    margin: 60px 0 40px;
}
.cases-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    transition: 0.2s;
}
.case-card:hover {
    border-color: rgba(255,31,31,.2);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.case-ico {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}
.case-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.case-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 60px;
    border: 1px solid var(--red-mid);
    background: var(--red-soft);
    color: var(--red-dark);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
}
.sh {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}
.sp {
    color: var(--muted);
    font-size: .95rem;
    max-width: 560px;
    margin-bottom: 28px;
}

/* Servicios detallados */
.services-detailed {
    margin: 60px 0 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}
.service-card {
    background: white;
    border-radius: 28px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.2s;
}
.service-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.service-card p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
}

/* Banner eslogan */
.slogan-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 40px;
    padding: 48px 40px;
    margin: 60px 0 40px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 25px 35px -15px rgba(220,38,38,0.4);
}
.slogan-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.slogan-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}
.slogan-highlight {
    background: rgba(255,255,255,0.12);
    border-radius: 60px;
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    text-align: center;
    min-width: 250px;
}
.slogan-highlight span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: #fde047;
}
.slogan-highlight small {
    font-size: 0.9rem;
    display: block;
    color: rgba(255,255,255,0.7);
}

/* Proceso 4 pasos */
.process-section {
    margin: 60px 0 40px;
}
.process-subhead {
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
    background: white;
    border-radius: 32px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.process-number {
    background: #dc2626;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* Garantías */
.guarantees-section {
    margin: 60px 0 40px;
}
.guarantees-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.guarantee-item {
    background: white;
    border-radius: 60px;
    padding: 12px 28px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.guarantee-item span {
    font-size: 1.5rem;
}

/* FAQ */
.faq-section {
    margin: 60px 0 40px;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: white;
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    color: var(--red);
}
.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: 0.3s;
    background: #f8fafc;
    border-top: 0px solid var(--line);
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 16px 20px;
    border-top-width: 1px;
}

/* Opiniones */
.testimonials-section {
    margin: 60px 0 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 24px;
}
.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #f0f0f0;
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.testimonial-text {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: 700;
    color: #111827;
}
.testimonial-city {
    font-size: 0.8rem;
    color: #6b7280;
}

/* KPIs */
.nova-kpis-press {
    --brand: #dc2626;
    --brand-soft: #fee2e2;
    --ink: #0b1020;
    --muted: #6b7280;
    --card: #ffffff;
    --line: #e5e7eb;
    --shadow: 0 10px 30px rgba(15,23,42,.08);
    --bg-soft: radial-gradient(circle at top left, #fff4f5 0, #f9fafb 40%, #f1f5f9 100%);
    padding: 32px 16px 40px;
    background: var(--bg-soft);
    max-width: 100%;
    overflow-x: hidden;
    margin: 60px 0 40px;
}
.nova-kpis-press .nkp-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.nova-kpis-press .nkp-header { margin-bottom: 24px; }
.nova-kpis-press .nkp-eyebrow {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
    font: 600 12px/1 system-ui; background: rgba(220,38,54,.06); color: var(--brand);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.nova-kpis-press .nkp-eyebrow::before {
    content: "●";
    font-size: 10px;
}
.nova-kpis-press h2 { font: 900 clamp(22px,3.4vw,30px)/1.15 system-ui; color: var(--ink); margin: 0 0 6px; }
.nova-kpis-press .nkp-sub { max-width: 540px; margin: 0 auto; font: 400 14px/1.5 system-ui; color: var(--muted); }
.nova-kpis-press .nkp-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 28px 0 18px;
}
@media (max-width:900px){ .nova-kpis-press .nkp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px){ .nova-kpis-press .nkp-grid { grid-template-columns: 1fr; } }
.nova-kpis-press .nkp-item {
    position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 18px;
    padding: 16px 14px 14px; box-shadow: var(--shadow); text-align: left; overflow: hidden;
    transition: .2s;
}
.nova-kpis-press .nkp-item::after {
    content: ""; position: absolute; inset: auto -40px 0; height: 4px;
    background: linear-gradient(90deg, var(--brand) 0, #fb7185 100%);
    opacity: 0; transform: translateY(4px); transition: .2s;
}
.nova-kpis-press .nkp-item:hover {
    transform: translateY(-3px); box-shadow: 0 16px 40px rgba(148,27,48,.22);
    border-color: rgba(220,38,54,.5);
}
.nova-kpis-press .nkp-item:hover::after { opacity: 1; transform: translateY(0); }
.nova-kpis-press .nkp-chip {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 999px;
    font: 600 11px/1 system-ui; text-transform: uppercase; letter-spacing: .08em;
    background: var(--brand-soft); color: var(--brand); margin-bottom: 10px;
}
.nova-kpis-press .nkp-chip::before {
    content: "#";
    font-size: 11px;
    opacity: .8;
}
.nova-kpis-press .nkp-value {
    display: block; font: 900 clamp(24px,4.5vw,34px)/1 system-ui; color: var(--brand); margin-bottom: 4px;
}
.nova-kpis-press .nkp-help { font: 400 12px/1.4 system-ui; color: var(--muted); margin: 0; }
.nova-kpis-press .nkp-press-kpi {
    display: flex; justify-content: center; align-items: baseline; gap: 6px;
    margin: 18px 0 20px; font: 600 14px/1.4 system-ui; color: var(--muted); flex-wrap: wrap;
}
.nova-kpis-press .nkp-count { color: var(--brand); font: 900 22px/1.1 system-ui; min-width: 2ch; }
.nova-kpis-press .nkp-pre,
.nova-kpis-press .nkp-post { white-space: nowrap; }
@media (max-width:480px) {
    .nova-kpis-press .nkp-pre,
    .nova-kpis-press .nkp-post { white-space: normal; }
}
.nova-kpis-press .nkp-logos {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 4px;
    list-style: none; max-width: 100%;
}
.nova-kpis-press .nkp-logos a {
    display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: var(--card);
    border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: .18s; white-space: nowrap;
}
.nova-kpis-press .nkp-logos a:hover {
    transform: translateY(-2px); box-shadow: 0 12px 30px rgba(220,38,54,.26);
    border-color: rgba(220,38,54,.6);
}
.nova-kpis-press .nkp-logos img { width: 26px; height: 26px; object-fit: contain; border-radius: 7px; filter: grayscale(1); opacity: .9; }
.nova-kpis-press .nkp-logos span { font: 600 13px/1.2 system-ui; color: var(--ink); }

/* Comparativa */
.comparison-section { margin: 60px 0 40px; }
.comparison-grid {
    display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 10px;
    max-width: 800px; margin: 0 auto; background: white; border-radius: 32px; padding: 20px;
    border: 1px solid #e2e8f0;
}
.comparison-header { font-weight: 800; color: #1e293b; padding: 10px; text-align: center; }
.comparison-item { padding: 12px 10px; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: 8px; }
.comparison-item.yes { color: #059669; font-weight: 600; }
.comparison-item.no { color: #b91c1c; font-weight: 600; }

/* Blog */
.blog-section { margin: 60px 0 40px; }
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px;
}
.blog-card {
    background: white; border-radius: 32px; padding: 24px; border: 1px solid #f0f0f0;
    transition: 0.2s;
}
.blog-card:hover { transform: translateY(-5px); border-color: #fecaca; }
.blog-date { font-size: 0.8rem; color: #6b7280; margin-bottom: 8px; }
.blog-title { font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; color: #1e293b; }
.blog-excerpt { color: #4b5563; font-size: 0.9rem; margin-bottom: 16px; }
.blog-link { color: #dc2626; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 40px; padding: 48px 40px; margin: 60px 0 40px; color: white; text-align: center;
}
.newsletter-section h2 {
    font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px;
}
.newsletter-section p {
    color: #cbd5e1; max-width: 500px; margin: 0 auto 30px; font-size: 1.1rem;
}
.newsletter-form {
    display: flex; max-width: 500px; margin: 0 auto; background: white; border-radius: 60px;
    overflow: hidden; border: 1px solid #334155;
}
.newsletter-form input { flex: 1; border: none; padding: 16px 20px; font-size: 1rem; outline: none; }
.newsletter-form button { background: #dc2626; border: none; color: white; font-weight: 700; padding: 16px 30px; cursor: pointer; transition: 0.2s; }
.newsletter-form button:hover { background: #b91c1c; }

/* Sellos confianza */
.trust-section { margin: 60px 0 40px; }
.trust-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
}
.trust-item {
    background: white; border-radius: 60px; padding: 12px 28px; border: 1px solid #e2e8f0;
    display: flex; align-items: center; gap: 12px; font-weight: 600;
    transition: 0.2s;
}
.trust-item:hover { border-color: #dc2626; transform: translateY(-2px); }
.trust-item a { display: flex; align-items: center; gap: 12px; color: inherit; }
.trust-item span { font-size: 1.8rem; }

/* Inversores */
.investors-section {
    background: #1e293b; border-radius: 40px; padding: 48px 40px; margin: 60px 0 40px;
    color: white; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
}
.investors-content { max-width: 600px; }
.investors-content h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; color: white; }
.investors-content h2 span { color: #fbbf24; }
.investors-content p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 24px; line-height: 1.6; }
.investors-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.stat-item { text-align: left; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: #fbbf24; line-height: 1.2; }
.stat-label { font-size: 0.9rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.02em; }
.investors-btn {
    display: inline-flex; align-items: center; gap: 10px; background: #fbbf24; color: #1e293b;
    padding: 16px 36px; border-radius: 60px; font-weight: 800; font-size: 1.1rem;
    transition: 0.2s; box-shadow: 0 15px 25px -8px rgba(251,191,36,0.3);
}
.investors-btn:hover { background: #f59e0b; transform: translateY(-3px); color: #0f172a; }
.investors-image {
    background: rgba(255,255,255,0.05); border-radius: 30px; padding: 30px; text-align: center;
    border: 1px solid #334155;
}
.investors-image .emoji-big { font-size: 5rem; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3)); }
.investors-image p { color: #94a3b8; margin-top: 10px; font-weight: 500; }

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 0 32px;
    margin-top: 40px;
    width: 100%;
}
.footer a { color: #94a3b8; transition: 0.2s; }
.footer a:hover { color: white; }
.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: center;
    font-size: 0.75rem;
}

/* Sticky WhatsApp */
.sticky-wa {
    position: fixed; bottom: 20px; right: 20px; z-index: 199;
}
.sticky-wa a {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg,#2ecc71,var(--wh)); color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.38); transition: 0.2s;
}
.sticky-wa a:hover { transform: scale(1.1); }

.hidden { display: none; }

/* Estilos específicos para inversores (grids, cards, etc.) */
.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 700px) { .grid2 { grid-template-columns: 1fr; } }

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 860px) { .grid3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid3 { grid-template-columns: 1fr; } }

.stats-grid {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
}
.stat {
    flex: 1;
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.num-big {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--red);
    line-height: 1.2;
}
.num-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    margin-top: 4px;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--line);
    background: white;
}
.roi-table th {
    padding: 14px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    background: #f8fafc;
    border-bottom: 2px solid var(--line);
    text-align: left;
}
.roi-table td {
    padding: 12px 16px;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(15,23,42,.05);
}
.roi-table tbody tr:hover {
    background: #fafafa;
}
.pos {
    color: #16a34a;
    font-weight: 800;
}
.neg {
    color: #dc2626;
    font-weight: 800;
}

.banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 40px;
    padding: 48px 40px;
    margin: 60px 0;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 25px 35px -15px rgba(220,38,38,0.4);
}
.banner h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.banner p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
}
.banner-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn--white {
    background: white;
    color: var(--red);
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.btn--white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}
.btn--ghost {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1.5px solid rgba(255,255,255,.28);
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}/* ===== ESTILOS PARA LA PÁGINA DE CENTROS (centros.php) ===== */
.hero-centros {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 60px 40px;
    margin-bottom: 60px;
    color: white;
    text-align: center;
}
.hero-centros h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.hero-centros p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.centros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0 60px;
}
.centro-card {
    background: white;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid var(--line);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.centro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--red-mid);
}
.centro-ciudad {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.centro-precio {
    font-size: 2rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 8px;
}
.centro-precio small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}
.centro-dir {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.centro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}
.badge-small {
    background: #f3f4f6;
    border-radius: 40px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #e5e7eb;
}
.badge-small.lockers {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd;
}
.badge-small.parking {
    background: #dbeafe;
    color: #1e40af;
    border-color: #bfdbfe;
}
.centro-link {
    margin-top: auto;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    transition: 0.2s;
    display: inline-block;
}
.centro-link:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

.mapa-centros {
    background: #f1f5f9;
    border-radius: 40px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid var(--line);
}
.mapa-titulo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.mapa-embed-grande {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}
.mapa-embed-grande iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-centros {
    margin: 60px 0;
}
.faq-grid-centros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.faq-item-centro {
    background: white;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--line);
}
.faq-item-centro h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #dc2626;
}
.faq-item-centro p {
    color: var(--muted);
    font-size: 0.95rem;
}