* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header { border-bottom: 1px solid #eee; padding: 14px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 16px; font-weight: 600; color: #1a1a1a; }
.logo-dot { color: #c17f24; }
.logo small { display: block; font-size: 11px; color: #888; }
.nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav a { font-size: 14px; color: #555; text-decoration: none; }
.nav a:hover { color: #c17f24; }
.btn-registro { background: #fdf0dc; color: #7a4a0a; padding: 7px 16px; border-radius: 8px; font-weight: 500; font-size: 13px; }

/* HERO */
.hero { background: #fdf0dc; padding: 3rem 0 2rem; }
.hero h1 { font-size: 26px; font-weight: 600; color: #2d1800; margin-bottom: 10px; max-width: 600px; line-height: 1.3; }
.hero p { font-size: 15px; color: #7a4a0a; margin-bottom: 1.5rem; max-width: 500px; }
.search-box { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.search-row { display: flex; gap: 8px; flex-wrap: wrap; }
.search-row select, .search-row input { flex: 1; min-width: 140px; padding: 9px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; font-family: inherit; }
.btn-buscar { background: #c17f24; color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap; }
.btn-buscar:hover { background: #a06a1a; }

/* STATS */
.stats { padding: 2rem 0; border-bottom: 1px solid #f0f0f0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 600; color: #c17f24; }
.stat-label { font-size: 12px; color: #888; margin-top: 4px; display: block; }

/* AD BANNER */
.ad-banner { background: #f0f7e6; border: 1px solid #d4e8b0; border-radius: 12px; padding: 16px 20px; margin: 1.5rem 0; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ad-icon { font-size: 32px; flex-shrink: 0; }
.ad-content { flex: 1; min-width: 200px; }
.ad-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: #4a7c20; font-weight: 600; }
.ad-title { font-size: 15px; font-weight: 600; color: #1a1a1a; margin: 2px 0; }
.ad-desc { font-size: 13px; color: #555; }
.ad-cta { background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 8px 16px; font-size: 13px; color: #1a1a1a; text-decoration: none; white-space: nowrap; }

/* SECTION */
.section-header { display: flex; justify-content: space-between; align-items: center; margin: 2rem 0 1rem; }
.section-header h2 { font-size: 18px; font-weight: 600; }
.section-header a { font-size: 13px; color: #c17f24; text-decoration: none; }

/* FILTERS */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.filter { background: #fff; border: 1px solid #ddd; border-radius: 20px; padding: 6px 14px; font-size: 13px; color: #555; text-decoration: none; }
.filter:hover, .filter.active { background: #fdf0dc; color: #7a4a0a; border-color: #e8c07a; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; transition: border-color .15s; }
.card:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.card-destacado { border: 2px solid #e8c07a; }
.badge { display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; font-weight: 500; }
.badge-dest { background: #fdf0dc; color: #7a4a0a; }
.card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.card h3 a { color: #1a1a1a; text-decoration: none; }
.card h3 a:hover { color: #c17f24; }
.card-location { font-size: 12px; color: #888; margin-bottom: 10px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.tag { font-size: 11px; background: #f5f5f5; color: #555; padding: 3px 8px; border-radius: 20px; }
.btn-whatsapp { display: block; text-align: center; background: #f0f7e6; color: #2d6a0a; padding: 7px; border-radius: 8px; font-size: 12px; text-decoration: none; font-weight: 500; }
.btn-whatsapp:hover { background: #e0f0cc; }
.empty-state { text-align: center; padding: 3rem; color: #888; font-size: 14px; grid-column: 1/-1; }
.empty-state a { color: #c17f24; }

/* FOOTER */
.footer { background: #1a1a1a; color: #ccc; padding: 3rem 0 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer a { display: block; font-size: 13px; color: #aaa; text-decoration: none; margin-bottom: 8px; }
.footer a:hover { color: #c17f24; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; font-size: 12px; color: #666; text-align: center; }

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 { font-size: 20px; }
    .search-row { flex-direction: column; }
    .search-row select, .search-row input { width: 100%; }
    .header-inner { flex-direction: column; align-items: flex-start; }
}
/* FICHA DE EMPRESA */
.ficha-header { margin-bottom: 2rem; }
.ficha-header h1 { font-size: 24px; font-weight: 600; margin: 8px 0; }
.ficha-location { font-size: 14px; color: #888; margin-bottom: 8px; }
.ficha-stars { font-size: 18px; color: #c17f24; }
.ficha-stars span { font-size: 13px; color: #888; margin-left: 6px; }
.badge-ver { background: #e6f1fb; color: #185fa5; margin-left: 6px; }

.ficha-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
@media(max-width:768px) { .ficha-grid { grid-template-columns: 1fr; } }

.ficha-section { margin-bottom: 2rem; }
.ficha-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #eee; }
.ficha-section p { font-size: 14px; color: #555; line-height: 1.7; }

.ficha-contact { background: #f9f9f9; border-radius: 12px; padding: 20px; }
.ficha-contact h2 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.contact-item { display: block; font-size: 14px; color: #333; text-decoration: none; margin-bottom: 10px; }
.contact-item:hover { color: #c17f24; }

/* VALORACIONES */
.valoracion { border-bottom: 1px solid #eee; padding: 12px 0; }
.val-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.val-stars { color: #c17f24; font-size: 14px; }
.valoracion p { font-size: 13px; color: #555; }

.val-form { background: #f9f9f9; border-radius: 12px; padding: 20px; margin-top: 1.5rem; }
.val-form h3 { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.val-form input, .val-form select, .val-form textarea { width: 100%; padding: 9px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; font-family: inherit; margin-bottom: 10px; }
.val-form button { background: #c17f24; color: #fff; border: none; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 500; cursor: pointer; width: 100%; }
.val-form button:hover { background: #a06a1a; }
