
:root{
  --rm-primary:#f28c18;
  --rm-primary-soft:#fff4e6;
  --rm-dark:#111827;
  --rm-dark-2:#0b1220;
  --rm-text:#252525;
  --rm-surface:#fff;
  --rm-border:#e5e7eb;
  --rm-whatsapp:#25d366;
  --rm-radius:20px;
  --rm-radius-card:16px;
  --rm-shadow:0 18px 50px rgba(17,24,39,.18);
  --rm-shadow-card:0 8px 26px rgba(17,24,39,.08);
}

/* HERO */
.rmx-hero,.rmx-hero *{box-sizing:border-box}
.rmx-hero{
  all:initial;
  position:relative;
  display:block;
  width:min(1180px,calc(100% - 32px));
  min-height:400px;
  margin:24px auto 30px;
  overflow:hidden;
  border-radius:var(--rm-radius);
  background-color:var(--rm-dark);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  box-shadow:var(--rm-shadow);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#fff;
}
.rmx-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(11,18,32,.88) 0%,rgba(11,18,32,.64) 42%,rgba(11,18,32,.18) 76%),
    linear-gradient(180deg,rgba(11,18,32,.02) 22%,rgba(11,18,32,.82) 100%);
}
.rmx-hero__inner{
  all:initial;
  position:relative;
  z-index:2;
  min-height:400px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  padding:34px;
  font-family:inherit;
  color:#fff;
}
.rmx-hero__content{all:initial;display:block;max-width:720px;min-width:0;font-family:inherit;color:#fff}
.rmx-hero__status{
  all:initial;
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin:0 0 14px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(11,18,32,.5);
  font-family:inherit;
  font-size:13px;
  line-height:1;
  font-weight:700;
  color:#fff;
}
.rmx-hero__status-dot{all:initial;display:block;width:9px;height:9px;border-radius:50%;background:var(--rm-whatsapp);box-shadow:0 0 0 4px rgba(37,211,102,.18)}
.rmx-hero__title{
  all:initial;
  display:block;
  margin:0 0 12px;
  font-family:inherit;
  font-size:clamp(30px,3.6vw,46px);
  line-height:1.06;
  font-weight:800;
  letter-spacing:-.02em;
  color:#fff;
  text-shadow:0 3px 22px rgba(0,0,0,.35);
}
.rmx-hero__meta{all:initial;display:flex;flex-wrap:wrap;gap:10px;font-family:inherit;color:rgba(255,255,255,.92)}
.rmx-hero__meta-item{all:initial;display:inline-flex;align-items:center;gap:7px;font-family:inherit;font-size:15px;line-height:1.45;color:rgba(255,255,255,.92)}
.rmx-hero__cta-wrap{all:initial;display:flex;flex:0 0 auto;align-items:flex-end;font-family:inherit}
.rmx-hero__cta{
  all:unset!important;
  box-sizing:border-box!important;
  min-width:230px!important;
  min-height:54px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:11px!important;
  padding:13px 20px!important;
  border-radius:13px!important;
  background:var(--rm-whatsapp)!important;
  color:#fff!important;
  font-family:inherit!important;
  cursor:pointer!important;
  box-shadow:0 12px 30px rgba(37,211,102,.30)!important;
}
.rmx-hero__cta-text,.rmx-hero__cta-text strong,.rmx-hero__cta-text small,.rmx-hero__cta-icon{all:initial;display:block;font-family:inherit;color:#fff}
.rmx-hero__cta-text strong{font-size:16px;line-height:1.15;font-weight:800}
.rmx-hero__cta-text small{margin-top:4px;font-size:11px;line-height:1.2;font-weight:600;color:rgba(255,255,255,.88)}
.rmx-hero__cta-icon{font-size:22px;line-height:1}
.rm-core-original-slider-hidden{display:none!important}
.rm-core-original-title-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* CARDS */
.rmx-card-grid{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.rmx-card{
  position:relative;
  min-width:0;
  overflow:hidden;
  border:1px solid var(--rm-border)!important;
  border-radius:var(--rm-radius-card)!important;
  background:var(--rm-surface)!important;
  box-shadow:var(--rm-shadow-card)!important;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.rmx-card:hover{
  transform:translateY(-2px);
  border-color:rgba(242,140,24,.38)!important;
  box-shadow:0 13px 34px rgba(17,24,39,.12)!important;
}
.rmx-card__head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:20px 22px 14px;
}
.rmx-card__emoji{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--rm-primary-soft);
  font-size:24px;
  line-height:1;
}
.rmx-card__title{
  margin:0!important;
  color:var(--rm-dark)!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:800!important;
}
.rmx-card__body{
  padding:0 22px 22px;
  color:var(--rm-text);
}
.rmx-card__body>:first-child{margin-top:0!important}
.rmx-card__body>:last-child{margin-bottom:0!important}

@media(max-width:768px){
  .rmx-hero{width:min(100% - 20px,1180px);min-height:470px;margin:12px auto 22px;border-radius:16px}
  .rmx-hero__inner{min-height:470px;flex-direction:column;align-items:stretch;justify-content:flex-end;gap:20px;padding:24px}
  .rmx-hero__cta-wrap,.rmx-hero__cta{width:100%!important}
  .rmx-hero__cta{min-width:0!important}
  .rmx-card-grid{width:min(100% - 20px,1180px);grid-template-columns:1fr;gap:16px}
}


.rmx-regions-card{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 22px;
  border:1px solid var(--rm-border);
  border-radius:var(--rm-radius-card);
  background:var(--rm-surface);
  box-shadow:var(--rm-shadow-card);
  overflow:hidden;
}
.rmx-regions-card__head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:20px 22px 14px;
}
.rmx-regions-card__emoji{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--rm-primary-soft);
  font-size:24px;
}
.rmx-regions-card__title{
  margin:0!important;
  color:var(--rm-dark)!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:800!important;
}
.rmx-regions-card__body{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 22px 22px;
}
.rmx-chip{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border:1px solid #f1dfc8;
  border-radius:999px;
  background:#fffaf4;
  color:var(--rm-text);
  font-size:14px;
  line-height:1;
  font-weight:600;
}
.rmx-original-regions-hidden{display:none!important}
@media(max-width:768px){
  .rmx-regions-card{width:min(100% - 20px,1180px)}
}


/* RM RENDERER — SERVIÇOS INDEPENDENTE */
.rmx-services-card{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 22px;
  border:1px solid var(--rm-border);
  border-radius:var(--rm-radius-card);
  background:var(--rm-surface);
  box-shadow:var(--rm-shadow-card);
  overflow:hidden;
}
.rmx-services-card__head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:20px 22px 14px;
}
.rmx-services-card__emoji{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--rm-primary-soft);
  font-size:24px;
}
.rmx-services-card__title{
  margin:0!important;
  color:var(--rm-dark)!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:800!important;
}
.rmx-services-card__body{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 22px 22px;
}
.rmx-service-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border:1px solid #f1dfc8;
  border-radius:999px;
  background:#fffaf4;
  color:var(--rm-text);
  font-size:14px;
  line-height:1;
  font-weight:600;
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}
.rmx-service-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(242,140,24,.55);
  background:#fff4e6;
}
.rmx-original-services-hidden{display:none!important}

@media(max-width:768px){
  .rmx-services-card{width:min(100% - 20px,1180px)}
}


/* RM RENDERER — EQUIPAMENTOS E CAPACIDADE */
.rmx-equipment-card{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 22px;
  border:1px solid var(--rm-border);
  border-radius:var(--rm-radius-card);
  background:var(--rm-surface);
  box-shadow:var(--rm-shadow-card);
  overflow:hidden;
}
.rmx-equipment-card__head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:20px 22px 14px;
}
.rmx-equipment-card__emoji{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--rm-primary-soft);
  font-size:24px;
}
.rmx-equipment-card__title{
  margin:0!important;
  color:var(--rm-dark)!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:800!important;
}
.rmx-equipment-card__body{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 22px 22px;
}
.rmx-equipment-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border:1px solid #f1dfc8;
  border-radius:999px;
  background:#fffaf4;
  color:var(--rm-text);
  font-size:14px;
  line-height:1;
  font-weight:600;
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}
.rmx-equipment-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(242,140,24,.55);
  background:#fff4e6;
}
.rmx-original-equipment-hidden{display:none!important}

@media(max-width:768px){
  .rmx-equipment-card{width:min(100% - 20px,1180px)}
}


/* RM PROFILE COMPLETION — 0.6.0 */
.rmx-profile-section{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 22px;
  border:1px solid var(--rm-border);
  border-radius:var(--rm-radius-card);
  background:var(--rm-surface);
  box-shadow:var(--rm-shadow-card);
  overflow:hidden;
}
.rmx-profile-section__head{
  display:flex;
  align-items:center;
  gap:13px;
  padding:20px 22px 14px;
}
.rmx-profile-section__emoji{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--rm-primary-soft);
  font-size:24px;
}
.rmx-profile-section__title{
  margin:0!important;
  color:var(--rm-dark)!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:800!important;
}
.rmx-profile-section__body{
  padding:0 22px 22px;
  color:var(--rm-text);
}
.rmx-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.rmx-data-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border:1px solid #f1dfc8;
  border-radius:999px;
  background:#fffaf4;
  color:var(--rm-text);
  font-size:14px;
  line-height:1;
  font-weight:600;
}
.rmx-availability-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.rmx-info-box{
  padding:16px;
  border:1px solid var(--rm-border);
  border-radius:14px;
  background:#fafafa;
}
.rmx-info-box strong{
  display:block;
  margin-bottom:6px;
  color:var(--rm-dark);
  font-size:14px;
}
.rmx-info-box span{
  color:var(--rm-text);
  font-size:15px;
}
.rmx-note{
  margin-top:14px;
  padding:14px 16px;
  border-left:4px solid var(--rm-primary);
  border-radius:10px;
  background:var(--rm-primary-soft);
  color:var(--rm-text);
}
.rmx-contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.rmx-contact-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:9px!important;
  min-height:48px!important;
  padding:12px 18px!important;
  border-radius:12px!important;
  text-decoration:none!important;
  font-weight:800!important;
  transition:transform .16s ease,box-shadow .16s ease!important;
}
.rmx-contact-button:hover{
  transform:translateY(-1px)!important;
}
.rmx-contact-button--whatsapp{
  background:var(--rm-whatsapp)!important;
  color:#fff!important;
  box-shadow:0 8px 20px rgba(37,211,102,.24)!important;
}
.rmx-contact-button--instagram{
  background:#111827!important;
  color:#fff!important;
}
.rmx-about-text{
  position:relative;
  max-height:150px;
  overflow:hidden;
  line-height:1.75;
  transition:max-height .25s ease;
}
.rmx-about-text.is-expanded{
  max-height:1200px;
}
.rmx-about-text:not(.is-expanded)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:54px;
  background:linear-gradient(transparent,#fff);
}
.rmx-about-toggle{
  margin-top:12px;
  border:0;
  background:transparent;
  color:var(--rm-primary-dark);
  font-weight:800;
  cursor:pointer;
  padding:4px 0;
}
.rmx-gallery-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}
.rmx-gallery-item{
  position:relative;
  min-height:180px;
  overflow:hidden;
  border:0;
  border-radius:14px;
  background:#f3f4f6;
  cursor:pointer;
  padding:0;
}
.rmx-gallery-item:first-child{
  grid-row:span 2;
  min-height:370px;
}
.rmx-gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .22s ease;
}
.rmx-gallery-item:hover img{
  transform:scale(1.035);
}
.rmx-lightbox{
  position:fixed;
  inset:0;
  z-index:1000000;
  display:grid;
  place-items:center;
  padding:24px;
  background:rgba(0,0,0,.88);
}
.rmx-lightbox[hidden]{display:none!important}
.rmx-lightbox img{
  max-width:min(1100px,94vw);
  max-height:88vh;
  object-fit:contain;
  border-radius:12px;
}
.rmx-lightbox__close{
  position:fixed;
  top:18px;
  right:22px;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111827;
  font-size:25px;
  cursor:pointer;
}
.rmx-original-availability-hidden,
.rmx-original-contact-hidden,
.rmx-original-about-hidden{
  display:none!important;
}
@media(max-width:768px){
  .rmx-profile-section{width:min(100% - 20px,1180px)}
  .rmx-availability-summary{grid-template-columns:1fr}
  .rmx-gallery-grid{grid-template-columns:1fr 1fr}
  .rmx-gallery-item:first-child{grid-column:span 2;grid-row:auto;min-height:250px}
  .rmx-gallery-item{min-height:150px}
}


.rm-search-box{max-width:640px;margin:20px auto;display:flex;gap:12px;flex-wrap:wrap}
.rm-search-box input{flex:1;padding:16px;border:1px solid #ddd;border-radius:12px;font-size:16px}
.rm-search-box button{padding:16px 24px;border:none;border-radius:12px;background:#f28c18;color:#fff;font-weight:700;cursor:pointer}


/* RM CITY PAGE */
.rm-city-page{background:#f7f8fa;color:#111827;min-height:70vh}
.rm-city-container{width:min(1180px,calc(100% - 32px));margin:0 auto}
.rm-city-hero{padding:64px 0;background:linear-gradient(135deg,#111827,#1f2937);color:#fff}
.rm-city-eyebrow{display:inline-block;margin-bottom:14px;color:#ffad4d;font-weight:800}
.rm-city-hero h1{margin:0 0 14px;color:#fff;font-size:clamp(34px,5vw,58px);line-height:1.05}
.rm-city-hero p{max-width:720px;margin:0 0 24px;color:#e5e7eb;font-size:18px;line-height:1.6}
.rm-city-hero .rm-search-box{margin:0;max-width:760px}
.rm-city-results{padding:50px 0}
.rm-city-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:24px}
.rm-city-heading span{color:#f28c18;font-weight:800}
.rm-city-heading h2{margin:5px 0 0;font-size:30px;color:#111827}
.rm-city-heading>strong{padding:9px 13px;border-radius:999px;background:#fff1df;color:#b45309}
.rm-city-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.rm-city-profile-card{overflow:hidden;border:1px solid #e5e7eb;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(17,24,39,.07);transition:transform .18s ease,box-shadow .18s ease}
.rm-city-profile-card:hover{transform:translateY(-3px);box-shadow:0 16px 38px rgba(17,24,39,.12)}
.rm-city-profile-card__image{display:block;height:210px;background:#e5e7eb;text-decoration:none}
.rm-city-profile-card__image img{width:100%;height:100%;object-fit:cover;display:block}
.rm-city-profile-card__image span{height:100%;display:grid;place-items:center;font-size:58px}
.rm-city-profile-card__body{padding:20px}
.rm-city-profile-card__location{font-size:13px;color:#667085;font-weight:700}
.rm-city-profile-card h3{margin:8px 0 14px;font-size:22px;line-height:1.2}
.rm-city-profile-card h3 a{color:#111827;text-decoration:none}
.rm-city-profile-card__chips{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:18px}
.rm-city-profile-card__chips span{padding:7px 9px;border-radius:999px;background:#fff4e6;color:#8a4b08;font-size:12px;font-weight:700}
.rm-city-profile-card__actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.rm-city-profile-card__actions a{display:flex;align-items:center;justify-content:center;min-height:44px;border-radius:11px;text-decoration:none;font-weight:800}
.rm-city-profile-card__view{border:1px solid #e5e7eb;color:#111827}
.rm-city-profile-card__whatsapp{background:#25d366;color:#fff}
.rm-city-empty{padding:50px 24px;text-align:center;border:1px dashed #d1d5db;border-radius:18px;background:#fff}
.rm-city-empty>span{font-size:52px}.rm-city-empty h2{margin:12px 0 8px}.rm-city-empty p{color:#667085}
.rm-city-empty a{display:inline-flex;margin-top:12px;padding:13px 18px;border-radius:12px;background:#f28c18;color:#fff;text-decoration:none;font-weight:800}
.rm-city-seo{padding:0 0 60px}.rm-city-seo .rm-city-container{padding:28px;border:1px solid #e5e7eb;border-radius:18px;background:#fff}
.rm-city-seo h2{margin-top:0;color:#111827}.rm-city-seo p{margin-bottom:0;color:#475467;line-height:1.75}
@media(max-width:900px){.rm-city-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.rm-city-container{width:min(100% - 20px,1180px)}.rm-city-hero{padding:42px 0}.rm-city-grid{grid-template-columns:1fr}.rm-city-heading{align-items:flex-start;flex-direction:column}.rm-city-profile-card__image{height:190px}.rm-city-profile-card__actions{grid-template-columns:1fr}}


/* RM LAYOUT 0.8.1 — LOGO E CABEÇALHO */
.site-title,
.site-description,
.wp-block-site-title,
.wp-block-site-tagline,
.ast-site-title-wrap,
.site-branding .site-title,
.site-branding .site-description,
.custom-logo-link + .site-title,
.custom-logo-link + .site-branding-text {
  display:none!important;
}

.custom-logo-link img,
.site-logo img,
.site-branding img.custom-logo {
  width:auto!important;
  max-height:54px!important;
  object-fit:contain!important;
}

.rm-layout-page {
  margin:0;
  background:#f7f8fa;
  color:#111827;
}

.rm-site-header {
  position:relative;
  z-index:50;
  background:#f4f8fc;
  border-bottom:1px solid #e5e7eb;
}

.rm-site-header__inner {
  width:min(1180px,calc(100% - 32px));
  min-height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.rm-site-logo {
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.rm-site-logo img {
  display:block;
  width:auto;
  height:52px;
  max-width:260px;
  object-fit:contain;
}

.rm-site-nav {
  display:flex;
  align-items:center;
  gap:28px;
}

.rm-site-nav a {
  color:#111827;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
}

.rm-site-nav a:hover {
  color:#f28c18;
}

.rm-city-brand {
  display:block;
  width:auto;
  height:42px;
  max-width:250px;
  margin:0 0 18px;
  object-fit:contain;
}

.rm-site-footer {
  background:#10283c;
  color:#fff;
  padding:30px 0;
}

.rm-site-footer__inner {
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.rm-site-footer img {
  width:auto;
  height:42px;
  max-width:240px;
  object-fit:contain;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.18));
}

.rm-site-footer p {
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.78);
}

@media(max-width:768px) {
  .rm-site-header__inner {
    min-height:68px;
    width:min(100% - 24px,1180px);
  }

  .rm-site-logo img {
    height:42px;
    max-width:210px;
  }

  .rm-site-nav {
    display:none;
  }

  .rm-city-brand {
    height:34px;
    max-width:210px;
  }

  .rm-site-footer__inner {
    flex-direction:column;
    text-align:center;
  }
}
