.elementor-578 .elementor-element.elementor-element-10bfd02{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5d96071 */:root {
  --rm-bg-soft: #FDF7F2;
  --rm-bg-dark: #37332F;
  --rm-accent: #7D7C60;
  --rm-text-main: #37332F;
}

/* Base da página */
.rm-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rm-text-main);
  background: #ffffff;
}

/* Container */
.rm-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* NAV */
.rm-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rm-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.rm-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--rm-bg-dark);
  text-decoration: none;
  font-family: "Playfair Display", serif;
}
.rm-nav-links {
  display: flex;
  gap: 24px;
}
.rm-nav-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--rm-bg-dark);
}
.rm-nav-links a:hover {
  color: var(--rm-accent);
}

/* HERO */
.rm-hero {
  position: relative;
  background: var(--rm-bg-soft);
  padding: 96px 0;
  overflow: hidden;
}
.rm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/raquel-martins.jpeg");
  background-size: cover;
  background-position: top;
  opacity: 0.2;
  z-index: 0;
}
.rm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--rm-bg-soft);
  opacity: 0.8;
  z-index: 1;
}
.rm-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.rm-hero-text {
  max-width: 640px;
}
.rm-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--rm-accent);
  margin-bottom: 8px;
}
.rm-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.rm-hero-sub {
  font-size: 18px;
  margin-bottom: 16px;
}
.rm-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
}
.rm-hero-list li {
  margin-bottom: 6px;
}
.rm-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.rm-btn-primary {
  background: var(--rm-bg-dark);
  color: #ffffff;
}
.rm-btn-primary:hover {
  background: #2a251f;
}
.rm-btn-outline {
  border-color: var(--rm-bg-dark);
  color: var(--rm-bg-dark);
  background: transparent;
}
.rm-btn-outline:hover {
  background: var(--rm-bg-dark);
  color: #ffffff;
}
.rm-hero-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto;
}

/* SEÇÕES */
.rm-section {
  padding: 80px 0;
}
.rm-section-soft {
  background: var(--rm-bg-soft);
}
.rm-section-white {
  background: #ffffff;
}
.rm-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.rm-section-header-left {
  text-align: left;
}
.rm-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--rm-bg-dark);
}
.rm-section-header p {
  font-size: 16px;
  color: var(--rm-accent);
  max-width: 640px;
  margin: 0 auto;
}

/* GRID 3 */
.rm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* BENEFÍCIOS */
.rm-card-soft {
  text-align: center;
  padding: 32px 24px;
  background: var(--rm-bg-soft);
  border-radius: 12px;
}
.rm-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--rm-accent);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rm-icon-circle i {
  color: #ffffff;
  font-size: 24px;
}
.rm-card-soft h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.rm-card-soft p {
  font-size: 14px;
}

/* CARDS FOTO */
.rm-card-photo {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.rm-card-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.rm-card-photo-body {
  padding: 16px 20px 20px;
}
.rm-card-photo-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.rm-card-photo-body p {
  font-size: 14px;
}

/* SOBRE */
.rm-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}
.rm-about-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto;
}
.rm-about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
}
.rm-about-text p {
  font-size: 16px;
  margin-bottom: 12px;
}
.rm-about-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.rm-stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--rm-accent);
}
.rm-stat-label {
  font-size: 12px;
}

/* PORTFÓLIO */
.rm-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 224px;
}
.rm-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DEPOIMENTOS */
.rm-testimonial {
  background: var(--rm-bg-soft);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.rm-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.rm-testimonial-header img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}
.rm-testimonial-header h4 {
  margin: 0 0 4px;
}
.rm-testimonial-header p {
  margin: 0;
  font-size: 12px;
  color: var(--rm-accent);
}
.rm-testimonial-text {
  font-size: 14px;
  font-style: italic;
}

/* COMO FUNCIONA */
.rm-step {
  text-align: center;
}
.rm-step-number {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--rm-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.rm-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.rm-step p {
  font-size: 14px;
}

/* FAQ */
.rm-section-faq {
  border-top: 1px solid #F0E8DD;
}
.rm-faq-container {
  max-width: 760px;
}
.rm-faq-list {
  margin-top: 16px;
}
.rm-faq-item {
  border: 1px solid rgba(125,124,96,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: #ffffff;
}
.rm-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--rm-bg-dark);
}
.rm-faq-item summary::-webkit-details-marker {
  display: none;
}
.rm-faq-item p {
  margin-top: 8px;
  font-size: 14px;
}

/* CONTATO */
.rm-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}
.rm-form {
  display: grid;
  gap: 16px;
}
.rm-form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.rm-form-group input,
.rm-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(125,124,96,0.5);
  font-size: 14px;
  resize: vertical;
}
.rm-btn-full {
  width: 100%;
}
.rm-contact-side h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.rm-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rm-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--rm-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.rm-contact-item a {
  color: var(--rm-bg-dark);
  text-decoration: none;
}
.rm-contact-item a:hover {
  color: var(--rm-accent);
}
.rm-contact-hours {
  margin-top: 16px;
  font-size: 14px;
}
.rm-contact-hours h4 {
  margin-bottom: 8px;
}

/* FOOTER */
.rm-footer {
  background: var(--rm-bg-dark);
  color: #ffffff;
  padding: 40px 0 24px;
  font-size: 14px;
}
.rm-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}
.rm-footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.rm-footer h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.rm-footer p {
  color: #d1d5db;
}
.rm-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rm-footer li {
  margin-bottom: 6px;
}
.rm-footer a {
  color: #d1d5db;
  text-decoration: none;
}
.rm-footer a:hover {
  color: #ffffff;
}
.rm-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rm-social i {
  margin-right: 6px;
}
.rm-footer-bottom {
  border-top: 1px solid rgba(156,163,175,0.4);
  padding-top: 12px;
  text-align: center;
  color: #d1d5db;
}

/* WHATSAPP FLUTUANTE */
.rm-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--rm-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 50;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .rm-nav-links {
    display: none;
  }
  .rm-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  .rm-hero {
    padding: 72px 0;
  }
  .rm-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .rm-about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .rm-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .rm-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}/* End custom CSS */