@layer components {
  .section-head {
    max-width: 60ch;
    margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 3rem);
  }
  .section-head.center {
    margin-inline: auto;
    text-align: center;
  }
  .section-head p {
    margin-top: var(--s-2);
  }

  .breadcrumbs {
    padding-block: var(--s-3);
    color: var(--muted);
    font-size: 0.85rem;
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
  }
  .breadcrumbs li::after {
    content: "/";
    margin-left: 0.4rem;
    color: var(--line);
  }
  .breadcrumbs li:last-child::after {
    content: "";
  }
  .breadcrumbs a:hover {
    color: var(--accent);
  }

  .grid {
    display: grid;
    gap: var(--s-3);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    display: flex;
    flex-direction: column;
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: hsl(172 50% 45% / 0.6);
  }
  .card-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--accent);
  }
  .card-title {
    margin: var(--s-2) 0 0.6rem;
  }
  .card p {
    color: var(--muted);
  }
  .card-link {
    margin-top: auto;
    padding-top: var(--s-3);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
  }
  .card-link::after {
    content: " \2192";
    transition: padding 0.2s ease;
  }
  .card:hover .card-link::after {
    padding-left: 0.3rem;
  }

  .svc-card {
    overflow: hidden;
    padding: 0;
  }
  .svc-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .svc-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--s-3) var(--s-4) var(--s-4);
  }
  .svc-price {
    margin-top: 0.4rem;
    color: var(--paper);
    font-family: var(--font-display);
  }
  .svc-price span {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
  }

  .feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--s-2);
    align-items: start;
  }
  .feature-mark {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: hsl(172 50% 45% / 0.14);
    color: var(--accent);
    font-weight: 700;
  }
  .feature h3 {
    margin-bottom: 0.3rem;
  }
  .feature p {
    color: var(--muted);
    font-size: 0.98rem;
  }

  .steps {
    counter-reset: step;
    display: grid;
    gap: var(--s-3);
  }
  .step {
    position: relative;
    padding: var(--s-3) var(--s-3) var(--s-3) var(--s-6);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: var(--s-3);
    left: var(--s-3);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
  }
  .step h3 {
    margin-bottom: 0.3rem;
  }
  .step p {
    color: var(--muted);
    font-size: 0.97rem;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
    font-weight: 700;
    color: var(--accent);
  }
  .stat-label {
    color: var(--muted);
    font-size: 0.9rem;
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.97rem;
  }
  .price-table caption {
    margin-bottom: var(--s-2);
    color: var(--muted);
    font-size: 0.85rem;
    text-align: left;
  }
  .price-table th,
  .price-table td {
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .price-table thead th {
    background: var(--surface-2);
    font-family: var(--font-display);
    font-weight: 500;
  }
  .price-table tbody tr:last-child td {
    border-bottom: 0;
  }
  .price-table td:last-child {
    color: var(--accent);
    font-family: var(--font-display);
    white-space: nowrap;
  }

  .team-grid {
    display: grid;
    gap: var(--s-4);
    grid-template-columns: 1fr;
  }
  .member img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  .member-name {
    margin-top: var(--s-2);
    font-family: var(--font-display);
    font-size: 1.2rem;
  }
  .member-role {
    color: var(--accent);
    font-size: 0.9rem;
  }
  .member p {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
  }
  .member-social {
    margin-top: 0.7rem;
    font-size: 0.85rem;
  }
  .member-social a {
    color: var(--muted);
  }
  .member-social a:hover {
    color: var(--accent);
  }

  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-2);
    width: 100%;
    padding: var(--s-3) 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
  }
  .faq-q-icon {
    flex: none;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
  }
  .faq-q-icon::before,
  .faq-q-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 2px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }
  .faq-q-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-q[aria-expanded="true"] .faq-q-icon::after {
    transform: translate(-50%, -50%) rotate(0);
  }
  .faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .faq-a-inner {
    padding-bottom: var(--s-3);
    color: var(--muted);
  }

  .cta-band {
    display: grid;
    gap: var(--s-3);
    align-items: center;
    padding: clamp(2rem, 1.4rem + 3vw, 3.4rem);
    background: var(--grad);
    border: 1px solid hsl(172 50% 45% / 0.4);
    border-radius: var(--radius);
  }
  .cta-band h2 {
    max-width: 22ch;
  }
  .cta-band p {
    color: var(--muted);
  }
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
  }

  .split {
    display: grid;
    gap: clamp(1.6rem, 1rem + 3vw, 3.4rem);
    align-items: center;
  }
  .split img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }

  .checklist {
    display: grid;
    gap: 0.7rem;
  }
  .checklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    color: var(--muted);
  }
  .checklist li::before {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0.2rem;
    border-radius: 50%;
    background:
      hsl(172 50% 45% / 0.16)
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2341d6c0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
      center / 0.8rem no-repeat;
  }

  .note {
    padding: var(--s-3);
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.95rem;
  }

  .prose h2 {
    margin: var(--s-5) 0 var(--s-2);
  }
  .prose h3 {
    margin: var(--s-4) 0 var(--s-1);
  }
  .prose p,
  .prose ul {
    margin-bottom: var(--s-2);
    color: var(--muted);
  }
  .prose ul {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.1rem;
    list-style: disc;
  }

  @media (min-width: 48rem) {
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .stats {
      grid-template-columns: repeat(4, 1fr);
    }
    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .cta-band {
      grid-template-columns: 1.4fr auto;
    }
    .split {
      grid-template-columns: 1fr 1fr;
    }
    .split-text-first .split-media {
      order: 2;
    }
  }

  @media (min-width: 62rem) {
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 100rem) {
    /* pantallas grandes */
  }
}
