/* ==========================================================================
   Rossana Marques - Main Stylesheet
   WordPress Theme CSS - Faithful to Webflow Design System
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (from Webflow :root)
   ========================================================================== */

:root {
  /* ── Brand Colors (Webflow tokens) ── */
  --base-color-brand--brand01: #4d4e50;
  --base-color-brand--brand02: #8f6eaa;
  --base-color-brand--brand03: #565759;
  --base-color-brand--brand04: #c09fdb;
  --base-color-brand--black: #3d3f43;
  --base-color-brand--white: #ffffff;
  --base-color-brand--bg002: #f2f2f2;
  --base-color-brand--bg003: #ebebe9;

  /* ── Neutral Colors ── */
  --base-color-neutral--white: #ffffff;
  --base-color-neutral--black: #000000;
  --base-color-neutral--neutral-lightest: #eeeeee;
  --base-color-neutral--neutral-lighter: #cccccc;
  --base-color-neutral--neutral-light: #aaaaaa;
  --base-color-neutral--neutral: #666666;
  --base-color-neutral--neutral-dark: #444444;
  --base-color-neutral--neutral-darker: #222222;
  --base-color-neutral--neutral-darkest: #111111;

  /* ── Semantic Tokens ── */
  --background-color--background-primary: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--bg002);
  --background-color--background-tertiary: var(--base-color-brand--bg003);
  --background-color--background-alternate: var(--base-color-brand--brand01);
  --text-color--text-primary: var(--base-color-brand--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-secondary: var(--base-color-neutral--neutral);
  --link-color--link-primary: var(--base-color-brand--brand02);
  --link-color--link-secondary: var(--base-color-brand--brand04);
  --border-color--border-primary: var(--base-color-brand--brand01);
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);

  /* ── System Colors ── */
  --base-color-system--success-green: #2e9792;
  --base-color-system--error-red: #f07f66;

  /* ── Typography ── */
  --font-primary: "Product Sans", "Google Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

  /* ── Borders & Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-dropdown: 0 2px 20px rgba(0, 0, 0, 0.2);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* ── Z-Index Scale ── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-modal-backdrop: 1100;
  --z-modal: 1200;
  --z-whatsapp: 1300;
  --z-toast: 1400;
}


/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page-wrapper {
  overflow: clip;
}

.page-wrapper.is-relative {
  position: relative;
}

img,
picture,
video,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--link-color--link-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--link-color--link-secondary);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background-color: var(--base-color-brand--brand04);
  color: var(--base-color-brand--white);
}


/* ==========================================================================
   3. TYPOGRAPHY (from Webflow)
   ========================================================================== */

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-weight: 300;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

strong, b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

/* ── Webflow Typography Utility Classes ── */

.heading-style-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.text-color-white {
  font-size: 4rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h5.text-color-white {
  font-weight: 400;
}

.display {
  color: #fff;
  letter-spacing: -.1rem;
  font-size: 5.3rem;
  font-weight: 400;
  line-height: 1;
}

.text-style-tagline {
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
}

.text-style-tagline.is-large {
  font-size: 2rem;
}

.text-style-tagline.text-color-brand02 {
  color: var(--base-color-brand--brand04);
  font-size: 1.2rem;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-regular {
  font-size: 1rem;
}

.text-size-medium {
  font-size: 1.125rem;
  font-weight: 400;
}

.text-size-medium.text-color-white {
  font-weight: 300;
}

.text-size-large {
  font-size: 1.25rem;
}

.text-weight-light {
  font-weight: 300;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-semibold {
  text-transform: uppercase;
  font-weight: 600;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-color-white {
  color: var(--base-color-neutral--white);
  font-weight: 300;
}

.text-color-primary {
  color: var(--text-color--text-primary);
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

.text-align-center {
  text-align: center;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text h2,
.text-rich-text h3,
.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5,
.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.overflow-hidden {
  overflow: hidden;
}

.container-large {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-large {
  text-wrap: balance;
  width: 100%;
  max-width: 70rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

/* ── Webflow Padding Utilities ── */

.padding-global {
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-section-large {
  flex: 1;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ── Margin Utilities ── */

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  margin-bottom: 2rem;
}

.margin-bottom.margin-small {
  margin-bottom: 1.5rem;
}

.margin-bottom.margin-large {
  margin-bottom: 3rem;
}

.margin-top.margin-medium {
  margin-top: 2rem;
}

.margin-top.margin-xsmall {
  margin-top: 1rem;
}

/* ── Line Divider ── */

.line-divider {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-neutral--black);
  opacity: .19;
  width: 100%;
  height: 1px;
}


/* ==========================================================================
   5. NAVBAR (.navbar11_*)
   ========================================================================== */

.navbar11_component {
  opacity: 1;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #4d4e50;
  border: 1px #000;
  border-bottom: 1px solid rgba(153, 153, 153, 0.39);
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  transition: background-color var(--transition-base),
              box-shadow var(--transition-base);
}

.navbar11_component.is-scrolled {
  background-color: rgba(61, 63, 67, 0.97);
  box-shadow: var(--shadow-lg);
}

.navbar11_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar11_logo-link {
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar11_logo {
  background-image: none;
  width: auto;
  height: 3rem;
}

.navbar11_logo-text {
  color: var(--base-color-brand--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar11_menu {
  align-items: center;
  display: flex;
  position: static;
  gap: 0.25rem;
}

.navbar11_link {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 400;
  color: var(--base-color-brand--white);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.navbar11_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--base-color-brand--brand04);
}

.navbar11_link.w--current {
  color: var(--base-color-brand--white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ── Navbar CTA Button ── */

.navbar11_cta {
  margin-left: 1rem;
  color: #fff;
  background-color: #000;
  border-radius: 20rem;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color var(--transition-fast);
}

.navbar11_cta:hover {
  background-color: var(--base-color-brand--brand02);
  color: #fff;
}

/* ── Menu Structure Wrappers (Webflow) ── */

.navbar11_menu-links {
  color: var(--base-color-brand--white);
  font-size: .9rem;
  display: contents;
}

.navbar11_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

/* ── Dropdown ── */

.navbar11_menu-dropdown {
  position: relative;
}

.navbar11_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
  color: var(--base-color-brand--white);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.navbar11_dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar11_dropdown-toggle.w--current {
  color: var(--base-color-brand--white);
}

.text-block {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  transition: transform var(--transition-fast);
}

.navbar11_dropdown-list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 22rem;
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  width: 22rem;
  padding: 1.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast),
              visibility var(--transition-fast),
              transform var(--transition-fast);
  z-index: var(--z-dropdown);
}

.navbar11_menu-dropdown:hover .navbar11_dropdown-list,
.navbar11_menu-dropdown.is-open .navbar11_dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar11_menu-dropdown:hover .dropdown-chevron,
.navbar11_menu-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.navbar11_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  color: var(--base-color-brand--brand01);
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar11_dropdown-link {
  grid-column-gap: .75rem;
  grid-row-gap: 0px;
  color: var(--base-color-brand--black);
  border-bottom: 1px solid #d6d6d6;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  justify-content: flex-start;
  place-items: center stretch;
  padding-top: .25rem;
  padding-bottom: 1rem;
  text-decoration: none;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  transition: color var(--transition-fast);
}

.navbar11_dropdown-link:hover {
  color: var(--base-color-brand--brand02);
}

.navbar11_dropdown-link.hide-line {
  border: 1px solid transparent;
  border-bottom: none;
}

.navbar11_text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

/* ── Category Icons in Dropdown ── */

.icon-categoria {
  opacity: .5;
  background-image: none;
  width: auto;
  height: 3rem;
}

/* ── WhatsApp Icon in Navbar ── */

.icon-wp {
  opacity: .8;
  filter: invert();
  object-fit: cover;
  background-image: none;
  border-radius: 0%;
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
}

/* ── Hide utility ── */

.hide-mobile-landscape {
  /* visible by default, hidden in responsive */
}

/* ── Hamburger (Mobile) ── */

.navbar11_menu-button {
  display: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-icon1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.menu-icon1_line-top,
.menu-icon1_line-middle,
.menu-icon1_line-bottom {
  background-color: var(--base-color-brand--white);
  width: 24px;
  height: 2px;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
}

.menu-icon1_line-middle {
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.menu-icon1_line-middle-inner {
  width: 4px;
  height: 0;
}

/* Hamburger open state */
.navbar11_menu-button.is-open .menu-icon1_line-top {
  transform: translateY(10px) rotate(45deg);
}

.navbar11_menu-button.is-open .menu-icon1_line-middle {
  opacity: 0;
}

.navbar11_menu-button.is-open .menu-icon1_line-bottom {
  transform: translateY(-10px) rotate(-45deg);
}

/* ── Admin Bar Offset ── */

body.admin-bar .navbar11_component {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .navbar11_component {
    top: 46px;
  }
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

/* ── Primary Button (.button) ── */

.button {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.button:hover {
  background-color: var(--base-color-brand--brand03);
  border-color: var(--base-color-brand--brand03);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--base-color-neutral--white);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button.is-link {
  color: var(--base-color-neutral--black);
  background-color: transparent;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--base-color-neutral--white);
  background-color: transparent;
}

.button.is-alternate {
  border-color: var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  background-color: transparent;
  color: var(--base-color-brand--brand01);
  border-color: var(--base-color-brand--brand01);
}

.button.is-secondary:hover {
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-neutral--white);
}

.button.is-white {
  background-color: var(--base-color-brand--white);
  border-color: var(--base-color-brand--white);
  color: var(--base-color-brand--brand01);
}

.button.is-white:hover {
  background-color: var(--base-color-brand--bg002);
  border-color: var(--base-color-brand--bg002);
}

.button.is-purple {
  background-color: var(--base-color-brand--brand02);
  border-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--white);
}

.button.is-purple:hover {
  background-color: var(--base-color-brand--brand04);
  border-color: var(--base-color-brand--brand04);
  color: var(--base-color-brand--brand01);
}

/* ── Button1 (.button1) ── */

.button1 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 20rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
}

.button1.is-text-link {
  z-index: 1;
  border: 1px solid var(--base-color-neutral--white);
  background-color: var(--base-color-brand--white);
  color: var(--base-color-neutral--black);
  border-radius: 12px;
  padding: .5rem 1rem .5rem .6rem;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.button1.is-text-link:hover {
  border-color: var(--base-color-brand--brand02);
  background-color: var(--base-color-neutral--neutral-darker);
  color: var(--base-color-brand--white);
}

.button1.is-text-link.background-color-primary {
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-brand--bg002);
}

.button1.is-text-link.background-color-primary:hover {
  border-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--brand04);
}

/* ── Button Arrow Wrapper ── */

.button-arrow-wrapper {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.button1.is-text-link:hover .button-arrow-wrapper {
  transform: translateX(4px);
}

/* ── WordPress Block Button ── */

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 12px;
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-neutral--white);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              transform var(--transition-fast);
}

.wp-block-button__link:hover {
  background-color: var(--base-color-brand--brand03);
  transform: translateY(-1px);
}


/* ==========================================================================
   7. HERO SECTION (Homepage Tabs - rm-hero)
   ========================================================================== */

.rm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
}

/* All tab panes stacked absolutely - crossfade via opacity (Webflow pattern) */
.rm-hero-tab-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: opacity 0.6s ease-out;
  transition-delay: 0.3s;
}

/* Non-active content slides down and fades */
.rm-hero-tab-panel:not(.is-active) .rm-hero__content {
  transform: translate(0px, 20%);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transition-delay: 0s;
}

/* Active tab pane */
.rm-hero-tab-panel.is-active {
  opacity: 1;
  z-index: 1;
  transition-delay: 0s;
}

/* Active content slides up into place */
.rm-hero-tab-panel.is-active .rm-hero__content {
  transform: none;
  opacity: 1;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transition-delay: 0.4s;
}

/* Parent .rm-hero has min-height:100vh + position:relative which
   establishes the containing block for all absolute tab panes */

.rm-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.rm-hero__content {
  position: relative;
  z-index: 3;
  text-align: left;
  text-wrap: balance;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 50vw;
  display: flex;
  padding: 8rem 5% 10rem;
  padding-left: 5%;
  gap: 1.5rem;
}

.rm-hero__subtitle {
  color: var(--link-color--link-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
  display: inline-block;
}

.rm-hero__title {
  color: #fff;
  letter-spacing: -0.1rem;
  font-size: 5.3rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.rm-hero__desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 38rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.rm-hero__cta {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.rm-hero__cta:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── Hero Tabs Navigation ── */

.rm-hero__tabs-nav {
  position: absolute;
  bottom: 2vw;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.rm-hero-tab-btn {
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background-color: transparent;
  padding: 2rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  border: none;
}

.rm-hero-tab-btn:hover {
  color: var(--base-color-brand--brand04);
}

.rm-hero-tab-btn.is-active {
  color: var(--base-color-brand--white);
}

/* Progress bar base */
.rm-hero-tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Active progress bar fill */
.rm-hero-tab-btn.is-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  background-color: #fff;
  z-index: 1;
  animation: heroTabProgress 6s linear forwards;
}

@keyframes heroTabProgress {
  from { width: 0%; }
  to { width: 100%; }
}


/* ==========================================================================
   8. PAGE HERO (Inner Pages)
   ========================================================================== */

.rm-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--base-color-brand--brand01);
  padding: 0;
}

.rm-page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.rm-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 5% 4rem;
  width: 100%;
}

.rm-page-hero__title {
  color: var(--base-color-brand--white);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.rm-page-hero__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.6;
}

/* ── Light variant (no bg image) ── */

.rm-page-hero--light {
  background-color: var(--base-color-brand--bg002);
  min-height: auto;
  align-items: center;
}

.rm-page-hero--light .rm-page-hero__content {
  padding: 8rem 5% 4rem;
}

.rm-page-hero--light .rm-page-hero__title {
  color: var(--base-color-brand--black);
}

.rm-page-hero--light .rm-page-hero__desc {
  color: var(--text-color--text-secondary);
}


/* ==========================================================================
   9. SECTIONS (rm-section)
   ========================================================================== */

.rm-section {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.rm-section:not(.rm-hero):not(.rm-page-hero):not(.rm-section--cta):not(.rm-project-hero):not(.rm-product-hero) {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.rm-section--about,
.rm-section--solutions,
.rm-section--history,
.rm-section--about-solutions,
.rm-section--benefits,
.rm-section--specs,
.rm-section--gallery,
.rm-section--ambientes,
.rm-section--intro,
.rm-section--products,
.rm-section--faq {
  /* inherits default padding via :not() rule above */
}

/* ── Section Background Variants ── */

.rm-section--bg-alt {
  background-color: var(--base-color-brand--bg002);
}

.rm-section--bg-warm {
  background-color: var(--base-color-brand--bg003);
}

.rm-section--bg-dark {
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-brand--white);
}

.rm-section--bg-dark h1,
.rm-section--bg-dark h2,
.rm-section--bg-dark h3,
.rm-section--bg-dark h4,
.rm-section--bg-dark h5,
.rm-section--bg-dark h6 {
  color: var(--base-color-brand--white);
}

.rm-section--bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.rm-section--bg-dark .rm-section__subtitle {
  color: var(--base-color-brand--brand04);
}

/* ── Section Header ── */

.rm-section__header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.rm-section__subtitle {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--base-color-brand--brand04);
  margin-bottom: 1rem;
}

.rm-section__title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-section--bg-dark .rm-section__title {
  color: var(--base-color-brand--white);
}

.rm-section__desc {
  color: var(--text-color--text-secondary);
  font-size: 1.125rem;
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.6;
}

.rm-section--bg-dark .rm-section__desc {
  color: rgba(255, 255, 255, 0.75);
}

.rm-section__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ── Section Filters ── */

.rm-section--filters {
  padding-top: 2rem;
  padding-bottom: 0;
}


/* ==========================================================================
   10. ABOUT PREVIEW (Homepage)
   ========================================================================== */

.rm-about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  align-items: start;
}

/* When there's no image, text takes full width */
.rm-about-preview__text:only-child {
  grid-column: 1 / -1;
  max-width: 48rem;
}

.rm-about-preview__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.rm-about-preview__desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
}

.rm-about-preview__image {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.rm-about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   11. PORTFOLIO GRID & CARDS
   ========================================================================== */

.rm-portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rm-portfolio-card {
  position: relative;
  width: calc(50% - 0.25rem);
  min-height: 70vh;
  overflow: hidden;
  border-radius: 0;
}

.rm-portfolio-card__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 70vh;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.rm-portfolio-card__image {
  position: absolute;
  inset: 0;
}

.rm-portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rm-portfolio-card:hover .rm-portfolio-card__image img {
  transform: scale(1.05);
}

.rm-portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.rm-portfolio-card:hover .rm-portfolio-card__overlay {
  opacity: 1;
}

.rm-portfolio-card__view {
  color: var(--base-color-brand--white);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rm-portfolio-card__info {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.rm-portfolio-card__title {
  color: var(--base-color-brand--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.rm-portfolio-card__category {
  color: var(--base-color-brand--brand04);
  font-size: 0.875rem;
  font-weight: 400;
}

.rm-portfolio-card__excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

/* ── Portfolio Grid - 3 columns (archive) ── */

.rm-portfolio-grid--3col .rm-portfolio-card {
  width: calc(33.333% - 0.375rem);
  min-height: 50vh;
}

.rm-portfolio-grid--3col .rm-portfolio-card__link {
  min-height: 50vh;
}

/* ── Portfolio Page - Webflow Layout ── */

.section_portfolio-header {
  background-color: var(--base-color-brand--brand01);
}

.padding-custom3 {
  flex-flow: column;
  padding-top: 8rem;
  padding-bottom: 5%;
  display: flex;
  gap: 42px;
}

.content-heder-paginas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.textos-header {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.titulo-header-alternative {
  color: var(--base-color-neutral--white);
  font-size: 2.7rem;
  font-weight: 300;
}

.contato-solucoes {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  color: var(--base-color-brand--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.buttons-contact-group {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.telefone-02 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border: 1px solid var(--base-color-brand--white);
  background-color: var(--base-color-neutral--neutral-lightest);
  color: var(--base-color-neutral--black);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.email-01 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border: 1px solid var(--base-color-brand--white);
  background-color: var(--base-color-brand--bg003);
  color: var(--base-color-neutral--black);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 8px 8px;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.telefone-02:hover {
  border-color: var(--base-color-brand--brand03);
  background-color: var(--base-color-neutral--neutral-darker);
  color: var(--base-color-brand--brand04);
}

.email-01:hover {
  background-color: var(--base-color-neutral--neutral-darker);
  color: var(--base-color-brand--brand04);
  border-color: #c09fdb4f;
}

.icon-contato {
  opacity: .8;
  object-fit: cover;
  background-image: none;
  border-radius: 0%;
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
}

.icon-contato.color-brand01 {
  background-color: var(--base-color-brand--black);
  border-radius: 100%;
  width: 34px;
  min-width: auto;
  height: 34px;
  min-height: auto;
  padding: 6px;
}

.footer8_link,
.footer8_link-copy {
  text-align: center;
  text-transform: none;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

/* Portfolio filter + items section */
.section_portfolio_header {
  padding-left: 5%;
  padding-right: 5%;
}

.blog4-header_category-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: 0;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

/* ── Portfolio Dropdown Filters (Webflow-matching) ── */
.div-block-17 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  display: flex;
}

.filtros {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--base-color-brand--brand01);
  display: flex;
}

.dropdown_component {
  position: relative;
  display: inline-block;
  text-align: left;
}

.dropdown_toggle {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  height: 2rem;
  padding: 0 .75rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: box-shadow .2s, color .2s ease-out, background-color .2s ease-out;
  display: flex;
  cursor: pointer;
  box-shadow: 0 1px 2px #14141408;
}

.dropdown_toggle.is-neutral {
  border: 1px solid var(--base-color-neutral--neutral-light);
  color: var(--base-color-brand--black);
  background-color: #ffffffed;
  height: auto;
  padding: .8rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.dropdown_toggle.is-neutral:hover {
  border-color: var(--base-color-brand--brand02);
  background-color: var(--base-color-neutral--neutral-lightest);
}

.dropdown_toggle.is-neutral.is-open {
  background-color: #ffffffb0;
}

.icon-1x1-xsmall-3 {
  aspect-ratio: 1;
  width: 1rem;
  height: 1rem;
  display: flex;
  transition: transform .2s;
}

.icon-1x1-xsmall-3 svg {
  width: 100%;
  height: 100%;
}

.dropdown_toggle.is-open .icon-1x1-xsmall-3 {
  transform: rotate(180deg);
}

.dropdown_menu {
  display: none;
  position: absolute;
  z-index: 10;
  min-width: 100%;
  margin-top: .25rem;
}

.dropdown_menu.is-open {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  border: 1px solid #ffffff26;
  border-radius: .625rem;
  flex-flow: column;
  max-height: 20rem;
  padding: .5rem;
  display: flex;
  overflow: auto;
  box-shadow: -6px -2px 32px -8px #14141470;
}

.dropdown_menu [role="menuitem"] {
  padding: .4rem .5rem;
  font-size: .875rem;
  cursor: pointer;
  border-radius: .375rem;
  white-space: nowrap;
}

.dropdown_menu [role="menuitem"]:hover {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.line-divider {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-neutral--black);
  opacity: .19;
  width: 100%;
  height: 1px;
}

/* Portfolio featured items */
.portfolio-header_component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.portfolio-header-list-wrapper {
  padding: 0;
}

.header_featured-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 1rem;
  display: grid;
}

.header_featured-item-content {
  grid-column-gap: 51px;
  grid-row-gap: 51px;
  background-color: var(--base-color-brand--bg002);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 4rem 3rem;
  display: flex;
}

/* ── Portfolio Slider (Webflow-matching) ── */
.slider-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: .7rem;
  display: flex;
}

.slider-wrap.is-small {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  display: block;
  overflow: hidden;
}

.rm-slider {
  background-color: transparent;
  height: auto;
  position: relative;
}

.rm-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  white-space: nowrap;
}

.rm-slider-mask.is-small {
  aspect-ratio: 3 / 2;
  width: 100%;
}

.rm-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  white-space: normal;
}

.main-img {
  background-image: none;
  width: 99%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slide-overlay {
  z-index: 1;
  background-image: linear-gradient(357deg, #0009, #0000 83%);
  width: 99%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: 0;
}

.slider-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s;
}

.slider-arrow:hover {
  background-color: #fff;
}

.slider-arrow.left {
  left: 0;
  right: auto;
}

.slider-arrow.right {
  right: 0;
  left: auto;
  z-index: 4;
}

.slider-arrow-icon {
  color: #000;
  font-size: 22px;
  line-height: 1;
}

.slider-arrow-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.slide-nav {
  display: none;
}

.blog4-header_category-link {
  margin-bottom: .5rem;
  margin-right: 1rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.blog4-header_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
  color: var(--base-color-brand--brand01);
}

.blog4-header_title-link.featured-post {
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.tag-filtros {
  background-color: var(--base-color-neutral--neutral-lightest);
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 20px;
  flex: none;
  padding: .25rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
}

.tag-filtros.background-color-white {
  background-color: var(--base-color-brand--white);
  color: var(--base-color-brand--brand01);
}

.heading-medium-4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--base-color-brand--brand01);
}

.div-block-26 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}


/* ==========================================================================
   12. SOLUTIONS GRID & CARDS
   ========================================================================== */

.rm-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.rm-solution-card {
  background-color: var(--base-color-neutral--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base),
              color var(--transition-base);
  padding-bottom: 1rem;
}

.rm-solution-card:hover {
  box-shadow: 0 6px 0 -2px var(--base-color-neutral--neutral-lightest);
  color: var(--base-color-brand--brand02);
}

.rm-solution-card__image {
  width: 100%;
  overflow: hidden;
}

.rm-solution-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rm-solution-card:hover .rm-solution-card__image img {
  transform: scale(1.05);
}

.rm-solution-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem 1rem 0;
}

.rm-solution-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
  transition: color var(--transition-fast);
}

.rm-solution-card:hover .rm-solution-card__title {
  color: var(--base-color-brand--brand02);
}

.rm-solution-card__desc {
  color: var(--text-color--text-secondary);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
}

.rm-solution-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Arrow animation on solution card hover */
.rm-solution-card .button-arrow-wrapper {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.rm-solution-card:hover .button-arrow-wrapper {
  transform: translateX(6px);
}

/* ── Solutions Grid 3-col variant ── */

.rm-solutions-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}


/* ==========================================================================
   13. CATEGORIES GRID (archive-solucao)
   ========================================================================== */

.rm-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.rm-category-card {
  background-color: var(--base-color-neutral--white);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
}

.rm-category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rm-category-card__image {
  width: 100%;
  overflow: hidden;
}

.rm-category-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rm-category-card:hover .rm-category-card__image img {
  transform: scale(1.05);
}

.rm-category-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rm-category-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
}

.rm-category-card__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
  line-height: 1.6;
}


/* ==========================================================================
   14. PRODUCT CARDS & GRID
   ========================================================================== */

.rm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rm-product-card {
  background-color: var(--base-color-neutral--white);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
}

.rm-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rm-product-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.rm-product-card__image {
  width: 100%;
  overflow: hidden;
}

.rm-product-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rm-product-card:hover .rm-product-card__image img {
  transform: scale(1.05);
}

.rm-product-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rm-product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-product-card__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
  line-height: 1.6;
}


/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */

.rm-testimonials-slider {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.rm-testimonial-slide {
  display: none;
  animation: fadeIn var(--transition-base) ease;
}

.rm-testimonial-slide.is-active {
  display: block;
}

.rm-testimonial {
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
  font-style: normal;
}

.rm-testimonial__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.rm-testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.rm-testimonial__photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.rm-testimonial__author {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.rm-testimonial__name {
  color: var(--base-color-brand--white);
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
}

.rm-testimonial__role {
  color: var(--base-color-brand--brand04);
  font-size: 0.875rem;
  font-weight: 300;
}

/* ── Slider Controls ── */

.rm-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.rm-slider-prev,
.rm-slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--base-color-brand--white);
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-fast);
}

.rm-slider-prev:hover,
.rm-slider-next:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.rm-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.rm-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              transform var(--transition-fast);
}

.rm-slider-dot.is-active {
  background-color: var(--base-color-brand--white);
  transform: scale(1.3);
}


/* ==========================================================================
   16. CTA SECTION
   ========================================================================== */

.rm-section--cta {
  position: relative;
  background-color: var(--base-color-brand--brand01);
  background-image: none;
  text-align: center;
  padding: 7rem 5%;
}

.rm-section--cta__overlay {
  display: none;
}

.rm-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.rm-cta__title {
  color: var(--base-color-brand--white);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.rm-cta__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.6;
}

.rm-cta__button {
  margin-top: 0.5rem;
  margin-left: 0;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
}

/* CTA on dark bg (without image) - inherits base styles */
.rm-section--cta.rm-section--bg-dark {
  background-color: var(--base-color-brand--brand01);
}


/* ==========================================================================
   17. ABOUT PAGE (page-sobre)
   ========================================================================== */

.rm-about-history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  align-items: start;
}

.rm-about-history__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.1rem;
}

.rm-about-history__year {
  font-size: 4rem;
  font-weight: 700;
  color: var(--base-color-brand--brand02);
  line-height: 1;
}

.rm-about-history__desc {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
}

.rm-about-history__desc p {
  margin-bottom: 1rem;
}

.rm-about-history__image {
  width: 100%;
  overflow: hidden;
}

.rm-about-history__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Values Grid ── */

.rm-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.rm-value-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--base-color-brand--white);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
}

.rm-value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rm-value-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-color-brand--brand02);
  font-size: 1.5rem;
}

.rm-value-card__icon .dashicons {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
}

.rm-value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-value-card__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
  line-height: 1.6;
}


/* ==========================================================================
   18. CONTACT PAGE (page-contato)
   ========================================================================== */

.rm-contact-layout {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: start;
}

.rm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rm-contact-form__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

/* ── Contact Cards ── */

.rm-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rm-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background-color: var(--base-color-brand--bg002);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
}

.rm-contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rm-contact-card__icon {
  color: var(--base-color-brand--brand02);
}

.rm-contact-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.rm-contact-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-contact-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
}

.rm-contact-card__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--base-color-brand--brand02);
}


/* ==========================================================================
   18b. CONTACT - Webflow Layout (contact3-*)
   ========================================================================== */

.section_contact3-header {
  overflow: hidden;
}

.contact3-header_component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-rows: auto;
  min-height: 100vh;
}

.contact3-header_content {
  padding: 20% 10% 5%;
}

.contact3-header_form-block {
  flex-direction: column;
  align-items: stretch;
}

.contact3-header_form {
  display: grid;
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.contact3-header_image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact3-header_image {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.contact3-header_monogram {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
  opacity: 0.35;
  pointer-events: none;
}

/* Icon sizing utilities (Webflow) */
.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.icon-embed-large.color-white {
  color: var(--base-color-neutral--white);
}

.icon-telefone {
  width: 3rem;
  height: 3rem;
}

/* Contact Details Section */
.contact3-details_component {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
}

.contact3-details_item {
  flex-direction: column;
  display: flex;
  gap: 0;
}

.contact3-details_item .color-brand002 {
  color: var(--base-color-brand--brand04);
  text-decoration: none;
}

.contact3-details_item .color-brand002:hover {
  color: var(--base-color-brand--brand02);
}


/* ==========================================================================
   19. SINGLE PROJECT (single-projeto)
   ========================================================================== */

.rm-project-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.rm-project-hero__image {
  position: absolute;
  inset: 0;
}

.rm-project-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rm-project-hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 11%, rgba(0, 0, 0, 0.86) 99%);
  z-index: 1;
}

.rm-project-hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 5% 4rem;
}

.rm-project-hero__title {
  color: var(--base-color-brand--white);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.rm-project-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.rm-project-meta__item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 300;
}

.rm-project-meta__item strong {
  color: var(--base-color-brand--white);
  font-weight: 700;
}

/* ── Project Content ── */

.rm-project-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.rm-project-content__text {
  max-width: 48rem;
}

.rm-project-content__text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rm-project-content__text p {
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
}

/* ── Solutions Tags ── */

.rm-project-solutions h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rm-project-solutions__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rm-solution-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--base-color-brand--bg002);
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--base-color-brand--brand01);
  text-decoration: none;
  transition: border-color var(--transition-fast),
              color var(--transition-fast);
}

.rm-solution-tag:hover {
  border-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--brand02);
}

/* ── Gallery ── */

.rm-project-gallery h2,
.rm-project-testimonial h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rm-gallery-grid--product {
  grid-template-columns: repeat(3, 1fr);
}

.rm-gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.rm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform var(--transition-slow);
}

.rm-gallery-item:hover img {
  transform: scale(1.05);
}


/* ==========================================================================
   20. SINGLE SOLUTION / PRODUCT (single-solucao)
   ========================================================================== */

.rm-product-hero {
  padding: 8rem 5% 4rem;
}

.rm-product-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.rm-product-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rm-product-hero__main-image {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.rm-product-hero__main-image img {
  width: 100%;
  object-fit: cover;
}

.rm-product-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.rm-product-hero__thumb {
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.rm-product-hero__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}

.rm-product-hero__thumb:hover img {
  opacity: 0.8;
}

.rm-product-hero__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rm-product-hero__category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--base-color-brand--brand02);
  text-decoration: none;
}

.rm-product-hero__category:hover {
  color: var(--base-color-brand--brand04);
}

.rm-product-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-product-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
}

.rm-product-hero__desc {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
}

.rm-product-hero__desc p {
  margin-bottom: 1rem;
}

.rm-product-hero__cta {
  align-self: flex-start;
}

/* ── Benefits Grid ── */

.rm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rm-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--base-color-brand--white);
  border-radius: var(--radius-md);
}

.rm-benefit-card__icon {
  color: var(--base-color-brand--brand02);
}

.rm-benefit-card__icon .dashicons {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
}

.rm-benefit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin-bottom: 0;
}

.rm-benefit-card__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-color--text-secondary);
  line-height: 1.6;
}

/* ── Specs Table ── */

.rm-specs-table {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}

.rm-specs-table th,
.rm-specs-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--base-color-neutral--neutral-lighter);
}

.rm-specs-table th {
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  width: 40%;
}

.rm-specs-table td {
  font-weight: 300;
  color: var(--text-color--text-secondary);
}

/* ── Ambiente Tags ── */

.rm-ambientes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.rm-ambiente-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--base-color-brand--bg002);
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--base-color-brand--brand01);
}


/* ==========================================================================
   21. TAXONOMY PAGE (taxonomy-categoria_solucao)
   ========================================================================== */

.rm-intro-content {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
  text-align: center;
}

.rm-intro-content p {
  margin-bottom: 1rem;
}


/* ==========================================================================
   22. FAQ
   ========================================================================== */

.rm-faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rm-faq-item {
  border-bottom: 1px solid var(--base-color-neutral--neutral-lighter);
}

.rm-faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}

.rm-faq-item__question::-webkit-details-marker {
  display: none;
}

.rm-faq-item__question h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--base-color-brand--brand01);
  margin: 0;
}

.rm-faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--base-color-brand--brand02);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition-fast);
}

.rm-faq-item[open] .rm-faq-item__icon {
  transform: rotate(45deg);
}

.rm-faq-item__answer {
  padding-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
}

.rm-faq-item__answer p {
  margin-bottom: 0;
}


/* ==========================================================================
   23. FILTERS (Portfolio Archive)
   ========================================================================== */

.rm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.rm-filter-btn {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--base-color-brand--brand01);
  background-color: var(--base-color-neutral--neutral-lightest);
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.rm-filter-btn:hover {
  border-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--brand02);
}

.rm-filter-btn.is-active {
  border-color: var(--border-color--border-primary);
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-brand--white);
}


/* ==========================================================================
   24. FORMS
   ========================================================================== */

.rm-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rm-form__field {
  display: flex;
  flex-direction: column;
}

.rm-form__field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.form_field-label {
  background-color: var(--base-color-brand--white);
  color: var(--border-color--border-primary);
  border-bottom: 3px solid #000;
  margin-bottom: 0;
  padding-bottom: .25rem;
  font-weight: 400;
  display: inline-flex;
  font-size: 0.875rem;
}

.form_input {
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  font-family: inherit;
  width: 100%;
}

.form_input:focus {
  border-color: var(--base-color-brand--brand04);
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 110, 170, 0.15);
}

.form_input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form_input.is-text-area {
  border-color: var(--base-color-neutral--neutral-lighter);
  border-radius: 0;
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
  resize: vertical;
}

.form_checkbox-icon {
  border: 1px solid var(--border-color--border-primary);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-label {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-weight: 300;
  cursor: pointer;
}

.form_checkbox-label a {
  color: var(--base-color-brand--brand02);
  text-decoration: underline;
}

.rm-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── WordPress CF7 Overrides ── */

.wpcf7-form .form_input {
  margin-bottom: 0;
}

.wpcf7-not-valid {
  border-color: var(--base-color-system--error-red) !important;
}

.wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: var(--base-color-system--error-red);
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}


/* ==========================================================================
   25. FOOTER (.footer01) — Webflow structure
   ========================================================================== */

.footer01 {
  background-color: var(--base-color-brand--brand01);
  padding-top: 5vw;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

/* Large decorative brand text (Vector2.svg) */
.footer01 .image-2 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 100%;
}

/* Footer link lists wrapper */
.footer8_left-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer8_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0;
  color: var(--base-color-brand--white);
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

/* Footer bottom wrapper */
.footer8_bottom-wrapper {
  opacity: 1;
  color: var(--base-color-neutral--neutral-light);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

/* Legal links list */
.footer8_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  text-decoration: none;
  display: grid;
}

.footer8_legal-link {
  font-size: .875rem;
  text-decoration: none;
  color: var(--base-color-neutral--neutral-light);
  transition: color var(--transition-fast);
}

.footer8_legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Developer credit block */
.div-block-6 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer8_credit-text {
  font-size: .875rem;
  font-weight: 400;
  color: var(--base-color-neutral--neutral-light);
}

.logo-ec {
  opacity: .42;
  height: .8rem;
}

/* Padding utilities used in footer */
.padding-vertical.padding-xxlarge {
  padding: 5rem 0;
}

.padding-bottom.padding-xlarge {
  padding: 0 0 4rem;
}

.padding-top.padding-medium {
  padding: 1.5rem 0 0;
}


/* ==========================================================================
   26. BREADCRUMBS
   ========================================================================== */

.rm-breadcrumbs {
  padding: 1rem 5%;
  font-size: 0.875rem;
  background-color: var(--base-color-brand--bg002);
}

.rm-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0;
}

.rm-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--base-color-brand--brand01);
  font-size: 0.875rem;
  font-weight: 300;
}

.rm-breadcrumbs__item:hover {
  color: var(--base-color-brand--brand02);
}

.rm-breadcrumbs__separator {
  color: var(--base-color-neutral--neutral-light);
}


/* ==========================================================================
   27. WHATSAPP ICON (.wp-icon)
   ========================================================================== */

.wp-icon {
  z-index: 100;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #2ac000;
  text-align: center;
  background-color: rgba(59, 153, 0, 0.77);
  border-radius: 20rem;
  padding: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-icon:hover {
  background-color: #3ea200;
}

.wp-icon img,
.wp-icon svg {
  width: 25px;
  height: 25px;
}

/* WordPress WhatsApp Float (theme-provided) */

.rm-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-whatsapp);
}

.rm-whatsapp-float__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: var(--base-color-brand--white);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  animation: whatsappPulse 2s infinite;
}

.rm-whatsapp-float__button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.rm-whatsapp-float__button svg {
  width: 1.75rem;
  height: 1.75rem;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* ==========================================================================
   28. PAGINATION (WordPress)
   ========================================================================== */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  color: var(--base-color-neutral--neutral);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.nav-links .page-numbers:hover {
  border-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--brand02);
}

.nav-links .page-numbers.current {
  background-color: var(--base-color-brand--brand01);
  border-color: var(--base-color-brand--brand01);
  color: var(--base-color-brand--white);
}

.nav-links .prev,
.nav-links .next {
  width: auto;
  padding: 0.5rem 1rem;
  background-color: var(--base-color-brand--brand03);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 0.5rem;
}

.nav-links .prev:hover,
.nav-links .next:hover {
  background-color: var(--base-color-brand--brand02);
  color: var(--base-color-brand--white);
}

.rm-no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-color--text-secondary);
  font-size: 1.125rem;
}


/* ==========================================================================
   29. ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Scroll-triggered animations ── */

.rm-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.rm-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   30. WORDPRESS BLOCK OVERRIDES
   ========================================================================== */

.wp-block-image {
  margin-bottom: 2rem;
}

.wp-block-image img {
  border-radius: var(--radius-md);
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.alignwide {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-separator {
  border: none;
  border-top: 1px solid var(--base-color-neutral--neutral-lightest);
  margin: 3rem auto;
  max-width: 6rem;
}

.wp-block-separator.is-style-wide {
  max-width: 100%;
}


/* ==========================================================================
   31. HOMEPAGE - HERO TAB ICONS (Webflow: icon-categoria, categoria-tab-link)
   ========================================================================== */

.rm-hero-tab-btn__inner {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rm-hero-tab-btn__category {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rm-hero-tab-btn__icon {
  filter: invert();
  background-image: none;
  align-self: auto;
  height: 2rem;
  width: auto;
  display: inline-flex;
  opacity: 1;
}

.rm-hero-tab-btn__text {
  font-size: inherit;
}

.rm-hero-tab-btn__arrow {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  opacity: 0;
  transition: opacity 0.2s;
}

.rm-hero-tab-btn.is-active .rm-hero-tab-btn__arrow {
  opacity: 1;
}


/* ==========================================================================
   32. HOMEPAGE - ABOUT STORY (Webflow: section_about-story)
   ========================================================================== */

.section_about-story {
  position: relative;
}

.about-story_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.about-story_content-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-story__title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--base-color-brand--brand01);
  text-wrap: balance;
}

.about-story_content-right {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.1rem;
  display: flex;
}

.paragraph {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color--text-secondary);
  white-space: pre-line;
}

.about3-growth_item-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  place-items: center start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.about3-growth_text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.component-foto-rossana {
  position: relative;
}

.foto-rossana1-wrapper {
  max-width: 27%;
  padding-left: 5vw;
  position: absolute;
  inset: auto 0% 0% 10%;
  z-index: 2;
}

.foto-rossana1 {
  background-image: none;
  width: 100%;
  height: auto;
}

.about-story_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.about-story__texture {
  width: 100%;
  height: auto;
  display: block;
}

/* Utility: margin-xxsmall */
.margin-bottom.margin-xxsmall {
  margin-bottom: .5rem;
}

.margin-bottom.margin-small {
  margin-bottom: 1rem;
}

.margin-bottom.margin-xsmall {
  margin-bottom: .75rem;
}

.margin-vertical.margin-medium {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.margin-bottom.margin-xxlarge {
  margin-bottom: 5rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}


/* ==========================================================================
   32b. ABOUT PAGE - HERO LAYOUT (Webflow: section_home5-header)
   ========================================================================== */

.section_home5-header {
  position: relative;
}

.padding-custom2 {
  height: 100%;
  padding-top: 7rem;
  padding-bottom: 1rem;
}

.home2-features_component {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 60%;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.about-story_content-left-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home2-features_image-wrapper {
  margin-top: 2rem;
}

.home2-features_image-wrapper .image-4 {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   32c. ABOUT PAGE - VIDEO LIGHTBOX (Webflow: home5-header)
   ========================================================================== */

.home5-header_component {
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: hidden;
  margin-top: 2rem;
}

.home5-header_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  cursor: pointer;
}

.home5-header_lightbox-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-image: none;
  width: 100%;
}

.lightbox-play-icon {
  z-index: 2;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
  transition: background-color var(--transition-fast);
}

.home5-header_lightbox:hover .video-overlay-layer {
  background-color: #00000040;
}


/* ==========================================================================
   32d. ABOUT PAGE - SOLUÇÕES EM DESTAQUE (Webflow: layout423)
   ========================================================================== */

.section_solucoes-destaques {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
}

.solucoes_component {
  padding: 5% 5%;
}

.categoria_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

.layout423_row {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: .5rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.layout423_card {
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
  height: auto;
  min-height: auto;
  aspect-ratio: 2 / 3;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.layout423_image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.layout423_overlay {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
  transition: background-color var(--transition-fast);
}

.layout423_card:hover .layout423_overlay {
  background-color: #00000040;
}

.layout423_image {
  object-fit: cover;
  background-image: none;
  width: 100%;
  height: 100%;
}

.lab-text {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 19rem;
  display: flex;
  position: relative;
  z-index: 1;
}

.layout423_card-content-bottom {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.layout423_card:hover .layout423_card-content-bottom {
  max-height: 5rem;
  opacity: 1;
}


/* ==========================================================================
   32e. ABOUT PAGE - DEPOIMENTOS (Webflow: home5-testimonial)
   ========================================================================== */

.section_home5-testimonial {
  background-color: var(--base-color-brand--bg003);
  margin-bottom: 0%;
  padding-bottom: 0%;
}

.home5-testimonial_component {
  background-color: transparent;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 0;
  position: relative;
}

.home5-testimonial_slide {
  display: none;
  animation: fadeIn var(--transition-base) ease;
}

.home5-testimonial_slide.is-active {
  display: block;
}

.home5-testimonial_content {
  grid-column-gap: 0rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.home5-testimonial_client-image-wrapper {
  overflow: hidden;
}

.home5-testimonial_client-image {
  object-fit: cover;
  background-image: none;
  width: 100%;
  height: 100%;
}

.home5-testimonial_content-right {
  flex-direction: column;
  align-items: flex-start;
  padding: 4% 4% 4% 10%;
  display: flex;
}

.home5-testimonial_client {
  text-align: left;
  align-items: center;
  display: flex;
}

.home5-testimonial_client-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home5-testimonial_nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 1rem;
  right: 0;
}

.home5-testimonial_arrow {
  border: 1px none var(--border-color--border-primary);
  background-color: var(--base-color-neutral--white);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  cursor: pointer;
  border: none;
}

.home5-testimonial_arrow:hover {
  background-color: var(--base-color-brand--bg002);
}

.home5-testimonial_arrow-icon {
  color: var(--base-color-neutral--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.home5-testimonial_dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.home5-testimonial_dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--base-color-neutral--neutral-light);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.home5-testimonial_dot.is-active {
  background-color: var(--base-color-brand--brand02);
  transform: scale(1.3);
}


/* ==========================================================================
   32f. ABOUT PAGE - PROCESSO / BENEFÍCIOS (Webflow: home4-benefits)
   ========================================================================== */

.section_home4-benefits {
  padding-bottom: 5%;
}

.home4-benefits_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.home4-benefits_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home4-benefits_tabs-link {
  background-color: transparent;
  border: none;
  border-left: 2px solid transparent;
  padding: 0 0 0 2rem;
  display: block;
  cursor: pointer;
  text-align: left;
  opacity: 0.5;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.home4-benefits_tabs-link.is-active {
  border-left-width: 4px;
  border-left-color: var(--base-color-brand--brand02);
  opacity: 1;
  background-color: transparent;
}

.home4-benefits_tabs-link:hover {
  opacity: 0.8;
}

.home4-benefits_tab-content {
  position: relative;
}

.home4-benefits_tab-pane {
  display: none;
}

.home4-benefits_tab-pane.is-active {
  display: block;
}

.home4-benefits_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.home4-benefits_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.home4-benefits_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  cursor: pointer;
}

.home4-benefits_lightbox-image {
  object-fit: cover;
  background-image: none;
  width: 100%;
  height: auto;
}


/* ==========================================================================
   32g. VIDEO LIGHTBOX MODAL
   ========================================================================== */

.rm-lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.rm-lightbox-modal.is-active {
  display: flex;
}

.rm-lightbox-modal__inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.rm-lightbox-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.rm-lightbox-modal__close:hover {
  opacity: 0.7;
}

.rm-lightbox-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ==========================================================================
   33. HOMEPAGE - PORTFOLIO GALLERY (Webflow: sectiom_home-portfolio)
   ========================================================================== */

.sectiom_home-portfolio {
  position: relative;
  overflow: hidden;
}

.header_component-portfolio {
  flex-direction: column;
  align-items: center;
  display: flex;
}

/* Utility: margin-custom3 */
.margin-top.margin-custom3 {
  margin-top: 0;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
}

/* Utility: margin-xxlarge */
.margin-bottom.margin-xxlarge {
  margin: 0 0 4rem;
  padding-top: 4rem;
}

.header_content-bottom {
  justify-content: flex-start;
  width: 100vw;
  display: flex;
  overflow: hidden;
}

.header_images-layout {
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.header_image-list-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  width: 100%;
  display: grid;
}

.header_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  width: 100%;
  display: grid;
}

.header7_image-wrapper {
  width: 26rem;
  padding-top: 75%;
  position: relative;
}

.header78_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header_image-list-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: -62.7%;
  display: grid;
}


/* ==========================================================================
   34. HOMEPAGE - BENEFITS / DIFERENCIAIS (Webflow: section.is-benefit)
   ========================================================================== */

.section {
  position: relative;
}

.section.is-benefit {
  z-index: 10;
  background-color: #1d1d1d;
  width: 100%;
}

.benefit-component {
  overflow: hidden;
}

.benefit-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
}

.benefit-content {
  z-index: 5;
  width: 100%;
  padding-bottom: 5vw;
  position: relative;
}

.grid-benefit {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-top: 1rem;
  display: grid;
}

.benefit-column {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: #1a1a1a75;
  border: 1px solid #ffffff4d;
  border-radius: 6px;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  display: flex;
}

.benefit-icon {
  filter: invert();
  background-image: none;
  max-height: 2.5rem;
}

.benefit-text-wrapper {
  color: #fff;
}

.benefit-text {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}

.benefit-overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.image-absolute {
  object-fit: cover;
  background-image: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}


/* ==========================================================================
   34b. SOLUTIONS PAGE (Webflow: solucoes-persianas.html)
   ========================================================================== */

/* Category Tabs Section */
.section_pricing1-header {
  background-color: var(--base-color-brand--brand01);
  padding: 0;
}

.solucoes-tabs {
  width: 100%;
  padding: .5rem;
}

.categorias-control_menu {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: row;
  display: flex;
}

.categorias-control_menu.is-large {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

/* Each category tab card */
.segmented-control_link {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  color: #ffffff54;
  background-color: transparent;
  text-decoration: none;
  display: flex;
  transition: border-color .2s, background-color .2s, color .2s;
}

.segmented-control_link.is-large {
  aspect-ratio: 1;
  opacity: .82;
  filter: grayscale();
  color: var(--base-color-brand--black);
  object-fit: cover;
  border-bottom: 14px solid #ebebe98c;
  border-radius: 0;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 1rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  position: relative;
  overflow: hidden;
}

.segmented-control_link.is-large:hover {
  opacity: 1;
  filter: none;
}

.segmented-control_link.is-large.is-active {
  border-bottom-width: 13px;
  border-bottom-color: var(--base-color-brand--brand02);
  opacity: 1;
  filter: none;
}

/* Tab label + icon container */
.div-block-13 {
  z-index: 47;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--base-color-brand--white);
  justify-content: flex-start;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  position: relative;
}

.icon-categoria.is-tab {
  filter: invert();
  height: 2rem;
  display: inline-flex;
}

/* Tab background image */
.img-tab-categorias {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.categorias-tab-overlay {
  background-image: linear-gradient(0deg, #45356bcf 7%, transparent);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.img-categoria {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ── Solutions Content Area ── */
.section_solucoes-content {
  padding-top: 0;
  padding-bottom: 2rem;
}

.titulo-categorias-tab {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  flex-flow: column;
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: flex;
}

.div-block-15 {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.div-block-18 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.titulos-categorias {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--base-color-brand--brand01);
}

/* ── Product Grid ── */
.produtos-row {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.card_component.is-flex-vertical {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--base-color-neutral--white);
  border: none;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 1rem;
  display: flex;
}

.img-card-produtos {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
}

.card_text-wrapper {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  flex-flow: column;
  justify-content: space-around;
  padding-right: 1rem;
  display: flex;
}

/* Product card button */
.button1.is-alternative {
  background-color: var(--base-color-brand--white);
  color: var(--base-color-neutral--neutral-light);
  padding: 1rem 0 0;
  font-size: .7rem;
  text-decoration: none;
  display: inline-flex;
}

.button1.is-alternative:hover {
  color: var(--base-color-brand--brand02);
}

.button-link-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: center;
  display: flex;
}

.txt-button {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
}

.txt-button.is-small {
  font-size: .8rem;
  font-weight: 300;
}

.icon-1x1-small3 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-1x1-small3 svg {
  width: 100%;
  height: 100%;
}

.color-brand002 {
  color: var(--base-color-brand--brand02);
}

/* ── Solutions Pagination ── */
.section_solucoes-content .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 2rem 0;
}

.section_solucoes-content .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border: 1px solid var(--base-color-neutral--neutral-lighter);
  border-radius: 4px;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--base-color-brand--brand01);
  transition: background-color 0.2s, color 0.2s;
}

.section_solucoes-content .page-numbers.current {
  background-color: var(--base-color-brand--brand01);
  color: var(--base-color-brand--white);
  border-color: var(--base-color-brand--brand01);
}

.section_solucoes-content .page-numbers:hover:not(.current) {
  background-color: var(--base-color-neutral--neutral-lightest);
}

.section_solucoes-content .page-numbers svg {
  width: 1rem;
  height: 1rem;
}


/* ==========================================================================
   35. HOMEPAGE - CTA (Webflow: section_home1-cta)
   ========================================================================== */

.section_home1-cta {
  background-color: var(--base-color-brand--brand01);
  position: relative;
}

.button-wp {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 20rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.button-wp.is-text-link {
  z-index: 1;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: .5rem 1rem .5rem .6rem;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.button-wp.is-text-link:hover {
  background-color: var(--base-color-neutral--neutral-darker);
  color: var(--base-color-brand--brand04);
  border-color: #9a78b68a;
}

.button-link-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: center;
  display: flex;
}

.txt-button-wp {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.icon-wp-svg {
  flex-shrink: 0;
}


/* ==========================================================================
   36. RESPONSIVE - Tablet (max-width: 991px)
   ========================================================================== */

@media (max-width: 991px) {

  /* Solutions Page */
  .segmented-control_link.is-large {
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .div-block-13 {
    flex-flow: column;
    font-size: 1rem;
  }

  .categorias-tab-overlay {
    background-image: linear-gradient(0deg, #45356bad 7%, transparent);
  }

  .div-block-15 {
    flex-flow: column;
  }

  .div-block-18 {
    border-bottom: 1px solid var(--base-color-neutral--neutral-lighter);
    margin-bottom: 0;
    padding-bottom: 1rem;
  }

  .produtos-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Typography */
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }

  .rm-hero__title {
    font-size: 3.5rem;
  }

  .rm-hero__content {
    max-width: 70vw;
  }

  /* Sections */
  .rm-section:not(.rm-hero):not(.rm-page-hero):not(.rm-section--cta):not(.rm-project-hero):not(.rm-product-hero) {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Navbar - Mobile Menu (Webflow: white bg, dark text) */
  .navbar11_menu-button {
    display: block;
    margin-right: -.5rem;
  }

  .navbar11_menu {
    border-bottom: 1px solid var(--border-color--border-primary);
    background-color: var(--base-color-neutral--white);
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    top: 100%;
    left: 0;
    right: 0;
    z-index: calc(var(--z-navbar) - 1);
    display: none;
  }

  .navbar11_menu.is-page-height-tablet {
    display: none;
  }

  .navbar11_menu.is-open {
    display: flex;
    height: 100dvh;
    padding-bottom: 6.5rem;
  }

  .navbar11_menu-links {
    display: flex;
    flex-direction: column;
    color: var(--base-color-brand--brand01);
    font-size: 1.6rem;
  }

  .navbar11_link {
    color: var(--base-color-brand--brand01);
    width: auto;
    padding: .75rem 0;
    font-size: inherit;
    border-radius: 0;
    letter-spacing: 2px;
  }

  .navbar11_link:hover {
    background-color: transparent;
    color: var(--base-color-brand--brand02);
  }

  .navbar11_link.w--current {
    color: var(--base-color-brand--brand01);
    background-color: transparent;
  }

  .navbar11_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .navbar11_dropdown-toggle {
    color: var(--base-color-brand--brand01);
    align-items: center;
    padding: .75rem 0;
    padding-left: 0;
    display: flex;
    font-size: inherit;
    border-radius: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .navbar11_dropdown-toggle:hover {
    background-color: transparent;
  }

  .navbar11_dropdown-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background-color: transparent;
  }

  .navbar11_dropdown-list.is-open {
    border-top: 10px solid var(--base-color-brand--brand02);
    max-height: 30rem;
    padding: 0;
  }

  .navbar11_menu-dropdown.is-open .navbar11_dropdown-list {
    border-top: 10px solid var(--base-color-brand--brand02);
    max-height: 30rem;
    padding: 0;
  }

  .navbar11_dropdown-link-list {
    padding: 1rem 0;
  }

  .navbar11_dropdown-link {
    color: var(--base-color-brand--black);
    padding: 0.75rem 0;
  }

  .navbar11_dropdown-link:hover {
    color: var(--base-color-brand--brand02);
  }

  .navbar11_menu-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .navbar11_menu-button.is-open {
    background-color: transparent;
  }

  .icon-wp {
    filter: none;
    opacity: 1;
  }

  .button-wp.is-text-link {
    color: var(--base-color-brand--brand01);
    border-color: var(--base-color-brand--brand01);
  }

  /* About Preview */
  .rm-about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Portfolio */
  .rm-portfolio-card {
    width: calc(50% - 0.25rem);
    min-height: 50vh;
  }

  .rm-portfolio-card__link {
    min-height: 50vh;
  }

  .rm-portfolio-grid--3col .rm-portfolio-card {
    width: calc(50% - 0.25rem);
  }

  /* Portfolio Page - Webflow */
  .section_portfolio-header {
    padding-top: 4rem;
  }

  .content-heder-paginas {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .contato-solucoes {
    border-top: 1px solid var(--base-color-neutral--neutral);
    flex-flow: column;
    order: 9999;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 2rem;
  }

  .titulo-header-alternative {
    font-size: 2.5rem;
  }

  .header_featured-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .header_featured-item-content {
    padding: 1rem 2rem;
  }

  .slider-arrow.right,
  .slider-arrow.left {
    height: auto;
  }

  .blog4-header_category-menu {
    width: 100vw;
    margin-bottom: 3rem;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .dropdown_toggle.is-neutral {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .filtros {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    font-size: .9rem;
  }

  .div-block-17 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    padding-top: 1rem;
  }

  .tag-filtros {
    font-size: .9rem;
  }

  /* Solutions */
  .rm-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rm-solutions-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Products */
  .rm-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Categories */
  .rm-categories-grid {
    grid-template-columns: 1fr;
  }

  /* Values */
  .rm-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Benefits */
  .rm-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About History */
  .rm-about-history {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Contact Layout */
  .rm-contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Icon Embed Responsive */
  .icon-embed-medium {
    width: 2rem;
    height: 2rem;
  }

  /* Contact Webflow */
  .contact3-header_component {
    grid-template-columns: 1fr 1fr;
  }

  .contact3-details_component {
    grid-column-gap: 2rem;
  }

  .contact3-details_item {
    text-align: center;
    align-items: center;
  }

  /* Product Hero */
  .rm-product-hero__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Gallery */
  .rm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer8_left-wrapper {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer8_link-list {
    order: 9999;
  }

  .footer8_bottom-wrapper {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer8_link-copy {
    font-size: .8rem;
  }

  .buttons-contact-group {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: row;
    display: flex;
  }

  /* Hero Tabs */
  .rm-hero-tab-btn {
    font-size: 1rem;
  }

  .rm-hero__tabs-nav {
    gap: 1rem;
  }

  /* Hero Tab Icons */
  .rm-hero-tab-btn__icon {
    height: 1.75rem;
  }

  /* About Story */
  .about-story_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-story_content-right {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  /* About Page - Hero Layout */
  .home2-features_component {
    grid-column-gap: 3rem;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
    display: flex;
  }

  .about-story_content-left-copy {
    text-wrap: balance;
    max-width: 80%;
  }

  /* About Page - Video */
  .home5-header_component {
    border-radius: 0;
    overflow: hidden;
  }

  .home5-header_lightbox-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* About Page - Testimonials */
  .section_home5-testimonial {
    margin-bottom: 0%;
    padding-bottom: 5%;
  }

  .home5-testimonial_content {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    padding-top: 2rem;
    display: flex;
  }

  .home5-testimonial_client-image {
    width: auto;
    max-width: none;
    height: 13rem;
  }

  .home5-testimonial_content-right {
    padding: 0% 0% 4rem;
  }

  /* About Page - Benefits Tabs */
  .home4-benefits_component {
    grid-column-gap: 3rem;
  }

  .home4-benefits_lightbox-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* About Page - Solutions Cards */
  .layout423_row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  /* Portfolio Gallery */
  .header_images-layout {
    grid-row-gap: .5rem;
  }

  .header_image-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .header7_image-wrapper {
    width: 20rem;
  }

  /* Benefits */
  .grid-benefit {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* CTA Button */
  .button-wp.is-text-link {
    border-radius: 12px;
  }
}


/* ==========================================================================
   37. RESPONSIVE - Mobile Landscape (max-width: 767px)
   ========================================================================== */

@media (max-width: 767px) {

  /* Solutions Page */
  .segmented-control_link.is-large {
    border-bottom-color: #4d4e50;
  }

  .produtos-row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  /* Hide on mobile landscape */
  .hide-mobile-landscape {
    display: none;
  }

  /* Navbar mobile adjustments */
  .navbar11_component {
    min-height: 4rem;
  }

  .navbar11_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
  }

  /* Typography */
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.25rem; }

  .rm-hero__title {
    font-size: 2.5rem;
    letter-spacing: -0.05rem;
  }

  .rm-hero__content {
    max-width: 100%;
    padding: 6rem 5% 8rem;
  }

  .rm-page-hero__title {
    font-size: 2.25rem;
  }

  .rm-project-hero__title {
    font-size: 2.25rem;
  }

  .rm-product-hero__title {
    font-size: 2rem;
  }

  /* Sections */
  .rm-section:not(.rm-hero):not(.rm-page-hero):not(.rm-section--cta):not(.rm-project-hero):not(.rm-product-hero) {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .rm-section--cta {
    padding: 4rem 5%;
  }

  .rm-section__header {
    margin-bottom: 2.5rem;
  }

  .rm-cta__title {
    font-size: 2rem;
  }

  /* Portfolio */
  .rm-portfolio-card {
    width: 100%;
    min-height: 50vh;
  }

  .rm-portfolio-card__link {
    min-height: 50vh;
  }

  .rm-portfolio-grid--3col .rm-portfolio-card {
    width: 100%;
  }

  .rm-portfolio-card__overlay {
    opacity: 1;
  }

  /* Portfolio Page - Webflow */
  .blog4-header_category-menu {
    width: 100vw;
    margin-bottom: 3rem;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .dropdown_toggle.is-neutral {
    width: 100%;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .filtros {
    flex-flow: column;
    flex: 1;
  }

  .div-block-17 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    width: 100%;
  }

  .buttons-contact-group {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: row;
    display: flex;
  }

  .telefone-02 {
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
  }

  .email-01 {
    border-radius: 15px;
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
  }

  .email-01:hover {
    border-color: var(--base-color-brand--brand04);
  }

  .header_featured-item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .header_featured-item-content {
    padding: 0;
  }

  .heading-medium-4 {
    font-size: 1.5rem;
  }

  /* Solutions */
  .rm-solutions-grid,
  .rm-solutions-grid--3col {
    grid-template-columns: 1fr;
  }

  /* Products */
  .rm-products-grid {
    grid-template-columns: 1fr;
  }

  /* Values */
  .rm-values-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .rm-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .rm-gallery-grid,
  .rm-gallery-grid--product {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer8_link-list {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .footer8_link {
    font-size: .8rem;
  }

  .footer8_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer8_legal-list {
    grid-column-gap: 0;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: start;
  }

  .footer8_link-copy {
    font-size: .8rem;
  }

  .telefone-02,
  .email-01 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 14px;
  }

  .padding-vertical.padding-xxlarge {
    padding: 3rem 0;
  }

  .padding-bottom.padding-xlarge {
    padding: 0 0 2rem;
  }

  /* Hero Tabs */
  .rm-hero__tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .rm-hero__tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .rm-hero-tab-btn {
    font-size: 0.9rem;
    flex: none;
    white-space: nowrap;
    padding: 1.25rem 0 0.75rem;
  }

  /* Hero Tab Icons */
  .rm-hero-tab-btn__icon {
    height: 1.5rem;
  }

  .rm-hero-tab-btn__arrow {
    display: none;
  }

  /* About Story */
  .about-story_component {
    grid-template-columns: 1fr;
  }

  .about3-growth_text-wrapper {
    font-size: 1rem;
  }

  .foto-rossana1-wrapper {
    z-index: 1;
    width: 70%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 22px;
    position: relative;
  }

  /* About Page - Hero Layout */
  .home2-features_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  /* About Page - Benefits */
  .home4-benefits_component {
    grid-column-gap: 0px;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  /* About Page - Testimonials */
  .section_home5-testimonial {
    height: auto;
    max-height: none;
  }

  .home5-testimonial_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .home5-testimonial_content {
    grid-row-gap: 3rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .home5-testimonial_client {
    align-items: center;
    width: 100%;
  }

  /* About Page - Solutions Cards */
  .categoria_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout423_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .layout423_card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1.5rem;
  }

  .layout423_card-content-bottom {
    max-height: 5rem;
    opacity: 1;
  }

  /* Benefits */
  .benefit-column {
    padding: 1.5rem 1rem;
  }

  .benefit-content {
    padding-top: 8rem;
  }

  .benefit-wrapper {
    height: auto;
  }

  .header7_image-wrapper {
    width: 18rem;
  }

  /* Specs Table */
  .rm-specs-table th,
  .rm-specs-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .rm-specs-table th {
    width: 45%;
  }

  /* Icon Responsive */
  .icon-telefone {
    width: 2rem;
    height: 2rem;
  }

  /* Contact Webflow */
  .contact3-header_component {
    grid-template-columns: 1fr;
    grid-row-gap: 0;
  }

  .contact3-header_content {
    padding: 10rem 5% 3rem;
  }

  .contact3-header_image-wrapper {
    max-height: 50vh;
  }

  .contact3-details_component {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }
}


/* ==========================================================================
   38. RESPONSIVE - Mobile Portrait (max-width: 479px)
   ========================================================================== */

@media (max-width: 479px) {

  /* Solutions Page */
  .categorias-control_menu.is-large {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .segmented-control_link.is-large {
    border-bottom-width: 8px;
    padding-bottom: .5rem;
    padding-left: .125rem;
    padding-right: .125rem;
  }

  .titulos-categorias {
    font-size: 2rem;
  }

  .produtos-row {
    grid-template-columns: 1fr;
  }

  /* Navbar */
  .navbar11_component {
    min-height: 4rem;
  }

  .navbar11_logo {
    height: 2rem;
  }

  .navbar11_menu-links {
    font-size: 1.2rem;
  }

  /* Typography */
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.375rem; }

  .rm-hero__title {
    font-size: 2.5rem;
  }

  .rm-page-hero__title {
    font-size: 1.875rem;
  }

  .rm-project-hero__title {
    font-size: 1.875rem;
  }

  .rm-product-hero__title {
    font-size: 1.75rem;
  }

  .rm-cta__title {
    font-size: 1.75rem;
  }

  /* Buttons */
  .button,
  .button1.is-text-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }

  /* Navbar */
  .navbar11_component {
    min-height: 4rem;
  }

  .navbar11_logo {
    height: 2.25rem;
  }

  .navbar11_menu {
    top: 4rem;
  }

  /* Hero */
  .rm-hero__content {
    max-width: 90vw;
    padding: 5rem 5% 6rem;
  }

  .rm-page-hero__content {
    padding: 6rem 5% 3rem;
  }

  .rm-page-hero {
    min-height: auto;
  }

  /* Sections */
  .rm-section:not(.rm-hero):not(.rm-page-hero):not(.rm-section--cta):not(.rm-project-hero):not(.rm-product-hero) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .rm-section--cta {
    padding: 3rem 5%;
  }

  /* Portfolio Card */
  .rm-portfolio-card {
    min-height: 40vh;
  }

  .rm-portfolio-card__link {
    min-height: 40vh;
  }

  /* Portfolio Page - Webflow */
  .padding-custom3 {
    padding-top: 6rem;
    padding-bottom: 10%;
  }

  .titulo-header-alternative {
    font-size: 1.8rem;
  }

  .blog4-header_category-menu {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    flex-flow: wrap;
    margin-top: 0;
    margin-bottom: 2rem;
    display: flex;
  }

  .dropdown_component {
    flex: 1;
    width: 100%;
  }

  .dropdown_toggle.is-neutral {
    justify-content: space-between;
  }

  .filtros {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: .8rem;
    display: flex;
  }

  .div-block-17 {
    box-sizing: border-box;
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .header_featured-item {
    grid-row-gap: 0;
  }

  .header_featured-item-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1rem;
  }

  .slider-arrow {
    width: 28px;
  }

  .slider-arrow.right,
  .slider-arrow.left {
    height: 32px;
    top: auto;
    bottom: 0;
  }

  .blog4-header_title-link.featured-post {
    margin-bottom: .25rem;
  }

  .tag-filtros {
    font-size: .8rem;
  }

  .text-size-regular {
    font-size: .8rem;
  }

  .icon-contato {
    width: 20px;
    min-width: 20px;
    height: 19px;
    min-height: 19px;
  }

  .telefone-02,
  .email-01 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
  }

  .email-01 {
    padding-top: 10px;
  }

  .email-01:hover {
    border-color: #c09fdb57;
  }

  .buttons-contact-group {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer8_link,
  .footer8_link-copy {
    font-size: .8rem;
  }

  .footer8_link {
    text-transform: none;
    font-size: .9rem;
  }

  .padding-vertical.padding-xxlarge {
    padding: 2rem 0;
  }

  /* Hero Tabs */
  .rm-hero-tab-btn {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* WhatsApp */
  .wp-icon {
    padding: 0.75rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .rm-whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .rm-whatsapp-float__button {
    width: 3rem;
    height: 3rem;
  }

  /* Filters */
  .rm-filter-btn {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
  }

  /* Forms */
  .form_input {
    padding: 0.625rem 0.875rem;
    font-size: 1rem;
  }

  /* Contact Webflow */
  .contact3-header_content {
    padding: 8rem 1.25rem 2rem;
  }

  /* Project Hero */
  .rm-project-hero {
    min-height: 40vh;
  }

  .rm-project-hero__meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Product Hero */
  .rm-product-hero {
    padding: 6rem 5% 3rem;
  }

  .rm-product-hero__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  /* FAQ */
  .rm-faq-item__question h3 {
    font-size: 1rem;
  }

  /* Testimonials */
  .rm-testimonial__text {
    font-size: 1.0625rem;
  }

  /* About History Year */
  .rm-about-history__year {
    font-size: 3rem;
  }

  /* About Story */
  .about-story_content-right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about3-growth_item-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about3-growth_text-wrapper {
    line-height: 1;
  }

  .paragraph {
    font-size: 1rem;
  }

  .foto-rossana1 {
    opacity: 1;
    padding-left: 24px;
  }

  /* About Page - Hero */
  .padding-custom2 {
    padding-top: 5rem;
  }

  .home2-features_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  /* About Page - Benefits */
  .home4-benefits_component {
    grid-template-columns: 1fr;
  }

  .home4-benefits_tabs-link,
  .home4-benefits_tabs-link.is-active {
    padding-left: 1rem;
  }

  /* About Page - Testimonials */
  .section_home5-testimonial {
    padding-bottom: 5%;
  }

  .home5-testimonial_content {
    grid-template-columns: 1fr;
  }

  .home5-testimonial_client-image-wrapper {
    display: none;
  }

  .home5-testimonial_content-right {
    padding: 0 0 4rem;
  }

  /* About Page - Solutions Cards */
  .layout423_row {
    flex-direction: column;
  }

  .layout423_card {
    width: 100%;
  }

  /* Benefits */
  .grid-benefit {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .benefit-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
  }

  .benefit-content {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .benefit-text {
    font-size: 1rem;
  }

  .benefit-wrapper {
    height: auto;
  }

  .benefit-icon {
    max-height: 1.7rem;
  }

  /* Hero Tab Icons */
  .rm-hero-tab-btn__icon {
    height: 1.25rem;
  }
}


/* ==========================================================================
   39. 404 PAGE
   ========================================================================== */

.rm-section--404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 2rem;
  background-color: var(--color-white, #fff);
}

.rm-404-content {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.rm-404__code {
  display: block;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand02, #8f6eaa);
  opacity: 0.15;
  margin-bottom: -1rem;
}

.rm-404__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-brand01, #4d4e50);
  margin-bottom: 1rem;
}

.rm-404__desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2.5rem;
}

.rm-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rm-404__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.rm-404__actions .button:not(.is-alternate) {
  background-color: var(--color-brand02, #8f6eaa);
  color: #fff;
}

.rm-404__actions .button:not(.is-alternate):hover {
  background-color: var(--color-brand04, #c09fdb);
}

.rm-404__actions .button.is-alternate {
  background-color: transparent;
  color: var(--color-brand02, #8f6eaa);
  border: 1px solid var(--color-brand02, #8f6eaa);
}

.rm-404__actions .button.is-alternate:hover {
  background-color: var(--color-brand02, #8f6eaa);
  color: #fff;
}

@media (max-width: 479px) {
  .rm-404__actions {
    flex-direction: column;
  }
}


/* ==========================================================================
   40. LEGAL / PRIVACY POLICY PAGE
   ========================================================================== */

.rm-section--legal {
  padding: 3rem 2rem 4rem;
}

.rm-legal-layout {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.rm-legal-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.rm-legal-toc {
  background: #f8f8f8;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.rm-legal-toc__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand01, #4d4e50);
  margin-bottom: 1rem;
}

.rm-legal-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rm-legal-toc__list li {
  margin-bottom: 0.5rem;
}

.rm-legal-toc__list a {
  color: var(--color-brand02, #8f6eaa);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.rm-legal-toc__list a:hover {
  color: var(--color-brand04, #c09fdb);
}

.rm-legal-content__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-brand01, #4d4e50);
  margin-bottom: 2rem;
}

.rm-legal-content__body {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.rm-legal-content__body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-brand01, #4d4e50);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.rm-legal-content__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brand01, #4d4e50);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.rm-legal-content__body p {
  margin-bottom: 1rem;
}

.rm-legal-content__body ul,
.rm-legal-content__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.rm-legal-content__body li {
  margin-bottom: 0.5rem;
}

.rm-legal-content__body a {
  color: var(--color-brand02, #8f6eaa);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .rm-legal-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rm-legal-sidebar {
    position: static;
  }

  .rm-legal-toc {
    padding: 1rem;
  }
}


/* ==========================================================================
   41. PRINT STYLES
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar11_component,
  .wp-icon,
  .rm-whatsapp-float,
  .footer01 {
    display: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666 !important;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  .rm-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
