:root{
  --rh-primary: #d32f2f;      /* vermelho principal */
  --rh-primary2: #b71c1c;    /* vermelho escuro (hover) */
  --rh-dark: #3f3f3f;
  --rh-text: #111;
  --rh-muted: #555;
  --rh-line: rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
body{ background:#fff; color: var(--rh-text); }

/* ===== TOPBAR ===== */
.rh-topbar{
  background: var(--rh-dark);
  border-bottom: 4px solid #2e2e2e;
}
.rh-topbar-inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 18px;
  padding: 10px 0;
}
.rh-topbar-link{
  color:#fff;
  font-weight: 800;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.rh-topbar-link i{
  color: var(--rh-primary);
  font-size: 19px; /* opcional */
}

/* ===== HEADER ===== */
.rh-header{ background:#fff; }
.rh-header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 0;
}
.rh-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.rh-logo{ height: 48px; width:auto; }
.rh-brand-text{ font-weight: 900; font-size: 18px; }

.rh-btn{
  background: var(--rh-primary) !important;
  color:#fff !important;
  border-radius: 6px;
  font-weight: 900;
  text-transform: none;
}
.rh-btn:hover{ background: var(--rh-primary2) !important; }

/* ===== HERO ===== */
.rh-hero{
  border-top: 1px solid var(--rh-line);
  padding: 26px 0 10px;
}
.rh-hero h1{
  text-align:center;
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 10px;
  position: relative;
}

.rh-hero h1::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:-10px;
  width: 70%;
  height: 12px;
  border-radius: 999px;
  background: rgba(211,47,47,.35); /* vermelho */
  z-index:-1;
}

.rh-hero-card{
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.rh-hero-img{ width:100%; display:block; }

/* Bullets com check */
.rh-bullets{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.rh-bullets li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.rh-bullets li::before{
  content:"✓";
  color: var(--rh-primary);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.2;
}

/* Botão grande central */
.rh-whatsapp-big{
  display:flex;
  justify-content:center;
  margin: 26px 0 10px;
}
.rh-whatsapp-big a{
  background: var(--rh-primary);
  color:#fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(211,47,47,.25);
}
.rh-whatsapp-big a:hover{ background: var(--rh-primary2); }

/* ===== SEÇÃO CONTATO ===== */
.rh-section{
  border-top: 1px solid var(--rh-line);
  padding: 34px 0 46px;
}

.rh-section-title{
  text-align:center;
  margin-bottom: 8px;
}
.rh-section-title h2{
  color: var(--rh-primary);
  font-weight: 900;
  font-size: 2.2rem;
  margin: 0;
}
.rh-section-title p{
  margin: 4px 0 0;
  color: var(--rh-muted);
  font-weight: 600;
}

.rh-box{
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 22px;
}

/* pílula "10 anos" */
.rh-pill{
  background: #f1f1f1;
  display:inline-block;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: 700;
}

.rh-contact-number{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 10px 0 12px;
}
.rh-contact-number i{
  color: var(--rh-primary);
  font-size: 30px;
}
.rh-contact-number a{ color: var(--rh-text); }

.rh-whats-btn{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 10px;
  background: #20b038;
  color:#fff;
  padding: 14px 14px;
  border-radius: 6px;
  font-weight: 900;
  margin: 10px 0 18px;
  width: 100%;
}
.rh-whats-btn:hover{ filter: brightness(.95); }
.rh-whats-icon{
  background: rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 6px;
}
.rh-whats-num{ font-size: 1.25rem; white-space: nowrap;}

.rh-meta-block{ margin-top: 14px; }
.rh-meta-block h3{
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--rh-muted);
}
.rh-meta-block p{
  margin: 0;
  font-weight: 700;
  color: var(--rh-text);
}

/* Form */
.rh-form-title{
  margin: 0 0 14px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rh-muted);
}
.rh-form .input-field input,
.rh-form .input-field textarea{
  border-bottom: 1px solid rgba(0,0,0,.25) !important;
}
.rh-btn-email{
  background: var(--rh-primary) !important;
  color:#fff !important;
  border-radius: 6px;
  font-weight: 900;
  text-transform: none;
  width: 220px;
}
.rh-btn-email:hover{ background: var(--rh-primary2) !important; }

.rh-form-note{
  margin-top: 14px;
  color: var(--rh-muted);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.rh-footer{
  background: var(--rh-dark);
  color:#fff;
  padding: 18px 0;
}
.rh-footer-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  gap: 6px;
  text-align:center;
}
.rh-footer-mini{ opacity:.9; }

/* ===== SEÇÃO AVALIAÇÕES ===== */
.rh-reviews{
  background: var(--rh-dark);
  padding: 44px 0;
  margin-top: 24px;
}

.rh-reviews-header{
  text-align: center;
  color: #fff;
  margin-bottom: 18px;
}

.rh-reviews-stars{
  color: #ffcc33;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.rh-reviews-header h2{
  font-weight: 900;
  margin: 0;
  font-size: 2.2rem;
}

.rh-reviews-header p{
  margin: 6px 0 0;
  opacity: .9;
  font-weight: 600;
}

.rh-reviews-card{
  max-width: 980px;
  margin: 18px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  background: #fff;
}

.rh-reviews-img{
  width: 100%;
  display: block;
}

.rh-reviews-action{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* Responsivo */
@media (max-width: 992px){
  .rh-reviews-header h2{
    font-size: 1.7rem;
  }
  .rh-reviews-stars{
    font-size: 28px;
  }
}

/* Responsivo */
@media (max-width: 992px){
  .rh-topbar-inner{ justify-content:center; flex-wrap: wrap; }
  .rh-hero h1{ font-size: 2.4rem; }
  .rh-contact-number{ font-size: 1.4rem; }
  .rh-whats-num{ font-size: 1.2rem; }
  .rh-section-title h2{
    font-size: 1.8rem;
  }
}

/* ===== LOGO NA TOPBAR ===== */
.rh-topbar-inner{
  justify-content: space-between; /* logo à esquerda, contatos à direita */
}

.rh-topbar-brand{
  display: flex;
  align-items: center;
}

.rh-topbar-logo{
  height: 70px;        /* ajuste fino do tamanho */
  width: auto;
  filter: brightness(1.1); /* destaca no fundo escuro */
}

/* Agrupamento dos contatos */
.rh-topbar-contacts{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Mobile: centraliza tudo */
@media (max-width: 768px){
  .rh-topbar-inner{
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .rh-topbar-contacts{
    justify-content: center;
    flex-wrap: wrap;
  }
}

.rh-topbar-brand{
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.rh-topbar-logo{
  height: 52px;
  filter: none; /* remove filtros */
}

/* WhatsApp no mesmo padrão do telefone */
.rh-whats-link{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--rh-text);
  text-decoration: none;
  margin: 10px 0 12px;
}

.rh-whats-link i{
  color: #25D366; /* verde oficial WhatsApp */
  font-size: 30px;
}

.rh-whats-link:hover{
  opacity: 0.85;
}
