@font-face {
  font-family: 'KG Inimitable';
  src: url('fonts/KGInimitableOriginal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
  :root {
    --cream: #faf7f4;
    --warm-white: #f5f0eb;
    --peach: #f0e6dc;
    --terracotta: #b5622a;
    --terracotta-light: #c97a42;
    --dark: #1a1612;
    --mid: #4a3f35;
    --muted: #8a7a6e;
    --line: #e0d5cc;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: rgb(242, 242, 242);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    letter-spacing: 0.02em;
  }

  .nav-logo em {
    font-style: italic;
    color: var(--terracotta);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--terracotta); }

/* HERO */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-top: 70px;
  background: var(--peach);
  animation: heroIn 0.9s ease forwards;
  opacity: 0;
}

@keyframes heroIn {
  to { opacity: 1; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.hero-headline {
  font-family: 'KG Inimitable', cursive;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-bullets {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
}

.hero-bullets li {
  font-size: 2rem;
  color: var(--mid);
  line-height: 1.65;
  padding-left: 14px;
}

.hero-p {
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--mid);
  line-height: 1.65;
  padding-left: 14px;
}

.contactarnos-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid var(--terracotta);
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-secondary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid var(--mid);
  border-radius: 999px;
  background: transparent;
  color: var(--mid);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.linkedin-btn:hover {
  background: var(--mid);
  color: white;
  transform: translateY(-1px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 40px;
}

.hero-visual img {
    width: 60%;
    border-radius: 20px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.1));
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 24px 40px; }
  .hero-visual { max-height: 400px; padding-top: 0; }
  .hero-visual img { max-height: 400px; }
}

  /* SOBRE MI */

.about-section{
  padding: 110px 20px;
  background: rgb(242, 242, 242);
}

.about-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-image img{
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-content h2{
  margin-bottom: 28px;
}

.about-content p{
  font-size: 1.3rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 720px;
}

.about-content strong{
  color: var(--dark);
  font-weight: 500;
}

.about-highlight{
  margin-top: 34px;
  padding-left: 22px;
  border-left: 3px solid var(--terracotta);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--dark);
}

@media (max-width: 900px){

  .about-section{
    padding: 80px 24px;
  }

  .about-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image{
    max-width: 420px;
    margin: 0 auto;
  }

  .about-highlight{
    font-size: 1.2rem;
  }
}
  /* SECTION BASE */
  section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
  }

  .section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 40px;
    background: var(--terracotta);
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  h2 em {
    font-style: italic;
    color: var(--terracotta);
  }

  .section-lead {
    font-size: 1.5rem;
    color: var(--mid);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.8;
  }

  /*linkedin */

  .contactarnos-row{
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }

  .linkedin-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:14px 34px;
      border:3px solid #7b8c80;
      border-radius:999px;
      background:#f6f2ea;
      color:#5f6f64;
      font-size:22px;
      font-weight:600;
      text-decoration:none;
      transition:all .2s ease;
    }

    .linkedin-btn:hover{
      background:#e9e3d8;
      transform:translateY(-1px);
    }

  /* QUE HACEMOS */
  #que-hacemos {
    background: white;
    max-width: 100%;
    padding: 80px 0;
  }

  #que-hacemos .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .pillar {
    background: var(--cream);
    padding: 40px 36px;
    border-top: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
  }

  .pillar:hover {
    border-top-color: var(--terracotta);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  }

  .pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--line);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
  }

  .pillar:hover .pillar-number { color: var(--terracotta); opacity: 0.3; }

  .pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .pillar p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* SERVICIOS */
.srv-section {
  background: white;
  max-width: 100%;
  padding: 100px 0;
}

.srv-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.srv-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.srv-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  border-radius: 12px;
  overflow: hidden;
  align-items: stretch
}

.srv-card {
  background: var(--cream);
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  transition: all 0.3s;
  position: relative;
}

.srv-card:hover {
  background: white;
  border-top-color: var(--terracotta);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.srv-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--line);
  line-height: 1;
  transition: color 0.3s;
}

.srv-card:hover .srv-card-num {
  color: var(--terracotta);
  opacity: 0.3;
}

.srv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  line-height: 1.35;
  min-height: 8rem
}

.srv-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.srv-card-list li {
  font-size: 1.2rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.srv-card-list li:last-child { border-bottom: none; }

.srv-card-list li::before {
  content: '—';
  color: var(--terracotta);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 4px;
}

.srv-card-result {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

@media (max-width: 900px) {
  .srv-inner { padding: 0 24px; }
  .srv-row { grid-template-columns: 1fr; }
}
  /* Como trabajo */
.como-section {
  background: rgb(242, 242, 242);
  max-width: 100%;
  padding: 40px 0 100px;
}

.como-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.como-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.como-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  align-items: center
}

.como-imagen {
  border-radius: 12px;
  overflow: hidden;
}

.como-imagen img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.como-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.como-content p {
  font-size: 1.5rem;
  color: var(--mid);
  line-height: 1.85;
}

.como-resultado {
  margin-top: 8px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  padding-left: 16px;
  border-left: 3px solid var(--terracotta);
}

.como-pilares-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.como-pilares-titulo em {
  font-style: italic;
  color: var(--terracotta);
}

.como-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.como-pilar {
  background: var(--cream);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.como-pilar:hover {
  border-top-color: var(--terracotta);
}

.como-pilar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.como-pilar:hover .como-pilar-num {
  color: var(--terracotta);
}

.como-pilar-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  display: flex;
  text-align: center;
}

.como-pilar-body p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.75;
  display: flex;
  text-align: center;
}

@media (max-width: 900px) {
  .como-inner { padding: 0 24px; }
  .como-split { grid-template-columns: 1fr; gap: 32px; }
  .como-imagen img { height: 260px; }
  .como-pilares { grid-template-columns: 1fr; }
}

  /* POR QUE NOSOTROS */
  #por-que {
    background: white;
    max-width: 100%;
    padding: 100px 0;
    color: white;
  }

  #por-que .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  #por-que h2 { color: white; }

  #por-que .section-lead { color: rgba(255,255,255,0.6); }

  .problems-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin-top: 60px;
  }

  .problem-item {
    background: var(--dark);
    padding: 36px;
    transition: background 0.3s;
    border-left: 3px solid transparent;
  }

  .problem-item:hover {
    background: rgba(255,255,255,0.03);
    border-left-color: var(--terracotta);
  }

  .problem-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
    font-style: italic;
  }

  .problem-bullets {
    list-style: none;
    margin-bottom: 16px;
  }

  .problem-bullets li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    padding: 3px 0;
    display: flex;
    gap: 8px;
  }

  .problem-bullets li::before { content: '·'; color: var(--terracotta-light); }

  .problem-solution {
    font-size: 0.82rem;
    color: var(--terracotta-light);
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  /* EXPERIENCIA */
.exp-section {
  background: white;
  max-width: 100%;
  padding: 100px 0;
}

.exp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card-v2 {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.exp-card-v2:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.exp-card-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  line-height: 1.3;
}

.exp-card-img {
  display: flex;
  height: 120px; 
  width: 140px;
  object-fit: contain;
  align-self: center;
}

.exp-img-row {
  display: flex;
  flex-direction: row;
}

.exp-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.exp-card-v2 p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.exp-card-impact {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--terracotta);
  padding-left: 12px;
  border-left: 2px solid var(--terracotta);
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .exp-inner { padding: 0 24px; }
  .exp-cards-grid { grid-template-columns: 1fr; }
}

.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card-v2:nth-child(7),
.exp-card-v2:nth-child(8) {
  grid-column: unset;
  justify-self: unset;
}

.exp-cards-last-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.exp-cards-last-row .exp-card-v2 {
  width: calc(33.333% - 10px);
}

 /* TESTIMONIOS */
  #testimonios {
    background: var(--peach);
    max-width: 100%;
    padding: 150px 0;
  }

  #testimonios .inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    max-width: 2400px;
  }

  .testimonio {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 10px;
    position: relative;
    max-width: 400px;
  }

  .testimonio::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--terracotta);
    opacity: 0.15;
    position: absolute;
    top: 16px; left: 24px;
    line-height: 1;
  }

  .testimonio-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-top: 16px;
    min-height: 610px;
  }

  .testimonio-author {
    font-size: 0.8rem;
    color: var(--mid);
  }

  .testimonio-author strong {
    display: block;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
  }

  .testimonio-author {
  font-size: 0.8rem;
  color: var(--mid);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.test-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.2s;
}

.test-author-link:hover {
  color: var(--terracotta);
}

.test-author-link svg {
  width: 60px;
  height: 60px;
  fill: var(--muted);
  flex-shrink: 0;
  transition: fill 0.2s;
}

.test-author-link:hover svg {
  fill: var(--terracotta);
}

.test-author-link strong {
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
}

.test-author-link:hover strong {
  color: var(--terracotta);
}

  /* CIERRE */
  .cierre {
    text-align: center;
    padding: 100px 60px;
    max-width: 800px;
    margin: 0 auto;
  }

  .cierre h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
  }

  .cierre p {
    font-size: 1.05rem;
    color: var(--mid);
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .cta-btn:hover { background: var(--dark); gap: 16px; }

@media (max-width: 900px) {
  .test-inner { padding: 0 24px; }
  .test-grid { grid-template-columns: 1fr; }
}

  /* CIERRE */
  .cierre {
    text-align: center;
    padding: 100px 60px;
    max-width: 800px;
    margin: 0 auto;
  }

  .cierre h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
  }

  .cierre p {
    font-size: 1.05rem;
    color: var(--mid);
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .cta-btn:hover { background: var(--dark); gap: 16px; }

  /* FOOTER */
  footer {
    background: #111;
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
  }

  .footer-name em {
    font-style: italic;
    color: var(--terracotta-light);
  }

  .footer-tagline {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--terracotta-light); }

  .linkedin-icon {
    width: 40px; height: 40px;
    fill: currentColor;
  }

  .footer-copy {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.2);
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 16px;
  }

  /* Intersection Observer animations */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-visual { min-height: 40vh; }
    .hero-content { padding: 60px 30px; }
    section { padding: 70px 24px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .problems-full { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .testimonios-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 24px; flex-direction: column; text-align: center; }
    .stats { flex-wrap: wrap; }
    .stat { min-width: 140px; }
    #que-hacemos .inner, #por-que .inner, #testimonios .inner { padding: 0 24px; }
  }
