/* =============================================
   ServiPronto — Design System v1.0
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-950: #060f1e;
  --navy-900: #0d1f3c;
  --navy-800: #142d57;
  --navy-700: #1a3a70;
  --navy-600: #1e4d8c;
  --navy-500: #2563eb;
  --navy-400: #3b82f6;
  --navy-300: #93c5fd;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-300: #fdba74;
  --orange-100: #fff7ed;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #f0fdfa;
  --green-500: #22c55e;
  --green-100: #f0fdf4;
  --red-500: #ef4444;
  --red-100: #fef2f2;
  --yellow-500: #eab308;
  --yellow-100: #fefce8;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --shadow-card: 0 2px 16px rgba(13,31,60,.07);
  --shadow-card-hover: 0 8px 36px rgba(13,31,60,.16);
  --shadow-orange: 0 8px 30px rgba(249,115,22,.35);
  --shadow-navy: 0 8px 30px rgba(13,31,60,.4);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --ease-fast: 0.15s cubic-bezier(.4,0,.2,1);
  --ease-normal: 0.3s cubic-bezier(.4,0,.2,1);
  --ease-slow: 0.5s cubic-bezier(.4,0,.2,1);
  --ease-bounce: 0.4s cubic-bezier(.34,1.56,.64,1);
  --max-width: 1280px;
  --nav-height: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--text-base); color: var(--gray-800); background: var(--gray-50); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(1.5rem, 3vw, var(--text-4xl)); }
h3 { font-size: clamp(1.2rem, 2vw, var(--text-2xl)); }
p { color: var(--gray-600); line-height: 1.7; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm); transition: all var(--ease-normal); white-space: nowrap; }
.btn-primary { background: var(--orange-500); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(249,115,22,.45); }
.btn-secondary { background: var(--white); color: var(--navy-800); border: 2px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--navy-500); color: var(--navy-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-navy); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }

/* =============================================
   BADGES
   ============================================= */
.badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.65rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em; }
.badge-verified { background: var(--teal-100); color: var(--teal-500); }
.badge-premium  { background: var(--orange-100); color: var(--orange-600); }
.badge-urgent   { background: var(--red-100); color: var(--red-500); }
.badge-free     { background: var(--gray-100); color: var(--gray-600); }

/* Badge cuando el promedio es < 4.0 */
.badge-not-verified { background: var(--red-100); color: var(--red-500); }
.badge-new      { background: var(--yellow-100); color: var(--yellow-500); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); background: var(--white); border-bottom: 1px solid var(--gray-200); transition: all var(--ease-normal); }
.navbar.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); }
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800; color: var(--white); flex-shrink: 0; text-decoration: none; }
.nav-logo .logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 14px rgba(249,115,22,.4); }
.nav-logo .logo-img { height: 80px; width: auto; max-width: 300px; object-fit: contain; transform: scale(1.3); transform-origin: left center; }
.nav-logo .accent { color: var(--orange-400); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: var(--navy-800); font-size: var(--text-sm); font-weight: 600; padding: 0.5rem 0.875rem; border-radius: var(--radius-md); transition: all var(--ease-fast); text-decoration: none; }
.nav-links a:hover { color: var(--orange-500); background: var(--gray-100); }
.nav-links a.active { color: var(--orange-500); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-login { color: var(--navy-800); font-size: var(--text-sm); font-weight: 600; padding: 0.5rem 0.875rem; border-radius: var(--radius-md); transition: all var(--ease-fast); text-decoration: none; }
.nav-login:hover { color: var(--orange-500); background: var(--gray-100); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all var(--ease-normal); }
.nav-mobile-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-200); padding: 1rem; z-index: 999; flex-direction: column; gap: 0.5rem; box-shadow: var(--shadow-md); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--navy-800); padding: 0.75rem 1rem; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; }
.nav-mobile-menu a:hover { background: var(--gray-100); color: var(--orange-500); }

/* =============================================
   HERO
   ============================================= */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-800) 100%); padding: calc(var(--nav-height) + 4rem) 0 6rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%); pointer-events: none; }
.hero::after  { content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.3); color: var(--orange-400); padding: 0.35rem 1rem; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600; margin-bottom: 1.5rem; animation: fadeInDown .6s ease both; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.75rem); line-height: 1.1; margin-bottom: 1.25rem; animation: fadeInUp .7s ease .1s both; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--orange-400), var(--orange-300)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: rgba(255,255,255,.65); font-size: var(--text-lg); margin-bottom: 2rem; animation: fadeInUp .7s ease .2s both; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp .7s ease .3s both; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; animation: fadeInUp .7s ease .4s both; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: var(--white); }
.hero-stat span { font-size: var(--text-xs); color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

/* =============================================
   SEARCH BOX
   ============================================= */
.search-box { background: rgba(255,255,255,.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-2xl); padding: 2rem; animation: fadeInRight .7s ease .2s both; }
.search-box h3 { color: var(--white); font-size: var(--text-lg); margin-bottom: 1.25rem; font-weight: 600; }
.search-field { position: relative; margin-bottom: 0.875rem; }
.search-field .field-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.1rem; pointer-events: none; }
.search-field input, .search-field select { width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); color: var(--white); font-size: var(--text-sm); font-weight: 500; transition: all var(--ease-fast); -webkit-appearance: none; }
.search-field input::placeholder { color: rgba(255,255,255,.4); }
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--orange-400); background: rgba(255,255,255,.14); box-shadow: 0 0 0 3px rgba(249,115,22,.2); }
.search-field select { color: rgba(255,255,255,.8); }
.search-field select option { background: var(--navy-900); color: var(--white); }
.btn-search { width: 100%; justify-content: center; padding: 1rem; font-size: var(--text-base); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); color: var(--white); font-weight: 700; margin-top: 0.5rem; transition: all var(--ease-normal); box-shadow: var(--shadow-orange); display: flex; align-items: center; gap: 0.5rem; }
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(249,115,22,.5); }
.search-popular { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.search-popular span { font-size: var(--text-xs); color: rgba(255,255,255,.4); }
.search-tag { font-size: var(--text-xs); color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); padding: 0.25rem 0.625rem; border-radius: var(--radius-full); cursor: pointer; transition: all var(--ease-fast); }
.search-tag:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { display: inline-block; color: var(--orange-500); font-weight: 700; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 0.75rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-500); max-width: 560px; margin: 0 auto; font-size: var(--text-lg); }

/* =============================================
   CATEGORIES
   ============================================= */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.category-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: all var(--ease-normal); position: relative; overflow: hidden; text-decoration: none; display: block; }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); opacity: 0; transition: opacity var(--ease-normal); }
.category-card:hover::before { opacity: 1; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.cat-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; position: relative; z-index: 1; transition: transform var(--ease-bounce); }
.category-card:hover .cat-icon { transform: scale(1.2); }
.cat-name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--gray-800); position: relative; z-index: 1; transition: color var(--ease-normal); display: block; }
.category-card:hover .cat-name { color: var(--white); }
.cat-count { font-size: var(--text-xs); color: var(--gray-400); position: relative; z-index: 1; transition: color var(--ease-normal); margin-top: 0.25rem; display: block; }
.category-card:hover .cat-count { color: rgba(255,255,255,.6); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { text-align: center; }
.step-number { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--white); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); margin: 0 auto 1.25rem; box-shadow: var(--shadow-navy); }
.step-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.step-card h3 { margin-bottom: 0.5rem; font-size: var(--text-lg); }
.step-card p { font-size: var(--text-sm); }

/* =============================================
   PROVIDER CARDS
   ============================================= */
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.provider-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--ease-normal); cursor: pointer; text-decoration: none; display: block; }
.provider-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--navy-300); }
.provider-card-header { padding: 1.25rem 1.25rem 0; display: flex; align-items: flex-start; gap: 0.875rem; }
.provider-avatar { width: 56px; height: 56px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); color: var(--white); flex-shrink: 0; position: relative; }
.avatar-verified::after { content: 'check'; position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; background: var(--teal-500); color: var(--white); border-radius: var(--radius-full); font-size: 10px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); font-weight: 800; font-family: sans-serif; content: '\2713'; }
.provider-info { flex: 1; min-width: 0; }
.provider-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); color: var(--gray-900); margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.provider-category { font-size: var(--text-xs); color: var(--navy-500); font-weight: 600; }
.provider-card-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.4rem; }
.provider-rating { display: flex; align-items: center; gap: 0.25rem; font-size: var(--text-xs); font-weight: 700; color: var(--gray-700); }
.provider-card-body { padding: 0.875rem 1.25rem; }
.provider-meta { display: flex; flex-direction: column; gap: 0.35rem; font-size: var(--text-xs); color: var(--gray-500); margin-bottom: 0.875rem; }
.provider-meta-item { display: flex; align-items: center; gap: 0.4rem; }
.provider-description { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.provider-card-footer { padding: 0.875rem 1.25rem; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.provider-price { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--gray-900); }
.provider-price span { color: var(--gray-400); font-weight: 400; }
.provider-ctas { display: flex; gap: 0.5rem; }
.btn-whatsapp { display: flex; align-items: center; gap: 0.3rem; background: #25d366; color: var(--white); padding: 0.4rem 0.75rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; transition: all var(--ease-fast); }
.btn-whatsapp:hover { background: #128c7e; transform: scale(1.05); }
.btn-quote { display: flex; align-items: center; gap: 0.3rem; background: #eff6ff; color: var(--navy-600); padding: 0.4rem 0.75rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; border: 1px solid var(--gray-200); transition: all var(--ease-fast); }
.btn-quote:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section { background: var(--navy-900); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.35rem; }
.stat-item span { font-size: var(--text-sm); color: rgba(255,255,255,.5); }
.stat-accent { color: var(--orange-400) !important; }

/* =============================================
   PREMIUM BANNER
   ============================================= */
.premium-banner { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); border-radius: var(--radius-2xl); padding: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; overflow: hidden; }
.premium-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%); }
.premium-banner-text { position: relative; z-index: 1; }
.premium-banner-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.premium-banner-text p { color: rgba(255,255,255,.65); max-width: 500px; }
.premium-banner-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.75rem; transition: all var(--ease-normal); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.testimonial-stars { margin-bottom: 1rem; font-size: 1rem; color: var(--yellow-500); }
.testimonial-text { font-size: var(--text-base); color: var(--gray-700); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-sm); color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: var(--text-sm); color: var(--gray-900); }
.testimonial-role { font-size: var(--text-xs); color: var(--gray-400); }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-2xl); padding: 2.5rem; position: relative; transition: all var(--ease-normal); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured { border-color: var(--orange-500); background: linear-gradient(160deg, #fff 0%, #fff7ed 100%); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); color: var(--white); padding: 0.3rem 1.25rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 700; white-space: nowrap; box-shadow: var(--shadow-orange); }
.pricing-plan { font-weight: 700; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 0.75rem; }
.pricing-price { font-family: var(--font-display); font-weight: 800; font-size: var(--text-5xl); color: var(--gray-900); line-height: 1; margin-bottom: 0.25rem; }
.pricing-price sup { font-size: var(--text-xl); vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pricing-period { font-size: var(--text-sm); color: var(--gray-400); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: var(--text-sm); color: var(--gray-600); }
.pricing-features .check { color: var(--green-500); flex-shrink: 0; }
.pricing-features .cross { color: var(--gray-300); flex-shrink: 0; }
.pricing-cta { width: 100%; text-align: center; justify-content: center; }

/* =============================================
   SEARCH RESULTS PAGE
   ============================================= */
.search-page { padding-top: var(--nav-height); min-height: 100vh; }
.search-header { background: var(--navy-900); padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.search-bar-row { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.search-input-wrap { flex: 1; position: relative; min-width: 200px; }
.search-input-wrap .search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); pointer-events: none; }
.search-input-wrap input { width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); color: var(--white); font-size: var(--text-sm); }
.search-input-wrap input:focus { outline: none; border-color: var(--orange-400); background: rgba(255,255,255,.14); }
.search-input-wrap input::placeholder { color: rgba(255,255,255,.35); }
.search-select { padding: 0.875rem 1.25rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); color: rgba(255,255,255,.8); font-size: var(--text-sm); min-width: 160px; -webkit-appearance: none; cursor: pointer; }
.search-select option { background: var(--navy-900); }
.search-select:focus { outline: none; border-color: var(--orange-400); }
.search-body { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; padding: 1.5rem 0; align-items: start; }

/* =============================================
   FILTERS SIDEBAR
   ============================================= */
.filters-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; position: sticky; top: calc(var(--nav-height) + 1rem); }
.filters-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); margin-bottom: 1.25rem; color: var(--gray-900); display: flex; align-items: center; justify-content: space-between; }
.filters-clear { font-size: var(--text-xs); color: var(--orange-500); font-weight: 600; cursor: pointer; background: none; border: none; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group-title { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 0.75rem; }
.filter-options { display: flex; flex-direction: column; gap: 0.5rem; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: var(--text-sm); color: var(--gray-700); padding: 0.25rem 0; }
.filter-option input[type="checkbox"], .filter-option input[type="radio"] { accent-color: var(--navy-600); width: 16px; height: 16px; cursor: pointer; }

/* =============================================
   RESULTS LIST
   ============================================= */
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.results-count { font-size: var(--text-sm); color: var(--gray-500); }
.results-count strong { color: var(--gray-900); font-weight: 700; }
.results-sort { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); color: var(--gray-600); }
.results-sort select { padding: 0.35rem 0.75rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: var(--text-sm); color: var(--gray-700); background: var(--white); }
.results-list { display: flex; flex-direction: column; gap: 1rem; }

/* =============================================
   RESULT CARD
   ============================================= */
.result-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.25rem; display: flex; gap: 1.25rem; transition: all var(--ease-normal); cursor: pointer; text-decoration: none; color: inherit; }
.result-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--navy-300); }
.result-card.premium-result { border-color: var(--orange-300); background: linear-gradient(135deg, #fff 0%, #fff9f5 100%); }
.result-avatar { width: 72px; height: 72px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); color: var(--white); flex-shrink: 0; position: relative; }
.result-info { flex: 1; min-width: 0; }
.result-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--gray-900); margin-bottom: 0.25rem; }
.result-category { font-size: var(--text-sm); color: var(--navy-500); font-weight: 600; margin-bottom: 0.5rem; }
.result-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.625rem; }
.result-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: var(--text-xs); color: var(--gray-500); }
.result-meta-item { display: flex; align-items: center; gap: 0.3rem; }
.result-description { font-size: var(--text-sm); color: var(--gray-600); margin-top: 0.625rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.result-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 0.75rem; flex-shrink: 0; }
.result-price .price-label { font-size: var(--text-xs); color: var(--gray-400); }
.result-price .price-value { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); color: var(--gray-900); }
.result-ctas { display: flex; flex-direction: column; gap: 0.4rem; }

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-page { padding-top: var(--nav-height); }
.profile-hero { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); padding: 3rem 0 4rem; position: relative; overflow: hidden; }
.profile-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%); }
.profile-hero-inner { display: flex; gap: 2rem; align-items: flex-start; position: relative; z-index: 1; flex-wrap: wrap; }
.profile-avatar-lg { width: 100px; height: 100px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: var(--white); flex-shrink: 0; border: 3px solid rgba(255,255,255,.2); box-shadow: var(--shadow-xl); }
.profile-basic h1 { color: var(--white); font-size: var(--text-3xl); margin-bottom: 0.25rem; }
.profile-basic .profile-biz { color: rgba(255,255,255,.7); font-size: var(--text-lg); margin-bottom: 0.75rem; }
.profile-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.profile-stats-row { display: flex; gap: 2rem; margin-top: 1rem; flex-wrap: wrap; }
.profile-stat strong { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: var(--white); }
.profile-stat span { font-size: var(--text-xs); color: rgba(255,255,255,.5); }
.profile-actions { margin-left: auto; display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }
.profile-body { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; padding: 2.5rem 0; align-items: start; }
.profile-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.75rem; margin-bottom: 1.5rem; }
.profile-section-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); margin-bottom: 1.25rem; color: var(--gray-900); display: flex; align-items: center; gap: 0.5rem; }
.services-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag { background: var(--gray-100); color: var(--gray-700); padding: 0.4rem 0.875rem; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 500; transition: all var(--ease-fast); }
.service-tag:hover { background: var(--navy-800); color: var(--white); cursor: pointer; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; transition: all var(--ease-fast); position: relative; }
.gallery-item:hover { transform: scale(1.03); }
.reviews-list { display: flex; flex-direction: column; gap: 1.25rem; }
.review-item { padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-100); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.reviewer-info { display: flex; align-items: center; gap: 0.625rem; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: var(--text-sm); font-weight: 700; color: var(--gray-600); }
.reviewer-name { font-weight: 600; font-size: var(--text-sm); color: var(--gray-900); }
.review-date { font-size: var(--text-xs); color: var(--gray-400); }
.review-stars { color: var(--yellow-500); font-size: var(--text-sm); }
.review-text { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.6; }

/* =============================================
   CONTACT CARD (Profile Sidebar)
   ============================================= */
.contact-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.25rem; position: sticky; top: calc(var(--nav-height) + 1rem); }
.contact-card-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); margin-bottom: 1.25rem; color: var(--gray-900); }
.contact-ctas { display: flex; flex-direction: column; gap: 0.625rem; }
.btn-contact-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #25d366; color: var(--white); padding: 0.875rem 1rem; border-radius: var(--radius-lg); font-weight: 700; font-size: var(--text-sm); transition: all var(--ease-normal); }
.btn-contact-wa:hover { background: #128c7e; transform: translateY(-2px); }
.btn-contact-quote { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--navy-800); color: var(--white); padding: 0.875rem 1rem; border-radius: var(--radius-lg); font-weight: 700; font-size: var(--text-sm); transition: all var(--ease-normal); }
.btn-contact-quote:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-contact-call { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--white); color: var(--gray-700); padding: 0.875rem 1rem; border-radius: var(--radius-lg); font-weight: 600; font-size: var(--text-sm); border: 1px solid var(--gray-200); transition: all var(--ease-normal); }
.btn-contact-call:hover { border-color: var(--navy-500); color: var(--navy-600); }
.info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.25rem; }
.info-card-title { font-weight: 700; font-size: var(--text-sm); color: var(--gray-900); margin-bottom: 1rem; }
.info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: var(--text-sm); color: var(--gray-600); }
.info-item .info-icon { font-size: 1rem; flex-shrink: 0; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.5rem; }
.zone-tag { background: var(--gray-100); color: var(--gray-600); padding: 0.2rem 0.625rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 500; }

/* =============================================
   REGISTER PAGE
   ============================================= */
.register-page { padding-top: var(--nav-height); background: var(--gray-50); min-height: 100vh; }
.register-header { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); padding: 3rem 0; text-align: center; }
.register-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.register-header p { color: rgba(255,255,255,.6); }
.steps-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin: 2.5rem 0; }
.progress-step { display: flex; align-items: center; gap: 0; flex-direction: column; }
.progress-step-inner { display: flex; align-items: center; }
.progress-dot { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--gray-200); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-sm); font-family: var(--font-display); transition: all var(--ease-normal); }
.progress-dot.active { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-navy); }
.progress-dot.done { background: var(--teal-500); color: var(--white); }
.progress-label { font-size: var(--text-xs); color: var(--gray-400); text-align: center; margin-top: 0.3rem; white-space: nowrap; }
.progress-line { width: 80px; height: 2px; background: var(--gray-200); }
.progress-line.done { background: var(--teal-500); }
.register-body { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; padding: 2.5rem 0 4rem; align-items: start; }
.register-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); margin-bottom: 0.5rem; }
.form-step-subtitle { color: var(--gray-500); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1/-1; }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--gray-700); }
.form-input, .form-select, .form-textarea { padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: var(--text-sm); color: var(--gray-800); background: var(--white); transition: all var(--ease-fast); width: 100%; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: var(--text-xs); color: var(--gray-400); }
.category-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
.cat-pick-item { border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 0.875rem 0.5rem; text-align: center; cursor: pointer; transition: all var(--ease-fast); }
.cat-pick-item:hover { border-color: var(--navy-500); background: rgba(37,99,235,.04); }
.cat-pick-item.selected { border-color: var(--navy-700); background: rgba(13,31,60,.06); }
.cat-pick-item .cat-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.25rem; }
.cat-pick-item .cat-label { font-size: var(--text-xs); font-weight: 600; color: var(--gray-700); }
.plan-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.plan-pick-item { border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; cursor: pointer; transition: all var(--ease-fast); position: relative; }
.plan-pick-item:hover { border-color: var(--navy-500); }
.plan-pick-item.selected { border-color: var(--orange-500); background: var(--orange-100); }
.plan-pick-price { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); color: var(--gray-900); margin-bottom: 0.25rem; }
.plan-pick-name { font-weight: 700; font-size: var(--text-sm); margin-bottom: 0.75rem; color: var(--gray-700); }
.plan-pick-features { font-size: var(--text-xs); color: var(--gray-500); line-height: 1.7; }
.form-actions { display: flex; justify-content: flex-end; gap: 0.875rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.register-aside { position: sticky; top: calc(var(--nav-height) + 1rem); display: flex; flex-direction: column; gap: 1.25rem; }
.preview-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 1.5rem; }
.preview-card h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: 1rem; color: var(--gray-900); }
.benefits-list { display: flex; flex-direction: column; gap: 0.625rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: var(--text-sm); color: var(--gray-600); }
.benefit-check { color: var(--teal-500); flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--navy-950); color: rgba(255,255,255,.6); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: var(--text-sm); margin-top: 0.75rem; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--ease-fast); }
.social-link:hover { background: var(--orange-500); transform: translateY(-2px); }
.footer-col h5 { font-size: var(--text-sm); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,.45); transition: color var(--ease-fast); }
.footer-col a:hover { color: var(--orange-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,.3); transition: color var(--ease-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--navy-900); color: var(--white); padding: 0.875rem 1.5rem; border-radius: var(--radius-lg); font-size: var(--text-sm); font-weight: 500; box-shadow: var(--shadow-xl); z-index: 9999; display: flex; align-items: center; gap: 0.625rem; transform: translateX(120%); transition: transform var(--ease-bounce); }
.toast.show    { transform: translateX(0); }
.toast.success { background: var(--teal-500); }
.toast.error   { background: var(--red-500); }
.toast.warning { background: var(--yellow-500); color: var(--gray-900); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(24px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(32px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft  { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float       { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-ring  { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes shimmer     { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin        { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.animate-fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }
.animate-fade-left { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.animate-fade-left.visible { opacity: 1; transform: translateX(0); }
.float { animation: float 4s ease-in-out infinite; }

.skeleton { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-md); }

/* =============================================
   AVATAR COLOR CLASSES
   ============================================= */
.av-blue   { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.av-orange { background: linear-gradient(135deg, #ea580c, #f97316); }
.av-teal   { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.av-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.av-rose   { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.av-green  { background: linear-gradient(135deg, #15803d, #22c55e); }
.av-amber  { background: linear-gradient(135deg, #b45309, #f59e0b); }
.av-indigo { background: linear-gradient(135deg, #4338ca, #6366f1); }
.av-cyan   { background: linear-gradient(135deg, #0e7490, #06b6d4); }
.av-pink   { background: linear-gradient(135deg, #be185d, #ec4899); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center    { text-align: center; }
.text-right     { text-align: right; }
.text-left      { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.flex-wrap  { flex-wrap: wrap; }
.flex-1     { flex: 1; }
.w-full     { width: 100%; }
.hidden     { display: none !important; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.truncate   { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rounded-full  { border-radius: var(--radius-full); }
.font-bold     { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-sm    { font-size: var(--text-sm); }
.text-xs    { font-size: var(--text-xs); }
.text-orange { color: var(--orange-500); }
.text-navy   { color: var(--navy-800); }
.text-teal   { color: var(--teal-500); }
.text-muted  { color: var(--gray-400); }
.map-placeholder { background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); border-radius: var(--radius-xl); height: 280px; display: flex; align-items: center; justify-content: center; font-size: 3rem; margin-bottom: 1.5rem; border: 1px solid var(--gray-200); }
.divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }

:focus-visible { outline: 3px solid var(--navy-400); outline-offset: 2px; border-radius: var(--radius-sm); }
button:focus-visible, a:focus-visible { outline: 3px solid var(--orange-400); outline-offset: 3px; }

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .categories-grid    { grid-template-columns: repeat(4, 1fr); }
  .providers-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .search-body        { grid-template-columns: 240px 1fr; }
  .profile-body       { grid-template-columns: 1fr 300px; }
  .register-body      { grid-template-columns: 1fr; }
  .register-aside     { position: static; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-login { display: none; }
  .nav-hamburger          { display: flex; }
  .hero { padding: calc(var(--nav-height) + 2rem) 0 4rem; }
  .categories-grid    { grid-template-columns: repeat(3, 1fr); }
  .steps-grid         { grid-template-columns: 1fr; }
  .providers-grid     { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .premium-banner     { flex-direction: column; padding: 2rem; }
  .search-body        { grid-template-columns: 1fr; }
  .filters-sidebar    { position: static; }
  .profile-hero-inner { flex-direction: column; }
  .profile-body       { grid-template-columns: 1fr; }
  .profile-actions    { margin-left: 0; flex-direction: row; flex-wrap: wrap; }
  .result-card        { flex-direction: column; }
  .result-actions     { flex-direction: row; align-items: center; justify-content: space-between; }
  .form-grid          { grid-template-columns: 1fr; }
  .category-picker    { grid-template-columns: repeat(2, 1fr); }
  .plan-picker        { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .section            { padding: 3.5rem 0; }
  .premium-banner-text h2 { font-size: var(--text-2xl); }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas       { flex-direction: column; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .toast           { right: 1rem; left: 1rem; bottom: 1rem; }
  .search-bar-row  { flex-direction: column; }
  .search-select   { width: 100%; }
  .hero-stats      { gap: 1.5rem; }
  .profile-stats-row { gap: 1.25rem; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .navbar, .nav-mobile-menu, .toast, .btn-search,
  .contact-ctas, footer { display: none !important; }
  body { background: #fff; color: #000; }
  .profile-hero { background: #fff; padding: 1rem 0; }
  .profile-basic h1, .profile-basic .profile-biz { color: #000; }
}
/* ----- ESTILOS PARA EL MODAL DE CALIFICACIÓN ----- */
.rating-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}
.rating-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
}
.rating-modal h2 {margin-top:0;font-family:'Inter',sans-serif;font-size:1.5rem;color:#222;}
.stars input{display:none;}
.stars label{font-size:2rem;color:#ccc;cursor:pointer;}
.stars input:checked~label,
.stars label:hover,
.stars label:hover~label{color:#ffb400;}
.half::before{content:'\2605';position:absolute;width:50%;overflow:hidden;color:#ffb400;}
.rating-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:1.5rem;}
.rating-actions button{padding:0.6rem 1.2rem;border:none;border-radius:6px;cursor:pointer;}
.rating-actions button#cancel-rating{background:#e0e0e0;color:#333;}
.rating-actions button#submit-rating{background:#0066ff;color:#fff;}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes slideUp{from{transform:translateY(20px);}to{transform:translateY(0);}}
.badge-verified{background:#4caf50;color:#fff;padding:0.3rem 0.6rem;border-radius:4px;}
.badge-not-verified{background:#9e9e9e;color:#fff;padding:0.3rem 0.6rem;border-radius:4px;}
/* ----- FIN ESTILOS MODAL ----- */
