/* ===== VARIABLES ===== */
:root {
    --blue:       #1a3a6b;
    --blue-mid:   #1e4fa0;
    --blue-light: #e8f0fb;
    --teal:       #0ea5b0;
    --gold:       #e8a120;
    --gold-light: #fff8ec;
    --white:      #ffffff;
    --gray-50:    #f8fafc;
    --gray-100:   #f1f5f9;
    --gray-200:   #e2e8f0;
    --gray-400:   #94a3b8;
    --gray-600:   #475569;
    --gray-800:   #1e293b;
    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
    --transition: .2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--blue); }
.section-sub  { color: var(--gray-600); margin-top: .4rem; font-size: .95rem; }
.text-gold    { color: var(--gold); }
.text-teal    { color: var(--teal); }
.sr-only      { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .75rem 1.5rem; border-radius: var(--radius);
    font-weight: 600; font-size: .95rem; transition: all var(--transition);
}
.btn-primary  { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold     { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #d4911a; transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white    { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--gray-100); }
.btn-sm       { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg       { padding: .9rem 2rem; font-size: 1rem; }
.btn-block    { width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge {
    display: inline-block; padding: .25rem .65rem; border-radius: 20px;
    font-size: .75rem; font-weight: 600; letter-spacing: .02em;
}
.badge-gold     { background: var(--gold-light); color: var(--gold); }
.badge-blue     { background: var(--blue-light); color: var(--blue); }
.badge-teal     { background: #e0f7f9; color: var(--teal); }
.badge-gray     { background: var(--gray-100); color: var(--gray-600); }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.logo-text strong { color: var(--teal); }
.logo-white .logo-text { color: var(--white); }
.logo-white .logo-text strong { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: color var(--transition); }
.main-nav a:hover { color: var(--blue); }
.main-nav a.nav-cta {
    background: var(--gold); color: var(--white) !important; padding: .5rem 1rem;
    border-radius: var(--radius-sm); font-weight: 700;
}
.main-nav a.nav-cta:hover { background: #d4911a; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #0f2a55 50%, #0a1f40 100%);
    color: var(--white);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: var(--white); padding: .35rem .9rem; border-radius: 20px;
    font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800; line-height: 1.15; margin-bottom: .8rem;
}
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* Search bar */
.search-bar {
    display: flex; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden; max-width: 680px; margin: 0 auto 1.5rem;
}
.search-bar input {
    flex: 1; padding: 1rem 1.25rem; border: none; outline: none;
    font-size: 1rem; color: var(--gray-800); font-family: inherit;
}
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar select {
    border: none; border-left: 1px solid var(--gray-200); padding: 0 1rem;
    font-size: .9rem; color: var(--gray-600); outline: none; background: var(--white);
    font-family: inherit; cursor: pointer;
}
.search-bar button {
    background: var(--gold); color: var(--white); padding: 0 1.5rem;
    font-weight: 700; font-size: .95rem; transition: background var(--transition);
    display: flex; align-items: center; gap: .4rem;
}
.search-bar button:hover { background: #d4911a; }

.hero-stats {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
    margin-top: 1.5rem;
}
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.7); }
.hero-stats strong { color: var(--white); display: block; font-size: 1.3rem; }

/* ===== CATEGORIES SECTION ===== */
.section-cats { padding: 3.5rem 0; background: var(--gray-50); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
.cat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.5rem 1rem; text-align: center;
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition); cursor: pointer;
    display: block;
}
.cat-card:hover {
    border-color: var(--teal); transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-icon { font-size: 2rem; margin-bottom: .6rem; display: block; transition: transform var(--transition); }
.cat-name { font-size: .85rem; font-weight: 600; color: var(--blue); display: block; }
.cat-count { font-size: .75rem; color: var(--gray-400); margin-top: .2rem; display: block; }

/* ===== BUSINESS CARDS ===== */
.section-negocios { padding: 3.5rem 0; }
.negocios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.negocio-card {
    background: var(--white); border-radius: var(--radius);
    border: 1.5px solid var(--gray-200); overflow: hidden;
    transition: all var(--transition); display: flex; flex-direction: column;
}
.negocio-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); transform: translateY(-2px); }

.card-img {
    height: 180px; background: var(--gray-100);
    position: relative; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.negocio-card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.card-badge-pos {
    position: absolute; top: .75rem; left: .75rem;
}
.card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.card-cat  { font-size: .75rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.card-name { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: .3rem; }
.card-desc { font-size: .85rem; color: var(--gray-600); margin-bottom: .8rem; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .9rem; }
.card-meta span { display: flex; align-items: center; gap: .25rem; }

.card-stars { display: flex; gap: 2px; }
.star { color: var(--gray-200); font-size: .8rem; }
.star.on { color: var(--gold); }

.card-actions { display: flex; gap: .5rem; }
.card-actions .btn { flex: 1; font-size: .8rem; padding: .55rem .5rem; }
.btn-wa  { background: #25d366; color: var(--white); }
.btn-wa:hover { background: #20b858; }
.btn-tel { background: var(--blue-light); color: var(--blue); }
.btn-tel:hover { background: var(--blue); color: var(--white); }

/* ===== DESTACADOS banner ===== */
.section-destacados {
    background: linear-gradient(135deg, var(--gold) 0%, #c97d10 100%);
    padding: 3rem 0; color: var(--white);
}
.destacados-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.destacados-inner h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800; }
.destacados-inner p { color: rgba(255,255,255,.85); margin-top: .4rem; }

/* ===== ZONAS ===== */
.section-zonas { padding: 3.5rem 0; background: var(--gray-50); }
.zonas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.zona-card {
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; height: 200px; cursor: pointer;
    display: flex; align-items: flex-end;
}
.zona-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.zona-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,25,60,.8) 0%, transparent 60%);
}
.zona-body { position: relative; z-index: 1; padding: 1.25rem; color: var(--white); }
.zona-body h3 { font-size: 1.3rem; font-weight: 800; }
.zona-body p  { font-size: .85rem; color: rgba(255,255,255,.8); }

/* ===== HOW IT WORKS ===== */
.section-como { padding: 4rem 0; }
.como-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.como-item { text-align: center; }
.como-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    font-size: 1.2rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.como-item h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: .4rem; }
.como-item p  { font-size: .875rem; color: var(--gray-600); }

/* ===== PRICING ===== */
.section-precios { padding: 4rem 0; background: var(--gray-50); }
.precios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.precio-card {
    background: var(--white); border-radius: var(--radius);
    border: 1.5px solid var(--gray-200); padding: 2rem 1.5rem;
    display: flex; flex-direction: column; gap: .75rem;
    transition: all var(--transition);
}
.precio-card.featured { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,161,32,.15); }
.precio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.precio-tag  { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); }
.precio-val  { font-size: 2.2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.precio-val span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.precio-desc { font-size: .875rem; color: var(--gray-600); }
.precio-feats { list-style: none; margin: .5rem 0 0; }
.precio-feats li { font-size: .85rem; padding: .3rem 0; color: var(--gray-600); }
.precio-feats li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* ===== MAP CTA ===== */
.section-mapa { padding: 3.5rem 0; }
.mapa-inner { background: var(--blue); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.mapa-text { padding: 3rem; color: var(--white); }
.mapa-text h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: .75rem; }
.mapa-text p  { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; font-size: .95rem; }
.mapa-placeholder {
    background: linear-gradient(135deg, #0d2d5e, #1a5e8a);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); min-height: 250px;
}

/* ===== SEARCH RESULTS ===== */
.search-results { padding: 2.5rem 0; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: .75rem; }
.results-count { font-size: .9rem; color: var(--gray-600); }
.filters-bar { display: flex; gap: .6rem; flex-wrap: wrap; }
.filter-chip {
    padding: .4rem .9rem; border-radius: 20px; font-size: .8rem; font-weight: 500;
    border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600);
    cursor: pointer; transition: all var(--transition);
}
.filter-chip.active, .filter-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ===== NEGOCIO DETAIL ===== */
.negocio-hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 2rem 0; }
.negocio-hero-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: start; }
.negocio-logo-big {
    width: 90px; height: 90px; border-radius: var(--radius);
    background: var(--blue); display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; flex-shrink: 0;
}
.negocio-info h1  { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--blue); }
.negocio-info .meta { color: var(--gray-600); font-size: .9rem; margin-top: .3rem; }
.negocio-contact-panel {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); padding: 1.25rem; min-width: 240px;
    display: flex; flex-direction: column; gap: .75rem;
}
.negocio-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.negocio-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.25rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue); color: rgba(255,255,255,.65); padding: 4.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; }
.footer-brand p { font-size: .875rem; margin-top: .9rem; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-whatsapp { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.footer-btn-contacto { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
.footer-btn-contacto:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.6); }
.footer-cta { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 1.5rem; }
.footer-cta a { color: var(--gold); font-weight: 600; }
.footer-cta a:hover { color: #f0b942; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.footer-badges span {
    font-size: .75rem; font-weight: 600;
    background: rgba(255,255,255,.1); border-radius: 20px; padding: .25rem .7rem; color: var(--white);
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.footer-cols-2 { display: flex; gap: 4.5rem; flex-wrap: wrap; }
.footer-cols-2 > div { flex: 0 0 auto; }
.footer-cols h4 {
    color: rgba(255,255,255,.45); font-weight: 700; margin-bottom: 1.35rem;
    font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
}
.footer-cols a  { display: block; font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: .95rem; transition: color var(--transition); }
.footer-cols a:hover { color: var(--white); }
.footer-agency { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 1rem; line-height: 1.65; }
.footer-agency strong { color: rgba(255,255,255,.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3.5rem; padding: 1.5rem 0; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: .75rem 0; font-size: .82rem; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 .4rem; }

/* ===== PUBLICAR PAGE ===== */
.publicar-hero { background: var(--blue); color: var(--white); padding: 3rem 0; text-align: center; }
.publicar-hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; }
.publicar-hero p  { color: rgba(255,255,255,.8); margin-top: .5rem; }
.form-card { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--gray-200); padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-800); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit;
    outline: none; transition: border-color var(--transition); color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--gray-400); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3   { color: var(--gray-600); font-size: 1.1rem; margin-bottom: .5rem; }

/* ===== PORTADA FICHA NEGOCIO ===== */
.negocio-portada { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; aspect-ratio: 4/3; }
.negocio-portada img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .zonas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; position: fixed; inset: 64px 0 0 0;
        background: var(--white); padding: 1.5rem; gap: 1rem; z-index: 99;
        border-top: 1px solid var(--gray-200); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }

    .hero { padding: 2.5rem 0 3rem; }
    .search-bar { flex-wrap: wrap; }
    .search-bar select { border-left: none; border-top: 1px solid var(--gray-200); width: 100%; padding: .75rem 1rem; }
    .search-bar button { width: 100%; justify-content: center; padding: .85rem; }

    .hero-stats { gap: 1.5rem; }
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .negocios-grid { grid-template-columns: 1fr; }
    .zonas-grid { grid-template-columns: 1fr 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .mapa-inner { grid-template-columns: 1fr; }
    .mapa-placeholder { min-height: 150px; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .negocio-hero-inner { grid-template-columns: auto 1fr; }
    .negocio-contact-panel { grid-column: 1 / -1; }
    .negocio-portada { aspect-ratio: auto; }
    .negocio-portada img { height: 350px; }
    .negocio-layout { grid-template-columns: 1fr; gap: 2rem; }
    .negocio-sidebar { position: static; }
    .precios-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .destacados-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .precios-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
}

/* ===== FAVORITO (Guardados) ===== */
.card-fav {
    position: absolute; top: .75rem; right: .75rem;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; box-shadow: var(--shadow-sm); transition: transform var(--transition);
}
.card-fav:hover { transform: scale(1.1); }
.card-fav.active { background: var(--white); }

/* ===== VISTAZO (modal de vista rápida) ===== */
.modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(15,23,42,.55);
    z-index: 100; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white); border-radius: var(--radius-lg); max-width: 460px; width: 100%;
    padding: 1.75rem; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
    position: absolute; top: .9rem; right: .9rem; font-size: 1.3rem; color: var(--gray-400);
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-800); }
.modal-box .vistazo-icono { font-size: 2.5rem; margin-bottom: .5rem; }
.modal-box .vistazo-nombre { font-size: 1.2rem; font-weight: 800; color: var(--blue); }
.modal-box .vistazo-cat { font-size: .8rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .05em; }
.modal-box .vistazo-desc { color: var(--gray-600); font-size: .9rem; margin: .75rem 0; line-height: 1.6; }
.modal-box .vistazo-linea { font-size: .85rem; color: var(--gray-600); margin-bottom: .4rem; }
.modal-box .vistazo-acciones { display: flex; gap: .6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.modal-box .vistazo-acciones .btn { flex: 1; min-width: 120px; }

/* ===== CARGAR MÁS ===== */
.cargar-mas-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ===== ICONOS ===== */
.icon { flex-shrink: 0; vertical-align: -3px; }
[data-fav-id] svg { color: var(--gray-400); transition: color var(--transition); }
[data-fav-id].active svg { fill: #e0245e; color: #e0245e; }
.fav-label { margin-left: .3rem; }

/* ===== ALERTAS DE FORMULARIO ===== */
.alert { padding: .85rem 1.1rem; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1.25rem; }
.alert-error { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }
.alert-ok { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }

/* ===== TELÉFONOS DE INTERÉS ===== */
.telefonos-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.telefono-card {
    background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    padding: 1.25rem;
}
.telefono-card h3 {
    display: flex; align-items: center; gap: .5rem;
    font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: .9rem;
}
.telefono-row {
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    padding: .55rem 0; border-bottom: 1px solid var(--gray-100);
    font-size: .875rem; color: var(--gray-800); transition: color var(--transition);
}
.telefono-row:last-child { border-bottom: none; }
.telefono-row:hover { color: var(--blue); }
.telefono-num { display: flex; align-items: center; gap: .3rem; color: var(--blue); font-weight: 600; white-space: nowrap; }
