* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; }

:root {
  --bg: #fbfdff;
  --surface: #ffffff;
  --muted: #f4f8ff;
  --border: #e3eaf6;
  --text: #0e1a2f;
  --text-muted: #52627a;
  --primary: #2b5fc0;
  --primary-600: #1d4ca3;
  --accent: #b7cff8;
  --font-sans: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-sm: .925rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3.2rem;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(43, 95, 192, .10);
  --container: 1120px;
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

body {
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(59, 130, 246, .08), transparent 55%),
    radial-gradient(800px 600px at 110% 10%, rgba(147, 197, 253, .12), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: var(--fs-md);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

header.site {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--primary);
}

.brand a {
  text-decoration: none;
  color: inherit;
}

.site-nav {
  display: flex;
}

.site-nav ul {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  padding: .4rem .2rem;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--primary);
  background: var(--muted);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(43, 95, 192, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-600);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl));
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  letter-spacing: .2px;
  color: var(--primary-600);
}

.title-blue {
  color: var(--primary-600);
}

.hero p {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  margin: 0 auto var(--space-5);
  max-width: 65ch;
}

.hero-grid {
  text-align: left;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-5);
}

.hero-col {
  min-width: 0;
}

.hero-text p {
  max-width: 60ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-art {
  max-width: 560px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(43,95,192,.16));
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(180deg, var(--primary), var(--primary-600));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-600);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--secondary:hover {
  background: var(--muted);
  filter: none;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section h1 {
  font-size: var(--fs-2xl);
  margin: 0 0 var(--space-4);
  color: var(--primary-600);
}

.section h2 {
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-4);
  color: var(--primary-600);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 1.5rem;
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--primary-600);
}

.page-hero p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.page-hero p:last-child {
  margin-bottom: 0;
}

.intro {
  max-width: 72ch;
  color: var(--text-muted);
}

.body-gray {
  color: var(--text-muted);
}

.section-lead {
  max-width: 70ch;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(12, 1fr);
}

.col-4 {
  grid-column: span 4;
}

.col-6 {
  grid-column: span 6;
}

.col-12 {
  grid-column: span 12;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(59, 130, 246, .12);
  border-color: #cfd9ef;
}

.card h3 {
  margin-top: 0;
  color: var(--primary-600);
}

.card p {
  color: var(--text-muted);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.kpi {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.kpi .num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--primary);
}

.kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(59, 130, 246, .12);
  border-color: #cfd9ef;
}

footer.site {
  border-top: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  margin-top: var(--space-4);
  padding: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.visuals {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
}

.logo-polaris-img {
  width: clamp(240px, 30vw, 600px);
  height: auto;
  margin-bottom: var(--space-3);
  filter: drop-shadow(0 4px 8px rgba(43, 95, 192, 0.15));
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

.logo-polaris-img:hover {
  transform: scale(1.05);
}

.equipo-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

.equipo-img:hover {
  transform: scale(1.02);
}

.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.9s ease-out forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.2s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.quienes-somos {
  align-items: center;
}

.grid.servicios-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(12, 1fr);
}

.grid.servicios-grid .card {
  grid-column: span 6;
  opacity: 0;
  transform: translateY(18px);
  animation: cardInSoft 1.25s cubic-bezier(.22, 1, .36, 1) forwards;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.grid.servicios-grid .card:nth-child(1) { animation-delay: .20s; }
.grid.servicios-grid .card:nth-child(2) { animation-delay: .40s; }
.grid.servicios-grid .card:nth-child(3) { animation-delay: .60s; }
.grid.servicios-grid .card:nth-child(4) { animation-delay: .80s; }

.grid.servicios-grid .card:hover {
  transform: translateY(-4px) scale(1.015) !important;
  box-shadow: 0 16px 32px rgba(43, 95, 192, .14) !important;
  border-color: #cfd9ef !important;
  z-index: 2;
}

.servicios-grid .card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--primary-600);
}

@keyframes cardInSoft {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.grid.blog-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(12, 1fr);
}

.grid.blog-grid .card {
  grid-column: span 4;
  opacity: 0;
  transform: translateY(18px);
  animation: cardInSoft 1.35s cubic-bezier(.22, 1, .36, 1) forwards;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.grid.blog-grid .card:nth-child(1) { animation-delay: .20s; }
.grid.blog-grid .card:nth-child(2) { animation-delay: .40s; }
.grid.blog-grid .card:nth-child(3) { animation-delay: .60s; }
.grid.blog-grid .card:nth-child(4) { animation-delay: .80s; }

.grid.blog-grid .card:hover {
  transform: translateY(-4px) scale(1.015) !important;
  box-shadow: 0 16px 32px rgba(43, 95, 192, .14) !important;
  border-color: #cfd9ef !important;
  z-index: 2;
}

.contact-link {
  color: var(--primary-600);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.servicios-grid ul {
  list-style: disc outside;
  padding-left: 1.2rem;
  margin: 0.5em 0 0 0;
  color: inherit;
}

.servicios-grid li {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
  margin-bottom: 0.4em;
  font-weight: 400;
}

.footer {
  background: var(--surface, #fff);
  border-top: 1px solid var(--border, #e3eaf6);
  color: var(--text, #0e1a2f);
  padding: 1.25rem 1rem 0.75rem;
  margin-top: auto;
}

.footer__container {
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.footer__contact {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.footer__address {
  font-style: normal;
  color: var(--text-muted, #52627a);
  line-height: 1.4;
}

.footer__address a {
  color: var(--text, #0e1a2f);
  text-decoration: none;
}

.footer__address a:hover {
  color: var(--primary, #2b5fc0);
  text-decoration: underline;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.15rem;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border, #e3eaf6);
  transition: 0.2s ease;
}

.social svg {
  fill: currentColor;
  color: var(--text, #0e1a2f);
  width: 20px;
  height: 20px;
  transition: color 0.2s;
}

.social:hover {
  border-color: var(--primary, #2b5fc0);
  color: var(--primary, #2b5fc0);
  transform: translateY(-1px);
}

.footer__legal {
  width: 100%;
}

.footer__list {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer__list a,
.linklike {
  text-decoration: none;
  color: var(--text, #0e1a2f);
  font-size: 0.95rem;
}

.footer__list a:hover,
.linklike:hover {
  color: var(--primary, #2b5fc0);
  text-decoration: underline;
}

.linklike {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.footer__bottom {
  border-top: 1px dashed var(--border, #e3eaf6);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  text-align: center;
  color: var(--text-muted, #52627a);
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.section ul,
.section ol {
  color: var(--primary-600);
}

.section li::marker {
  color: var(--primary-600);
}

.contacto-grid {
  gap: 1.5rem;
}

.cta-box {
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.contact-main h2,
.contact-side h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--primary-600);
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #166534;
}

.form-success strong {
  display: block;
  margin-bottom: 0.25rem;
}

.form-success p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f7d92;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d6deea;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7a889d;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 95, 192, 0.12);
}

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

.form-consent {
  margin-top: 1rem;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.check-line input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--primary);
}

.contact-form-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-submit {
  min-width: 140px;
  justify-content: center;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-side-block {
  display: grid;
  gap: 0.35rem;
}

.contact-side-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f7d92;
}

.contact-side-block p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-map {
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.blog-card__image-link {
  display: block;
  margin-bottom: 1rem;
}

.blog-card__image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.quienes-intro-grid {
  align-items: center;
}

.quienes-intro-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo-polaris-img--intro {
  margin: 0;
  width: clamp(260px, 32vw, 560px);
}

.quienes-intro-text h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-600);
}

.quienes-intro-text p {
  color: var(--text-muted);
}

.section--quienes-intro {
  padding-bottom: 0.5rem;
}

.section--quienes-content {
  padding-top: 0.5rem;
}

.quienes-sentido-grid {
  align-items: center;
  margin-top: 2rem;
}

.quienes-sentido-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.equipo-img--sentido {
  max-width: 100%;
  width: 100%;
}

.quienes-sentido-text h2 {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-up,
  .servicios-grid .card,
  .blog-grid .card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .card,
  .grid.servicios-grid .card,
  .grid.blog-grid .card,
  .logo-polaris-img,
  .equipo-img,
  .btn,
  .social {
    transition: none !important;
  }
}

@media (min-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 72px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .brand {
    width: auto;
    text-align: left;
    margin-right: 0;
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    backdrop-filter: saturate(160%) blur(10px);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 0.75rem;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid transparent;
  }

  .site-nav a:hover {
    background: var(--muted);
    border-color: var(--border);
  }

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

  .col-6,
  .col-4 {
    grid-column: span 6;
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-art {
    max-width: 440px;
  }

  .visuals {
    margin-top: var(--space-4);
  }

  .equipo-img {
    max-width: 480px;
  }

  .grid.blog-grid .card {
    grid-column: span 3;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .contact-map,
  .contact-map iframe {
    height: 280px;
    min-height: 280px;
  }

  .footer {
    padding: 1.25rem 1rem 1rem;
  }

  .footer__container {
    gap: 1.25rem;
  }

  .footer__address {
    max-width: 40ch;
  }

  .footer__list {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .footer__list a,
  .linklike {
    font-size: 1rem;
  }

  .footer__bottom {
    font-size: 0.88rem;
  }

  .quienes-intro-image,
  .quienes-sentido-image {
    justify-content: center;
  }

  .quienes-intro-image {
    margin-top: 1rem;
  }

  .quienes-sentido-image {
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .hero p {
    font-size: var(--fs-md);
  }

  .btn {
    padding: .8rem 1rem;
    font-size: .95rem;
  }

  .page-hero {
    padding-top: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .footer__social {
    flex-wrap: wrap;
  }

  .footer__address {
    font-size: 0.95rem;
  }

  .footer__bottom {
    gap: 0.35rem;
  }

  .blog-card__image {
    height: 260px;
  }
}

@media (max-width: 520px) {
  .hero p {
    font-size: var(--fs-md);
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .grid.blog-grid .card {
    grid-column: span 6;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 3vw, 4rem);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .hero-text p {
    max-width: 70ch;
  }
}