body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafd;
}

header {
  background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  width: 120px;
  height: auto;
  margin-left: 1.5rem;
}

.header-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 1.5rem 0 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

ul li {
  margin: 0;
}

ul li a {
  text-decoration: none;
  color: white;
  border-bottom: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

ul li a:hover {
  color: #ffe082;
}

.apartado-moviles,
.apartado-ejemplos {
  max-width: 600px;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.apartado-moviles h2,
.apartado-ejemplos h2 {
  color: #005bea;
  text-align: center;
}

.ejemplo-reparacion {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    justify-content: flex-start;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.img-ejemplo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.ejemplo-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
    width: 100%;
    min-height: 200px;
    padding-left: 2.5rem;
    box-sizing: border-box;
}

.ejemplo-texto h3 {
    margin: 0 0 1.2rem 0;
    color: #005bea;
    font-size: 1.6rem;
}

.ejemplo-texto p {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    max-width: 100%;
    line-height: 1.7;
}
.parface{
  text-align:left;
  margin-bottom: 1.5rem;
  
}
.contenedor-ejemplos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    justify-items: center;      /* Centra los hijos en cada celda */
    align-items: start;
    overflow-x: auto;
    margin-left: 0;             /* Quita el margen izquierdo extra */
    padding-left: 0;
    justify-content: center;    /* Centra el grid en el contenedor */
}
.apartado-ejemplos {
    width: 100vw;
    max-width: 100vw;
    margin: 2rem 0 0 0;
    text-align: left;
    padding-left: 0;
}
.mensaje-recordatorio {
    background: #f1f1f1;
    color: #666;
    text-align: center;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}