/* ============================================================
   PRECIOS — estilos específicos
   ============================================================ */

.page-hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-teal) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 80px) 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 79, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--gold); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 960px;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 800px;
  line-height: 1.7;
}

/* ============================================================
   SERVICIOS GANCHO
   ============================================================ */
.servicios-gancho { background: var(--gray-50); padding: 96px 0 64px; }

.gancho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.gancho-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

.gancho-card:hover {
  border-color: var(--jade);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gancho-card--featured {
  background: linear-gradient(160deg, var(--dark-teal) 0%, var(--jade) 120%);
  color: var(--white);
  border: none;
  transform: scale(1.02);
}

.gancho-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.gancho-card__tag {
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.gancho-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
}

.gancho-card--featured .gancho-card__title { color: var(--white); }

.gancho-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--jade);
  line-height: 1;
  margin-bottom: 8px;
}

.gancho-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}

.gancho-card--featured .gancho-card__price { color: var(--gold); }
.gancho-card--featured .gancho-card__price span { color: rgba(255, 255, 255, 0.7); }

.gancho-card__time {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.gancho-card--featured .gancho-card__time { color: rgba(255, 255, 255, 0.8); }

.gancho-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.gancho-card__features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
  border-bottom: 1px dashed var(--gray-200);
}

.gancho-card__features li:last-child { border-bottom: none; }

.gancho-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--jade);
  font-weight: 700;
}

.gancho-card--featured .gancho-card__features li {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.gancho-card--featured .gancho-card__features li::before { color: var(--gold); }

.gancho-card__note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-style: italic;
}

.gancho-card--featured .gancho-card__note {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.gancho-card .btn {
  align-self: stretch;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--jade);
  border: 1.5px solid var(--jade);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--ghost-dark:hover, .btn--ghost-dark:focus-visible {
  background: var(--jade);
  color: var(--white);
}

/* ============================================================
   RETAINER
   ============================================================ */
.retainer-section { background: var(--white); padding: 96px 0; }

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.retainer-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}

.retainer-card:hover {
  border-color: var(--jade);
  box-shadow: var(--shadow);
}

.retainer-card--featured {
  background: linear-gradient(160deg, var(--jade-soft) 0%, var(--cream) 100%);
  border-color: var(--jade);
}

.retainer-card__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 4px 12px;
  background: var(--jade);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}

.retainer-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.retainer-card__hours {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jade);
  line-height: 1;
  margin-bottom: 4px;
}

.retainer-card__hours span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}

.retainer-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.retainer-card__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.retainer-card__rate {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--gray-300);
}

.retainer-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.retainer-card__features li {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 4px 0;
  line-height: 1.5;
}

.retainer-card__features li:first-child {
  color: var(--jade);
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--gray-300);
}

.retainer-card__ideal {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-300);
}

/* Rules */
.retainer-rules {
  background: var(--cream);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  max-width: 900px;
  margin: 0 auto;
}

.retainer-rules h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.retainer-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retainer-rules li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.retainer-rules li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.retainer-rules strong { color: var(--jade); }

/* ============================================================
   PROYECTOS
   ============================================================ */
.proyectos-section { background: var(--gray-50); padding: 96px 0; }

.proyectos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.proyecto-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.proyecto-item:hover {
  border-color: var(--jade);
  box-shadow: var(--shadow);
}

.proyecto-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.proyecto-item__range {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jade);
  margin-bottom: 12px;
}

.proyecto-item__scope {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-pricing { background: var(--white); padding: 96px 0; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--jade);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--jade);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--jade); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--gray-300);
}

.faq-cta p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}
