/* =============================================
   FortalHost – Brand overrides
   Paleta: Navy #0E2A4E | Sky #3795FC | Grow #17BD54 | Pulse #F3B700
   ============================================= */

:root {
  --fh-navy: #0E2A4E;
  --fh-sky: #3795FC;
  --fh-grow: #17BD54;
  --fh-pulse: #F3B700;
  --fh-bg: #F4F6FA;
  --fh-surface: #E3E8EE;
  --fh-text-muted: #6B7A8E;
  --fh-text-dark: #1A1D2B;
  --primary: #3795FC;
}

body.primary-bg-color {
  background-color: var(--fh-bg) !important;
  color: var(--fh-text-dark);
  overflow-x: clip;
}

.primary-bg-color {
  background-color: var(--fh-bg) !important;
}

/* Logo */
.logo-img {
  max-height: 44px;
  width: auto;
  height: auto;
}

.navbar-brand .logo-img {
  max-height: 48px;
}

.footer__logo .logo-img {
  max-height: 42px;
}

/* WHMCS Bootstrap */
.btn-primary {
  background-color: var(--fh-sky);
  border-color: var(--fh-sky);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--fh-navy);
  border-color: var(--fh-navy);
}

.btn-default,
.btn-secondary {
  border-color: var(--fh-surface);
  color: var(--fh-navy);
}

a {
  color: var(--fh-sky);
}

a:hover {
  color: var(--fh-navy);
}

.badge-info {
  background-color: var(--fh-sky);
}

header.header {
  border-bottom: 1px solid var(--fh-surface);
}

.fh-header {
  background: #fff;
  padding: 0;
}

.fh-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.fh-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.fh-header__top .navbar-brand {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.fh-header__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin: 0;
  width: auto;
}

.fh-header__actions.navbar-nav {
  flex-direction: row;
}

.fh-header__actions .nav-item {
  margin: 0;
}

.fh-header__actions .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 42px;
  min-height: 42px;
  padding: 0.5rem 0.75rem;
}

.fh-header__search .search {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.fh-header__toggler {
  color: var(--fh-navy) !important;
  border-color: var(--fh-surface) !important;
}

.fh-header__toggler .fa-bars {
  color: var(--fh-navy);
  font-size: 1.1rem;
}

header.header .toolbar .nav-link {
  border-color: var(--fh-surface);
  color: var(--fh-navy);
}

header.header .toolbar .nav-link:hover {
  color: var(--fh-sky);
  border-color: rgba(55, 149, 252, 0.35);
}

.fh-header__actions .cart-btn .fa-shopping-cart {
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
  font-weight: 900;
}

@media (max-width: 1199.98px) {
  .fh-header__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .fh-header__menu {
    width: 100%;
    flex-basis: 100%;
    padding: 0.5rem 0 0.25rem;
  }

  .fh-header__menu:not(.show) {
    display: none;
  }

  .fh-header__menu .navbar-nav,
  .fh-header__nav,
  .fh-header__account {
    width: 100%;
  }

  .fh-header__menu .navbar-nav > li > a,
  .fh-header__nav > li > a,
  .fh-header__account > li > a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem;
    color: var(--fh-navy);
    font-weight: 500;
  }

  .fh-header .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: var(--fh-bg);
    border-radius: 12px;
    margin: 0.25rem 0 0.75rem;
    padding: 0.5rem;
  }

  .fh-header .dropdown-item {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--fh-navy);
  }

  .fh-header__account {
    border-top: 1px solid var(--fh-surface);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .fh-header__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 12px;
  }

  .fh-header__top {
    display: contents;
  }

  .fh-header__top .navbar-brand {
    order: 1;
    flex: none;
    margin-right: 0;
  }

  /* Carrinho fica no canto direito, depois da busca */
  .fh-header__actions {
    order: 4;
    flex: none;
    margin-left: 4px;
  }

  .fh-header__menu {
    display: flex !important;
    order: 2;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
    width: auto;
    padding: 0;
    overflow: visible;
  }

  .fh-header__nav,
  .fh-header__account {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
    margin: 0;
  }

  .fh-header__nav {
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .fh-header__nav > li,
  .fh-header__account > li {
    flex-shrink: 0;
  }

  .fh-header__actions.navbar-nav,
  .fh-header__account.navbar-nav {
    width: auto !important;
  }

  .fh-header__nav > li > a,
  .fh-header__account > li > a {
    padding: 0.5rem 0.45rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--fh-text-muted);
    white-space: nowrap;
  }

  .fh-header__nav > li > a.pr-4 {
    padding-right: 0.45rem !important;
  }

  .fh-header__nav > li > a:hover,
  .fh-header__account > li > a:hover,
  .fh-header__nav > li.active > a,
  .fh-header__account > li.active > a {
    color: var(--fh-sky);
  }

  .fh-header__account {
    flex: none;
    margin-left: 0.75rem;
  }

  .fh-header__search {
    order: 3;
    display: flex;
    flex: 1 1 auto;
    min-width: 130px;
    justify-content: flex-end;
  }

  .fh-header__search .search {
    width: 100%;
    min-width: 0;
    max-width: 480px;
  }

  .fh-header__search .form-control {
    min-width: 0;
    font-size: 12px;
  }

  .fh-header__search .form-control::placeholder {
    font-size: 12px;
  }
}

@media (min-width: 1400px) {
  .fh-header__nav > li > a,
  .fh-header__account > li > a {
    padding: 0.55rem 0.65rem;
    font-size: 14px;
  }

  .fh-header__search .search {
    width: 100%;
    min-width: 0;
    max-width: 560px;
  }

  .fh-header__search .form-control {
    font-size: 13px;
  }

  .fh-header__search .form-control::placeholder {
    font-size: 13px;
  }
}

.tg-header__top {
  background: var(--fh-navy);
}

.tg-header__top-btn,
.tg-header__top .btn-active-client,
.tg-header__top .input-group-text {
  color: rgba(255, 255, 255, 0.9);
}

/* "Conectado como:" – remove o fundo claro padrão do Bootstrap
   para o texto branco ficar legível sobre a barra navy */
.tg-header__top .active-client .input-group-text {
  background-color: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
}

.tg-header__top .active-client .btn-active-client {
  color: #fff;
}

.tg-header__top .active-client .btn-active-client span {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
}

.tg-header__top .active-client .btn {
  color: rgba(255, 255, 255, 0.85);
}

.tg-header__top .active-client .btn:hover,
.tg-header__top .active-client .btn:focus {
  color: #fff;
}

/* Footer – fundo full-width (#F4F6FA) */
.footer__area.footer__area-two {
  background: var(--fh-bg);
}

.footer__area-two .footer__top-two,
.footer__area-two .footer__bottom-two {
  background: var(--fh-bg);
}

.footer__area-two .footer__top-inner-two {
  background: transparent;
  border-radius: 0;
}

/* Footer – banner promocional claro (footer__offer-two) */
.footer__offer:not(.footer__offer-two) {
  background: var(--fh-navy);
  box-shadow: 0 0 0 4px rgba(23, 189, 84, 0.2);
}

.footer__offer:not(.footer__offer-two) .title span {
  color: var(--fh-grow);
}

.footer__offer-two {
  background: #fff;
  box-shadow: 0 0 0 4px #e4ebf0;
}

.footer__offer-two .section__title .title {
  color: var(--fh-navy);
}

.footer__offer-two .section__title .title span {
  color: var(--fh-sky);
}

.footer__offer-two .tg-btn-two {
  background: linear-gradient(180deg, var(--fh-sky) 0%, var(--fh-navy) 100%);
}

.footer__offer-two .tg-btn-two::before {
  background: var(--fh-sky);
}

.footer__offer-two .tg-btn-two:hover::before,
.footer__offer-two .tg-btn-two:focus-visible::before {
  background: #2b84e8;
}

.footer__widget-title {
  color: var(--fh-navy);
}

.footer__link a:hover {
  color: var(--fh-sky);
}

.copy-right-text p span {
  color: var(--fh-navy);
}

/* Homepage hero banner */
.fh-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071428 0%, var(--fh-navy) 45%, #0a1f3d 100%);
  padding: 56px 0 40px;
}

.fh-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.fh-hero__glow--left {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(55, 149, 252, 0.22);
}

.fh-hero__glow--right {
  width: 360px;
  height: 360px;
  top: 10%;
  right: -60px;
  background: rgba(23, 189, 84, 0.14);
}

.fh-hero .container {
  position: relative;
  z-index: 1;
}

.fh-hero__main {
  padding-bottom: 32px;
  align-items: center;
}

.fh-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.fh-hero__mascot-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
}

.fh-hero__mascot-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 189, 84, 0.28) 0%, rgba(23, 189, 84, 0) 70%);
  z-index: 0;
}

.fh-hero__visual img,
.fh-hero__mascot {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fh-hero__mascot {
  position: relative;
  z-index: 1;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
}

.fh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 10px 18px;
  border: 1px solid rgba(55, 149, 252, 0.35);
  border-radius: 999px;
  background: rgba(55, 149, 252, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fh-hero__badge i {
  color: var(--fh-sky);
}

.fh-hero__title {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.fh-hero__highlight {
  color: var(--fh-sky);
  text-shadow: 0 0 32px rgba(55, 149, 252, 0.45);
}

.fh-hero__subtitle {
  margin-bottom: 28px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.fh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.fh-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.fh-hero__btn--primary {
  background: var(--fh-sky);
  color: #fff;
  box-shadow: 0 12px 32px rgba(55, 149, 252, 0.35);
}

.fh-hero__btn--primary:hover {
  background: #2b84e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(55, 149, 252, 0.4);
}

.fh-hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.fh-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.fh-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.fh-hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 360px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.fh-hero__trust-item i {
  margin-top: 2px;
  color: var(--fh-grow);
  flex-shrink: 0;
}

.fh-hero__trust-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fh-hero__stars {
  display: flex;
  gap: 3px;
  color: var(--fh-grow);
  font-size: 14px;
}

.fh-hero__trust-rating > span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.fh-hero__features {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.fh-hero__feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.fh-hero__feature:last-child {
  border-right: 0;
}

.fh-hero__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 16px;
}

.fh-hero__feature-icon--green {
  background: rgba(23, 189, 84, 0.15);
  color: var(--fh-grow);
}

.fh-hero__feature-icon--sky {
  background: rgba(55, 149, 252, 0.15);
  color: var(--fh-sky);
}

.fh-hero__feature-icon--purple {
  background: rgba(111, 86, 218, 0.18);
  color: #a98cff;
}

.fh-hero__feature-icon--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: var(--fh-pulse);
}

.fh-hero__feature h3 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.fh-hero__feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1199.98px) {
  .fh-hero__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fh-hero__feature:nth-child(3) {
    border-right: 0;
  }

  .fh-hero__feature:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 991.98px) {
  .fh-hero {
    padding: 32px 0 24px;
  }

  .fh-hero__main {
    padding-bottom: 20px;
  }

  .fh-hero__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .fh-hero__subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .fh-hero__badge {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 16px;
  }

  .fh-hero__visual--mobile {
    display: flex;
    justify-content: center;
    margin: 4px 0 20px;
  }

  .fh-hero__visual--mobile .fh-hero__mascot-wrap {
    max-width: 200px;
  }

  .fh-hero__visual--mobile .fh-hero__mascot {
    max-width: 180px;
  }

  .fh-hero__actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .fh-hero__btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .fh-hero__trust-item {
    font-size: 12px;
  }

  .fh-hero__trust-rating > span {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .fh-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .fh-hero__feature {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 0;
  }

  .fh-hero__feature:nth-child(2n) {
    border-right: 0;
  }

  .fh-hero__feature:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .fh-hero__feature:nth-child(n+4) {
    border-top: 0;
  }

  .fh-hero__feature:nth-child(n+5) {
    border-bottom: 0;
  }

  .fh-hero__feature > div:last-child {
    flex: 1;
    min-width: 0;
  }

  .fh-hero__feature h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .fh-hero__feature p {
    font-size: 11px;
    line-height: 1.4;
  }

  .fh-hero__feature-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .fh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
  }

  .fh-hero__trust-item {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .fh-hero__trust-rating {
    flex-shrink: 0;
  }

  .fh-domain__card {
    padding: 24px 16px 20px;
    border-radius: 18px;
  }

  .fh-domain__actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .fh-domain__actions-mobile .fh-domain__submit,
  .fh-domain__actions-mobile .fh-domain__transfer {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .fh-hero {
    padding: 24px 0 16px;
  }

  .fh-hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fh-hero__title br {
    display: none;
  }

  .fh-hero__visual--mobile {
    margin: 8px 0 16px;
  }

  .fh-hero__visual--mobile .fh-hero__mascot-wrap {
    max-width: 180px;
  }

  .fh-hero__visual--mobile .fh-hero__mascot {
    max-width: 160px;
  }

  .fh-hero__trust-item span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .navbar-brand .logo-img {
    max-height: 40px;
  }

  .fh-header__actions .nav-link {
    padding: 0.45rem 0.65rem;
  }

  section#main-body.main-body--home {
    padding-bottom: 40px;
  }

  .fh-home__section {
    padding: 28px 0;
  }

  .fh-home__section-head {
    margin-bottom: 24px;
  }

  .fh-home__title {
    font-size: 24px;
  }

  .fh-home__lead {
    font-size: 15px;
  }

  .fh-home__help-box,
  .fh-home__account-box {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .fh-home__quick-grid--auto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer__offer-two {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .footer__offer-two .section__title .title {
    font-size: 20px;
  }

  .footer__offer-two .footer__offer-btn {
    width: 100%;
  }

  .footer__offer-two .tg-btn-two {
    width: 100%;
    justify-content: center;
  }
}

/* Login */
section#main-body:has(.login__area) {
  padding: 0;
}

section#main-body:has(.login__area) > .container {
  max-width: 100%;
  padding: 0;
}

section#main-body:has(.login__area) > .container > .row {
  margin: 0;
}

section#main-body:has(.login__area) .primary-content {
  padding: 0;
}

.login__area--fortalhost {
  background: linear-gradient(160deg, #F4F6FA 0%, #EEF4FF 55%, #F4F6FA 100%);
  min-height: calc(100vh - 80px);
}

.login__row {
  min-height: calc(100vh - 80px);
}

.login__form-inner {
  min-height: calc(100vh - 80px);
  padding: 48px 24px;
}

.login__form-wrap {
  width: 100%;
  max-width: 440px;
  padding: 0;
}

.login__form-wrap .title {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--fh-navy);
}

.login__form-wrap .title span {
  color: var(--fh-sky);
}

.login__subtitle {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fh-text-muted);
}

.login__card {
  background: #fff;
  border: 1px solid var(--fh-surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(14, 42, 78, 0.06);
}

.login__form-social .social-signin-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.login__form-social .social-signin-btns .btn,
.login__form-social .providerPreLinking .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid var(--fh-surface);
  background: #fff;
  color: var(--fh-navy);
  box-shadow: none;
  transition: all 0.25s ease;
}

.login__form-social .social-signin-btns .btn:hover,
.login__form-social .providerPreLinking .btn:hover {
  border-color: var(--fh-sky);
  color: var(--fh-sky);
  transform: translateY(-1px);
}

.login__form-social .btn-social i.fas,
.login__form-social .btn-social i.far,
.login__form-social .btn-social i.fab {
  position: static;
  width: auto;
  line-height: 1;
  border: 0;
  padding: 0;
  font-size: 18px;
}

.login__form-wrap .divider {
  position: relative;
  margin: 22px 0;
  font-size: 13px;
  color: var(--fh-text-muted);
}

.login__form-wrap .divider::before,
.login__form-wrap .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 90px);
  height: 1px;
  background: var(--fh-surface);
}

.login__form-wrap .divider::before {
  left: 0;
}

.login__form-wrap .divider::after {
  right: 0;
}

.login__form .form__grp input {
  background: var(--fh-bg);
  border-color: var(--fh-surface);
  border-radius: 12px;
}

.login__form .form__grp input:focus {
  background: #fff;
  border-color: var(--fh-sky);
  box-shadow: 0 0 0 4px rgba(55, 149, 252, 0.15);
  outline: none;
}

.login__form .form__grp label {
  color: var(--fh-text-muted);
}

.forgot-password {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.forgot-password a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fh-sky);
}

.forgot-password a:hover {
  color: var(--fh-grow);
}

.login__submit.tg-btn {
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(55, 149, 252, 0.25);
}

.login__submit.tg-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(14, 42, 78, 0.2);
}

.login__captcha {
  margin-bottom: 20px;
}

.account__switch p {
  font-size: 14px;
  color: var(--fh-text-muted);
}

.account__switch p a {
  color: var(--fh-sky);
}

.login__img {
  background-color: var(--fh-navy);
  background-image: linear-gradient(135deg, rgba(14, 42, 78, 0.85) 0%, rgba(55, 149, 252, 0.45) 100%), var(--login-bg, none);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 80px);
}

.login__img::before {
  border-width: 12px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.login__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 78, 0.2) 0%, rgba(14, 42, 78, 0.82) 100%);
  z-index: 1;
}

.login__img-content {
  position: relative;
  z-index: 2;
  padding: 56px;
  color: #fff;
  max-width: 520px;
}

.login__img-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(55, 149, 252, 0.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.login__img-content h3 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.login__img-content p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.login__img-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.login__img-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.login__img-features li svg {
  flex-shrink: 0;
  color: var(--fh-grow);
}

@media (max-width: 991.98px) {
  .login__form-inner {
    min-height: auto;
    padding: 32px 20px 48px;
  }

  .login__area--fortalhost,
  .login__row {
    min-height: auto;
  }

  .login__form-wrap .title {
    font-size: 30px;
  }

  .login__card {
    padding: 22px 18px;
  }
}

/* =============================================
   Homepage – seções FortalHost
   ============================================= */

section#main-body.main-body--home {
  padding: 0 0 64px;
  background: var(--fh-bg);
}

section#main-body.main-body--home > .container {
  max-width: 1200px;
}

section#main-body.main-body--home .primary-content {
  padding-top: 0;
}

.fh-home {
  padding-top: 0;
}

.fh-home__section {
  padding: 48px 0;
}

.fh-home__products {
  padding-top: 40px;
}

.fh-home__section-head {
  max-width: 640px;
  margin: 0 auto 36px;
}

.fh-home__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fh-home__eyebrow--dark {
  background: rgba(14, 42, 78, 0.08);
  color: var(--fh-navy);
}

.fh-home__title {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fh-navy);
}

.fh-home__title--dark {
  color: var(--fh-navy);
}

.fh-home__lead {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fh-text-muted);
}

.fh-home__lead--dark {
  color: var(--fh-text-muted);
}

/* Product cards */
.fh-home__product-grid {
  margin-top: 4px;
}

.fh-home__product-card {
  min-height: 260px;
  padding: 28px !important;
  border: 1px solid var(--fh-surface);
  border-radius: 20px;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(14, 42, 78, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.fh-home__product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 149, 252, 0.35);
  box-shadow: 0 16px 48px rgba(14, 42, 78, 0.1);
}

.fh-home__product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  font-size: 20px;
}

.fh-home__product-icon--1 {
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-home__product-icon--2 {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-home__product-icon--3 {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-home__product-icon--0 {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-home__product-card .hosting__content-top .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fh-navy);
  margin-bottom: 0;
  line-height: 1.35;
}

.fh-home__product-card .hosting__content-two {
  flex: 1;
  margin-bottom: 16px;
}

.fh-home__product-card .hosting__content-two p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fh-text-muted);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fh-home__product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fh-sky);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.fh-home__product-link:hover {
  color: var(--fh-navy);
  text-decoration: none;
  gap: 12px;
}

.fh-home__product-card .hosting__btn-two a:not(.fh-home__product-link):hover {
  transform: none;
}

/* Help section */
.fh-home__help {
  padding-top: 32px;
  padding-bottom: 32px;
}

.fh-home__help-box {
  padding: 40px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--fh-surface);
  box-shadow: 0 4px 24px rgba(14, 42, 78, 0.04);
}

/* Quick access cards */
.fh-home__quick-grid {
  margin: 0;
}

.fh-home__quick-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.fh-home__quick-grid > [class*="col-"] {
  padding: 8px;
}

.fh-home__quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 130px;
  padding: 22px 14px;
  border: 1px solid var(--fh-surface);
  border-radius: 18px;
  background: var(--fh-bg);
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: none;
  height: 100%;
}

.fh-home__quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(55, 149, 252, 0.4);
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 42, 78, 0.08);
  text-decoration: none;
}

.fh-home__help-box .fh-home__quick-card {
  background: var(--fh-bg);
}

.fh-home__help-box .fh-home__quick-card:hover {
  background: #fff;
}

.fh-home__quick-card--compact {
  min-height: 118px;
  padding: 18px 12px;
}

.fh-home__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.fh-home__quick-card:hover .fh-home__quick-icon {
  transform: scale(1.06);
}

.fh-home__quick-icon--sky {
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-home__quick-icon--green {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-home__quick-icon--navy {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-home__quick-icon--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-home__quick-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--fh-navy);
}

.fh-home__quick-card:hover .fh-home__quick-label {
  color: var(--fh-sky);
}

/* Account section box */
.fh-home__account {
  padding-top: 16px;
  padding-bottom: 16px;
}

.fh-home__account-box {
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  border: 1px solid var(--fh-surface);
  box-shadow: 0 8px 32px rgba(14, 42, 78, 0.05);
}

.fh-home__account-box .fh-home__section-head {
  margin-bottom: 28px;
}

.fh-home__quick-grid--account {
  margin-top: 0;
}

.fh-home__account-box .fh-home__quick-card {
  background: #fff;
}

/* Domain search */
.fh-domain {
  position: relative;
  margin-top: 0;
  padding: 32px 0 16px;
  background: var(--fh-bg);
  z-index: 2;
}

.fh-domain .domain__search-form-two {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .fh-domain .domain__search-form-two {
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
}

.fh-domain__card {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 36px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--fh-surface);
  box-shadow: 0 20px 60px rgba(14, 42, 78, 0.12);
}

.fh-domain__head {
  margin-bottom: 20px;
}

.fh-domain__title {
  margin-bottom: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

.fh-domain__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fh-domain__search-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.fh-domain__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.fh-domain__input-wrap > i {
  position: absolute;
  left: 20px;
  color: var(--fh-text-muted);
  font-size: 16px;
  pointer-events: none;
}

.fh-domain__input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--fh-surface);
  border-radius: 999px;
  background: var(--fh-bg);
  font-size: 16px;
  color: var(--fh-navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fh-domain__input:focus {
  outline: none;
  border-color: var(--fh-sky);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(55, 149, 252, 0.15);
}

.fh-domain__input::placeholder {
  color: var(--fh-text-muted);
}

.fh-domain__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.fh-domain__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  background: var(--fh-sky);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(55, 149, 252, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fh-domain__submit:hover {
  background: #2b84e8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(55, 149, 252, 0.35);
}

.fh-domain__transfer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 16px 22px;
  border: 2px solid var(--fh-surface);
  border-radius: 999px;
  background: #fff;
  color: var(--fh-navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fh-domain__transfer:hover {
  border-color: var(--fh-sky);
  color: var(--fh-sky);
  background: rgba(55, 149, 252, 0.06);
}

.fh-domain__actions .fh-hero__btn {
  flex: 1;
  min-width: 160px;
  border: none;
  cursor: pointer;
}

.fh-domain__btn-transfer {
  border: 2px solid var(--fh-surface) !important;
  background: #fff !important;
  color: var(--fh-navy) !important;
  box-shadow: none !important;
}

.fh-domain__btn-transfer:hover {
  border-color: var(--fh-sky) !important;
  background: rgba(55, 149, 252, 0.06) !important;
  color: var(--fh-sky) !important;
  transform: translateY(-2px);
}

.fh-domain__actions-mobile {
  gap: 12px 0;
}

.fh-domain__actions-mobile .fh-hero__btn {
  width: 100%;
  border: none;
}

.fh-domain__tlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.fh-domain__tlds li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--fh-bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--fh-navy);
}

.fh-domain__tlds li img {
  height: 22px;
  width: auto;
}

.fh-domain__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fh-sky);
  text-decoration: none;
}

.fh-domain__link:hover {
  color: var(--fh-navy);
  text-decoration: none;
}

.fh-domain__link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.fh-domain__link:hover i {
  transform: translateX(4px);
}

/* WHMCS attribution na homepage */
section#main-body.main-body--home .copyright,
section#main-body.main-body--home a[href*="whmcs.com"] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .fh-home__quick-grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .fh-home__section {
    padding: 36px 0;
  }

  .fh-home__products {
    padding-top: 44px;
  }

  .fh-home__help-box {
    padding: 28px 20px;
  }

  .fh-home__account-box {
    padding: 28px 20px 24px;
  }

  .fh-domain__card {
    padding: 24px 20px 20px;
  }

  .fh-domain {
    padding: 24px 0 12px;
  }
}

@media (max-width: 575.98px) {
  .fh-domain__search-row {
    flex-direction: column;
  }

  .fh-domain__tlds {
    gap: 10px;
  }

  .fh-domain__tlds li {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    font-size: 13px;
    padding: 8px 12px;
  }

  .fh-home__quick-card {
    min-height: 100px;
    padding: 14px 10px;
    gap: 10px;
  }

  .fh-home__quick-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .fh-home__quick-label {
    font-size: 12px;
  }

  .fh-home__product-card {
    min-height: auto;
    padding: 22px !important;
  }
}

/* =============================================
   Hospedagem de Sites – hero + benefícios
   ============================================= */

.fh-host-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071428 0%, var(--fh-navy) 48%, #122d52 100%);
  padding: 48px 0 40px;
}

.fh-host-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.fh-host-hero__glow--left {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: rgba(55, 149, 252, 0.2);
}

.fh-host-hero__glow--right {
  width: 320px;
  height: 320px;
  top: 0;
  right: -60px;
  background: rgba(23, 189, 84, 0.18);
}

.fh-host-hero .container {
  position: relative;
  z-index: 1;
}

.fh-host-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(55, 149, 252, 0.4);
  background: rgba(55, 149, 252, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fh-host-hero__badge .fa-server {
  color: var(--fh-sky);
}

.fh-host-hero__title {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.fh-host-hero__highlight {
  color: var(--fh-sky);
  text-shadow: 0 0 28px rgba(55, 149, 252, 0.4);
}

.fh-host-hero__compare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
}

.fh-host-hero__compare-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.fh-host-hero__compare-item--weak {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.55);
}

.fh-host-hero__compare-item--weak .fh-host-hero__compare-icon {
  color: #ff8a8a;
}

.fh-host-hero__compare-item--strong {
  border: 1px solid rgba(23, 189, 84, 0.45);
  background: rgba(23, 189, 84, 0.12);
  color: #fff;
}

.fh-host-hero__compare-item--strong .fh-host-hero__compare-icon {
  color: var(--fh-grow);
}

.fh-host-hero__compare-item--strong strong {
  color: var(--fh-sky);
  font-weight: 700;
}

.fh-host-hero__compare-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.fh-host-hero__subtitle {
  margin-bottom: 18px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.fh-host-hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.fh-host-hero__highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fh-host-hero__highlight-card:hover {
  border-color: rgba(55, 149, 252, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.fh-host-hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 15px;
}

.fh-host-hero__highlight-icon--sky {
  background: rgba(55, 149, 252, 0.2);
  color: var(--fh-sky);
}

.fh-host-hero__highlight-icon--green {
  background: rgba(23, 189, 84, 0.2);
  color: var(--fh-grow);
}

.fh-host-hero__highlight-icon--pulse {
  background: rgba(243, 183, 0, 0.2);
  color: var(--fh-pulse);
}

.fh-host-hero__highlight-icon--navy {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.fh-host-hero__highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fh-host-hero__highlight-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.fh-host-hero__highlight-text small {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.fh-host-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.fh-host-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fh-host-hero__btn--primary {
  background: var(--fh-sky);
  color: #fff;
  box-shadow: 0 10px 28px rgba(55, 149, 252, 0.35);
}

.fh-host-hero__btn--primary:hover {
  background: #2b84e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(55, 149, 252, 0.42);
}

.fh-host-hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.fh-host-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.fh-host-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fh-host-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fh-host-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.fh-host-hero__pill i {
  color: var(--fh-grow);
  font-size: 10px;
}

.fh-host-hero__trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.fh-host-hero__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--fh-grow);
  font-size: 12px;
}

.fh-host-hero__trust-rating > span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.fh-host-planos-anchor {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 100px;
}

.fh-host-hero__main {
  align-items: center;
}

.fh-host-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.fh-host-hero__mascot-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  background: transparent;
}

.fh-host-hero__mascot-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 149, 252, 0.28) 0%, rgba(23, 189, 84, 0.1) 45%, rgba(55, 149, 252, 0) 70%);
  z-index: 0;
}

.fh-host-hero__mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
  filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
}

.fh-host-benefits {
  padding: 40px 0 48px;
  background: var(--fh-bg);
  border-bottom: 1px solid var(--fh-surface);
}

.fh-host-benefits__head {
  max-width: 720px;
  margin: 0 auto 32px;
}

.fh-host-benefits__title {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-host-benefits__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fh-text-muted);
}

.fh-host-benefits__grid {
  margin-bottom: 8px;
}

.fh-host-benefits__grid > [class*="col-"] {
  margin-bottom: 20px;
  display: flex;
}

.fh-host-benefits__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  border: 1px solid var(--fh-surface);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(14, 42, 78, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fh-host-benefits__card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 149, 252, 0.3);
  box-shadow: 0 12px 32px rgba(14, 42, 78, 0.08);
}

.fh-host-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 20px;
}

.fh-host-benefits__icon--sky {
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-host-benefits__icon--green {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-host-benefits__icon--navy {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-host-benefits__icon--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-host-benefits__card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-host-benefits__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fh-text-muted);
}

.fh-host-benefits__cta-text {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fh-navy);
}

/* =============================================
   Hospedagem WordPress – hero + planos
   ============================================= */

.fh-wp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071428 0%, var(--fh-navy) 50%, #0d2444 100%);
  padding: 48px 0 40px;
}

.fh-wp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.fh-wp-hero__glow--left {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: rgba(55, 149, 252, 0.2);
}

.fh-wp-hero__glow--right {
  width: 320px;
  height: 320px;
  top: 0;
  right: -60px;
  background: rgba(33, 117, 155, 0.35);
}

.fh-wp-hero .container {
  position: relative;
  z-index: 1;
}

.fh-wp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(33, 117, 155, 0.5);
  background: rgba(33, 117, 155, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fh-wp-hero__badge .fa-wordpress {
  font-size: 16px;
  color: #21759b;
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fh-wp-hero__title {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.fh-wp-hero__highlight {
  color: #5eb3e8;
  text-shadow: 0 0 28px rgba(33, 117, 155, 0.45);
}

.fh-wp-hero__compare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
}

.fh-wp-hero__compare-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.fh-wp-hero__compare-item--weak {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.55);
}

.fh-wp-hero__compare-item--weak .fh-wp-hero__compare-icon {
  color: #ff8a8a;
}

.fh-wp-hero__compare-item--strong {
  border: 1px solid rgba(33, 117, 155, 0.55);
  background: rgba(33, 117, 155, 0.18);
  color: #fff;
}

.fh-wp-hero__compare-item--strong .fh-wp-hero__compare-icon {
  color: #21759b;
  background: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.fh-wp-hero__compare-item--strong strong {
  color: #7ec8f0;
  font-weight: 700;
}

.fh-wp-hero__compare-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.fh-wp-hero__subtitle {
  margin-bottom: 18px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.fh-wp-hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.fh-wp-hero__highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fh-wp-hero__highlight-card:hover {
  border-color: rgba(33, 117, 155, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.fh-wp-hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 15px;
}

.fh-wp-hero__highlight-icon--wp {
  background: rgba(33, 117, 155, 0.28);
  color: #7ec8f0;
}

.fh-wp-hero__highlight-icon--green {
  background: rgba(23, 189, 84, 0.2);
  color: var(--fh-grow);
}

.fh-wp-hero__highlight-icon--sky {
  background: rgba(55, 149, 252, 0.2);
  color: var(--fh-sky);
}

.fh-wp-hero__highlight-icon--pulse {
  background: rgba(243, 183, 0, 0.2);
  color: var(--fh-pulse);
}

.fh-wp-hero__highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fh-wp-hero__highlight-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.fh-wp-hero__highlight-text small {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.fh-wp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.fh-wp-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fh-wp-hero__btn--primary {
  background: #21759b;
  color: #fff;
  box-shadow: 0 10px 28px rgba(33, 117, 155, 0.4);
}

.fh-wp-hero__btn--primary:hover {
  background: #1a5f80;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(33, 117, 155, 0.48);
}

.fh-wp-hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.fh-wp-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.fh-wp-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fh-wp-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fh-wp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.fh-wp-hero__pill i {
  color: var(--fh-grow);
  font-size: 10px;
}

.fh-wp-hero__trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.fh-wp-hero__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--fh-grow);
  font-size: 12px;
}

.fh-wp-hero__trust-rating > span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.fh-wp-planos-anchor {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 100px;
}

.fh-wp-hero__main {
  align-items: center;
}

.fh-wp-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.fh-wp-hero__mascot-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  background: transparent;
}

.fh-wp-hero__mascot-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 117, 155, 0.32) 0%, rgba(55, 149, 252, 0.1) 45%, rgba(33, 117, 155, 0) 70%);
  z-index: 0;
}

.fh-wp-hero__mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
  filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
}

.fh-wp-benefits {
  padding: 40px 0 48px;
  background: var(--fh-bg);
  border-bottom: 1px solid var(--fh-surface);
}

.fh-wp-benefits__head {
  max-width: 720px;
  margin: 0 auto 32px;
}

.fh-wp-benefits__title {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-wp-benefits__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fh-text-muted);
}

.fh-wp-benefits__grid {
  margin-bottom: 8px;
}

.fh-wp-benefits__grid > [class*="col-"] {
  margin-bottom: 20px;
  display: flex;
}

.fh-wp-benefits__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  border: 1px solid var(--fh-surface);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(14, 42, 78, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fh-wp-benefits__card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 117, 155, 0.35);
  box-shadow: 0 12px 32px rgba(14, 42, 78, 0.08);
}

.fh-wp-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 20px;
}

.fh-wp-benefits__icon--sky {
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-wp-benefits__icon--green {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-wp-benefits__icon--navy {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-wp-benefits__icon--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-wp-benefits__icon--wp {
  background: rgba(33, 117, 155, 0.15);
  color: #21759b;
}

.fh-wp-benefits__card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-wp-benefits__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fh-text-muted);
}

.fh-wp-benefits__cta-text {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fh-navy);
}

section#main-body.fh-main-body--wordpress,
section#main-body.fh-main-body--email,
section#main-body.fh-main-body--hosting {
  padding: 40px 0 64px;
  background: var(--fh-bg);
}

section#main-body.fh-main-body--wordpress,
section#main-body.fh-main-body--email > .container,
section#main-body.fh-main-body--hosting > .container {
  max-width: 1200px;
}

section#main-body.fh-main-body--wordpress .primary-content,
section#main-body.fh-main-body--email .primary-content,
section#main-body.fh-main-body--hosting .primary-content {
  padding-top: 0;
}

.fh-page--wordpress .copyright,
.fh-page--wordpress a[href*="whmcs.com"],
.fh-page--email .copyright,
.fh-page--email a[href*="whmcs.com"],
.fh-page--hosting .copyright,
.fh-page--hosting a[href*="whmcs.com"],
section#main-body.fh-main-body--wordpress .copyright,
section#main-body.fh-main-body--wordpress a[href*="whmcs.com"],
section#main-body.fh-main-body--email .copyright,
section#main-body.fh-main-body--email a[href*="whmcs.com"],
section#main-body.fh-main-body--hosting .copyright,
section#main-body.fh-main-body--hosting a[href*="whmcs.com"] {
  display: none !important;
}

/* Oculta botão "Mostrar Menu" no desktop */
@media (min-width: 992px) {
  .offCanvas-toggle,
  .offCanvas-toggle-two,
  .menu-tigger,
  #order-standard_cart .sidebar-opener {
    display: none !important;
  }
}

/* Título duplicado (hero já exibe o nome) */
.fh-page--wordpress .fh-wp-hero ~ #main-body .primary-content > h1,
.fh-page--wordpress .fh-wp-hero ~ #main-body .primary-content > h2:first-of-type,
.fh-page--wordpress .fh-wp-hero ~ #main-body .primary-content > .section__title:first-child,
.fh-page--wordpress .fh-wp-hero ~ #main-body .primary-content > .hosting__area > .section__title:first-child,
.fh-page--email .fh-email-hero ~ #main-body .primary-content > h1,
.fh-page--email .fh-email-hero ~ #main-body .primary-content > h2:first-of-type,
.fh-page--email .fh-email-hero ~ #main-body .primary-content > .section__title:first-child,
.fh-page--email .fh-email-hero ~ #main-body .primary-content > .hosting__area > .section__title:first-child,
.fh-page--hosting .fh-host-hero ~ #main-body .primary-content > h1,
.fh-page--hosting .fh-host-hero ~ #main-body .primary-content > h2:first-of-type,
.fh-page--hosting .fh-host-hero ~ #main-body .primary-content > .section__title:first-child,
.fh-page--hosting .fh-host-hero ~ #main-body .primary-content > .hosting__area > .section__title:first-child {
  display: none;
}

/* =============================================
   E-mail Profissional – hero + benefícios
   ============================================= */

.fh-email-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071428 0%, var(--fh-navy) 48%, #122d52 100%);
  padding: 48px 0 40px;
}

.fh-email-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.fh-email-hero__glow--left {
  width: 360px;
  height: 360px;
  top: -90px;
  left: -70px;
  background: rgba(55, 149, 252, 0.22);
}

.fh-email-hero__glow--right {
  width: 300px;
  height: 300px;
  top: 0;
  right: -50px;
  background: rgba(23, 189, 84, 0.12);
}

.fh-email-hero .container {
  position: relative;
  z-index: 1;
}

.fh-email-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(55, 149, 252, 0.4);
  background: rgba(55, 149, 252, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fh-email-hero__badge .fa-envelope {
  color: var(--fh-sky);
}

.fh-email-hero__title {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.fh-email-hero__highlight {
  color: var(--fh-sky);
  text-shadow: 0 0 28px rgba(55, 149, 252, 0.4);
}

.fh-email-hero__compare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
}

.fh-email-hero__compare-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.fh-email-hero__compare-item--weak {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.6);
}

.fh-email-hero__compare-item--weak .fh-email-hero__compare-icon {
  color: #ff8a8a;
}

.fh-email-hero__compare-item--strong {
  border: 1px solid rgba(23, 189, 84, 0.45);
  background: rgba(23, 189, 84, 0.12);
  color: #fff;
}

.fh-email-hero__compare-item--strong .fh-email-hero__compare-icon {
  color: var(--fh-grow);
}

.fh-email-hero__compare-item--strong strong {
  color: var(--fh-sky);
  font-weight: 700;
}

.fh-email-hero__compare-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.fh-email-hero__subtitle {
  margin-bottom: 18px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.fh-email-hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.fh-email-hero__highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fh-email-hero__highlight-card:hover {
  border-color: rgba(55, 149, 252, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.fh-email-hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 15px;
}

.fh-email-hero__highlight-icon--sky {
  background: rgba(55, 149, 252, 0.2);
  color: var(--fh-sky);
}

.fh-email-hero__highlight-icon--green {
  background: rgba(23, 189, 84, 0.2);
  color: var(--fh-grow);
}

.fh-email-hero__highlight-icon--pulse {
  background: rgba(243, 183, 0, 0.2);
  color: var(--fh-pulse);
}

.fh-email-hero__highlight-icon--navy {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.fh-email-hero__highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fh-email-hero__highlight-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.fh-email-hero__highlight-text small {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.fh-email-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.fh-email-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fh-email-hero__btn--primary {
  background: var(--fh-sky);
  color: #fff;
  box-shadow: 0 10px 28px rgba(55, 149, 252, 0.35);
}

.fh-email-hero__btn--primary:hover {
  background: #2b84e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(55, 149, 252, 0.42);
}

.fh-email-hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.fh-email-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.fh-email-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fh-email-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fh-email-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.fh-email-hero__pill i {
  color: var(--fh-grow);
  font-size: 10px;
}

.fh-email-hero__trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.fh-email-hero__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--fh-grow);
  font-size: 12px;
}

.fh-email-hero__trust-rating > span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.fh-email-planos-anchor {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 100px;
}

.fh-email-hero__main {
  align-items: center;
}

.fh-email-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.fh-email-hero__mascot-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  background: transparent;
}

.fh-email-hero__mascot-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 189, 84, 0.28) 0%, rgba(55, 149, 252, 0.08) 45%, rgba(23, 189, 84, 0) 70%);
  z-index: 0;
}

.fh-email-hero__mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
  filter: drop-shadow(0 12px 28px rgba(14, 42, 78, 0.35));
}

.fh-email-benefits {
  padding: 40px 0 48px;
  background: var(--fh-bg);
  border-bottom: 1px solid var(--fh-surface);
}

.fh-email-benefits__head {
  max-width: 720px;
  margin: 0 auto 32px;
}

.fh-email-benefits__title {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-email-benefits__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fh-text-muted);
}

.fh-email-benefits__grid {
  margin-bottom: 8px;
}

.fh-email-benefits__grid > [class*="col-"] {
  margin-bottom: 20px;
  display: flex;
}

.fh-email-benefits__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  border: 1px solid var(--fh-surface);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(14, 42, 78, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fh-email-benefits__card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 149, 252, 0.3);
  box-shadow: 0 12px 32px rgba(14, 42, 78, 0.08);
}

.fh-email-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 20px;
}

.fh-email-benefits__icon--sky {
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-email-benefits__icon--green {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-email-benefits__icon--navy {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-email-benefits__icon--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-email-benefits__card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-email-benefits__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fh-text-muted);
}

.fh-email-benefits__card p strong {
  color: var(--fh-navy);
  font-weight: 600;
}

.fh-email-benefits__cta-text {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fh-navy);
}

/* Grid de planos (WordPress + E-mail + Hospedagem) */
.fh-page--wordpress .pricing__item-wrap,
.fh-page--wordpress .pricing__item-wrap-two,
.fh-page--wordpress .pricing__item-wrap-three,
.fh-page--wordpress .pricing__item-wrap-four,
.fh-page--email .pricing__item-wrap,
.fh-page--hosting .pricing__item-wrap,
.fh-page--email .pricing__item-wrap-two,
.fh-page--hosting .pricing__item-wrap-two,
.fh-page--email .pricing__item-wrap-three,
.fh-page--hosting .pricing__item-wrap-three,
.fh-page--email .pricing__item-wrap-four,
.fh-page--hosting .pricing__item-wrap-four {
  margin-top: 8px;
}

.fh-page--wordpress .pricing__item-wrap .row,
.fh-page--wordpress .pricing__item-wrap-two .row,
.fh-page--wordpress .pricing__item-wrap-three .row,
.fh-page--wordpress .pricing__item-wrap-four .row,
.fh-page--email .pricing__item-wrap .row,
.fh-page--hosting .pricing__item-wrap .row,
.fh-page--email .pricing__item-wrap-two .row,
.fh-page--hosting .pricing__item-wrap-two .row,
.fh-page--email .pricing__item-wrap-three .row,
.fh-page--hosting .pricing__item-wrap-three .row,
.fh-page--email .pricing__item-wrap-four .row,
.fh-page--hosting .pricing__item-wrap-four .row {
  align-items: stretch;
}

.fh-page--wordpress .pricing__item-wrap .row > [class*="col-"],
.fh-page--wordpress .pricing__item-wrap-two .row > [class*="col-"],
.fh-page--wordpress .pricing__item-wrap-three .row > [class*="col-"],
.fh-page--wordpress .pricing__item-wrap-four .row > [class*="col-"],
.fh-page--email .pricing__item-wrap .row > [class*="col-"],
.fh-page--hosting .pricing__item-wrap .row > [class*="col-"],
.fh-page--email .pricing__item-wrap-two .row > [class*="col-"],
.fh-page--hosting .pricing__item-wrap-two .row > [class*="col-"],
.fh-page--email .pricing__item-wrap-three .row > [class*="col-"],
.fh-page--hosting .pricing__item-wrap-three .row > [class*="col-"],
.fh-page--email .pricing__item-wrap-four .row > [class*="col-"] ,
.fh-page--hosting .pricing__item-wrap-four .row > [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}

.fh-page--wordpress .pricing__box-four,
.fh-page--wordpress .pricing__box,
.fh-page--wordpress .pricing__box-seven,
.fh-page--email .pricing__box-four,
.fh-page--hosting .pricing__box-four,
.fh-page--email .pricing__box,
.fh-page--hosting .pricing__box,
.fh-page--email .pricing__box-seven ,
.fh-page--hosting .pricing__box-seven {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid var(--fh-surface);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(14, 42, 78, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fh-page--wordpress .pricing__box-four:hover,
.fh-page--wordpress .pricing__box:hover,
.fh-page--wordpress .pricing__box-seven:hover,
.fh-page--email .pricing__box-four:hover,
.fh-page--hosting .pricing__box-four:hover,
.fh-page--email .pricing__box:hover,
.fh-page--hosting .pricing__box:hover,
.fh-page--email .pricing__box-seven:hover ,
.fh-page--hosting .pricing__box-seven:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 149, 252, 0.35);
  box-shadow: 0 20px 56px rgba(14, 42, 78, 0.12);
}

.fh-page--wordpress .pricing__box-top,
.fh-page--email .pricing__box-top ,
.fh-page--hosting .pricing__box-top {
  border: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--fh-navy) 0%, #16365f 100%);
  padding: 28px 24px 24px;
  color: #fff;
}

.fh-page--wordpress .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-top,
.fh-page--wordpress .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-top,
.fh-page--email .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-top,
.fh-page--hosting .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-top,
.fh-page--email .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-top ,
.fh-page--hosting .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-top {
  background: linear-gradient(145deg, #1a4a8a 0%, var(--fh-sky) 100%);
}

.fh-page--wordpress .pricing__plan,
.fh-page--email .pricing__plan ,
.fh-page--hosting .pricing__plan {
  margin-bottom: 20px;
}

.fh-page--wordpress .pricing__plan .title,
.fh-page--email .pricing__plan .title ,
.fh-page--hosting .pricing__plan .title {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.fh-page--wordpress .pricing__plan > p,
.fh-page--email .pricing__plan > p ,
.fh-page--hosting .pricing__plan > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.fh-page--wordpress .pricing__price,
.fh-page--email .pricing__price ,
.fh-page--hosting .pricing__price {
  margin-bottom: 20px;
}

.fh-page--wordpress .pricing__price .price,
.fh-page--email .pricing__price .price ,
.fh-page--hosting .pricing__price .price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.fh-page--wordpress .pricing__price .price span,
.fh-page--email .pricing__price .price span ,
.fh-page--hosting .pricing__price .price span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.fh-page--wordpress .pricing__price > p,
.fh-page--email .pricing__price > p ,
.fh-page--hosting .pricing__price > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.fh-page--wordpress .pricing__price .price-off,
.fh-page--email .pricing__price .price-off ,
.fh-page--hosting .pricing__price .price-off {
  background: rgba(23, 189, 84, 0.15);
  border: 1px solid rgba(23, 189, 84, 0.35);
  color: var(--fh-grow);
}

.fh-page--wordpress .pricing__btn,
.fh-page--email .pricing__btn ,
.fh-page--hosting .pricing__btn {
  margin-bottom: 0;
}

.fh-page--wordpress .pricing__btn .tg-btn,
.fh-page--wordpress .pricing__box-four .pricing__btn .tg-btn,
.fh-page--email .pricing__btn .tg-btn,
.fh-page--hosting .pricing__btn .tg-btn,
.fh-page--email .pricing__box-four .pricing__btn .tg-btn ,
.fh-page--hosting .pricing__box-four .pricing__btn .tg-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--fh-sky);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(55, 149, 252, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fh-page--wordpress .pricing__btn .tg-btn:hover,
.fh-page--wordpress .pricing__box-four .pricing__btn .tg-btn:hover,
.fh-page--email .pricing__btn .tg-btn:hover,
.fh-page--hosting .pricing__btn .tg-btn:hover,
.fh-page--email .pricing__box-four .pricing__btn .tg-btn:hover ,
.fh-page--hosting .pricing__box-four .pricing__btn .tg-btn:hover {
  background: #2b84e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(55, 149, 252, 0.4);
}

.fh-page--wordpress .pricing__box-bottom,
.fh-page--email .pricing__box-bottom ,
.fh-page--hosting .pricing__box-bottom {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 16px 16px;
}

.fh-page--wordpress .pricing__list,
.fh-page--email .pricing__list ,
.fh-page--hosting .pricing__list {
  flex: 1;
  height: auto !important;
  min-height: 0;
  overflow: visible;
}

.fh-page--wordpress .pricing__list .list-wrap,
.fh-page--email .pricing__list .list-wrap ,
.fh-page--hosting .pricing__list .list-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fh-page--wordpress .pricing__list .list-wrap li,
.fh-page--email .pricing__list .list-wrap li ,
.fh-page--hosting .pricing__list .list-wrap li {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fh-text-dark);
  text-align: left;
}

.fh-page--wordpress .pricing__list .list-wrap li:last-child,
.fh-page--email .pricing__list .list-wrap li:last-child ,
.fh-page--hosting .pricing__list .list-wrap li:last-child {
  margin-bottom: 0;
}

.fh-page--wordpress .pricing__list .list-wrap li .icon,
.fh-page--email .pricing__list .list-wrap li .icon ,
.fh-page--hosting .pricing__list .list-wrap li .icon {
  color: var(--fh-grow);
  font-size: 14px;
  margin-top: 3px;
}

.fh-page--wordpress .pricing__list .list-wrap li:not(:has(.icon))::before,
.fh-page--email .pricing__list .list-wrap li:not(:has(.icon))::before ,
.fh-page--hosting .pricing__list .list-wrap li:not(:has(.icon))::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--fh-grow);
  font-size: 14px;
}

.fh-page--wordpress .pricing__list .list-wrap li .content,
.fh-page--email .pricing__list .list-wrap li .content ,
.fh-page--hosting .pricing__list .list-wrap li .content {
  flex: 1;
  align-items: flex-start;
  gap: 0;
  color: var(--fh-text-muted);
}

.fh-page--wordpress .pricing__list .list-wrap li .content strong,
.fh-page--email .pricing__list .list-wrap li .content strong ,
.fh-page--hosting .pricing__list .list-wrap li .content strong {
  color: var(--fh-navy);
  font-weight: 600;
}

.fh-page--wordpress .pricing__select,
.fh-page--email .pricing__select ,
.fh-page--hosting .pricing__select {
  margin-top: auto;
  padding-top: 16px;
  background: transparent;
  color: var(--fh-sky);
  font-size: 14px;
  font-weight: 600;
  height: auto;
  text-align: center;
}

.fh-page--wordpress .pricing__select::after,
.fh-page--email .pricing__select::after ,
.fh-page--hosting .pricing__select::after {
  color: var(--fh-sky);
}

.fh-page--wordpress .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four,
.fh-page--wordpress .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box,
.fh-page--wordpress .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-seven,
.fh-page--email .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four,
.fh-page--hosting .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four,
.fh-page--email .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box,
.fh-page--hosting .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box,
.fh-page--email .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-seven ,
.fh-page--hosting .pricing__item-wrap-four .row > *:nth-child(3) .pricing__box-seven {
  border-color: rgba(55, 149, 252, 0.45);
  box-shadow: 0 16px 48px rgba(55, 149, 252, 0.15);
}

.fh-page--wordpress .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four::before,
.fh-page--wordpress .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box::before {
  content: "Mais popular";
  display: block;
  margin: 0 0 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 183, 0, 0.15);
  color: #b8860b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.fh-page--email .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four::before,
.fh-page--hosting .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box-four::before,
.fh-page--email .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box::before ,
.fh-page--hosting .pricing__item-wrap-two .row > *:nth-child(3) .pricing__box::before {
  content: "Recomendado";
  display: block;
  margin: 0 0 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 183, 0, 0.15);
  color: #b8860b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 991.98px) {
  .fh-wp-hero,
  .fh-email-hero,
  .fh-host-hero {
    padding: 36px 0 28px;
  }

  .fh-wp-hero__title,
  .fh-email-hero__title,
  .fh-host-hero__title {
    font-size: 28px;
  }

  .fh-wp-hero__subtitle,
  .fh-email-hero__subtitle,
  .fh-host-hero__subtitle {
    font-size: 15px;
  }

  .fh-email-benefits,
  .fh-wp-benefits,
  .fh-host-benefits {
    padding: 32px 0 36px;
  }

  .fh-host-hero__visual--mobile .fh-host-hero__mascot-wrap {
    max-width: 300px;
  }

  .fh-host-hero__visual--mobile .fh-host-hero__mascot {
    max-width: 280px;
  }

  .fh-wp-hero__visual--mobile .fh-wp-hero__mascot-wrap {
    max-width: 300px;
  }

  .fh-wp-hero__visual--mobile .fh-wp-hero__mascot {
    max-width: 280px;
  }

  .fh-email-hero__visual--mobile .fh-email-hero__mascot-wrap {
    max-width: 300px;
  }

  .fh-email-hero__visual--mobile .fh-email-hero__mascot {
    max-width: 280px;
  }

  section#main-body.fh-main-body--wordpress,
  section#main-body.fh-main-body--email,
  section#main-body.fh-main-body--hosting {
    padding: 28px 0 48px;
  }
}

@media (max-width: 575.98px) {
  .fh-wp-hero,
  .fh-email-hero,
  .fh-host-hero {
    padding: 28px 0 24px;
  }

  .fh-wp-hero .container,
  .fh-email-hero .container,
  .fh-host-hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fh-email-hero__visual--mobile,
  .fh-wp-hero__visual--mobile,
  .fh-host-hero__visual--mobile {
    margin: 8px 0 16px;
  }

  .fh-host-hero__compare {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-host-hero__compare-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .fh-host-hero__highlights {
    grid-template-columns: 1fr;
  }

  .fh-host-hero__actions {
    flex-direction: column;
  }

  .fh-host-hero__btn {
    width: 100%;
  }

  .fh-host-hero__visual--mobile .fh-host-hero__mascot-wrap {
    max-width: 260px;
  }

  .fh-host-hero__visual--mobile .fh-host-hero__mascot {
    max-width: 240px;
  }

  .fh-wp-hero__compare {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-wp-hero__compare-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .fh-wp-hero__highlights {
    grid-template-columns: 1fr;
  }

  .fh-wp-hero__actions {
    flex-direction: column;
  }

  .fh-wp-hero__btn {
    width: 100%;
  }

  .fh-wp-hero__visual--mobile .fh-wp-hero__mascot-wrap {
    max-width: 260px;
  }

  .fh-wp-hero__visual--mobile .fh-wp-hero__mascot {
    max-width: 240px;
  }

  .fh-email-hero__visual--mobile .fh-email-hero__mascot-wrap {
    max-width: 260px;
  }

  .fh-email-hero__visual--mobile .fh-email-hero__mascot {
    max-width: 240px;
  }

  .fh-email-hero__compare {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-email-hero__compare-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .fh-email-hero__highlights {
    grid-template-columns: 1fr;
  }

  .fh-email-hero__actions {
    flex-direction: column;
  }

  .fh-email-hero__btn {
    width: 100%;
  }

  .fh-email-benefits,
  .fh-wp-benefits,
  .fh-host-benefits {
    padding: 28px 0 32px;
  }

  .fh-email-benefits .container,
  .fh-wp-benefits .container,
  .fh-host-benefits .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fh-page--wordpress .pricing__price .price,
  .fh-page--email .pricing__price .price,
  .fh-page--hosting .pricing__price .price {
    font-size: 30px;
  }

  .fh-page--wordpress .pricing__box-top,
  .fh-page--email .pricing__box-top,
  .fh-page--hosting .pricing__box-top {
    padding: 22px 18px 18px;
  }
}

/* =============================================
   FortalHost – Área do Cliente / Dashboard (premium)
   Modernização 100% via CSS (sem alterar markup/Smarty)
   ============================================= */

:root {
  --fh-card-radius: 18px;
  --fh-card-border: #E6EBF2;
  --fh-shadow-sm: 0 1px 2px rgba(14, 42, 78, 0.04), 0 3px 10px rgba(14, 42, 78, 0.05);
  --fh-shadow-md: 0 10px 28px rgba(14, 42, 78, 0.10);
  --fh-shadow-lg: 0 20px 44px rgba(14, 42, 78, 0.14);
  --fh-danger: #E2574C;
}

/* Respiro geral da área de conteúdo */
.primary-content .client-home-cards {
  margin-top: 0.25rem;
}

/* ---------- Stat tiles ---------- */
.tiles {
  margin-bottom: 1.75rem !important;
}

.tiles .row.no-gutters {
  margin-left: -8px;
  margin-right: -8px;
}

.tiles .row.no-gutters > [class*="col-"] {
  padding: 8px;
}

.tiles .tile,
.tiles .row > div:last-child .tile {
  height: 100%;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-card-radius);
  box-shadow: var(--fh-shadow-sm);
  overflow: hidden;
}

.tiles .tile:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--fh-shadow-md);
  border-color: rgba(55, 149, 252, 0.35);
}

.tiles .tile .stat {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--fh-navy);
  letter-spacing: -0.02em;
}

.tiles .tile .title {
  margin-top: 4px;
  color: var(--fh-text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.tiles .tile .highlight {
  display: none;
}

.tiles .tile i {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 24px;
  border-radius: 14px;
  color: var(--fh-sky);
  background: rgba(55, 149, 252, 0.12);
  transition: all 0.25s ease;
}

.tiles .tile:hover i {
  font-size: 24px;
  color: #fff;
  background: var(--fh-sky);
  transform: scale(1.06);
}

/* Cor do ícone por tipo de tile (via classe de destaque) */
.tiles .tile:has(.bg-color-green) i {
  color: var(--fh-grow);
  background: rgba(23, 189, 84, 0.12);
}
.tiles .tile:has(.bg-color-green):hover i {
  color: #fff;
  background: var(--fh-grow);
}
.tiles .tile:has(.bg-color-red) i {
  color: var(--fh-danger);
  background: rgba(226, 87, 76, 0.12);
}
.tiles .tile:has(.bg-color-red):hover i {
  color: #fff;
  background: var(--fh-danger);
}
.tiles .tile:has(.bg-color-gold) i {
  color: var(--fh-pulse);
  background: rgba(243, 183, 0, 0.16);
}
.tiles .tile:has(.bg-color-gold):hover i {
  color: var(--fh-navy);
  background: var(--fh-pulse);
}

/* ---------- Cards / painéis ---------- */
.primary-content .client-home-cards .card,
.sidebar .card-sidebar {
  border: 1px solid var(--fh-card-border);
  border-radius: var(--fh-card-radius);
  box-shadow: var(--fh-shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.primary-content .client-home-cards .card:hover,
.sidebar .card-sidebar:hover {
  box-shadow: var(--fh-shadow-md);
}

.primary-content .client-home-cards .card > .card-header,
.sidebar .card-sidebar > .card-header {
  background: #fff;
  border-bottom: 1px solid var(--fh-card-border);
  padding: 16px 20px;
}

.primary-content .client-home-cards .card-title,
.sidebar .card-sidebar .card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fh-navy);
  letter-spacing: 0.01em;
}

.primary-content .client-home-cards .card-title > i,
.sidebar .card-sidebar .card-title > i:first-child {
  color: var(--fh-sky);
}

.primary-content .client-home-cards .card-body {
  padding: 20px;
}

/* Footer só ganha borda/respiro quando tem conteúdo real
   (o painel sempre renderiza .card-footer, às vezes só com espaços) */
.primary-content .client-home-cards .card-footer {
  background: #fff;
  padding: 0;
}

.primary-content .client-home-cards .card-footer:has(*) {
  border-top: 1px solid var(--fh-card-border);
  padding: 12px 20px;
}

/* Faixa de destaque do topo dos painéis (paleta da marca) */
.card-accent-blue {
  border-top: 3px solid var(--fh-sky);
}
.card-accent-green {
  border-top: 3px solid var(--fh-grow);
}
.card-accent-red {
  border-top: 3px solid var(--fh-danger);
}
.card-accent-gold {
  border-top: 3px solid var(--fh-pulse);
}

/* ---------- List group (painéis + sidebar) ---------- */
.primary-content .client-home-cards .list-group-item,
.sidebar .card-sidebar .list-group-item {
  border-color: var(--fh-card-border);
  padding: 13px 20px;
  color: var(--fh-text-dark);
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.primary-content .client-home-cards .list-group-item-action:hover,
.sidebar .card-sidebar .list-group-item-action:hover {
  background: rgba(55, 149, 252, 0.07);
  color: var(--fh-navy);
}

.primary-content .client-home-cards .list-group-item.active,
.sidebar .card-sidebar .list-group-item.active {
  background: var(--fh-navy);
  border-color: var(--fh-navy);
  color: #fff;
}

.sidebar .card-sidebar .list-group-item .sidebar-menu-item-icon {
  color: var(--fh-sky);
  transition: color 0.18s ease;
}
.sidebar .card-sidebar .list-group-item-action:hover .sidebar-menu-item-icon {
  color: var(--fh-navy);
}
.sidebar .card-sidebar .list-group-item.active .sidebar-menu-item-icon {
  color: #fff;
}

/* ---------- Itens de serviço (Produtos/Serviços) ---------- */
.div-service-item {
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.18s ease;
}

.div-service-item:hover {
  background: rgba(55, 149, 252, 0.06);
}

.div-service-name .font-weight-bold {
  color: var(--fh-navy);
}

.div-service-name .text-domain {
  color: var(--fh-text-muted);
  font-size: 13px;
}

/* ---------- Labels / status pills ---------- */
.div-service-status .label,
.primary-content .label {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.label-success {
  background-color: var(--fh-grow);
}
.label-info {
  background-color: var(--fh-sky);
}
.label-warning {
  background-color: var(--fh-pulse);
  color: var(--fh-navy);
}
.label-danger {
  background-color: var(--fh-danger);
}

/* ---------- Badges ---------- */
.primary-content .client-home-cards .badge,
.sidebar .card-sidebar .badge {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.35em 0.62em;
}

/* ---------- Botões pequenos no cabeçalho dos painéis ---------- */
.primary-content .client-home-cards .card-header .btn.bg-color-blue,
.primary-content .client-home-cards .card-header .btn.bg-color-green,
.primary-content .client-home-cards .card-header .btn.bg-color-red,
.primary-content .client-home-cards .card-header .btn.bg-color-gold {
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-weight: 600;
  box-shadow: none;
}
.primary-content .client-home-cards .card-header .btn.bg-color-blue {
  background: var(--fh-sky);
}
.primary-content .client-home-cards .card-header .btn.bg-color-green {
  background: var(--fh-grow);
}
.primary-content .client-home-cards .card-header .btn.bg-color-red {
  background: var(--fh-danger);
}
.primary-content .client-home-cards .card-header .btn.bg-color-gold {
  background: var(--fh-pulse);
  color: var(--fh-navy);
}
.primary-content .client-home-cards .card-header .btn[class*="bg-color-"]:hover {
  filter: brightness(0.95);
}

/* ---------- Alertas e form de domínio ---------- */
.primary-content .alert {
  border: 1px solid var(--fh-card-border);
  border-radius: 14px;
}

.primary-content .client-home-cards .input-group .form-control {
  border-radius: 10px 0 0 10px;
}

/* =============================================
   FortalHost – Home (landing) seções extras
   Estatísticas, diferenciais, passos, depoimentos, FAQ, CTA
   ============================================= */

/* Faixa de estatísticas / confiança */
.fh-home__stats {
  padding-top: 16px;
  padding-bottom: 16px;
}

.fh-home__stats-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--fh-navy) 0%, #14376a 100%);
  box-shadow: 0 18px 44px rgba(14, 42, 78, 0.18);
  overflow: hidden;
}

.fh-home__stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px circle at 0% 0%, rgba(55, 149, 252, 0.28), transparent 55%);
  pointer-events: none;
}

.fh-home__stat {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fh-home__stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.fh-home__stat-num span {
  color: var(--fh-sky);
}

.fh-home__stat-label {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Diferenciais / tecnologia */
.fh-home__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fh-home__feature-card {
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--fh-surface);
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fh-home__feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 149, 252, 0.35);
  box-shadow: 0 16px 40px rgba(14, 42, 78, 0.1);
}

.fh-home__feature-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 22px;
  background: rgba(55, 149, 252, 0.12);
  color: var(--fh-sky);
}

.fh-home__feature-ico--green {
  background: rgba(23, 189, 84, 0.12);
  color: var(--fh-grow);
}

.fh-home__feature-ico--navy {
  background: rgba(14, 42, 78, 0.1);
  color: var(--fh-navy);
}

.fh-home__feature-ico--pulse {
  background: rgba(243, 183, 0, 0.15);
  color: #c99700;
}

.fh-home__feature-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-home__feature-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fh-text-muted);
}

/* Passos */
.fh-home__steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fh-home__step {
  position: relative;
  padding: 30px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--fh-surface);
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.05);
  text-align: center;
}

.fh-home__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--fh-sky), var(--fh-navy));
  box-shadow: 0 8px 20px rgba(55, 149, 252, 0.3);
}

.fh-home__step h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-navy);
}

.fh-home__step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fh-text-muted);
}

/* Depoimentos */
.fh-home__review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fh-home__review {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--fh-surface);
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.05);
}

.fh-home__review-stars {
  color: var(--fh-pulse);
  font-size: 14px;
  letter-spacing: 3px;
}

.fh-home__review-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fh-text-dark);
}

.fh-home__review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fh-home__review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--fh-sky), var(--fh-navy));
}

.fh-home__review-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fh-navy);
}

.fh-home__review-role {
  display: block;
  font-size: 12.5px;
  color: var(--fh-text-muted);
}

/* FAQ (accordion nativo) */
.fh-home__faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fh-home__faq-item {
  border: 1px solid var(--fh-surface);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(14, 42, 78, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fh-home__faq-item[open] {
  border-color: rgba(55, 149, 252, 0.35);
  box-shadow: 0 10px 28px rgba(14, 42, 78, 0.08);
}

.fh-home__faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--fh-navy);
}

.fh-home__faq-item summary::-webkit-details-marker {
  display: none;
}

.fh-home__faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--fh-sky);
  transition: transform 0.2s ease;
}

.fh-home__faq-item[open] summary::after {
  content: "\2212";
}

.fh-home__faq-body {
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fh-text-muted);
}

/* Faixa de CTA */
.fh-home__cta {
  padding-top: 16px;
  padding-bottom: 56px;
}

.fh-home__cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 50px 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--fh-navy) 0%, #14376a 60%, #1f4f8f 100%);
  box-shadow: 0 22px 50px rgba(14, 42, 78, 0.2);
}

.fh-home__cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px circle at 100% 0%, rgba(55, 149, 252, 0.3), transparent 55%);
  pointer-events: none;
}

.fh-home__cta-band > * {
  position: relative;
  z-index: 1;
}

.fh-home__eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.fh-home__cta-band h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
}

.fh-home__cta-band p {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.fh-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.fh-home__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fh-home__cta-btn--primary {
  background: var(--fh-sky);
  color: #fff;
}

.fh-home__cta-btn--primary:hover {
  background: #fff;
  color: var(--fh-navy);
  text-decoration: none;
}

.fh-home__cta-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.fh-home__cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

/* Responsivo – seções extras da home */
@media (max-width: 991.98px) {
  .fh-home__stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .fh-home__feature-grid,
  .fh-home__steps-grid,
  .fh-home__review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .fh-home__stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 18px;
  }

  .fh-home__feature-grid,
  .fh-home__steps-grid,
  .fh-home__review-grid {
    grid-template-columns: 1fr;
  }

  .fh-home__cta-actions {
    flex-direction: column;
  }

  .fh-home__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

