@font-face {
  font-family: 'Glacial Indifference';
  src: url('GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --orange:       #E8762A;
  --orange-dark:  #C55E18;
  --orange-pale:  #FDF0E6;
  --dark:         #1A1A1A;
  --dark-soft:    #3D3D3D;
  --gray:         #6B6B6B;
  --gray-light:   #9CA3AF;
  --gray-bg:      #F5F5F5;
  --border:       #E5E5E5;
  --white:        #FFFFFF;
  --peach:        #FDEEDE;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  100px;
}

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

body::before,
body::after {
  content: '';
  position: fixed;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 50;
}
body::before {
  top: 0;
  height: 15px;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.15) 85%, transparent 100%);
}
body::after {
  bottom: 0;
  height: 15px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.15) 85%, transparent 100%);
}
html { scroll-behavior: smooth; }
body { font-family: 'Glacial Indifference', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
select { appearance: none; -webkit-appearance: none; cursor: pointer; }
button { cursor: pointer; }

/* =============================================
   UTILITIES
============================================= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.tag { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.tag--orange { background: var(--orange-pale); color: var(--orange-dark); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-pill);
  font-family: 'Glacial Indifference', sans-serif; font-weight: 600; font-size: 0.9rem;
  border: 2px solid transparent; transition: all .2s ease;
}
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(232,118,42,.35); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,118,42,.45); }
.btn--ghost { background: transparent; color: var(--dark); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--search { background: var(--orange); color: var(--white); padding: 12px 24px; border-radius: 0 var(--radius-pill) var(--radius-pill) 0; font-size: 0.92rem; border: none; flex-shrink: 0; }
.btn--search:hover { background: var(--orange-dark); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* =============================================
   LOGO
============================================= */
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 108px; width: auto; display: block; }
.logo-img--footer { height: 38px; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.navbar__inner {
  display: flex; align-items: center; gap: 14px;
  max-width: 1280px; margin: 0 auto; padding: 4px 24px;
}

/* BUSCADOR */
.navbar__search {
  display: flex; align-items: center;
  background: #F5F5F5; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); padding: 7px 14px; gap: 8px;
  flex: 1; min-width: 180px; max-width: 380px;
  transition: border-color .2s;
  margin-left: 24px;
}
.navbar__search:focus-within { border-color: var(--orange); background: var(--white); }
.navbar__search input {
  border: none; background: transparent; outline: none;
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.88rem; color: var(--dark); width: 100%;
}
.navbar__search input::placeholder { color: #ADADAD; }
.navbar__search button {
  background: none; border: none; color: var(--gray); display: flex; cursor: pointer;
  transition: color .2s;
}
.navbar__search button:hover { color: var(--orange); }

/* UBICACIÓN */
.navbar__location {
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.location-select {
  border: none; background: transparent; outline: none;
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--dark); cursor: pointer;
}

/* DERECHA */
.navbar__right {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.navbar__pro-cta { position: relative; display: flex; align-items: center; }
.navbar__pro-text { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; color: var(--gray); white-space: nowrap; }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }

.navbar__nav { display: flex; gap: 32px; margin-left: 24px; }
.navbar__nav a { font-size: 0.88rem; font-weight: 500; color: var(--orange); transition: opacity .2s; }
.navbar__nav a:hover { opacity: .7; }

/* =============================================
   HERO — estilo original: foto clara + título tipográfico
============================================= */
.hero {
  position: relative; min-height: 360px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__worker {
  position: absolute; top: 0; height: 100%; width: 30%;
  object-fit: cover; object-position: top center;
  filter: none;
  pointer-events: none;
}
.hero__worker--left  { left: 0;  object-position: top right; }
.hero__worker--right { right: 0; object-position: top left; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(210,207,203,.55) 0%,
    rgba(220,218,214,.10) 25%,
    rgba(220,218,214,.10) 75%,
    rgba(210,207,203,.55) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 56px 24px 52px; max-width: 760px;
}
.hero__brand-title {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400; line-height: 1; letter-spacing: -3px; margin-bottom: 14px;
}
.ht-orange { color: var(--orange); }
.ht-dark   { color: var(--dark); }
.hero__subtitle {
  font-family: 'Glacial Indifference', sans-serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--dark-soft); margin-bottom: 32px;
}
@keyframes balanceo {
  0%   { transform: rotate(14deg); }
  50%  { transform: rotate(8deg); }
  100% { transform: rotate(14deg); }
}

.hero-btn-wrapper {
  position: relative;
  display: inline-block;
}

.btn--hero {
  position: relative;
  background: var(--orange);
  color: var(--white);
  padding: 15px 48px; font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: none;
  display: inline-block;
  transform-origin: top left;
  animation: balanceo 5s ease-in-out infinite;
  overflow: hidden;
  user-select: none;
  transition: box-shadow .3s ease;
}
.btn--hero.painted {
  color: var(--white);
  box-shadow: none;
  animation: none;
  transform: rotate(0deg);
}
.btn--hero .btn-text { position: relative; z-index: 5; }

.btn--hero .crack-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 52'%3E%3Cpath d='M38,2 L30,16 L42,23 L32,50' stroke='rgba(0,0,0,0.5)' stroke-width='1.3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M30,16 L18,21' stroke='rgba(0,0,0,0.3)' stroke-width='0.8' fill='none' stroke-linecap='round'/%3E%3Cpath d='M42,23 L50,28' stroke='rgba(0,0,0,0.2)' stroke-width='0.6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M110,3 L102,19 L115,27 L105,50' stroke='rgba(0,0,0,0.4)' stroke-width='1.1' fill='none' stroke-linecap='round'/%3E%3Cpath d='M200,4 L210,19 L198,28 L208,50' stroke='rgba(0,0,0,0.35)' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M210,19 L224,17' stroke='rgba(0,0,0,0.22)' stroke-width='0.7' fill='none' stroke-linecap='round'/%3E%3Cpath d='M268,5 L260,21 L273,31 L264,50' stroke='rgba(0,0,0,0.38)' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 2; pointer-events: none;
  opacity: 1; transition: opacity 0.4s ease;
}
.btn--hero .vivid-layer {
  position: absolute; inset: 0;
  background: rgba(35, 10, 0, 0.52);
  z-index: 3; pointer-events: none;
  clip-path: inset(0 0 0 0);
  transition: none;
}
.hero-btn-wrapper .brush {
  position: absolute; top: 50%; left: -100px;
  transform: translateY(-60%) rotate(-45deg);
  z-index: 20; pointer-events: none; opacity: 0;
  filter: drop-shadow(1px 3px 5px rgba(0,0,0,0.25));
}
.hero-btn-wrapper .brush img {
  width: 90px; height: auto; display: block; transform: scaleX(-1) rotate(180deg);
}

/* Estados JS */
.btn--hero.painted .vivid-layer { clip-path: inset(0 0 0 100%); }

.btn--hero.painting .crack-overlay {
  opacity: 0; transition: opacity 0.3s ease 0.3s;
}
.btn--hero.painted .crack-overlay { opacity: 0; }

.btn--hero.painted .screw-el {
  opacity: 1; transform: rotate(0deg);
}

.btn--hero .screw-el {
  position: absolute;
  top: calc(50% - 9px);
  width: 18px; height: 18px;
  border-radius: 50%;
  background-image: url('tornillo.png');
  background-size: cover; background-position: center;
  opacity: 0; transform: rotate(1080deg);
  z-index: 6; pointer-events: none;
  transition: opacity 0.15s ease, transform 0s 0.15s;
}
.btn--hero .screw-el--left  { left: 12px; }
.btn--hero .screw-el--right { right: 12px; }

.btn--hero.screwing .screw-el {
  opacity: 1; transform: rotate(0deg);
  transition: opacity 0.5s ease, transform 2.2s linear;
}

/* =============================================
   QUÉ HACEMOS
============================================= */
.what-we-do { padding: 72px 0 64px; background: var(--white); }
.wwd-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  color: var(--dark); text-align: center;
}
.wwd-title--sub { margin-top: 40px; }
.wwd-desc {
  text-align: center; font-size: 1rem; color: var(--gray);
  max-width: 520px; margin: 12px auto 0; line-height: 1.7;
}
.wwd-features {
  display: flex; justify-content: center; gap: 56px;
  margin-top: 40px; flex-wrap: wrap;
}
.wwd-feature {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; width: 160px; text-align: center;
}
.wwd-icon { width: 90px; height: 90px; }
.wwd-icon svg { width: 100%; height: 100%; }
.wwd-label { font-size: 0.92rem; font-weight: 500; color: var(--dark-soft); }

/* =============================================
   CATEGORIES
============================================= */
.categories {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.categories__label {
  font-size: 0.8rem; font-weight: 600; color: var(--gray);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 12px;
}
.categories__grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.83rem; font-weight: 500;
  background: var(--gray-bg); color: var(--dark-soft);
  border: 1.5px solid var(--border); transition: all .2s;
}
.chip:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.chip--active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.chip svg { opacity: .7; }
.chip--active svg { opacity: 1; }

/* =============================================
   DIRECTORY
============================================= */
.directory { padding: 48px 0 80px; background: var(--gray-bg); position: relative; }
.directory::before {
  content: '';
  position: absolute; inset: 0;
  background: url('patron-tile.png') 0 0/600px 450px repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.directory > * { position: relative; z-index: 1; }

.directory__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.directory__title {
  font-size: 1.4rem; font-weight: 700; color: var(--dark);
}
.directory__count { font-size: 0.88rem; color: var(--gray); margin-top: 2px; }
.directory__sort { display: flex; align-items: center; gap: 10px; }
.directory__sort label { font-size: 0.85rem; color: var(--gray); }
.directory__sort select {
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--dark); background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 7px 32px 7px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}

/* PROS GRID */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* PRO CARD */
.pro-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.pro-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(232,118,42,.4); }

.pro-card__header { display: flex; align-items: flex-start; gap: 14px; }

.pro-card__avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid var(--border);
  background: var(--gray-bg); display: flex; align-items: center; justify-content: center;
}
.pro-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pro-card__avatar--initials {
  font-size: 1.2rem; font-weight: 700; color: var(--orange); background: var(--orange-pale);
}

.pro-card__info { flex: 1; min-width: 0; }
.pro-card__name { font-weight: 700; font-size: 0.97rem; color: var(--dark); line-height: 1.3; }
.pro-card__type {
  font-size: 0.75rem; font-weight: 600; color: var(--gray);
  text-transform: uppercase; letter-spacing: .4px; margin-top: 1px;
}

.pro-card__verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.72rem; font-weight: 600; color: #059669;
  background: #ECFDF5; padding: 2px 8px; border-radius: var(--radius-pill);
  margin-top: 4px;
}

.pro-card__specialty {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-pale); color: var(--orange-dark);
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; align-self: flex-start;
}

.pro-card__meta { display: flex; flex-direction: column; gap: 5px; }
.pro-card__meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.83rem; color: var(--dark-soft);
}
.pro-card__meta-item svg { color: var(--gray-light); flex-shrink: 0; }

.pro-card__stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }

.pro-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto;
}

.pro-card__flowdesk {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.73rem; font-weight: 600; color: var(--orange);
  background: var(--orange-pale); padding: 3px 9px; border-radius: var(--radius-pill);
}

.btn--card {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.8rem; font-weight: 600;
  transition: background .2s;
}
.btn--card:hover { background: var(--orange); }

/* NO RESULTS */
.no-results {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 72px 0; color: var(--gray); text-align: center;
}
.no-results p { font-size: 1rem; }

/* =============================================
   INTEGRATIONS
============================================= */
.integrations { padding: 96px 0; background: var(--white); }
.integrations__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.integrations__text { display: flex; flex-direction: column; gap: 20px; }
.integrations__title {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--dark); line-height: 1.3;
}
.integrations__desc { font-size: 0.97rem; color: var(--dark-soft); line-height: 1.75; }
.integrations__list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.integrations__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--dark-soft); font-weight: 500;
}

.integrations__apps { display: flex; flex-direction: column; gap: 14px; }

.integration-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--gray-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  transition: all .2s;
}
.integration-card:hover { border-color: var(--orange); background: var(--orange-pale); }
.integration-card--featured { border-color: var(--orange); background: var(--orange-pale); }

.integration-card__logo {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.integration-card__logo--gray { background: var(--border); }

.integration-card__name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.integration-card__desc { font-size: 0.8rem; color: var(--gray); margin-top: 1px; }

.integration-badge {
  margin-left: auto; padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; flex-shrink: 0;
}
.integration-badge--live { background: #ECFDF5; color: #059669; }
.integration-badge--soon { background: var(--gray-bg); color: var(--gray); border: 1px solid var(--border); }

.integration-card--cta {
  border-style: dashed; border-color: #D1D5DB;
  background: transparent; cursor: pointer; color: var(--dark-soft);
}
.integration-card--cta:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.integration-card--cta p { font-size: 0.87rem; line-height: 1.4; }

/* =============================================
   REGISTER CTA
============================================= */
.register-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #C55E18 100%);
  padding: 80px 0;
}
.register-cta__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 40px; text-align: center;
}
.register-cta__text h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.register-cta__text p { color: rgba(255,255,255,.8); font-size: 1rem; }

.register-cta__steps { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center; }
.step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 200px; text-align: center;
}
.step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.4);
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step p { font-size: 0.85rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.step__arrow { color: rgba(255,255,255,.4); font-size: 1.5rem; padding-top: 10px; }

.register-cta .btn--primary {
  background: var(--white); color: var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.register-cta .btn--primary:hover { background: rgba(255,255,255,.92); }

/* =============================================
   FOOTER — fondo blanco como diseño original
============================================= */
.footer { background: var(--white); color: var(--dark); position: relative; }

/* Patrón diagonal sutil — igual que el footer original */
.footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(0,0,0,.018) 40px, rgba(0,0,0,.018) 41px
  );
}

.footer__top { padding: 64px 0 48px; border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.65; max-width: 260px; color: var(--gray); }

.footer__social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark); border: none;
  color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }

.footer__col { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.footer__col h4 { font-size: 0.85rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.footer__col a { font-size: 0.87rem; color: var(--gray); transition: color .2s; }
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; position: relative; z-index: 1;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 0.8rem; color: var(--gray-light); }

/* =============================================
   FLOATING BTN
============================================= */
.floating-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 12px 20px 12px 16px; border-radius: var(--radius-pill);
  font-family: 'Glacial Indifference', sans-serif; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(232,118,42,.5);
  transition: transform .25s, box-shadow .25s;
  animation: float-pulse 3s ease-in-out infinite;
}
.floating-btn:hover { transform: scale(1.06); box-shadow: 0 10px 32px rgba(232,118,42,.65); animation: none; }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(232,118,42,.5); }
  50% { box-shadow: 0 6px 32px rgba(232,118,42,.8), 0 0 0 8px rgba(232,118,42,.12); }
}

/* =============================================
   ANIMATIONS
============================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .integrations__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar__brand-text { display: none; }

  /* Navbar en dos filas en móvil */
  .navbar__inner {
    flex-wrap: wrap;
    padding: 6px 16px 0;
    gap: 8px;
  }
  .logo-img { height: 56px; }

  /* Ocultar búsqueda y ciudad en móvil para dar espacio */
  .navbar__search  { display: none; }
  .navbar__location { display: none; }

  /* Botón más compacto */
  .navbar__right { margin-left: auto; gap: 8px; }
  .navbar__pro-text { display: none; }
  .btn--sm { font-size: 0.78rem; padding: 7px 12px; }

  /* Pestañas en segunda fila, visibles y centradas */
  .navbar__nav {
    display: flex !important;
    width: 100%;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    padding: 6px 0;
    order: 10;
  }
  .navbar__nav a {
    font-size: 0.82rem;
    padding: 4px 14px;
  }

  .hero__search-box { flex-direction: column; border-radius: var(--radius-lg); overflow: visible; gap: 0; }
  .search-field { padding: 0 16px; }
  .search-field--text, .search-field--select { border-bottom: 1px solid var(--border); flex: none; width: 100%; }
  .search-divider { display: none; }
  .btn--search { border-radius: var(--radius-pill); width: 100%; padding: 14px; margin-top: 8px; }
  .stat__num { font-size: 1.5rem; }
  .stat { padding: 0 16px; }
  .pros-grid { grid-template-columns: 1fr; }
  .register-cta__steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 0; }
  .stat { padding: 0 10px; }
  .stat__num { font-size: 1.25rem; }
}

/* =============================================
   PÁGINA: REGISTRO
============================================= */
.registro-page { background: var(--gray-bg); }

.navbar__breadcrumb {
  font-size: 0.85rem; color: var(--gray); font-weight: 500;
  padding: 4px 12px; background: var(--gray-bg); border-radius: var(--radius-pill);
}

.reg-layout {
  display: grid; grid-template-columns: 300px 1fr;
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; gap: 32px;
  align-items: start;
}

/* SIDEBAR */
.reg-sidebar { position: sticky; top: 80px; }
.reg-sidebar__inner {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 28px;
}
.reg-sidebar__title { font-family:'Glacial Indifference', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.reg-sidebar__desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-top: -16px; }

.reg-steps { display: flex; flex-direction: column; gap: 4px; }
.reg-step {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius); cursor: default;
  transition: background .2s;
}
.reg-step__num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-bg); border: 2px solid var(--border);
  font-size: 0.85rem; font-weight: 700; color: var(--gray);
  transition: all .2s;
}
.reg-step__label { font-size: 0.88rem; font-weight: 600; color: var(--gray); transition: color .2s; }
.reg-step__sub { font-size: 0.75rem; color: var(--gray-light); }
.reg-step--active { background: var(--orange-pale); }
.reg-step--active .reg-step__num { background: var(--orange); border-color: var(--orange); color: var(--white); }
.reg-step--active .reg-step__label { color: var(--orange-dark); }
.reg-step--done .reg-step__num { background: #ECFDF5; border-color: #059669; color: #059669; }
.reg-step--done .reg-step__num::before { content: '✓'; }
.reg-step--done .reg-step__label { color: var(--dark-soft); }

.reg-sidebar__benefits { border-top: 1px solid var(--border); padding-top: 20px; }
.reg-sidebar__benefits-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); margin-bottom: 10px; }
.reg-sidebar__benefits ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.reg-sidebar__benefits li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--dark-soft); }

/* FORM CONTENT */
.reg-content { display: flex; flex-direction: column; }

.reg-panel { display: none; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.reg-panel.active { display: block; }

.reg-panel__header { margin-bottom: 32px; }
.reg-panel__step { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); }
.reg-panel__title { font-family:'Glacial Indifference', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-top: 6px; }
.reg-panel__desc { font-size: 0.9rem; color: var(--gray); margin-top: 6px; }

/* FORM ELEMENTS */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--dark-soft); display: flex; align-items: center; gap: 5px; }
.required { color: var(--orange); }
.optional { font-weight: 400; color: var(--gray-light); font-size: 0.8rem; }
.form-hint { font-size: 0.78rem; color: var(--gray-light); }
.form-section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); margin-bottom: 16px; }

.form-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Glacial Indifference', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,118,42,.12); }
.form-input.input-error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 120px; }
.char-count { text-align: right; }

.input-prefix { display: flex; align-items: center; }
.prefix {
  padding: 11px 12px; background: var(--gray-bg); border: 1.5px solid var(--border);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.88rem; font-weight: 600; color: var(--dark-soft); white-space: nowrap;
}
.input-prefix .form-input { border-radius: 0 var(--radius) var(--radius) 0; }

.form-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* TYPE CARDS */
.type-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.type-card { cursor: pointer; }
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card__inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 16px; border: 2px solid var(--border); border-radius: var(--radius-lg);
  text-align: center; transition: all .2s; background: var(--white); color: var(--dark-soft);
}
.type-card__inner strong { font-size: 0.92rem; color: var(--dark); }
.type-card__inner span { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }
.type-card.selected .type-card__inner, .type-card:hover .type-card__inner {
  border-color: var(--orange); background: var(--orange-pale); color: var(--orange);
}
.type-card.selected .type-card__inner strong { color: var(--orange-dark); }

/* CHECKBOX GRID */
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.checkbox-grid--services { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.checkbox-grid.grid-error { outline: 2px solid #EF4444; outline-offset: 4px; border-radius: var(--radius); }

.check-item {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.84rem; color: var(--dark-soft); transition: all .15s;
  background: var(--white);
}
.check-item:hover { border-color: var(--orange); color: var(--orange); }
.check-item input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; }
.check-item--highlight { border-style: dashed; }
.check-item input:checked + span { color: var(--orange-dark); font-weight: 600; }

/* PHOTO UPLOAD */
.photo-upload-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.photo-slot {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  border: 2px dashed var(--border); background: var(--gray-bg);
  cursor: pointer; overflow: hidden; transition: border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.photo-slot:hover { border-color: var(--orange); }
.photo-slot.has-photo { border-style: solid; border-color: var(--border); }
.photo-slot input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.photo-slot__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray-light); font-size: 0.78rem; font-weight: 500; pointer-events: none;
}

.photo-preview { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; pointer-events: none; }
.photo-remove {
  position: absolute; top: 6px; right: 6px; width: 24px; height: 24px;
  background: rgba(0,0,0,.6); color: white; border: none; border-radius: 50%;
  font-size: 14px; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.photo-remove:hover { background: #EF4444; }

/* PANEL NAV */
.reg-panel__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }

/* SUCCESS */
.reg-success {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px 36px; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.reg-success__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; }
.reg-success h2 { font-family:'Glacial Indifference', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); }
.reg-success p { font-size: 0.95rem; color: var(--gray); max-width: 440px; line-height: 1.7; }
.reg-success__preview-note { font-weight: 600; color: var(--dark-soft); }

/* =============================================
   PÁGINA: PERFIL
============================================= */
.perfil-page { background: var(--gray-bg); }

.perfil-layout {
  display: grid; grid-template-columns: 320px 1fr;
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; gap: 28px;
  align-items: start;
}

/* SIDEBAR */
.perfil-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }

.perfil-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.perfil-card:not(:first-child) { align-items: flex-start; }

.perfil-avatar {
  position: relative; width: 100px; height: 100px;
  border-radius: 50%; overflow: visible;
}
.perfil-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow); }
.perfil-verified {
  position: absolute; bottom: 2px; right: 2px; width: 24px; height: 24px;
  background: #059669; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.perfil-name { font-family:'Glacial Indifference', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); text-align: center; }
.perfil-type { font-size: 0.82rem; color: var(--gray); font-weight: 500; margin-top: -8px; text-align: center; }
.perfil-rating { display: flex; align-items: center; gap: 6px; }
.perfil-rating .stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 1px; }
.rating-val { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.rating-reviews { font-size: 0.8rem; color: var(--gray); }

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 20px; border-radius: var(--radius-pill);
  background: #25D366; color: var(--white);
  font-family: 'Glacial Indifference', sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); background: #1ebe5d; }

/* CONTACTS */
.perfil-contacts { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.perfil-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--dark-soft); padding: 8px 10px;
  border-radius: var(--radius); transition: background .15s;
}
.perfil-contact-item:hover { background: var(--gray-bg); color: var(--orange); }

/* DETAILS */
.perfil-card__title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); margin-bottom: 4px; }
.perfil-detail-list { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.perfil-detail { display: flex; align-items: flex-start; gap: 10px; }
.detail-label { font-size: 0.75rem; color: var(--gray); font-weight: 500; }
.detail-val { font-size: 0.88rem; color: var(--dark); font-weight: 600; margin-top: 1px; }

/* TAGS */
.perfil-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.perfil-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--orange-pale); color: var(--orange-dark);
  font-size: 0.8rem; font-weight: 600;
}
.perfil-tag--travel { background: #EFF6FF; color: #2563EB; }

/* MAIN CONTENT */
.perfil-main { display: flex; flex-direction: column; gap: 4px; }

.perfil-section {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px;
}
.perfil-section__title { font-family:'Glacial Indifference', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }

.perfil-specialty-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.perfil-specialty-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--orange-pale); color: var(--orange-dark);
  font-size: 0.82rem; font-weight: 700;
}
.perfil-member-since { font-size: 0.78rem; color: var(--gray-light); }

.perfil-services { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pill {
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--gray-bg); border: 1.5px solid var(--border);
  font-size: 0.82rem; font-weight: 500; color: var(--dark-soft);
}

.perfil-description { font-size: 0.95rem; color: var(--dark-soft); line-height: 1.75; margin-bottom: 12px; }

/* GALLERY */
.perfil-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 180px;
  gap: 10px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item--large { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.review-card {
  background: var(--peach, #FDEEDE); border-radius: var(--radius-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.review-header { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.review-author { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.review-stars { color: #F59E0B; font-size: 0.82rem; letter-spacing: 1px; }
.review-text { font-size: 0.86rem; color: var(--dark-soft); line-height: 1.6; font-style: italic; flex: 1; }
.review-date { font-size: 0.75rem; color: var(--gray-light); }

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 13px 20px 13px 16px; border-radius: var(--radius-pill);
  font-family: 'Glacial Indifference', sans-serif; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .25s, box-shadow .25s;
  animation: float-pulse-green 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.07); animation: none; box-shadow: 0 10px 32px rgba(37,211,102,.65); }
@keyframes float-pulse-green {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.12); }
}

/* =============================================
   RESPONSIVE REGISTRO + PERFIL
============================================= */
@media (max-width: 900px) {
  .reg-layout, .perfil-layout { grid-template-columns: 1fr; }
  .reg-sidebar { position: static; }
  .perfil-sidebar { position: static; }
  .gallery-item--large { grid-column: 1; grid-row: auto; }
  .perfil-gallery { grid-template-rows: auto; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reg-panel { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .type-cards { grid-template-columns: 1fr; }
  .photo-upload-grid { grid-template-columns: repeat(2, 1fr); }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
