.textRed {
  position: relative;
  background-color: #F8F8FA;
  padding: 4vw 6vw;
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.textRed h1 {
  color: #005598;
  padding: 0 0 2vw 0;
  font-size: 2.3em;
  text-align: center;
}
.textRed h2 {
  color: #005598;
  text-align: left;
  width: 100%;
  padding: 2vw 0 0;
  margin-bottom: 10px;
  font-weight: 400;
}
.textRed p {
  text-align: justify;
  padding-left: 1vw;
  margin: 10px 0;
  font-size: 1.2em;
}
.textRed ul {
  width: 100%;
  padding-left: 35px;
  padding-bottom: 10px;
  font-size: 1.2em;
}

.servicesRed {
  position: relative;
  padding: 2vw 6vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.servicesRed a {
  all: unset;
}

.box-servicesRed {
  position: relative;
  width: 300px;
  height: 200px;
  min-width: 300px;
  min-height: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrap-box-servicesRed {
  position: relative;
  padding: 7px 14px;
  background-color: rgba(197, 35, 74, 0.1);
  height: 70%;
  width: 70%;
}
.wrap-box-servicesRed:hover {
  background-color: rgba(197, 35, 74, 0.3);
}
.wrap-box-servicesRed h3 {
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 1.9em;
  text-shadow: 1px 1px 1px black;
}
.wrap-box-servicesRed h4 {
  text-align: center;
  font-weight: 200;
  font-size: 1.1em;
  color: white;
  text-shadow: 1px 1px 1px black;
  opacity: 0;
  transition: 0.4s;
}
.wrap-box-servicesRed:hover h4 {
  text-decoration: underline;
  opacity: 1;
}

.comeBackRed {
  all: unset;
  color: #202E52;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  text-align: left;
  width: 100vw;
}
.comeBackRed:hover {
  text-decoration: underline;
}

/* =========================================================
   REVEAL ONLY (ADD-ON) — IntersectionObserver + stagger
   Solo: data-sr-reveal, .sr-item, .is-revealed y delays
========================================================= */
[data-sr-reveal] .sr-item{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--sr-delay, 0ms);
  will-change: opacity, transform;
}

[data-sr-reveal].is-revealed .sr-item{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  [data-sr-reveal] .sr-item{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
