/**
* Template Name: KnightOne
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Updated: Oct 16 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1f24; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #183d69; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #183d69; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #183d69; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(40, 40, 40, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

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

.stats .subheading h3 {
  font-weight: 700;
  font-size: 36px;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts / Portfolio RA Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.recent-posts article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.recent-posts .post-img {
  height: 260px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
}

.recent-posts .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.recent-posts article:hover .post-img img {
  transform: scale(1.04);
}

.recent-posts .post-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.recent-posts .title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  padding: 0;
  margin: 0 0 12px 0;
  color: var(--heading-color);
}

.recent-posts .ra-text {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0 0 24px 0;
}

.recent-posts .ra-actions {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.recent-posts .ra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
}

.recent-posts .ra-btn i {
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
}

.recent-posts .ra-btn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.recent-posts .ra-btn:hover i {
  transform: translate(3px, -3px);
}

@media (max-width: 575px) {
  .recent-posts article {
    padding: 24px;
    border-radius: 16px;
  }

  .recent-posts .post-img {
    height: 220px;
    margin: -24px -24px 18px -24px;
  }

  .recent-posts .title {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .info-item a {
  color: var(--accent-color);
  font-weight: 700;
}

.contact .info-item a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Call To Action Section - Comercial
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

.call-to-action:before {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.78) 48%, rgba(6, 6, 6, 0.62) 100%);
}

.call-to-action .cta-bg {
  filter: grayscale(35%);
  transform: scale(1.02);
}

.call-to-action .cta-main {
  position: relative;
  margin-bottom: 48px;
}

.call-to-action .cta-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 18%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 82%);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.call-to-action h3 {
  max-width: 780px;
  color: var(--contrast-color);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}

.call-to-action p {
  max-width: 880px;
  color: color-mix(in srgb, var(--contrast-color), transparent 14%);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}

.call-to-action .cta-btn-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.call-to-action .cta-btn {
  margin: 0;
  text-align: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 35px color-mix(in srgb, var(--accent-color), transparent 72%);
}

.call-to-action .cta-link {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 35%);
  padding-bottom: 4px;
}

.call-to-action .cta-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-insights {
  position: relative;
}

.call-to-action .cta-insight-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-color), transparent 12%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 84%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
}

.call-to-action .cta-insight-card:hover {
  transform: translateY(-8px);
  background: color-mix(in srgb, var(--surface-color), transparent 4%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

.call-to-action .cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 22px;
  margin-bottom: 18px;
}

.call-to-action .cta-insight-card span {
  display: inline-block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.call-to-action .cta-insight-card h4 {
  color: var(--contrast-color);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 12px;
}

.call-to-action .cta-insight-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 22%);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1199px) {
  .call-to-action h3 {
    font-size: 36px;
  }

  .call-to-action .cta-btn-container {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action h3 {
    font-size: 30px;
  }

  .call-to-action p {
    font-size: 16px;
  }

  .call-to-action .cta-btn {
    width: 100%;
    max-width: 360px;
  }
}


/*--------------------------------------------------------------
# Pricing Section / Pacotes Comerciais
--------------------------------------------------------------*/
.pricing .package-card {
  border-radius: 22px;
  padding: 34px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease-in-out;
}

.pricing .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pricing .package-card.recommended {
  border: 2px solid var(--accent-color);
  transform: translateY(-8px);
}

.pricing .package-card.recommended:hover {
  transform: translateY(-12px);
}

.pricing .package-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 14px auto;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .package-card h3 {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 21px;
  line-height: 1.25;
}

.pricing .pricing-description {
  min-height: 78px;
  margin: 0 0 22px 0;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.pricing .package-card h4 {
  margin: 0 0 18px 0;
  font-size: 36px;
  line-height: 1;
}

.pricing .package-card h4 sup {
  font-size: 18px;
  top: -13px;
}

.pricing .package-card h4 span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.pricing .package-card h4 .custom-price {
  display: inline-block;
  margin-top: 0;
  color: var(--accent-color);
  font-size: 30px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.pricing .package-card ul {
  text-align: left;
  padding: 10px 0 20px 0;
  margin: 0;
  flex: 1;
}

.pricing .package-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 13px;
  line-height: 1.45;
}

.pricing .package-card ul li i {
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1.1;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing .package-card .btn-wrap {
  padding: 10px 0 0 0;
}

.pricing .package-card .btn-buy {
  width: 100%;
  text-align: center;
}

.pricing .pricing-note {
  max-width: 850px;
  margin: 36px auto 0 auto;
  text-align: center;
}

.pricing .pricing-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 991px) {
  .pricing .package-card.recommended {
    transform: none;
  }

  .pricing .package-card.recommended:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 575px) {
  .pricing .package-card {
    padding: 30px 22px;
  }

  .pricing .pricing-description {
    min-height: auto;
  }

  .pricing .package-card h4 {
    font-size: 34px;
  }
}


/* ==============================================================
   Estúdio Órbita - Landing page final
   ============================================================== */

/* Branding */
.header .logo {
  gap: 12px;
}

.header .logo .logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}

.header .logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header .logo .logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header .logo small {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.header .cta-btn,
.header .cta-btn:focus {
  font-weight: 700;
}

.header {
  backdrop-filter: blur(10px);
}

.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.scrolled .header .logo .logo-name,
.scrolled .header .navmenu a,
.scrolled .header .navmenu a:focus {
  color: #1b1f24;
}

.scrolled .header .logo small {
  color: color-mix(in srgb, #1b1f24, transparent 35%);
}

.scrolled .mobile-nav-toggle {
  color: #1b1f24;
}

/* Hero comercial */
.hero:before {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.62) 45%, rgba(6, 6, 6, 0.78) 100%);
}

.hero .hero-content {
  max-width: 980px;
}

.hero .hero-eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 18%);
  border: 1px solid color-mix(in srgb, #fff, transparent 78%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero p {
  max-width: 860px;
  margin: 0 auto 28px auto;
  font-size: 19px;
  line-height: 1.7;
  color: color-mix(in srgb, #fff, transparent 16%);
}

.hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero .hero-btn-primary,
.hero .hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.hero .hero-btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 15px 35px rgba(24, 61, 105, 0.35);
}

.hero .hero-btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), white 10%);
  color: #fff;
  transform: translateY(-2px);
}

.hero .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero .hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Setores atendidos */
.sector-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.sector-card i {
  font-size: 34px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: inline-flex;
}

.sector-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.sector-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Portfólio com múltiplos cards */
.recent-posts article {
  display: flex;
  flex-direction: column;
}

.recent-posts .ra-actions {
  margin-top: auto;
}

/* Contact / form */
.contact .orbita-form select.form-control {
  min-height: 48px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background: var(--surface-color);
}

.contact .orbita-form select.form-control:focus {
  border-color: var(--accent-color);
  outline: 0;
}

.whatsapp-note {
  margin-top: 14px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  text-align: center;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 15px;
  bottom: 72px;
  z-index: 99999;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.whatsapp-float i {
  font-size: 26px;
  line-height: 1;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  background: #1fbd59;
}

/* Footer */
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer .footer-brand--logo-only {
  margin-bottom: 18px;
}

.footer .footer-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
}

.footer p {
  font-size: 15px;
  font-style: normal;
  max-width: 760px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 1199px) {
  .header .cta-btn {
    display: none;
  }

  .header .logo .logo-img {
    width: 46px;
    height: 46px;
  }

  .header .logo .logo-name {
    font-size: 18px;
  }

  .header .logo small {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 92vh;
  }

  .hero h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  .hero p {
    font-size: 17px;
  }

  .hero .hero-btn-primary,
  .hero .hero-btn-secondary {
    width: 100%;
    max-width: 340px;
  }

  .hero .hero-badges span {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 70px;
  }
}

/* ==============================================================
   Correções gerais de acabamento visual, alinhamento e conversão
   ============================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.section-title {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2:after {
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  font-size: 17px;
  line-height: 1.65;
}

.header .container {
  gap: 18px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navmenu > ul > li {
    padding-left: 9px;
    padding-right: 9px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 13px;
  }

  .header .logo .logo-img {
    width: 46px;
    height: 46px;
  }

  .header .logo .logo-name {
    font-size: 18px;
  }

  .header .logo small {
    font-size: 10px;
  }

  .header .cta-btn,
  .header .cta-btn:focus {
    padding: 8px 18px;
    font-size: 13px;
  }
}

.hero h1,
.hero h2 {
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.about .content p,
.about .col-lg-6 > p {
  font-size: 16px;
  line-height: 1.8;
}

.about ul li {
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 10px;
}

.about ul i {
  padding-right: 0;
  line-height: 1.35;
}

.services .service-item,
.sector-card,
.recent-posts article,
.pricing .package-card,
.process-card,
.faq .faq-container .faq-item,
.contact .php-email-form,
.contact .info-item {
  will-change: transform;
}

.services .service-item {
  padding: 42px 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
}

.services .service-item p {
  font-size: 15px;
  line-height: 1.65;
}

.call-to-action .cta-insight-card {
  min-height: 100%;
}

.stats .stats-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Processo */
.process {
  background: #ffffff;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 30px 24px;
  border-radius: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease-in-out;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-card i {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--accent-color);
  font-size: 28px;
}

.process-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 23%);
}

/* Portfólio */
.recent-posts article {
  border-radius: 22px;
}

.recent-posts .post-img {
  height: 240px;
}

.recent-posts .ra-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px 0;
}

.recent-posts .ra-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  background: color-mix(in srgb, var(--default-color), transparent 94%);
}

/* Pacotes */
.pricing .package-card.recommended,
.pricing .package-card.recommended:hover {
  transform: none;
}

.pricing .package-card.recommended {
  padding-top: 34px;
  box-shadow: 0 18px 42px rgba(24, 61, 105, 0.16);
}

.pricing .recommended-badge {
  top: 22px;
  white-space: nowrap;
}

.pricing .package-card h4 {
  min-height: 56px;
}

.pricing .package-card ul li {
  font-size: 14px;
}

.pricing .package-card .btn-buy {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */
.faq .container-fluid {
  max-width: 1320px;
}

.faq img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
}

.faq .faq-container .faq-item {
  border-radius: 18px;
}

.faq .faq-container .faq-item h3 {
  padding-right: 24px;
}

/* Contato */
.contact .info-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 18px;
  padding: 18px;
  margin-top: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.contact .info-item + .info-item {
  margin-top: 18px;
}

.contact .php-email-form {
  border-radius: 22px;
  padding: 28px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea,
.contact .orbita-form select.form-control {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}

.contact .php-email-form textarea {
  min-height: 150px;
}

.contact .php-email-form button[type=submit] {
  min-height: 48px;
  padding: 12px 34px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 61, 105, 0.22);
}

.whatsapp-note {
  margin-top: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
}

.footer .social-links a {
  width: 42px;
  height: 42px;
}

@media (max-width: 991px) {
  .faq img {
    min-height: 320px;
  }

  .contact .php-email-form {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 38px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  .hero h1,
  .hero h2 {
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: -0.3px;
  }

  .hero .hero-eyebrow {
    font-size: 11px;
    text-align: center;
  }

  .call-to-action .cta-insight-card,
  .process-card,
  .sector-card,
  .services .service-item,
  .pricing .package-card,
  .recent-posts article {
    border-radius: 18px;
  }

  .contact .info-item {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  section,
  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 70px;
  }

  .hero .hero-badges {
    gap: 8px;
  }

  .hero .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .recent-posts .post-img {
    height: 210px;
  }

  .pricing .package-card h4 {
    min-height: auto;
  }

  .contact .php-email-form {
    padding: 18px;
  }
}


/*--------------------------------------------------------------
# Correção geral de acabamento visual - Estúdio Órbita
--------------------------------------------------------------*/
.services .service-item {
  cursor: default;
}

.services .service-item h3 {
  color: var(--heading-color);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.call-to-action {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(135deg, #f7f9fc 0%, #ffffff 52%, #eef3f8 100%);
  overflow: hidden;
}

.call-to-action img,
.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(100%);
  transform: none;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 61, 105, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.96));
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action .cta-main {
  margin-bottom: 42px;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 61, 105, 0.10);
  box-shadow: 0 18px 55px rgba(18, 35, 55, 0.08);
}

.call-to-action .cta-eyebrow {
  color: #183d69;
  background: rgba(24, 61, 105, 0.08);
  border-color: rgba(24, 61, 105, 0.12);
}

.call-to-action h3 {
  max-width: 780px;
  color: #111827;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.call-to-action p {
  max-width: 900px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.72;
}

.call-to-action .cta-btn-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

.call-to-action .cta-btn {
  min-width: 300px;
  margin: 0;
  text-align: center;
  color: #ffffff;
  background: #183d69;
  box-shadow: 0 14px 30px rgba(24, 61, 105, 0.20);
}

.call-to-action .cta-btn:hover {
  color: #ffffff;
  background: #102d50;
}

.call-to-action .cta-link {
  color: #1b1f24;
  border-bottom: 1px solid rgba(27, 31, 36, 0.28);
}

.call-to-action .cta-link:hover {
  color: #183d69;
  border-color: #183d69;
}

.call-to-action .cta-insights {
  align-items: stretch;
}

.call-to-action .cta-insight-card {
  height: 100%;
  min-height: 270px;
  padding: 30px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 61, 105, 0.10);
  box-shadow: 0 14px 40px rgba(18, 35, 55, 0.08);
  backdrop-filter: none;
}

.call-to-action .cta-insight-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(24, 61, 105, 0.22);
  box-shadow: 0 20px 48px rgba(18, 35, 55, 0.12);
}

.call-to-action .cta-icon {
  width: 52px;
  height: 52px;
  color: #183d69;
  background: rgba(24, 61, 105, 0.09);
  border: 1px solid rgba(24, 61, 105, 0.12);
  margin-bottom: 18px;
}

.call-to-action .cta-insight-card span {
  display: none;
}

.call-to-action .cta-insight-card h4 {
  color: #111827;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.call-to-action .cta-insight-card p {
  color: #5b6573;
  font-size: 14.5px;
  line-height: 1.68;
}

.recent-posts article,
.services .service-item,
.sector-card,
.pricing .package-card,
.process-card,
.contact .info-item,
.contact .php-email-form,
.faq .faq-container .faq-item {
  overflow-wrap: break-word;
}

.pricing .package-card h4,
.pricing .package-card h3,
.recent-posts .title,
.services .service-item h3,
.sector-card h3,
.process-card h3 {
  hyphens: auto;
}

@media (max-width: 1199px) {
  .call-to-action .cta-main {
    text-align: center;
  }

  .call-to-action h3,
  .call-to-action p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-btn-container {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 72px 0;
  }

  .call-to-action .cta-main {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .call-to-action h3 {
    font-size: 30px;
  }

  .call-to-action p {
    font-size: 15.5px;
  }

  .call-to-action .cta-btn {
    width: 100%;
    min-width: unset;
    max-width: 360px;
  }

  .call-to-action .cta-insight-card {
    min-height: auto;
  }
}

/* ==============================================================
   Ajuste do cabeçalho: logo completa no menu (sem fundo)
   ============================================================== */
.header .logo {
  gap: 0;
  min-width: auto;
}

.header .logo img,
.header .logo .logo-img {
  width: auto;
  height: 56px;
  max-width: 100%;
  margin-right: 0;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  display: block;
}

.header .logo .logo-text,
.header .logo .logo-name,
.header .logo small {
  display: none !important;
}

@media (max-width: 1199px) {
  .header .logo img,
  .header .logo .logo-img {
    height: 42px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header .logo img,
  .header .logo .logo-img {
    height: 48px;
  }
}


/* ==============================================================
   Hero inspirado na referência enviada
   ============================================================== */
.hero {
  min-height: 100vh;
  padding: 120px 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.9) brightness(0.72);
}

.hero:before {
  content: none;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.58) 0%, rgba(7, 12, 18, 0.44) 26%, rgba(7, 12, 18, 0.64) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(8, 12, 18, 0.58) 0%, rgba(8, 12, 18, 0.14) 24%, rgba(8, 12, 18, 0.14) 76%, rgba(8, 12, 18, 0.58) 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  padding-inline: 12px;
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 72, 132, 0.95), rgba(17, 56, 104, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 0 auto 26px;
  max-width: 1120px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.18);
}

.hero p {
  margin: 0 auto 38px;
  max-width: 1120px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero .hero-btn-primary,
.hero .hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 292px;
  min-height: 68px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.hero .hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1c58a2 0%, #174a8a 100%);
  box-shadow: 0 16px 40px rgba(16, 53, 102, 0.38);
}

.hero .hero-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(16, 53, 102, 0.48);
}

.hero .hero-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.hero .hero-btn-secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero .hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero .hero-badges span i {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .hero {
    padding-top: 110px;
  }

  .hero h1,
  .hero h2 {
    max-width: 940px;
  }

  .hero p {
    max-width: 980px;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 118px 0 64px;
  }

  .hero .hero-eyebrow {
    margin-bottom: 22px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(38px, 7vw, 58px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 30px;
  }

  .hero .hero-btn-primary,
  .hero .hero-btn-secondary {
    min-width: 260px;
    min-height: 62px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 104px 0 56px;
  }

  .hero .hero-content {
    padding-inline: 18px;
  }

  .hero .hero-eyebrow {
    min-height: 42px;
    padding: 9px 18px;
    font-size: 12px;
    letter-spacing: 0.75px;
    margin-bottom: 18px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .hero .hero-actions {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero .hero-btn-primary,
  .hero .hero-btn-secondary {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    min-height: 58px;
    padding: 16px 24px;
    font-size: 16px;
  }

  .hero .hero-badges {
    gap: 10px;
  }

  .hero .hero-badges span {
    width: 100%;
    max-width: 360px;
    min-height: 50px;
    font-size: 14px;
    padding: 10px 16px;
  }
}


/* ==============================================================
   Correção do menu editorial Órbita - scroll
   ============================================================== */
.header.orbita-editorial-header,
body.scrolled .header.orbita-editorial-header {
  --background-color: transparent !important;
  --default-color: #171717 !important;
  --heading-color: #171717 !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 32px 0 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 10000;
}

.header.orbita-editorial-header .container-fluid {
  width: 100%;
  padding-left: clamp(28px, 5vw, 96px);
  padding-right: clamp(28px, 5vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orbita-editorial-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: clamp(108px, 8vw, 150px);
  height: 30px;
  z-index: 10002;
}

.orbita-editorial-logo-img {
  position: absolute;
  inset: 0 auto auto 0;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  opacity: 1;
  filter: none !important;
}

.orbita-logo-black,
body.scrolled .orbita-logo-black,
body.mobile-nav-active .orbita-logo-black {
  opacity: 1 !important;
  visibility: visible !important;
}

.orbita-logo-white,
body.scrolled .orbita-logo-white,
body.mobile-nav-active .orbita-logo-white {
  opacity: 0 !important;
  visibility: hidden !important;
}

.orbita-editorial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10002;
}

.orbita-editorial-nav > ul {
  display: none !important;
}

.orbita-menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #171717 !important;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  z-index: 10003;
}

.orbita-menu-label {
  display: inline-block !important;
  color: #171717 !important;
  font-family: var(--nav-font), Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.orbita-menu-toggle .mobile-nav-toggle,
body.scrolled .orbita-menu-toggle .mobile-nav-toggle,
body.mobile-nav-active .orbita-menu-toggle .mobile-nav-toggle {
  position: static !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  color: #171717 !important;
  background: transparent !important;
  font-size: 30px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.scrolled .orbita-menu-label,
body.mobile-nav-active .orbita-menu-label {
  color: #171717 !important;
}

body.scrolled .orbita-editorial-header .container-fluid,
body.scrolled .orbita-editorial-logo,
body.scrolled .orbita-menu-toggle {
  opacity: 1 !important;
  visibility: visible !important;
}

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active .orbita-editorial-nav {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 245, 245, 0.98) !important;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 108px clamp(28px, 5vw, 96px) 40px;
  z-index: 10001;
}

body.mobile-nav-active .orbita-editorial-nav > ul {
  display: flex !important;
  position: static !important;
  inset: auto !important;
  width: min(420px, 100%);
  height: auto;
  max-height: calc(100vh - 150px);
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow-y: auto;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li {
  padding: 0 !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus {
  color: #171717 !important;
  font-family: var(--heading-font), Arial, sans-serif;
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  padding: 0 !important;
  text-transform: uppercase;
}

body.mobile-nav-active .orbita-menu-toggle {
  position: fixed !important;
  top: 32px;
  right: clamp(28px, 5vw, 96px);
  z-index: 10004;
}

body.mobile-nav-active .orbita-editorial-logo {
  position: fixed !important;
  top: 32px;
  left: clamp(28px, 5vw, 96px);
  z-index: 10004;
}

@media (max-width: 767px) {
  .header.orbita-editorial-header,
  body.scrolled .header.orbita-editorial-header {
    padding-top: 24px !important;
  }

  .header.orbita-editorial-header .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .orbita-editorial-logo {
    width: 104px;
  }

  .orbita-menu-toggle {
    gap: 14px;
  }

  .orbita-menu-label {
    font-size: 15px;
  }

  .orbita-menu-toggle .mobile-nav-toggle,
  body.scrolled .orbita-menu-toggle .mobile-nav-toggle,
  body.mobile-nav-active .orbita-menu-toggle .mobile-nav-toggle {
    font-size: 28px !important;
  }

  body.mobile-nav-active .orbita-editorial-nav {
    padding: 96px 24px 36px;
  }

  body.mobile-nav-active .orbita-menu-toggle {
    top: 24px;
    right: 24px;
  }

  body.mobile-nav-active .orbita-editorial-logo {
    top: 24px;
    left: 24px;
  }
}

/* ==============================================================
   Correção final: hero editorial preto + menu/logo pretos
   ============================================================== */
.header.orbita-editorial-header,
body.scrolled .header.orbita-editorial-header,
body.mobile-nav-active .header.orbita-editorial-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.orbita-logo-black,
body.scrolled .orbita-logo-black,
body.mobile-nav-active .orbita-logo-black {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.orbita-logo-white,
body.scrolled .orbita-logo-white,
body.mobile-nav-active .orbita-logo-white {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

.orbita-menu-toggle,
.orbita-menu-label,
.orbita-menu-toggle .mobile-nav-toggle,
body.scrolled .orbita-menu-toggle,
body.scrolled .orbita-menu-label,
body.scrolled .orbita-menu-toggle .mobile-nav-toggle,
body.mobile-nav-active .orbita-menu-toggle,
body.mobile-nav-active .orbita-menu-label,
body.mobile-nav-active .orbita-menu-toggle .mobile-nav-toggle {
  color: #171717 !important;
}

.hero.hero-orbita-editorial {
  width: 100%;
  min-height: 100vh;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: #f3f3f3 !important;
  color: #171717 !important;
}

.hero.hero-orbita-editorial::before,
.hero.hero-orbita-editorial::after {
  content: none !important;
  display: none !important;
}

.hero.hero-orbita-editorial .hero-editorial-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding-left: clamp(28px, 5vw, 96px);
  padding-right: clamp(28px, 5vw, 96px);
  padding-top: 76px;
}

.hero.hero-orbita-editorial .hero-title-block {
  width: 100%;
}

.hero.hero-orbita-editorial h1 {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  color: #171717 !important;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(82px, 9vw, 170px) !important;
  line-height: 0.94 !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
  text-transform: uppercase;
  text-shadow: none !important;
}

.hero.hero-orbita-editorial h1 span {
  display: block;
  color: #171717 !important;
  font-weight: 400 !important;
  text-shadow: none !important;
}

.hero.hero-orbita-editorial h1 .title-shift {
  margin-left: clamp(260px, 26vw, 560px);
}

.hero.hero-orbita-editorial .hero-editorial-description {
  margin: 34px 0 0 0 !important;
  max-width: 360px !important;
  color: #171717 !important;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(16px, 1vw, 19px) !important;
  line-height: 1.38 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  text-shadow: none !important;
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    padding-top: 70px;
  }

  .hero.hero-orbita-editorial h1 {
    font-size: clamp(60px, 13vw, 120px) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: clamp(120px, 22vw, 260px);
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial {
    min-height: 92vh;
  }

  .hero.hero-orbita-editorial .hero-editorial-content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 48px;
  }

  .hero.hero-orbita-editorial h1 {
    font-size: clamp(46px, 15vw, 76px) !important;
    line-height: 0.98 !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: 0;
  }

  .hero.hero-orbita-editorial .hero-editorial-description {
    margin-top: 28px !important;
    font-size: 14px !important;
    max-width: 300px !important;
  }
}

/* ==============================================================
   Menu aberto — fundo preto e navegação centralizada
   ============================================================== */
body.mobile-nav-active {
  overflow: hidden !important;
}

body.mobile-nav-active .header.orbita-editorial-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 10005 !important;
}

body.mobile-nav-active .orbita-editorial-logo {
  position: fixed !important;
  top: 32px !important;
  left: clamp(28px, 5vw, 96px) !important;
  z-index: 10006 !important;
}

body.mobile-nav-active .orbita-logo-black {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

body.mobile-nav-active .orbita-logo-white {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body.mobile-nav-active .orbita-editorial-nav {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  padding: 0 !important;
  background: #111111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10004 !important;
  overflow: hidden !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  width: 100% !important;
  height: auto !important;
  max-height: calc(100vh - 180px) !important;
  margin: 0 !important;
  padding: 0 clamp(24px, 5vw, 96px) !important;
  list-style: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: clamp(4px, 1vh, 10px) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(34px, 5.15vw, 92px) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  background: transparent !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a::before {
  display: none !important;
  content: none !important;
}

body.mobile-nav-active .orbita-menu-toggle {
  position: fixed !important;
  top: 32px !important;
  right: clamp(28px, 5vw, 96px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  z-index: 10006 !important;
  color: #ffffff !important;
}

body.mobile-nav-active .orbita-menu-label,
body.mobile-nav-active .orbita-menu-toggle .mobile-nav-toggle {
  color: #ffffff !important;
}

body.mobile-nav-active .orbita-menu-toggle .mobile-nav-toggle {
  position: static !important;
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: transparent !important;
}

@media (max-width: 767px) {
  body.mobile-nav-active .orbita-editorial-logo {
    top: 24px !important;
    left: 24px !important;
  }

  body.mobile-nav-active .orbita-menu-toggle {
    top: 24px !important;
    right: 24px !important;
    gap: 14px !important;
  }

  body.mobile-nav-active .orbita-editorial-nav > ul {
    max-height: calc(100vh - 150px) !important;
    padding: 0 24px !important;
    gap: 6px !important;
  }

  body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
    font-size: clamp(30px, 10vw, 56px) !important;
    line-height: 1.04 !important;
  }
}

/* ==============================================================
   Ajuste final — menu aberto menor + hover editorial
   ============================================================== */
body.mobile-nav-active .orbita-editorial-nav > ul {
  gap: clamp(10px, 1.25vh, 18px) !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
  position: relative !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  font-size: clamp(14px, 2.06vw, 37px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.045em !important;
  color: #ffffff !important;
  opacity: 1 !important;
  transition:
    color 0.28s ease,
    opacity 0.28s ease,
    letter-spacing 0.28s ease,
    transform 0.28s ease !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -6px !important;
  width: 0 !important;
  height: 1px !important;
  background: #ffffff !important;
  transform: translateX(-50%) !important;
  opacity: 0 !important;
  transition: width 0.28s ease, opacity 0.28s ease !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible {
  color: #ffffff !important;
  opacity: 0.72 !important;
  letter-spacing: 0.12em !important;
  transform: translateY(-2px) !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover::after,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible::after {
  width: 72% !important;
  opacity: 0.72 !important;
}

@media (max-width: 767px) {
  body.mobile-nav-active .orbita-editorial-nav > ul {
    gap: 12px !important;
  }

  body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
    font-size: clamp(18px, 5vw, 28px) !important;
    line-height: 1.18 !important;
  }
}


/* ==============================================================
   Correção hover do menu: mantém tamanho fixo em todos os itens
   ============================================================== */
body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
  font-size: clamp(14px, 2.06vw, 37px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.045em !important;
  transform: none !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible {
  opacity: 0.72 !important;
  letter-spacing: 0.085em !important;
  transform: translateY(-1px) !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover::after,
body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible::after {
  width: 100% !important;
  opacity: 0.72 !important;
}

@media (max-width: 767px) {
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:hover,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a:focus-visible,
  body.mobile-nav-active .orbita-editorial-nav > ul > li > a.active {
    font-size: clamp(18px, 5vw, 28px) !important;
    line-height: 1.18 !important;
  }
}

/* ==============================================================
   Correção definitiva do sublinhado do menu aberto
   ============================================================== */
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:hover,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus-visible,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a.active {
  position: relative !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(14px, 2.06vw, 37px) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.045em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  background: transparent !important;
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.28s ease, letter-spacing 0.28s ease, color 0.28s ease !important;
}

html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a::before,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:hover::before,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus::before,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus-visible::before,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a.active::before {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a::after,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus::after,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a.active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -6px !important;
  width: 0 !important;
  max-width: 100% !important;
  height: 1px !important;
  background: #ffffff !important;
  transform: translateX(-50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: width 0.28s ease, opacity 0.28s ease !important;
}

html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:hover,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus-visible {
  opacity: 0.72 !important;
  letter-spacing: 0.075em !important;
  transform: none !important;
}

html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:hover::after,
html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus-visible::after {
  width: 100% !important;
  max-width: 100% !important;
  opacity: 0.72 !important;
}

@media (max-width: 767px) {
  html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a,
  html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus,
  html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:hover,
  html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a:focus-visible,
  html body.mobile-nav-active nav#navmenu.orbita-editorial-nav > ul > li > a.active {
    font-size: clamp(18px, 5vw, 28px) !important;
    line-height: 1.18 !important;
  }
}


/* ==============================================================
   Efeito sutil ao abrir o menu
   ============================================================== */
@keyframes orbitaMenuOverlayIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes orbitaMenuListIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbitaMenuItemIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitaMenuTopIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.mobile-nav-active .orbita-editorial-nav {
  animation: orbitaMenuOverlayIn 0.32s ease-out both !important;
}

body.mobile-nav-active .orbita-editorial-logo,
body.mobile-nav-active .orbita-menu-toggle {
  animation: orbitaMenuTopIn 0.34s ease-out both !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul {
  animation: orbitaMenuListIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li {
  opacity: 0;
  animation: orbitaMenuItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(1) { animation-delay: 0.08s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(2) { animation-delay: 0.11s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(3) { animation-delay: 0.14s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(4) { animation-delay: 0.17s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(5) { animation-delay: 0.20s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(6) { animation-delay: 0.23s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(7) { animation-delay: 0.26s !important; }
body.mobile-nav-active .orbita-editorial-nav > ul > li:nth-child(8) { animation-delay: 0.29s !important; }

@media (prefers-reduced-motion: reduce) {
  body.mobile-nav-active .orbita-editorial-nav,
  body.mobile-nav-active .orbita-editorial-logo,
  body.mobile-nav-active .orbita-menu-toggle,
  body.mobile-nav-active .orbita-editorial-nav > ul,
  body.mobile-nav-active .orbita-editorial-nav > ul > li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==============================================================
   Vídeo automático no hero
   ============================================================== */
.hero.hero-orbita-editorial {
  isolation: isolate;
  background: #f3f3f3 !important;
}

.hero.hero-orbita-editorial .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #f3f3f3;
}

.hero.hero-orbita-editorial .hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.7778vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero.hero-orbita-editorial .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 243, 243, 0.80) 0%, rgba(243, 243, 243, 0.56) 42%, rgba(243, 243, 243, 0.74) 100%),
    linear-gradient(180deg, rgba(243, 243, 243, 0.52) 0%, rgba(243, 243, 243, 0.28) 50%, rgba(243, 243, 243, 0.62) 100%);
}

.hero.hero-orbita-editorial .hero-editorial-content {
  z-index: 2;
}

.hero.hero-orbita-editorial h1,
.hero.hero-orbita-editorial h1 span,
.hero.hero-orbita-editorial .hero-editorial-description {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(243, 243, 243, 0.84) 0%, rgba(243, 243, 243, 0.62) 50%, rgba(243, 243, 243, 0.78) 100%),
      linear-gradient(180deg, rgba(243, 243, 243, 0.60) 0%, rgba(243, 243, 243, 0.32) 50%, rgba(243, 243, 243, 0.72) 100%);
  }
}

/* ==============================================================
   Ajuste do vídeo YouTube no hero — evita erro 153 em arquivo local
   ============================================================== */
.hero.hero-orbita-editorial .hero-video-bg {
  background-color: #f3f3f3 !important;
  background-image: url("https://i.ytimg.com/vi/zX5vnnRFM_o/maxresdefault.jpg");
  background-size: cover;
  background-position: center;
}

.hero.hero-orbita-editorial .hero-video-bg iframe {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero.hero-orbita-editorial.hero-video-ready .hero-video-bg iframe {
  opacity: 1;
}

.hero.hero-orbita-editorial.hero-video-local .hero-video-bg iframe {
  display: none !important;
}

.hero.hero-orbita-editorial.hero-video-local .hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 243, 243, 0.12);
}

/* ==============================================================
   Correção do texto do hero — descrição na posição da referência
   ============================================================== */
.hero.hero-orbita-editorial .hero-title-block {
  position: relative !important;
  width: 100% !important;
}

.hero.hero-orbita-editorial h1 {
  margin: 0 !important;
  padding: 0 !important;
}

.hero.hero-orbita-editorial h1 .title-shift {
  display: block !important;
  margin-left: clamp(260px, 26vw, 560px) !important;
}

.hero.hero-orbita-editorial .hero-editorial-description {
  position: absolute !important;
  left: 0 !important;
  top: calc(clamp(82px, 9vw, 170px) * 2.08) !important;
  margin: 0 !important;
  max-width: clamp(270px, 22vw, 390px) !important;
  z-index: 3 !important;
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: clamp(120px, 22vw, 260px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-description {
    top: calc(clamp(60px, 13vw, 120px) * 2.08) !important;
    max-width: 320px !important;
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-description {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin-top: 28px !important;
    max-width: 300px !important;
  }
}

/* ==============================================================
   Hero com realidade virtual 360º
   ============================================================== */
.hero.hero-orbita-editorial {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #f3f3f1;
}

.hero.hero-orbita-editorial .hero-rv-background,
.hero.hero-orbita-editorial .hero-rv-background iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-orbita-editorial .hero-rv-background {
  z-index: 0;
  overflow: hidden;
}

.hero.hero-orbita-editorial .hero-rv-background iframe {
  border: 0;
  background: #06070a;
}

.hero.hero-orbita-editorial .hero-rv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.36) 100%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 38%);
}

.hero.hero-orbita-editorial .hero-editorial-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.hero.hero-orbita-editorial .hero-title-block {
  max-width: 920px;
}

.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.86);
  color: #000000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 16px 24px;
  min-height: 62px;
  width: min(320px, 100%);
  font-family: var(--heading-font);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-active {
  background: rgba(255, 255, 255, 0.94);
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-error {
  border-color: rgba(145, 20, 20, 0.28);
  background: rgba(255, 244, 244, 0.96);
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-bottom: 118px;
  }

  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    justify-content: flex-start;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(360px, 100%);
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    padding-bottom: 112px;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    min-height: 56px;
    padding: 14px 18px;
    font-size: 13px;
  }
}

/* ==============================================================
   Ajustes finais do hero RV: WhatsApp, botão e overlay
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0) 38%) !important;
}

.hero.hero-orbita-editorial .hero-editorial-content {
  grid-template-columns: 1fr !important;
}

.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  position: absolute !important;
  right: 15px !important;
  bottom: 72px !important;
  z-index: 8 !important;
  justify-content: flex-end !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  width: min(420px, calc(100vw - 32px)) !important;
  min-height: 58px !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  background: rgba(255, 255, 255, 0.90) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
}

.whatsapp-float {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
}

.whatsapp-float.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.whatsapp-float.active:hover {
  transform: translateY(-3px) !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    right: 14px !important;
    bottom: 76px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(330px, calc(100vw - 28px)) !important;
    min-height: 54px !important;
    padding: 13px 18px !important;
    font-size: 13px !important;
  }
}

/* ==============================================================
   Correção de clique: controles da câmera dentro da RV
   ============================================================== */
.hero.hero-orbita-editorial .hero-editorial-content {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-title-block,
.hero.hero-orbita-editorial .hero-title-block * {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-cta-wrap,
.hero.hero-orbita-editorial .hero-rv-activate-btn {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-background,
.hero.hero-orbita-editorial .hero-rv-background iframe {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-overlay {
  pointer-events: none !important;
}

/* ==============================================================
   Ajustes de cor do hero RV
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 38%) !important;
}

.header.orbita-editorial-header .orbita-logo-black {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

.header.orbita-editorial-header .orbita-logo-white {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.header.orbita-editorial-header .orbita-menu-label,
.header.orbita-editorial-header .mobile-nav-toggle,
.header.orbita-editorial-header .orbita-editorial-nav > ul > li > a,
.header.orbita-editorial-header .orbita-editorial-nav > ul > li > a.active {
  color: #ffffff !important;
}

.hero.hero-orbita-editorial h1,
.hero.hero-orbita-editorial h1 span,
.hero.hero-orbita-editorial .hero-editorial-description {
  color: #ffffff !important;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  color: #ffffff !important;
  background: rgba(11, 14, 22, 0.44) !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn:hover,
.hero.hero-orbita-editorial .hero-rv-activate-btn.is-active {
  color: #ffffff !important;
  background: rgba(18, 22, 34, 0.56) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-error {
  color: #ffffff !important;
  background: rgba(86, 24, 24, 0.52) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
}

/* ==============================================================
   Sequência demonstrativa acima do botão da câmera
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 14px !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  width: min(320px, calc(100vw - 32px));
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  margin-top: 8px;
  text-align: center;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots span.active {
  background: rgba(255, 255, 255, 0.96);
  transform: scale(1.18);
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-demo {
    width: min(250px, calc(100vw - 28px));
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 14px;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 12px;
  }
}
/* ==============================================================
   Ajuste final da prévia dos gestos acima do botão
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  position: absolute !important;
  right: 18px !important;
  bottom: 72px !important;
  z-index: 8 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  width: min(245px, calc(100vw - 32px)) !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: block !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: 100% !important;
  max-width: 245px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: none !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  margin-top: 6px !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  display: block !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 14px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 3px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  line-height: 1.32 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  order: 3 !important;
  margin-top: 8px !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 4 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  margin-top: 2px !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    right: 14px !important;
    bottom: 76px !important;
    width: min(205px, calc(100vw - 28px)) !important;
    gap: 8px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    max-width: 205px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 11px !important;
  }
}

/* ==============================================================
   Botão refinado de ativação da câmera
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 4 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  margin-top: 6px !important;
  padding: 14px 16px !important;
  min-height: 86px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: linear-gradient(135deg, rgba(15, 18, 28, 0.76) 0%, rgba(37, 42, 58, 0.60) 100%) !important;
  backdrop-filter: blur(18px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 18px !important;
  align-items: center !important;
  column-gap: 12px !important;
  text-align: left !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  background: linear-gradient(135deg, rgba(20, 23, 34, 0.82) 0%, rgba(44, 49, 69, 0.66) 100%) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  font-size: 18px;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__title {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.25;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__arrow {
  align-self: center;
  justify-self: end;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-active {
  background: linear-gradient(135deg, rgba(27, 34, 51, 0.82) 0%, rgba(41, 52, 76, 0.66) 100%) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn.is-error {
  background: linear-gradient(135deg, rgba(66, 24, 24, 0.82) 0%, rgba(99, 35, 35, 0.66) 100%) !important;
  border-color: rgba(255,255,255,0.20) !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    min-height: 82px !important;
    padding: 13px 14px !important;
    border-radius: 24px !important;
    grid-template-columns: 38px minmax(0, 1fr) 16px !important;
    column-gap: 10px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 16px;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__title {
    font-size: 17px;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__subtitle {
    font-size: 11px;
  }
}

/* ==============================================================
   Correção final: ordem imagem > legenda > botão e CTA compacto
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  right: 18px !important;
  bottom: 58px !important;
  width: min(270px, calc(100vw - 36px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: 150px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  overflow: visible !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  width: min(220px, 100%) !important;
  max-width: 220px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  font-size: 14px !important;
  line-height: 1.14 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 3px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 2 !important;
  width: min(270px, 100%) !important;
  min-height: 52px !important;
  margin: 12px 0 0 !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
  color: #ffffff !important;
  background: rgba(18, 21, 31, 0.58) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn:hover {
  transform: translateY(-1px) !important;
  background: rgba(24, 28, 40, 0.68) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  font-size: 14px !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 190px !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.22 !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__content,
.hero.hero-orbita-editorial .hero-rv-activate-btn__eyebrow,
.hero.hero-orbita-editorial .hero-rv-activate-btn__title,
.hero.hero-orbita-editorial .hero-rv-activate-btn__subtitle,
.hero.hero-orbita-editorial .hero-rv-activate-btn__arrow {
  display: none !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    right: 14px !important;
    bottom: 64px !important;
    width: min(220px, calc(100vw - 28px)) !important;
    gap: 8px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame {
    height: 130px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: min(190px, 100%) !important;
    max-width: 190px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 11px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(220px, 100%) !important;
    min-height: 50px !important;
    padding: 9px 14px !important;
    gap: 8px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 160px !important;
    font-size: 12px !important;
  }
}

/* ==============================================================
   Ajuste definitivo: imagem > legenda > botão centralizados
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  right: 18px !important;
  bottom: 62px !important;
  width: min(252px, calc(100vw - 36px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: min(210px, 100%) !important;
  max-width: 210px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  margin: 0 auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  position: static !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong,
.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 4px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 2 !important;
  width: min(238px, 100%) !important;
  min-height: 56px !important;
  margin: 18px auto 0 !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  text-align: center !important;
  background: rgba(18, 21, 31, 0.56) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.12) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 168px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.24 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    right: 14px !important;
    bottom: 64px !important;
    width: min(220px, calc(100vw - 28px)) !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: min(188px, 100%) !important;
    max-width: 188px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption {
    margin-top: 14px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(208px, 100%) !important;
    min-height: 54px !important;
    margin-top: 16px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 148px !important;
    font-size: 12px !important;
  }
}

/* ==============================================================
   CORREÇÃO FINAL — ordem rígida: imagem > legenda > botão
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  position: absolute !important;
  right: 18px !important;
  bottom: 58px !important;
  z-index: 8 !important;
  width: min(270px, calc(100vw - 36px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  gap: 0 !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  background: transparent !important;
  border-radius: 0 !important;
  position: relative !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: 250px !important;
  max-width: 250px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  position: static !important;
  inset: auto !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14)) !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  width: 100% !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong,
.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 4px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 2 !important;
  width: min(246px, 100%) !important;
  min-height: 56px !important;
  margin: 0 auto !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  text-align: center !important;
  background: rgba(18, 21, 31, 0.58) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.12) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 170px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.24 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    right: 14px !important;
    bottom: 58px !important;
    width: min(230px, calc(100vw - 28px)) !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame {
    height: 205px !important;
    min-height: 205px !important;
    max-height: 205px !important;
    margin-bottom: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: 215px !important;
    max-width: 215px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption {
    margin-bottom: 16px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 11px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(218px, 100%) !important;
    min-height: 54px !important;
    padding: 9px 12px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 154px !important;
    font-size: 12px !important;
  }
}

/* ==============================================================
   Ajuste rígido final — imagem > legenda > botão com espaçamentos iguais
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  --hero-rv-block-gap: 18px;
  position: absolute !important;
  right: 18px !important;
  bottom: 58px !important;
  z-index: 8 !important;
  width: min(270px, calc(100vw - 36px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  gap: 0 !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  display: contents !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  margin: 0 0 var(--hero-rv-block-gap) 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  position: relative !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: 250px !important;
  max-width: 250px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  position: static !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14)) !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  width: 100% !important;
  margin: 0 0 var(--hero-rv-block-gap) 0 !important;
  padding: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong,
.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin: 4px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 3 !important;
  width: min(246px, 100%) !important;
  min-height: 56px !important;
  margin: 0 auto !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 172px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.24 !important;
  font-weight: 600 !important;
  text-align: center !important;
  white-space: normal !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    --hero-rv-block-gap: 16px;
    right: 14px !important;
    bottom: 58px !important;
    width: min(230px, calc(100vw - 28px)) !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame {
    height: 205px !important;
    min-height: 205px !important;
    max-height: 205px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: 215px !important;
    max-width: 215px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 11px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(218px, 100%) !important;
    min-height: 54px !important;
    padding: 9px 12px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 156px !important;
    font-size: 12px !important;
  }
}

/* ==============================================================
   Ajuste definitivo — espaçamentos iguais no demonstrativo RV
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  --hero-rv-equal-gap: 18px;
  position: absolute !important;
  right: 22px !important;
  bottom: 56px !important;
  z-index: 8 !important;
  width: min(270px, calc(100vw - 44px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: var(--hero-rv-equal-gap) !important;
  text-align: center !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--hero-rv-equal-gap) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  position: static !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: min(250px, 100%) !important;
  max-width: 250px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  position: static !important;
  transform: none !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14)) !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong,
.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  display: block !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 2 !important;
  width: min(268px, 100%) !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 205px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
  text-align: center !important;
  white-space: normal !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    --hero-rv-equal-gap: 16px;
    right: 14px !important;
    bottom: 56px !important;
    width: min(250px, calc(100vw - 28px)) !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: min(228px, 100%) !important;
    max-width: 228px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 11px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    width: min(246px, 100%) !important;
    min-height: 54px !important;
    padding: 9px 12px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 186px !important;
    font-size: 12px !important;
  }
}

/* ==============================================================
   Ajuste final rígido — demonstrativo 50% + botão compacto
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-cta-wrap {
  --hero-rv-equal-gap: 10px !important;
  position: absolute !important;
  right: 22px !important;
  bottom: 58px !important;
  z-index: 8 !important;
  width: 205px !important;
  max-width: calc(100vw - 44px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: var(--hero-rv-equal-gap) !important;
  text-align: center !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-demo {
  order: 1 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: var(--hero-rv-equal-gap) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame {
  order: 1 !important;
  width: 125px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  position: static !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-frame img {
  display: block !important;
  width: 125px !important;
  max-width: 125px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  position: static !important;
  transform: none !important;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14)) !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption {
  order: 2 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong,
.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  display: block !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption strong {
  margin-top: 0 !important;
  margin-bottom: 3px !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-caption p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 10.5px !important;
  line-height: 1.25 !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-dots {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn {
  order: 2 !important;
  width: auto !important;
  min-width: 176px !important;
  max-width: 196px !important;
  min-height: 42px !important;
  margin: 0 auto !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  text-align: center !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
  flex: 0 0 auto !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  display: inline-block !important;
  max-width: 132px !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  line-height: 1.18 !important;
  font-weight: 600 !important;
  text-align: center !important;
  white-space: normal !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-rv-cta-wrap {
    --hero-rv-equal-gap: 10px !important;
    right: 14px !important;
    bottom: 58px !important;
    width: 190px !important;
    max-width: calc(100vw - 28px) !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-frame,
  .hero.hero-orbita-editorial .hero-rv-demo-frame img {
    width: 114px !important;
    max-width: 114px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption strong {
    font-size: 11.5px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-caption p {
    font-size: 10px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn {
    min-width: 168px !important;
    max-width: 184px !important;
    min-height: 40px !important;
    padding: 6px 10px !important;
    gap: 7px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 11px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-activate-btn__label {
    max-width: 126px !important;
    font-size: 11px !important;
    line-height: 1.16 !important;
  }
}

/* ==============================================================
   Overlay mais escuro antes da câmera e mais claro após ativação
   ============================================================== */
body:not(.hero-rv-camera-active) .hero.hero-orbita-editorial .hero-rv-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 38%) !important;
  transition: background 0.45s ease, opacity 0.45s ease;
}

body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0) 38%) !important;
  transition: background 0.45s ease, opacity 0.45s ease;
}

/* ==============================================================
   Alinhamento fino do texto menor com ORBITA/ESTUDIO
   ============================================================== */
.hero.hero-orbita-editorial .hero-editorial-description {
  left: clamp(8px, 0.55vw, 12px) !important;
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-editorial-description {
    left: auto !important;
  }
}

/* ==============================================================
   Oculta a prévia do hero quando a câmera está ativa
   ============================================================== */
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-demo,
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-cta-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}



/* ==============================================================
   Override final — ao abrir a câmera, some apenas o texto do hero
   ============================================================== */
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-title-block,
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-cta-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* ==============================================================
   Hero 10/10 — hierarquia, conversão e público-alvo
   ============================================================== */
.hero.hero-orbita-editorial .hero-title-block {
  max-width: min(760px, 58vw) !important;
}

.hero.hero-orbita-editorial h1 {
  font-size: clamp(56px, 7.6vw, 126px) !important;
  line-height: 0.82 !important;
  letter-spacing: -0.075em !important;
  margin-bottom: clamp(18px, 2.4vw, 34px) !important;
}

.hero.hero-orbita-editorial .hero-editorial-headline {
  position: relative !important;
  left: clamp(8px, 0.55vw, 12px) !important;
  max-width: 560px !important;
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-family: var(--heading-font) !important;
  font-size: clamp(24px, 2.2vw, 38px) !important;
  line-height: 1.03 !important;
  font-weight: 650 !important;
  letter-spacing: -0.035em !important;
  text-transform: none !important;
  text-shadow: 0 4px 24px rgba(0,0,0,.34) !important;
}

.hero.hero-orbita-editorial .hero-editorial-description {
  position: relative !important;
  left: clamp(8px, 0.55vw, 12px) !important;
  max-width: 500px !important;
  margin: 0 0 18px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(13px, 1.05vw, 16px) !important;
  line-height: 1.48 !important;
  font-weight: 400 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.28) !important;
}

.hero.hero-orbita-editorial .hero-niche-tags {
  position: relative !important;
  left: clamp(8px, 0.55vw, 12px) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 0 20px !important;
  max-width: 540px !important;
}

.hero.hero-orbita-editorial .hero-niche-tags span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 7px 13px !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.045) !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
}

.hero.hero-orbita-editorial .hero-actions {
  position: relative !important;
  left: clamp(8px, 0.55vw, 12px) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
}

.hero.hero-orbita-editorial .hero-action {
  min-height: 42px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease !important;
}

.hero.hero-orbita-editorial .hero-action:hover {
  transform: translateY(-1px) !important;
}

.hero.hero-orbita-editorial .hero-action-primary {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.94) !important;
  color: #141823 !important;
  box-shadow: 0 16px 30px rgba(0,0,0,.18) !important;
}

.hero.hero-orbita-editorial .hero-action-secondary {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.hero.hero-orbita-editorial .hero-rv-demo-eyebrow {
  order: 0 !important;
  width: 100% !important;
  margin: 0 0 4px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .20em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-shadow: 0 3px 16px rgba(0,0,0,.42) !important;
}

.hero.hero-orbita-editorial .hero-rv-activate-btn__label {
  max-width: 148px !important;
}

body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-title-block,
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-cta-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(720px, 78vw) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline,
  .hero.hero-orbita-editorial .hero-editorial-description,
  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    left: auto !important;
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial h1 {
    font-size: clamp(48px, 16vw, 74px) !important;
  }

  .hero.hero-orbita-editorial .hero-title-block {
    max-width: calc(100vw - 36px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: 330px !important;
    font-size: clamp(21px, 7vw, 28px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-description {
    max-width: 330px !important;
    font-size: 13px !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    gap: 6px !important;
    max-width: 330px !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags span {
    min-height: 28px !important;
    padding: 6px 10px !important;
    font-size: 9.5px !important;
    letter-spacing: .09em !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    max-width: 330px !important;
  }

  .hero.hero-orbita-editorial .hero-action {
    min-height: 38px !important;
    padding: 10px 14px !important;
    font-size: 10.5px !important;
  }

  .hero.hero-orbita-editorial .hero-rv-demo-eyebrow {
    font-size: 9px !important;
    letter-spacing: .16em !important;
  }
}


/* ==============================================================
   Hero 10/10 — refinamento de organização final
   ============================================================== */
.hero.hero-orbita-editorial .hero-title-block {
  position: relative !important;
  max-width: min(880px, 66vw) !important;
}

.hero.hero-orbita-editorial h1 {
  margin-bottom: clamp(26px, 2.8vw, 40px) !important;
}

.hero.hero-orbita-editorial .hero-editorial-headline {
  position: absolute !important;
  left: 0 !important;
  top: calc(clamp(56px, 7.6vw, 126px) * 1.95) !important;
  max-width: clamp(320px, 26vw, 500px) !important;
  margin: 0 !important;
  font-size: clamp(22px, 2.35vw, 34px) !important;
  line-height: 1.02 !important;
  font-weight: 650 !important;
  letter-spacing: -0.04em !important;
  text-align: left !important;
  z-index: 4 !important;
}

.hero.hero-orbita-editorial .hero-editorial-description,
.hero.hero-orbita-editorial .hero-niche-tags,
.hero.hero-orbita-editorial .hero-actions {
  left: 0 !important;
  text-align: left !important;
}

.hero.hero-orbita-editorial .hero-editorial-description {
  max-width: 470px !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.hero.hero-orbita-editorial .hero-niche-tags {
  justify-content: flex-start !important;
  margin-bottom: 18px !important;
}

.hero.hero-orbita-editorial .hero-actions {
  justify-content: flex-start !important;
  gap: 12px !important;
  z-index: 12 !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-action,
.hero.hero-orbita-editorial .hero-action:link,
.hero.hero-orbita-editorial .hero-action:visited,
.hero.hero-orbita-editorial .hero-actions a {
  position: relative !important;
  z-index: 13 !important;
  pointer-events: auto !important;
  text-decoration: none !important;
}

.hero.hero-orbita-editorial .hero-niche-tags,
.hero.hero-orbita-editorial .hero-niche-tags *,
.hero.hero-orbita-editorial .hero-actions,
.hero.hero-orbita-editorial .hero-actions *,
.hero.hero-orbita-editorial .hero-rv-cta-wrap,
.hero.hero-orbita-editorial .hero-rv-cta-wrap * {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-title-block > *:not(h1) {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 1199px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(800px, 74vw) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    top: calc(clamp(56px, 7.6vw, 126px) * 1.88) !important;
    max-width: 420px !important;
    font-size: clamp(20px, 2.1vw, 30px) !important;
  }
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(680px, 82vw) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    max-width: 460px !important;
    margin: 8px 0 10px !important;
    font-size: clamp(22px, 4.5vw, 30px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-description,
  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    left: 0 !important;
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: calc(100vw - 48px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: 320px !important;
    margin: 10px 0 12px !important;
    font-size: clamp(20px, 6.6vw, 26px) !important;
    line-height: 1.02 !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-description {
    max-width: 320px !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    gap: 10px !important;
  }
}

/* ==============================================================
   Hero 10/10 — alinhamento refinado final
   ============================================================== */
.hero.hero-orbita-editorial .hero-title-block {
  position: relative !important;
  max-width: min(860px, 64vw) !important;
  width: 100% !important;
}

.hero.hero-orbita-editorial h1 {
  margin: 0 !important;
  font-size: clamp(58px, 7.6vw, 126px) !important;
  line-height: 0.82 !important;
  letter-spacing: -0.075em !important;
}

.hero.hero-orbita-editorial h1 .title-shift {
  display: block !important;
  margin-left: clamp(285px, 26vw, 510px) !important;
}

.hero.hero-orbita-editorial .hero-editorial-headline {
  position: relative !important;
  top: auto !important;
  left: 0 !important;
  max-width: clamp(420px, 32vw, 560px) !important;
  margin: 10px 0 24px 0 !important;
  font-size: clamp(24px, 2.7vw, 31px) !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
  letter-spacing: -0.035em !important;
  text-align: left !important;
  text-transform: none !important;
  text-shadow: 0 5px 18px rgba(0,0,0,.26) !important;
  z-index: 8 !important;
}

.hero.hero-orbita-editorial .hero-editorial-description {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-niche-tags,
.hero.hero-orbita-editorial .hero-actions {
  position: relative !important;
  left: 0 !important;
  width: min(470px, 100%) !important;
  max-width: min(470px, 100%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
  z-index: 12 !important;
}

.hero.hero-orbita-editorial .hero-niche-tags {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 0 14px 0 !important;
}

.hero.hero-orbita-editorial .hero-niche-tags span {
  width: 100% !important;
  min-height: 38px !important;
  padding: 8px 12px !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  text-align: center !important;
  justify-content: center !important;
}

.hero.hero-orbita-editorial .hero-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  margin: 0 !important;
}

.hero.hero-orbita-editorial .hero-action,
.hero.hero-orbita-editorial .hero-action:link,
.hero.hero-orbita-editorial .hero-action:visited {
  width: 100% !important;
  min-height: 44px !important;
  padding: 12px 16px !important;
  text-align: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  position: relative !important;
  z-index: 14 !important;
}

.hero.hero-orbita-editorial .hero-actions,
.hero.hero-orbita-editorial .hero-actions * {
  pointer-events: auto !important;
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(720px, 82vw) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: clamp(180px, 23vw, 300px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: 470px !important;
    font-size: clamp(22px, 3.2vw, 28px) !important;
    margin: 12px 0 22px 0 !important;
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: calc(100vw - 36px) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline,
  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(340px, 100%) !important;
    max-width: min(340px, 100%) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    margin: 12px 0 18px 0 !important;
    font-size: clamp(21px, 6vw, 28px) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero.hero-orbita-editorial .hero-action,
  .hero.hero-orbita-editorial .hero-action:link,
  .hero.hero-orbita-editorial .hero-action:visited {
    white-space: normal !important;
  }
}

/* ==============================================================
   Hero 10/10 — ajuste fino final de composição
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(860px, 66vw) !important;
  }

  .hero.hero-orbita-editorial h1 {
    position: relative !important;
    margin-bottom: 0 !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: clamp(215px, 22.5vw, 355px) !important;
    margin-top: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: clamp(360px, 23vw, 430px) !important;
    margin: clamp(-88px, -5.2vw, -56px) 0 22px 0 !important;
    font-size: clamp(18px, 1.95vw, 24px) !important;
    line-height: 1.04 !important;
    font-weight: 400 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(500px, 100%) !important;
    max-width: min(500px, 100%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    margin: 0 0 14px 0 !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: 430px !important;
  }
}


/* ==============================================================
   HERO 10/10 — ajuste final de composição e alinhamento
   ============================================================== */
.hero.hero-orbita-editorial .hero-editorial-content {
  grid-template-columns: 1fr !important;
  align-items: center !important;
  padding-left: clamp(24px, 4.2vw, 64px) !important;
  padding-right: clamp(24px, 4.2vw, 64px) !important;
}

.hero.hero-orbita-editorial .hero-title-block {
  position: relative !important;
  max-width: min(1080px, calc(100vw - 360px)) !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial h1 {
  margin: 0 !important;
  line-height: 0.84 !important;
  letter-spacing: -0.055em !important;
}

.hero.hero-orbita-editorial h1 span {
  display: block !important;
  font-size: clamp(5.8rem, 8vw, 7.4rem) !important;
  color: #ffffff !important;
}

.hero.hero-orbita-editorial h1 .title-shift {
  font-size: clamp(5.4rem, 7vw, 6.7rem) !important;
  margin-top: -0.02em !important;
  margin-left: clamp(345px, 27vw, 430px) !important;
}

.hero.hero-orbita-editorial .hero-editorial-headline {
  position: absolute !important;
  left: 0 !important;
  top: clamp(248px, 23vw, 330px) !important;
  width: min(410px, 33vw) !important;
  max-width: none !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-family: var(--heading-font) !important;
  font-size: clamp(1.85rem, 2.15vw, 2.5rem) !important;
  font-weight: 300 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.20) !important;
}

.hero.hero-orbita-editorial .hero-editorial-description {
  display: none !important;
}

.hero.hero-orbita-editorial .hero-niche-tags,
.hero.hero-orbita-editorial .hero-actions {
  width: min(640px, 100%) !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-niche-tags {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 34px !important;
}

.hero.hero-orbita-editorial .hero-niche-tags span {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
}

.hero.hero-orbita-editorial .hero-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr) !important;
  gap: 18px !important;
  margin-top: 16px !important;
}

.hero.hero-orbita-editorial .hero-actions .hero-action {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-title-block .hero-actions,
.hero.hero-orbita-editorial .hero-title-block .hero-actions *,
.hero.hero-orbita-editorial .hero-title-block .hero-rv-activate-btn {
  pointer-events: auto !important;
}

@media (max-width: 1199px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(860px, calc(100vw - 320px)) !important;
  }

  .hero.hero-orbita-editorial h1 span {
    font-size: clamp(4.9rem, 7.4vw, 6.5rem) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    font-size: clamp(4.5rem, 6.3vw, 5.8rem) !important;
    margin-left: clamp(270px, 27vw, 355px) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    top: clamp(208px, 24vw, 280px) !important;
    width: min(340px, 36vw) !important;
    font-size: clamp(1.55rem, 1.95vw, 2.1rem) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(560px, 100%) !important;
  }
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 124px !important;
    padding-bottom: 138px !important;
  }

  .hero.hero-orbita-editorial .hero-title-block {
    max-width: 100% !important;
  }

  .hero.hero-orbita-editorial h1 span {
    font-size: clamp(4.4rem, 12vw, 6rem) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: 0 !important;
    margin-top: 0.02em !important;
    font-size: clamp(4rem, 10vw, 5.4rem) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    position: static !important;
    width: auto !important;
    max-width: 15ch !important;
    margin: 18px 0 0 !important;
    font-size: clamp(1.7rem, 5vw, 2.4rem) !important;
    line-height: 0.98 !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(560px, 100%) !important;
  }
}

@media (max-width: 767px) {
  .hero.hero-orbita-editorial .hero-title-block {
    width: 100% !important;
  }

  .hero.hero-orbita-editorial h1 span {
    font-size: clamp(3.6rem, 16vw, 5.1rem) !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline {
    max-width: 13ch !important;
    font-size: clamp(1.45rem, 6vw, 2rem) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ==============================================================
   HERO — correção exata solicitada
   Frase 2 linhas, CR abaixo de IO, tags/botões menores
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    grid-template-columns: 1fr !important;
    align-items: center !important;
    padding-left: clamp(28px, 4.2vw, 78px) !important;
    padding-right: clamp(28px, 4.2vw, 78px) !important;
  }

  .hero.hero-orbita-editorial .hero-title-block {
    width: 100% !important;
    max-width: min(1040px, calc(100vw - 360px)) !important;
    position: relative !important;
  }

  .hero.hero-orbita-editorial h1 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0.84 !important;
  }

  .hero.hero-orbita-editorial h1 > span:not(.hero-title-row) {
    display: block !important;
    color: #ffffff !important;
    font-size: clamp(5.8rem, 8vw, 7.5rem) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.055em !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: clamp(16px, 1.2vw, 22px) !important;
    margin-top: clamp(12px, 1vw, 18px) !important;
    margin-left: 0 !important;
    line-height: 1 !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    display: block !important;
    flex: 0 0 clamp(335px, 19vw, 365px) !important;
    width: clamp(335px, 19vw, 365px) !important;
    max-width: clamp(335px, 19vw, 365px) !important;
    margin: 0 !important;
    color: rgba(255,255,255,.96) !important;
    font-family: var(--heading-font) !important;
    font-size: clamp(1.28rem, 1.45vw, 1.72rem) !important;
    line-height: 1.04 !important;
    font-weight: 300 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    text-align: left !important;
    white-space: normal !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.28) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: clamp(5.35rem, 6.8vw, 6.8rem) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.055em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline,
  .hero.hero-orbita-editorial .hero-editorial-description {
    display: none !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(500px, 100%) !important;
    max-width: min(500px, 100%) !important;
    margin-left: 0 !important;
    left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: clamp(30px, 2.7vw, 40px) !important;
    margin-bottom: 12px !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags span {
    width: 100% !important;
    min-height: 34px !important;
    padding: 0 10px !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-actions .hero-action {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.035em !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(890px, calc(100vw - 315px)) !important;
  }

  .hero.hero-orbita-editorial h1 > span:not(.hero-title-row) {
    font-size: clamp(4.85rem, 7.2vw, 6.35rem) !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex-basis: clamp(292px, 18.4vw, 330px) !important;
    width: clamp(292px, 18.4vw, 330px) !important;
    max-width: clamp(292px, 18.4vw, 330px) !important;
    font-size: clamp(1.08rem, 1.3vw, 1.36rem) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    font-size: clamp(4.45rem, 5.9vw, 5.7rem) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(460px, 100%) !important;
    max-width: min(460px, 100%) !important;
  }
}

@media (max-width: 991px) {
  .hero.hero-orbita-editorial h1 .hero-title-row {
    display: block !important;
    margin-top: 12px !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    display: block !important;
    margin: 12px 0 12px !important;
    max-width: 18ch !important;
    color: #ffffff !important;
    font-size: clamp(1.35rem, 5vw, 2rem) !important;
    line-height: 1.02 !important;
    font-weight: 300 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    display: block !important;
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-editorial-headline,
  .hero.hero-orbita-editorial .hero-editorial-description {
    display: none !important;
  }
}

/* ==============================================================
   Ajuste solicitado: mover apenas CRIATIVO para a esquerda
   para iniciar abaixo do "I" de ESTUDIO
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-row {
    gap: 10px !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex: 0 0 clamp(300px, 17vw, 322px) !important;
    width: clamp(300px, 17vw, 322px) !important;
    max-width: clamp(300px, 17vw, 322px) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    margin-left: 0 !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex-basis: clamp(270px, 16.8vw, 295px) !important;
    width: clamp(270px, 16.8vw, 295px) !important;
    max-width: clamp(270px, 16.8vw, 295px) !important;
  }
}

/* ==============================================================
   RV: auto-rotação e arraste com mouse
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-background,
.hero.hero-orbita-editorial .hero-rv-background iframe {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-background iframe {
  cursor: grab;
}

body.hero-rv-dragging .hero.hero-orbita-editorial .hero-rv-background iframe {
  cursor: grabbing;
}

.hero.hero-orbita-editorial .hero-rv-overlay {
  pointer-events: none !important;
}


/* ==============================================================
   Correção final RV — iframe livre para arraste e auto-rotação
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-background,
.hero.hero-orbita-editorial .hero-rv-background iframe {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-background iframe {
  cursor: grab !important;
}

body.hero-rv-dragging .hero.hero-orbita-editorial .hero-rv-background iframe {
  cursor: grabbing !important;
}

.hero.hero-orbita-editorial .hero-rv-overlay {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-editorial-content,
.hero.hero-orbita-editorial .hero-title-block,
.hero.hero-orbita-editorial .hero-title-block > *:not(.hero-actions),
.hero.hero-orbita-editorial .hero-title-block h1,
.hero.hero-orbita-editorial .hero-title-block h1 *,
.hero.hero-orbita-editorial .hero-editorial-headline,
.hero.hero-orbita-editorial .hero-editorial-description,
.hero.hero-orbita-editorial .hero-niche-tags,
.hero.hero-orbita-editorial .hero-niche-tags * {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-actions,
.hero.hero-orbita-editorial .hero-actions *,
.hero.hero-orbita-editorial .hero-rv-cta-wrap,
.hero.hero-orbita-editorial .hero-rv-cta-wrap *,
.hero.hero-orbita-editorial .hero-rv-activate-btn,
.hero.hero-orbita-editorial .hero-rv-activate-btn * {
  pointer-events: auto !important;
}


/* ==============================================================
   RV: mouse livre, overlay sem bloquear e sem conflito com gestos
   ============================================================== */
.hero.hero-orbita-editorial .hero-rv-background,
.hero.hero-orbita-editorial .hero-rv-background iframe {
  pointer-events: auto !important;
}

.hero.hero-orbita-editorial .hero-rv-overlay {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-editorial-content {
  pointer-events: none !important;
}

.hero.hero-orbita-editorial .hero-rv-cta-wrap,
.hero.hero-orbita-editorial .hero-rv-activate-btn,
.hero.hero-orbita-editorial .hero-actions,
.hero.hero-orbita-editorial .hero-actions * {
  pointer-events: auto !important;
}

body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-background,
body.hero-rv-camera-active .hero.hero-orbita-editorial .hero-rv-background iframe {
  pointer-events: auto !important;
}


/*--------------------------------------------------------------
# Hero niche tags popup
--------------------------------------------------------------*/
.hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 7px 13px !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.045) !important;
  color: rgba(255,255,255,.88) !important;
  font-family: var(--nav-font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
  cursor: pointer !important;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 15 !important;
}

.hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag:hover,
.hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(255,255,255,.55) !important;
  background: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
  outline: none !important;
}

.hero-niche-modal[hidden] {
  display: none !important;
}

.hero-niche-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 22px !important;
  pointer-events: auto !important;
}

.hero-niche-modal__backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(11, 18, 32, .58) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.hero-niche-modal__dialog {
  position: relative !important;
  width: min(520px, calc(100vw - 32px)) !important;
  max-height: calc(100vh - 44px) !important;
  outline: none !important;
  animation: heroNicheModalIn .22s ease both !important;
}

.hero-niche-card {
  position: relative !important;
  width: 100% !important;
  min-height: 360px !important;
  padding: 54px 36px 42px !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .24) !important;
  color: #252932 !important;
  overflow: hidden !important;
}

.hero-niche-card__icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 26px !important;
  background: #123b6d !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(18, 59, 109, .20) !important;
}

.hero-niche-card__icon i {
  font-size: 34px !important;
  line-height: 1 !important;
}

.hero-niche-card h2 {
  margin: 0 0 18px !important;
  color: #252932 !important;
  font-family: var(--heading-font) !important;
  font-size: clamp(27px, 3.2vw, 34px) !important;
  line-height: 1.16 !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
}

.hero-niche-card p {
  margin: 0 !important;
  max-width: 440px !important;
  color: #4d4f55 !important;
  font-family: var(--default-font) !important;
  font-size: clamp(17px, 2vw, 20px) !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
}

.hero-niche-modal__close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 2 !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.92) !important;
  color: #252932 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .10) !important;
  transition: transform .2s ease, background .2s ease, color .2s ease !important;
}

.hero-niche-modal__close:hover,
.hero-niche-modal__close:focus-visible {
  transform: scale(1.04) !important;
  background: #123b6d !important;
  color: #ffffff !important;
  outline: none !important;
}

body.hero-niche-modal-open {
  overflow: hidden !important;
}

@keyframes heroNicheModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575px) {
  .hero-niche-modal {
    padding: 16px !important;
  }

  .hero-niche-modal__dialog {
    width: min(100%, 440px) !important;
  }

  .hero-niche-card {
    min-height: 330px !important;
    padding: 44px 28px 34px !important;
    border-radius: 24px !important;
  }

  .hero-niche-card__icon {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 22px !important;
  }

  .hero-niche-card__icon i {
    font-size: 30px !important;
  }

  .hero-niche-modal__close {
    top: 14px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
  }
}


/* ==============================================================
   Correção v10: logo e MENU brancos somente sobre o hero
   ============================================================== */
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-black {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-white {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-menu-label,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .mobile-nav-toggle,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a.active {
  color: #ffffff !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-black,
body.scrolled:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-black {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-white,
body.scrolled:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-white {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-menu-label,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .mobile-nav-toggle,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a.active,
body.scrolled:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-menu-label,
body.scrolled:not(.mobile-nav-active) .header.orbita-editorial-header .mobile-nav-toggle {
  color: #171717 !important;
}


/* ==============================================================
   Correção v11: preto só depois do iframe/RV do hero
   ============================================================== */
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-black {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-white {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-menu-label,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .mobile-nav-toggle,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a,
body.orbita-header-on-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a.active {
  color: #ffffff !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-black {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-logo-white {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-menu-label,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .mobile-nav-toggle,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a,
body.orbita-header-off-hero:not(.mobile-nav-active) .header.orbita-editorial-header .orbita-editorial-nav > ul > li > a.active {
  color: #171717 !important;
}

/* ==============================================================
   V14 — faixa de benefícios comerciais pós-hero
   ============================================================== */
.commercial-benefits {
  padding: 42px 0 24px;
  background: #ffffff;
  position: relative;
  z-index: 4;
}

.commercial-benefit-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 45px rgba(24, 61, 105, 0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.commercial-benefit-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
  box-shadow: 0 24px 60px rgba(24, 61, 105, 0.12);
}

.commercial-benefit-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 22px;
  line-height: 1;
}

.commercial-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.commercial-benefit-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 14px;
  line-height: 1.55;
}

/* Ajuste da nova frase premium do hero para evitar quebra pesada */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex: 0 0 clamp(345px, 22vw, 415px) !important;
    width: clamp(345px, 22vw, 415px) !important;
    max-width: clamp(345px, 22vw, 415px) !important;
    font-size: clamp(1.02rem, 1.18vw, 1.34rem) !important;
    line-height: 1.13 !important;
    letter-spacing: -0.025em !important;
  }
}

@media (max-width: 991px) {
  .commercial-benefits {
    padding: 34px 0 18px;
  }

  .commercial-benefit-card {
    padding: 24px 22px;
    border-radius: 18px;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    max-width: 22ch !important;
    font-size: clamp(1.18rem, 4.5vw, 1.74rem) !important;
    line-height: 1.08 !important;
  }
}


/* ==============================================================
   v15 — realinhamento fino do hero conforme aprovação do cliente
   - CR de CRIATIVO abaixo do IO de ESTUDIO
   - frase alinhada à esquerda de ORBITA/ESTUDIO e justificada
   - tags e botões alinhados à esquerda
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-title-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero.hero-orbita-editorial h1 {
    width: 100% !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-row {
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex: 0 0 clamp(278px, 16.2vw, 300px) !important;
    width: clamp(278px, 16.2vw, 300px) !important;
    max-width: clamp(278px, 16.2vw, 300px) !important;
    align-self: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: justify !important;
    text-align-last: left !important;
    text-justify: inter-word !important;
    line-height: 1.08 !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    align-self: flex-end !important;
    margin: 0 0 0 -10px !important;
    transform: translateX(-10px) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    align-self: flex-start !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    width: min(620px, 100%) !important;
    max-width: min(620px, 100%) !important;
    justify-items: start !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag {
    width: 100% !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    width: min(620px, 100%) !important;
    max-width: min(620px, 100%) !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    flex-basis: clamp(248px, 15.4vw, 278px) !important;
    width: clamp(248px, 15.4vw, 278px) !important;
    max-width: clamp(248px, 15.4vw, 278px) !important;
    font-size: clamp(1.02rem, 1.16vw, 1.22rem) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    transform: translateX(-8px) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(560px, 100%) !important;
    max-width: min(560px, 100%) !important;
  }
}


/* ==============================================================
   v16 — correção fina do hero
   objetivo:
   - CRIATIVO iniciar abaixo do "IO" de ESTUDIO
   - frase, tags e botões alinhados à esquerda com ORBITA/ESTUDIO
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-editorial-content {
    justify-items: start !important;
  }

  .hero.hero-orbita-editorial .hero-title-block {
    width: 100% !important;
    max-width: min(1040px, calc(100vw - 280px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial h1 {
    width: 100% !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-row {
    display: grid !important;
    grid-template-columns: clamp(300px, 17vw, 322px) auto !important;
    align-items: end !important;
    justify-content: start !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    width: 100% !important;
    margin-top: 10px !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
    text-align: justify !important;
    text-align-last: left !important;
    text-justify: inter-word !important;
    line-height: 1.06 !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    justify-self: start !important;
    margin: 0 !important;
    transform: translateX(-6px) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    align-self: flex-start !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    justify-items: start !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 28px !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag {
    width: 100% !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin-top: 14px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial .hero-title-block {
    max-width: min(920px, calc(100vw - 220px)) !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-row {
    grid-template-columns: clamp(260px, 16vw, 285px) auto !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    font-size: clamp(1rem, 1.2vw, 1.22rem) !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    transform: translateX(-4px) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: min(700px, 100%) !important;
    max-width: min(700px, 100%) !important;
  }
}


/* ==============================================================
   v18 — ajuste fino solicitado
   - manter CRIATIVO exatamente na posição da v16
   - frase justificada sem deslocar CRIATIVO
   - tags e botões mais estreitos
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-row {
    /* mantém a mesma estrutura/posição do CRIATIVO da v16 */
    grid-template-columns: clamp(300px, 17vw, 322px) auto !important;
    column-gap: 10px !important;
  }

  .hero.hero-orbita-editorial h1 .title-shift {
    /* não mover CRIATIVO */
    transform: translateX(-6px) !important;
    margin: 0 !important;
  }

  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(248px, 14.4vw, 266px) !important;
    max-width: clamp(248px, 14.4vw, 266px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: justify !important;
    text-align-last: left !important;
    text-justify: inter-word !important;
    white-space: normal !important;
    line-height: 1.02 !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags,
  .hero.hero-orbita-editorial .hero-actions {
    width: auto !important;
    max-width: none !important;
    justify-content: flex-start !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 24px !important;
    margin-bottom: 10px !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag {
    flex: 0 0 142px !important;
    width: 142px !important;
    max-width: 142px !important;
    min-height: 32px !important;
    padding: 0 8px !important;
    font-size: 0.73rem !important;
    letter-spacing: 0.07em !important;
  }

  .hero.hero-orbita-editorial .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 0 !important;
  }

  .hero.hero-orbita-editorial .hero-actions .hero-action {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 220px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 0.77rem !important;
    letter-spacing: 0.025em !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(228px, 14vw, 246px) !important;
    max-width: clamp(228px, 14vw, 246px) !important;
    font-size: clamp(0.96rem, 1.08vw, 1.1rem) !important;
  }

  .hero.hero-orbita-editorial .hero-niche-tags .hero-niche-tag {
    flex-basis: 132px !important;
    width: 132px !important;
    max-width: 132px !important;
  }

  .hero.hero-orbita-editorial .hero-actions .hero-action {
    flex-basis: 205px !important;
    width: 205px !important;
    max-width: 205px !important;
  }
}


/* ==============================================================
   v22 — frase exatamente com as quebras pedidas pelo cliente
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(275px, 15.8vw, 295px) !important;
    max-width: clamp(275px, 15.8vw, 295px) !important;
    flex: 0 0 clamp(275px, 15.8vw, 295px) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,.96) !important;
    font-family: var(--heading-font) !important;
    font-size: clamp(1.02rem, 1.18vw, 1.26rem) !important;
    line-height: 1.04 !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    text-align: left !important;
    text-align-last: left !important;
    white-space: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.28) !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(258px, 15vw, 278px) !important;
    max-width: clamp(258px, 15vw, 278px) !important;
    flex-basis: clamp(258px, 15vw, 278px) !important;
    font-size: clamp(0.98rem, 1.08vw, 1.1rem) !important;
  }
}

/* ==============================================================
   v23 — aumentar CRIATIVO para igualar a escala de ORBITA/ESTUDIO
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .title-shift {
    font-size: clamp(5.8rem, 8vw, 7.5rem) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.055em !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .title-shift {
    font-size: clamp(4.85rem, 7.2vw, 6.35rem) !important;
  }
}


/* ==============================================================
   v25 — frase com quebras EXATAS solicitadas pelo cliente
   sem alterar o restante da composição
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(286px, 16.2vw, 306px) !important;
    max-width: clamp(286px, 16.2vw, 306px) !important;
    flex: 0 0 clamp(286px, 16.2vw, 306px) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,.96) !important;
    font-family: var(--heading-font) !important;
    font-size: clamp(1.02rem, 1.18vw, 1.26rem) !important;
    line-height: 1.04 !important;
    font-weight: 300 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    text-align: left !important;
    text-align-last: left !important;
    white-space: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-shadow: 0 8px 22px rgba(0,0,0,.28) !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    width: clamp(268px, 15.4vw, 288px) !important;
    max-width: clamp(268px, 15.4vw, 288px) !important;
    flex-basis: clamp(268px, 15.4vw, 288px) !important;
    font-size: clamp(0.98rem, 1.08vw, 1.1rem) !important;
  }
}

/* ==============================================================
   v26 — aumentar um pouco mais a fonte da frase
   sem alterar absolutamente mais nada
   ============================================================== */
@media (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    font-size: clamp(1.08rem, 1.24vw, 1.32rem) !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero.hero-orbita-editorial h1 .hero-title-tagline {
    font-size: clamp(1.02rem, 1.12vw, 1.15rem) !important;
  }
}

/* ==============================================================
   v27 — pop-up com ícone e título lado a lado
   para reduzir a altura da caixa
   ============================================================== */
.hero-niche-modal__dialog {
  width: min(500px, calc(100vw - 32px)) !important;
}

.hero-niche-card {
  display: grid !important;
  grid-template-columns: 80px minmax(0, 1fr) !important;
  grid-template-areas:
    "icon title"
    "text text" !important;
  column-gap: 18px !important;
  row-gap: 18px !important;
  align-items: center !important;
  min-height: auto !important;
  padding: 40px 36px 34px !important;
}

.hero-niche-card__icon {
  grid-area: icon !important;
  margin: 0 !important;
}

.hero-niche-card h2 {
  grid-area: title !important;
  margin: 0 !important;
  align-self: center !important;
}

.hero-niche-card p {
  grid-area: text !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 575px) {
  .hero-niche-modal__dialog {
    width: min(460px, calc(100vw - 24px)) !important;
  }

  .hero-niche-card {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 16px !important;
    padding: 28px 22px 24px !important;
    border-radius: 22px !important;
  }

  .hero-niche-card__icon {
    width: 64px !important;
    height: 64px !important;
  }

  .hero-niche-card__icon i {
    font-size: 28px !important;
  }

  .hero-niche-card h2 {
    font-size: clamp(23px, 6vw, 29px) !important;
    line-height: 1.1 !important;
  }

  .hero-niche-card p {
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.55 !important;
  }
}
