:root{
  --blue:#071c4d;
  --blue2:#0b3c91;
  --red:#ef3340;
  --white:#ffffff;
  --soft:#f3f6fb;
  --text:#0f172a;
  --muted:#64748b;
  --shadow:0 24px 70px rgba(15,23,42,.14);
}

*{box-sizing:border-box}

.rp-home{
  padding-top:78px;
}

.rp-hero{
  min-height:88vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#071c4d;
}

.rp-hero__bg{
  position:absolute;
  inset:0;
}

.rp-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.rp-hero__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,28,77,.92) 0%, rgba(7,28,77,.76) 42%, rgba(7,28,77,.22) 100%),
    radial-gradient(circle at right, rgba(239,51,64,.25), transparent 30%);
}

.rp-hero__content{
  position:relative;
  z-index:2;
  width:min(1320px,calc(100% - 32px));
  margin:0 auto;
  color:#fff;
  padding:80px 0;
}

.rp-eyebrow{
  display:inline-flex;
  background:var(--red);
  padding:9px 15px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:20px;
}

.rp-hero h1{
  margin:0;
  max-width:760px;
  font-size:clamp(3rem,7vw,6.8rem);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.06em;
}

.rp-hero p{
  max-width:640px;
  margin:24px 0 0;
  font-size:clamp(1rem,2vw,1.35rem);
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

.rp-hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.rp-btn{
  min-height:54px;
  padding:15px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.rp-btn--white{
  background:#fff;
  color:#071c4d;
}

.rp-btn--red{
  background:var(--red);
  color:#fff;
}

.rp-app-box{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.9);
  font-weight:800;
}

#btnInstalarApp{
  border:0;
  background:#22c55e;
  color:#fff;
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
}

.rp-feature-strip{
  width:min(1320px,calc(100% - 32px));
  margin:-58px auto 54px;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.rp-feature-strip article{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.rp-feature-strip span{
  color:var(--red);
  font-weight:900;
}

.rp-feature-strip h3{
  margin:8px 0;
  color:var(--blue);
}

.rp-feature-strip p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.rp-section{
  width:min(1320px,calc(100% - 32px));
  margin:0 auto 42px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
}

.rp-section__text{
  padding:20px 0;
}

.rp-label{
  display:inline-flex;
  color:var(--red);
  font-weight:900;
  margin-bottom:12px;
}

.rp-section h2,
.rp-location h2{
  margin:0 0 14px;
  color:var(--blue);
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.04em;
}

.rp-section p,
.rp-location p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.75;
}

.rp-link{
  color:var(--red);
  font-weight:900;
  text-decoration:none;
}

.rp-section__image img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.rp-cards{
  width:min(1320px,calc(100% - 32px));
  margin:0 auto 48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.rp-card{
  min-height:300px;
  padding:30px;
  border-radius:30px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
}

.rp-card--blue{background:linear-gradient(135deg,#0b3c91,#071c4d)}
.rp-card--red{background:linear-gradient(135deg,#ef3340,#9f1239)}
.rp-card--dark{background:linear-gradient(135deg,#111827,#071c4d)}

.rp-card span{
  font-weight:900;
  opacity:.8;
}

.rp-card h3{
  font-size:1.7rem;
  line-height:1.1;
  margin:12px 0;
}

.rp-card p{
  color:rgba(255,255,255,.82);
  line-height:1.6;
}

.rp-card a{
  color:#fff;
  font-weight:900;
  text-decoration:none;
  margin-top:10px;
}

.rp-location{
  width:min(1320px,calc(100% - 32px));
  margin:0 auto;
  background:#fff;
  border-radius:34px;
  padding:34px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  box-shadow:var(--shadow);
}

.rp-location iframe{
  width:100%;
  min-height:360px;
  border:0;
  border-radius:26px;
}

@media(max-width:950px){
  .rp-home{
    padding-top:68px;
  }

  .rp-hero{
    min-height:760px;
  }

  .rp-hero__shade{
    background:linear-gradient(180deg, rgba(7,28,77,.90), rgba(7,28,77,.72));
  }

  .rp-feature-strip,
  .rp-section,
  .rp-cards,
  .rp-location{
    grid-template-columns:1fr;
  }

  .rp-feature-strip{
    margin-top:-38px;
  }

  .rp-section__image img{
    height:320px;
  }
}

@media(max-width:640px){
  .rp-hero{
    min-height:700px;
  }

  .rp-hero__actions{
    flex-direction:column;
  }

  .rp-btn{
    width:100%;
  }

  .rp-feature-strip article,
  .rp-card,
  .rp-location{
    border-radius:22px;
  }

  .rp-location{
    padding:22px;
  }
}