/* Páginas internas V6 */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 72px;
  background:
    radial-gradient(circle at 20% 0%, rgba(58, 192, 239, 0.14), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
}

.page-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.breadcrumb a:hover { color: var(--blue-deep); }

.content-block {
  padding: 80px 0;
}

.content-block.alt { background: var(--surface-soft); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.mvv-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mvv-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.mvv-card p, .mvv-card li {
  margin: 0 0 10px;
  color: var(--muted);
}

.mvv-card ul {
  margin: 0;
  padding-left: 18px;
}

.founder-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(58, 192, 239, 0.2);
}

.founder-card h3 { margin: 0 0 10px; }

.skills-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.skill-row { margin-bottom: 18px; }

.skill-row-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.skill-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  width: 0;
  transition: width 1.2s var(--ease);
}

.skill-fill.is-visible { width: var(--w); }

.service-hub-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  min-height: 260px;
}

.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.service-subnav a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.service-subnav a:hover,
.service-subnav a.is-active {
  background: rgba(58, 192, 239, 0.12);
  color: var(--blue-deep);
  border-color: rgba(58, 192, 239, 0.25);
}

/* Contacto — layout en grids.css */
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--blue-deep);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(58, 192, 239, 0.12);
  color: var(--blue-deep);
  font-size: 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-form h2 {
  margin: 0 0 8px;
}

.contact-form-lead {
  margin: 0 0 24px;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--surface-soft);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(58, 192, 239, 0.45);
  box-shadow: 0 0 0 4px rgba(58, 192, 239, 0.12);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-map {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(58, 192, 239, 0.18);
}

.contact-map p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.contact-map-label {
  margin-bottom: 8px !important;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep) !important;
}

.contact-map strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-map-note {
  margin-top: 12px !important;
  font-size: 0.9rem;
  font-style: italic;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.contact-office-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hours-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hours-card h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.hours-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-day {
  font-weight: 800;
  color: var(--ink);
}

.hours-slots {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-weight: 600;
}

.hours-slots .is-closed {
  color: #b42318;
}

.hours-footnote {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hours-footnote a {
  color: var(--blue-deep);
  font-weight: 700;
}

.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.directions-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.directions-card h3 {
  margin: 0 0 16px;
}

.directions-steps {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.directions-steps strong {
  color: var(--ink);
}

.access-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.access-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.access-block h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.access-block p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-arrive-cta {
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.14), rgba(10, 37, 64, 0.06));
  border: 1px solid rgba(58, 192, 239, 0.22);
}

.contact-arrive-cta h3 {
  margin: 0 0 6px;
}

.contact-arrive-cta p {
  margin: 0;
  color: var(--muted);
}

.contact-arrive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Oferta */
.offer-hero-wrap {
  position: relative;
}

.offer-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(58, 192, 239, 0.14);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.offer-promo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 18px;
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.offer-promo span {
  color: var(--blue-deep);
}

.offer-promo small {
  font-size: 0.28em;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0;
}

.offer-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(58, 192, 239, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(58, 192, 239, 0.1), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(58, 192, 239, 0.22);
  box-shadow: var(--shadow);
}

.offer-card-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.offer-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.offer-price-note {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.offer-step {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.offer-step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(58, 192, 239, 0.14);
  color: var(--blue-deep);
  font-weight: 800;
}

.offer-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.offer-step p {
  margin: 0;
  color: var(--muted);
}

.offer-includes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-includes li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: var(--ink);
}

.offer-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-deep);
  font-weight: 800;
}

/* Detalle de servicios */
.service-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-highlight {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(58, 192, 239, 0.2);
}

.service-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--blue-deep);
}

.service-benefit {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.service-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-package {
  padding: 24px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.service-package.is-featured {
  border-color: rgba(58, 192, 239, 0.35);
  box-shadow: var(--shadow);
}

.service-package-sends {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-package-price {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.service-package-unit {
  margin: 0 0 14px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.service-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.25);
  color: var(--muted);
  font-weight: 600;
}

.service-note.is-info {
  background: rgba(58, 192, 239, 0.08);
  border-color: rgba(58, 192, 239, 0.22);
}

/* Blog article */
.article-hero-media {
  margin: -24px auto 0;
  max-width: 1100px;
  padding: 0 24px;
}

.article-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.article-body h2 {
  margin: 32px 0 12px;
  font-size: 1.35rem;
  color: var(--ink);
}

.article-body h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
  color: var(--ink);
}

.article-body ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.article-body li + li {
  margin-top: 6px;
}

.article-body code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--blue-deep);
}

.article-meta {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.article-body {
  max-width: 760px;
}

.article-body p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 18px;
}

.article-body strong {
  color: var(--ink);
}

.article-sources {
  margin: 36px 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.article-sources h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.article-sources ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-weight: 600;
}

.article-sources a {
  color: var(--blue-deep);
}

.article-cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(58, 192, 239, 0.22);
}

.article-cta h2 {
  margin: 0 0 8px;
}

.article-cta p {
  margin: 0 0 18px;
}

.article-cta .btn {
  margin-right: 10px;
  margin-bottom: 8px;
}

.blog-date {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.blog-empty {
  color: var(--muted);
  font-weight: 600;
}

a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(58, 192, 239, 0.12);
  color: var(--blue-deep);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin: 0 0 12px;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.2em;
}

.faq-answer li + li {
  margin-top: 6px;
}

.faq-answer strong {
  color: var(--ink);
}

/* Web solutions / platforms / clients */
.solution-card,
.platform-card,
.client-chip {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.solution-card {
  padding: 28px;
}

.solution-card h3 {
  margin: 0 0 10px;
}

.solution-card > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}

.solution-card .offer-includes {
  margin: 0;
}

.platform-card {
  padding: 22px;
  text-align: center;
}

.platform-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.clients-current {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 800;
}

.client-chip.is-current {
  border-color: rgba(58, 192, 239, 0.35);
  background: linear-gradient(135deg, rgba(58, 192, 239, 0.12), rgba(255, 255, 255, 0.98));
}

.client-chip .badge {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(58, 192, 239, 0.14);
  padding: 4px 8px;
  border-radius: 999px;
}

.web-projects-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.web-project-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.web-project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(58, 192, 239, 0.4);
}

.web-project-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
}

.web-project-url {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-deep);
  word-break: break-all;
}

@media (max-width: 900px) {
  .web-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .web-projects-grid {
    grid-template-columns: 1fr;
  }
}

.clients-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.clients-grid .client-chip {
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.section-head-block.centered {
  text-align: center;
}

.section-head-block.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-head-block {
  margin-bottom: 36px;
}

.section-head-block h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.section-head-block p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

@media (max-width: 1100px) {
  .contact-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .page-hero-inner,
  .two-col,
  .contact-layout,
  .contact-office-grid,
  .directions-grid {
    grid-template-columns: 1fr;
  }

  .contact-arrive-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hours-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .contact-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Portafolio */
.portafolio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.portafolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.portafolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.portafolio-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--surface-soft);
}

.portafolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portafolio-body {
  padding: 24px;
}

.portafolio-meta {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.portafolio-body h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.portafolio-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-topics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.blog-topic {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.blog-topic-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-topic h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.blog-topic p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .portafolio-grid,
  .blog-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portafolio-grid,
  .blog-topics-grid {
    grid-template-columns: 1fr;
  }
}
