/* =========================================================
   Método V.O.E - Eagle Group
   Layout inspirado nas referências enviadas, mantendo a paleta atual da marca.
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap");

:root {
  --font-heading: "Unbounded", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --brand-primary: #251403;
  --brand-secondary: #b28f44;
  --brand-info: #073573;
  --brand-success: #2c9306;
  --brand-warning: #c29306;
  --brand-error: #c22524;
  --brand-brown-100: #321c06;
  --brand-brown-90: #47331f;
  --brand-brown-80: #5b4938;
  --brand-brown-70: #706051;
  --brand-brown-60: #84776a;
  --brand-brown-50: #988d82;
  --brand-brown-40: #ada499;
  --brand-brown-30: #c1bbb4;
  --brand-brown-0: #d6d2cd;
  --brand-brown-10: #eae8e6;
  --brand-creme: #ede3f4ed;
  --white: #ffffff;
  --black: #15100b;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 70px rgba(37, 20, 3, 0.12);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body.voe-page {
  background: var(--white);
  color: var(--brand-brown-70);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.voe-page a {
  color: inherit;
  text-decoration: none;
}

body.voe-page img,
body.voe-page iframe {
  display: block;
  max-width: 100%;
}

body.voe-page button,
body.voe-page input,
body.voe-page select,
body.voe-page textarea {
  font: inherit;
}

.eg-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}

.eg-navbar {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.eg-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.eg-logo {
  display: flex;
  align-items: center;
  max-width: 160px;
  text-decoration: none;
}

.eg-logo-img {
  max-width: 150px;
  height: auto;
  display: block;
}

.eg-logo-dark {
  display: none;
}

.eg-menu-check {
  display: none;
}

.eg-menu-content {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.eg-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eg-nav-item a {
  color: #ffffff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.eg-nav-item a:hover,
.eg-nav-item.eg-active a {
  color: #b28f44;
}

.eg-call-module {
  padding-left: 2rem;
}

.eg-call-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.eg-call-link i {
  font-size: 20px;
  color: #b28f44;
}

.eg-call-link:hover {
  color: #b28f44;
}

.eg-whatsapp-btn {
  margin-left: 24px;
  min-width: 200px;
  height: 50px;
  padding: 0 24px;
  border-radius: 30px;
  background-color: #b28f44;
  color: #ffffff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.eg-whatsapp-btn i {
  font-size: 20px;
}

.eg-whatsapp-btn:hover {
  background-color: #251403;
  color: #ffffff;
}

/* Header quando estiver em fundo claro, se precisar */
.eg-header.eg-header-light {
  position: relative;
  background-color: #ffffff;
}

.eg-header.eg-header-light .eg-navbar {
  border-bottom: 1px solid #eae8e6;
}

.eg-header.eg-header-light .eg-nav-item a,
.eg-header.eg-header-light .eg-call-link {
  color: #251403;
}

.eg-header.eg-header-light .eg-logo-light {
  display: none;
}

.eg-header.eg-header-light .eg-logo-dark {
  display: block;
}

/* Mobile */
.eg-menu-button {
  display: none;
  width: 32px;
  height: 24px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
}

.eg-menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}

.eg-header.eg-header-light .eg-menu-button span {
  background-color: #251403;
}

@media only screen and (max-width: 991px) {
  .eg-header {
    position: relative;
    background-color: #ffffff;
  }

  .eg-navbar {
    min-height: 80px;
    border-bottom: 1px solid #eae8e6;
  }

  .eg-logo-light {
    display: none;
  }

  .eg-logo-dark {
    display: block;
  }

  .eg-menu-button {
    display: block;
  }

  .eg-menu-button span {
    background-color: #251403;
  }

  .eg-menu-content {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px 25px;
    box-shadow: 0 10px 30px rgba(37, 20, 3, 0.12);
  }

  .eg-menu-check:checked ~ .eg-menu-content {
    display: flex;
  }

  .eg-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .btn {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 0 24px;
    width: auto;
    min-width: 200px;
    height: 50px;
    letter-spacing: 0.26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    border-width: 2px;
    text-decoration: none;
    line-height: normal;
  }

  /* Ajuste final do botão WhatsApp do header */
  .btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
  }

  .btn--whatsapp i,
  .btn--whatsapp .icons {
    margin-right: 0;
    font-size: 18px;
    line-height: 1;
  }

  .btn--whatsapp span {
    font-size: 18px;
    line-height: 1;
  }

  .eg-nav-item {
    width: 100%;
    border-bottom: 1px solid #eae8e6;
  }

  .eg-nav-item a {
    display: block;
    width: 100%;
    padding: 14px 0;
    color: #251403;
  }

  .eg-call-module {
    padding-left: 0;
    margin-top: 20px;
  }

  .eg-call-link {
    color: #251403;
  }

  .eg-whatsapp-btn {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.voe-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.voe-eyebrow {
  color: var(--brand-secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.voe-eyebrow--dark {
  color: var(--brand-secondary);
}

.voe-button {
  align-items: center;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.03em;
  min-height: 54px;
  padding: 0 34px;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.voe-button:hover {
  transform: translateY(-2px);
}

.voe-button--primary {
  background: var(--brand-primary);
  color: var(--white);
}

.voe-button--primary:hover {
  background: var(--brand-secondary);
  color: var(--white);
}

.voe-button--light {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.voe-button--light:hover {
  background: var(--brand-secondary);
  color: var(--white);
}

.voe-button--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--brand-secondary);
}

.voe-button--outline-light:hover {
  background: var(--brand-secondary);
  border-color: var(--white);
  color: var(--brand-primary);
}

/* Header */
.voe-header {
  background: var(--brand-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.voe-header__inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: 78px;
}

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

.voe-logo {
  display: flex;
  align-items: center;
  max-width: 170px;
  height: auto;
  text-decoration: none;
}

.voe-logo__img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
}

.voe-logo__img--dark {
  display: none;
}

.voe-logo__img--light {
  display: block;
}

/* Caso o header fique claro em alguma versão/sticky */
.voe-header.is-sticky .voe-logo__img--light,
.voe-header.sticky .voe-logo__img--light {
  display: none;
}

.voe-header.is-sticky .voe-logo__img--dark,
.voe-header.sticky .voe-logo__img--dark {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .voe-logo {
    max-width: 145px;
  }

  .voe-logo__img {
    width: 135px;
  }
}

.voe-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.voe-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  text-transform: uppercase;
}

.voe-nav a:hover,
.voe-nav__highlight {
  color: var(--white) !important;
}

.voe-nav__highlight::after {
  background: var(--brand-secondary);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.voe-menu-check,
.voe-menu-button {
  display: none;
}

/* ================================
   HEADER EAGLE GROUP - CSS SEPARADO
   ================================ */

:root {
  --font-heading: "Unbounded", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

/* Base necessária */
.header *,
.header *::before,
.header *::after {
  box-sizing: border-box;
}

.header ul,
.header li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.header button {
  background-color: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 0;
}

/* Container usado no header */
.header .container {
  width: 100%;
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.header {
  height: 80px;
}

@media screen and (min-width: 992px) {
  .header {
    height: 100px;
  }
}

.header.header-transparent {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.header.header-transparent .navbar-brand .logo-dark {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header.header-transparent .navbar-brand .logo-dark {
    display: block;
  }
}

/* Logo */
.header .navbar-brand {
  line-height: 100px;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .header .navbar-brand {
    line-height: 80px;
    margin-left: 30px;
  }
}

.header .navbar-brand .logo {
  max-width: 100%;
  width: 145px;
}

@media only screen and (max-width: 991px) {
  .header .navbar-brand .logo {
    width: 120px;
  }
}

/* Navbar */
.navbar {
  margin-bottom: 0;
  border-radius: 0;
  min-height: 80px;
  border: none;
  z-index: 55555;
  padding: 0;
  transition: all 300ms ease-in-out;
}

@media screen and (min-width: 992px) {
  .navbar {
    min-height: 100px;
  }
}

.navbar.navbar-bordered {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.navbar-sticky,
.navbar.navbar-fixed {
  transition: all 300ms ease-in-out;
}

/* Navbar fixa quando recebe a classe via JS */
/* Navbar fixa quando recebe a classe via JS */
.navbar.navbar-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  animation: fadeInDown 0.4s ease-in-out;
  box-shadow: 0 2px 12px rgba(37, 20, 3, 0.12);
  border-bottom: 1px solid rgba(37, 20, 3, 0.08);
  z-index: 99999;
}

.navbar.navbar-fixed .navbar-brand .logo-dark {
  display: inline-block;
}

.navbar.navbar-fixed .navbar-brand .logo-light {
  display: none;
}

.navbar.navbar-fixed .navbar-nav > li > a {
  color: #251403;
}

.navbar.navbar-fixed .navbar-nav > li > a::before {
  background-color: #b28f44;
}

.navbar.navbar-fixed .module .module-icon,
.navbar.navbar-fixed .module .module-icon i,
.navbar.navbar-fixed .module .module-icon .title {
  color: #251403;
}

.navbar.navbar-fixed .btn--whatsapp {
  background-color: #b28f44;
  color: #ffffff;
}

.navbar.navbar-fixed .navbar-brand .logo-dark {
  display: inline-block;
}

.navbar.navbar-fixed .navbar-brand .logo-light {
  display: none;
}

.navbar.navbar-fixed .navbar-nav > li > a {
  color: #251403;
}

.navbar.navbar-fixed .navbar-nav > li > a::before {
  background-color: #b28f44;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }

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

/* Estrutura desktop */
.navbar-expand-lg {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

@media only screen and (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* Menu */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.ml-auto {
  margin-left: auto !important;
}

.navbar .navbar-nav > li {
  margin-right: 30px;
  position: relative;
}

.navbar .navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar .navbar-nav > li > a {
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 100px;
  color: #ffffff;
  padding: 0;
  position: relative;
  display: block;
}

.navbar .navbar-nav > li > a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background: #ffffff;
  content: "";
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}

.navbar .navbar-nav > li.active > a::before,
.navbar .navbar-nav > li:hover a::before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}

/* Mobile */
@media only screen and (max-width: 991px) {
  .navbar-sticky,
  .navbar.navbar-fixed {
    background: #ffffff;
    box-shadow: none;
  }

  .navbar.navbar-sticky,
  .navbar.navbar-fixed {
    border-color: rgba(37, 20, 3, 0.1);
  }

  .navbar .navbar-brand .logo-light {
    display: none;
  }

  .navbar .navbar-brand .logo-dark {
    display: block;
  }

  .navbar-collapse {
    background-color: #ffffff;
    padding: 0;
  }

  .collapse:not(.show) {
    display: none;
  }

  .collapse.show {
    display: block;
  }

  .navbar .navbar-nav {
    width: 100%;
    padding: 20px 0;
  }

  .navbar .navbar-nav > li {
    margin-right: 0;
    border-bottom: 1px solid rgba(37, 20, 3, 0.1);
  }

  .navbar .navbar-nav > li > a {
    color: #251403;
    line-height: 36px;
    padding: 8px 30px;
  }

  .navbar .navbar-nav > li > a::before {
    content: unset;
  }
}

/* Botão menu mobile */
.navbar .navbar-toggler {
  display: none;
}

@media only screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: 0.3s ease-in-out;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
    margin-right: 30px;
    margin-left: auto;
  }

  .navbar .navbar-toggler-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #251403;
    display: block;
    transition: 0.3s ease-in-out;
  }

  .navbar .navbar-toggler-icon::before,
  .navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #251403;
    transition: 0.3s ease-in-out;
  }

  .navbar .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/* Módulo telefone */
.module {
  display: inline-flex;
  align-items: center;
}

.float-left {
  float: left !important;
}

.module .module-icon {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.module .module-icon i {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.module .module-icon .title {
  color: #ffffff;
}

.navbar.navbar-fixed .module .module-icon,
.navbar.navbar-fixed .module .module-icon i,
.navbar.navbar-fixed .module .module-icon .title {
  color: #251403;
}

@media only screen and (max-width: 991px) {
  .module {
    width: 100%;
    padding: 15px 30px;
  }

  .module.float-left {
    float: none !important;
  }

  .module[style] {
    padding-left: 30px !important;
  }

  .module .module-icon,
  .module .module-icon i,
  .module .module-icon .title {
    color: #251403;
  }
}

/* Botão WhatsApp */
.btn {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 24px;
  width: auto;
  min-width: 200px;
  height: 50px;
  letter-spacing: 0.26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  border-width: 2px;
  text-decoration: none;
  line-height: normal;
}

.btn:focus,
.btn.active,
.btn:active {
  box-shadow: none;
  outline: none;
}

.btn i {
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.btn--whatsapp {
  background-color: #b28f44;
  color: #ffffff;
  border-color: #b28f44;
  padding: 0.8em 2.5em;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--whatsapp:hover {
  background-color: #251403;
  color: #ffffff;
}

.btn--whatsapp .icons {
  font-size: 18px;
  line-height: 1;
}

.btn--whatsapp span {
  line-height: 1;
}

@media only screen and (max-width: 991px) {
  .btn {
    margin: 15px 30px 25px;
  }

  .btn--whatsapp {
    width: 100%;
  }
}

/* Ajuste tablet */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navbar-nav > li {
    margin-right: 16px;
  }

  .module .module-icon {
    margin-right: 0;
  }
}

/* Hero */
.voe-hero {
  background:
    radial-gradient(
      circle at 22% 90%,
      rgba(202, 145, 23, 0.18),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      var(--brand-primary) 0%,
      var(--brand-brown-100) 100%
    );
  color: var(--white);
  min-height: 860px;
  overflow: hidden;
  padding: 178px 0 0;
  position: relative;
}

/* .voe-hero::before {
  border: 1px solid rgba(255, 255, 255, 0.07);
  content: "";
  inset: 78px 5.5vw 0;
  pointer-events: none;
  position: absolute;
} */

.voe-hero__grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.95fr 1.05fr;
  position: relative;
  z-index: 1;
}

.voe-hero__content {
  max-width: 650px;
  padding-bottom: 145px;
}

.voe-hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.voe-hero p:not(.voe-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 48px;
  max-width: 680px;
}

.voe-hero__visual {
  align-self: end;
  height: 520px;
  position: relative;
}

.voe-visual-base {
  background: var(--brand-brown-10);
  border-radius: 50% 50% 0 0;
  bottom: -22px;
  height: 300px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(520px, 90%);
}

.voe-visual-person {
  bottom: 18px;
  height: 430px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 270px;
  z-index: 2;
}

.voe-visual-head {
  background: var(--brand-brown-30);
  border-radius: 42% 42% 46% 46%;
  height: 96px;
  left: 73px;
  position: absolute;
  top: 0;
  width: 92px;
}

.voe-visual-body {
  background: var(--brand-brown-30);
  border-radius: 90px 90px 0 0;
  bottom: 0;
  height: 320px;
  left: 28px;
  position: absolute;
  width: 180px;
}

.voe-visual-paper {
  background: var(--brand-brown-0);
  border-radius: 8px 8px 30px 8px;
  height: 120px;
  right: -64px;
  position: absolute;
  top: 112px;
  transform: rotate(-6deg) skewX(-8deg);
  width: 190px;
}

.voe-visual-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  height: 76px;
  position: absolute;
  width: 195px;
  z-index: 3;
}

.voe-visual-card span {
  background: var(--brand-brown-30);
  border-radius: 50%;
  height: 34px;
  left: 26px;
  position: absolute;
  top: 21px;
  width: 34px;
}

.voe-visual-card i {
  background: var(--brand-brown-10);
  border-radius: 999px;
  height: 5px;
  left: 78px;
  position: absolute;
  width: 76px;
}

.voe-visual-card i:first-of-type {
  top: 28px;
}

.voe-visual-card i:last-of-type {
  top: 43px;
  width: 47px;
}

.voe-visual-card--left {
  left: 0;
  top: 190px;
}

.voe-visual-card--right {
  bottom: 60px;
  right: 0;
}

/* Sections */
.voe-section {
  padding: 112px 0;
}

.voe-section--intro,
.voe-section--contact {
  background: var(--white);
}

.voe-section-heading {
  margin-bottom: 72px;
}

.voe-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
  text-align: center;
}

.voe-section-heading h2 {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.voe-section-heading p {
  color: var(--brand-brown-60);
  font-size: 17px;
  line-height: 1.6;
}

.voe-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.voe-step-card {
  padding: 0 42px;
}

.voe-step-card + .voe-step-card {
  border-left: 1px solid var(--brand-brown-10);
}

.voe-step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.voe-step-title i {
  color: var(--brand-secondary);
  font-size: 34px;
  line-height: 1;
  flex-shrink: 0;
}

.voe-step-title h3 {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  text-align: left;
  text-transform: uppercase;
}

.voe-step-card p {
  color: var(--brand-brown-60);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 330px;
  text-align: center;
}

.voe-step-card ul {
  list-style: none;
  margin: 0 auto;
  max-width: 330px;
}

.voe-step-card li {
  color: var(--brand-brown-80);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.voe-profile-area {
  margin-top: 86px;
  text-align: center;
}

.voe-profile-area > p {
  color: var(--brand-brown-60);
  font-size: 17px;
  margin-bottom: 44px;
}

.voe-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.voe-profile-card {
  padding: 0 56px;
  position: relative;
}

.voe-profile-card + .voe-profile-card {
  border-left: 1px solid var(--brand-brown-10);
}

.voe-profile-icon {
  background: var(--brand-brown-10);
  border-radius: 12px;
  display: block;
  height: 52px;
  margin: 0 auto 36px;
  width: 52px;
}

.voe-profile-card h3 {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.voe-profile-card p {
  color: var(--brand-brown-60);
  margin: 0 auto;
  max-width: 460px;
}

/* CTA */
.voe-cta-strip {
  background: var(--white);
  padding: 62px 0 96px;
}

.voe-cta-box {
  align-items: center;
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 78px 80px;
  text-align: center;
}

.voe-cta-box h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.voe-cta-box p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 42px;
  max-width: 890px;
}

/* Fit section */
.voe-section--fit {
  background: var(--white);
  padding-top: 80px;
}

.voe-fit-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}

.voe-fit-column h3 {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.voe-check,
.voe-close {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.voe-fit-column p {
  border-bottom: 1px solid var(--brand-brown-10);
  color: var(--brand-brown-60);
  text-align: center;
  min-height: 56px;
  padding: 0 0 2px;
}

.voe-fit-column p + p {
  margin-top: 1px;
}

.voe-diagnosis-card {
  align-items: center;
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  margin-top: 96px;
  padding: 66px 76px;
}

.voe-diagnosis-card h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 34px;
  max-width: 540px;
  text-transform: uppercase;
}

.voe-diagnosis-card p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
}

/* Form */
.voe-section--contact {
  padding-bottom: 90px;
}

.voe-form {
  margin: 0 auto;
  max-width: 900px;
}

.voe-form-grid {
  display: grid;
  gap: 28px 112px;
  grid-template-columns: repeat(2, 1fr);
}

.voe-form label {
  display: block;
}

.voe-form span {
  color: var(--brand-brown-80);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.voe-form input,
.voe-form select,
.voe-form textarea {
  background: var(--white);
  border: 1.5px solid var(--brand-brown-30);
  border-radius: 999px;
  color: var(--brand-brown-80);
  min-height: 52px;
  outline: none;
  padding: 0 20px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
}

.voe-form input:focus,
.voe-form select:focus,
.voe-form textarea:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 4px rgba(178, 143, 68, 0.12);
}

.voe-form input::placeholder,
.voe-form textarea::placeholder {
  color: var(--brand-brown-40);
}

.voe-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-brown-60) 50%),
    linear-gradient(135deg, var(--brand-brown-60) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 23px,
    calc(100% - 15px) 23px;
  background-repeat: no-repeat;
  background-size:
    7px 7px,
    7px 7px;
  color: var(--brand-brown-50);
}

.voe-form textarea {
  border-radius: 18px;
  min-height: 128px;
  padding: 18px 20px;
  resize: vertical;
}

.voe-form small {
  color: var(--brand-brown-50);
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

.voe-form-full {
  grid-column: 1 / -1;
}

.voe-form .voe-button {
  border: 0;
  margin-top: 42px;
  min-width: 300px;
}

/* Map and footer */
.voe-map {
  filter: grayscale(1);
  height: 430px;
  overflow: hidden;
}

.voe-map iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.footer,
.footer * {
  box-sizing: border-box;
}

.footer {
  --font-heading: "Unbounded", sans-serif;
  --font-body: "Montserrat", sans-serif;
  background-color: #251403;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.footer img {
  max-width: 100%;
  height: auto;
}

.footer .container {
  width: 100%;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.footer .align-items-center {
  align-items: center;
}

.footer .justify-content-center {
  justify-content: center;
}

.footer .text-center,
.footer .text--center {
  text-align: center !important;
}

.footer [class*="col-"] {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.footer .col-12,
.footer .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.footer a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.footer ul,
.footer li,
.footer p,
.footer h5 {
  margin: 0;
  padding: 0;
}

.footer ul,
.footer li {
  list-style: none;
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 47px;
  border-bottom: 2px solid #321c06;
}

.footer .footer-center {
  padding-top: 0;
  padding-bottom: 35px;
}

.footer .footer-widget {
  text-align: left;
}

.footer .footer-widget .footer-widget-title h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  font-family: var(--font-heading);
  margin-bottom: 22px;
}

.footer .footer-widget .widget-content p {
  color: #706051;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 25px;
}

.footer .widget-about p {
  margin-bottom: 17px;
}

.footer .module-social {
  height: auto;
  line-height: normal;
  margin-right: 20px;
  margin-bottom: 0;
  border-bottom: 0;
}

.footer .module-social:last-child {
  margin-right: 0;
}

.footer .module-social a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
  width: 35px;
  height: 35px;
  background-color: #b28f44;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease-in-out;
}

.footer .module-social a:hover {
  transform: scale(0.9);
}

.footer .icons,
.footer .ph,
.footer .ph-bold {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.footer .widget-links ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  overflow: hidden;
  transform: translateY(-5px);
}

.footer .widget-links ul li {
  display: block;
}

.footer .widget-links ul li a {
  color: #706051;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 33px;
  text-transform: capitalize;
}

.footer .widget-links ul li a:hover {
  color: #b28f44;
}

.footer .widget-contact .widget-content p {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer .widget-contact .widget-content .phone {
  margin-bottom: 20px;
}

.footer .widget-contact .widget-content .phone a {
  color: #b28f44;
  font-family: var(--font-heading);
  font-size: 22px;
}

.footer .widget-contact .widget-content .phone a:hover {
  color: #ffffff;
}

.footer .widget-contact .widget-content .phone a i {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  margin-right: 9px;
  vertical-align: middle;
}

.footer .widget-contact .widget-content .address a {
  color: #706051;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer .widget-contact .widget-content .address a:hover {
  color: #b28f44;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
}

.footer-email-link i {
  font-style: normal;
  line-height: 1;
}

.footer-email-link span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
}

.footer-copyright {
  padding: 33px 0 40px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #706051;
}

.footer-copyright .copyright {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .footer .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .footer .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .footer .footer-center {
    padding-top: 100px;
  }

  .footer .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .footer .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 1200px) {
  .footer .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media only screen and (max-width: 991px) {
  .footer .footer-widget .footer-widget-title h5 {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-widget {
    padding-top: 60px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .footer .footer-widget {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 568px) {
  .footer .footer-widget {
    text-align: center;
  }

  .footer .module-social {
    margin-right: 0;
  }
}

.voe-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.voe-social span {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.voe-social a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.voe-social a:hover {
  color: var(--brand-secondary);
}

.voe-footer__bottom {
  padding-top: 34px;
  text-align: center;
}

.voe-footer__bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 1180px) {
  .voe-nav {
    gap: 22px;
  }

  .voe-step-card {
    padding: 0 28px;
  }

  .voe-form-grid {
    gap: 26px 60px;
  }
}

@media (max-width: 992px) {
  .voe-container {
    width: min(100% - 36px, var(--container));
  }

  .voe-menu-button {
    cursor: pointer;
    display: grid;
    gap: 6px;
    position: relative;
    z-index: 1002;
  }

  .voe-menu-button span {
    background: var(--white);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 28px;
  }

  .voe-nav {
    align-items: flex-start;
    background: var(--brand-primary);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.24);
    flex-direction: column;
    gap: 22px;
    height: 100vh;
    justify-content: flex-start;
    max-width: 360px;
    padding: 116px 32px 32px;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.28s ease;
    width: 82vw;
    z-index: 1001;
  }

  .voe-menu-check:checked ~ .voe-nav {
    right: 0;
  }

  .voe-hero {
    min-height: auto;
    padding: 140px 0 0;
  }

  .voe-hero__grid {
    grid-template-columns: 1fr;
  }

  .voe-hero__content {
    max-width: 760px;
    padding-bottom: 20px;
    text-align: center;
  }

  .voe-hero p:not(.voe-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .voe-hero__visual {
    height: 420px;
  }

  .voe-steps,
  .voe-fit-grid,
  .voe-diagnosis-card {
    grid-template-columns: 1fr;
  }

  .voe-step-card {
    border-left: 0 !important;
    border-top: 1px solid var(--brand-brown-10);
    padding: 42px 0;
  }

  .voe-step-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .voe-step-card:last-child {
    padding-bottom: 0;
  }

  .voe-profile-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .voe-profile-card {
    border-left: 0 !important;
    padding: 0;
  }

  .voe-diagnosis-card {
    text-align: center;
  }

  .voe-diagnosis-card h2,
  .voe-diagnosis-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .voe-diagnosis-card .voe-button {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .voe-section {
    padding: 76px 0;
  }

  .voe-section-heading {
    margin-bottom: 48px;
  }

  .voe-hero::before {
    display: none;
  }

  .voe-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .voe-visual-card--left {
    left: 0;
    top: 144px;
  }

  .voe-visual-card--right {
    right: 0;
  }

  .voe-visual-card {
    transform: scale(0.82);
  }

  .voe-cta-box {
    border-radius: 24px;
    min-height: auto;
    padding: 52px 26px;
  }

  .voe-fit-grid {
    gap: 42px;
  }

  .voe-fit-column p {
    min-height: auto;
  }

  .voe-diagnosis-card {
    border-radius: 24px;
    margin-top: 64px;
    padding: 48px 26px;
  }

  .voe-form-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .voe-form .voe-button {
    width: 100%;
  }

  .voe-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .voe-social {
    justify-content: flex-start;
  }

  .voe-footer__bottom {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .voe-container {
    width: min(100% - 28px, var(--container));
  }

  .voe-header__inner {
    min-height: 70px;
  }

  .voe-hero {
    padding-top: 118px;
  }

  .voe-hero__content {
    text-align: left;
  }

  .voe-hero p:not(.voe-eyebrow) {
    margin-left: 0;
  }

  .voe-hero__visual {
    height: 340px;
    margin-left: -14px;
    margin-right: -14px;
  }

  .voe-visual-base {
    height: 230px;
    width: 94%;
  }

  .voe-visual-person {
    height: 330px;
    width: 220px;
  }

  .voe-visual-head {
    height: 74px;
    left: 64px;
    width: 72px;
  }

  .voe-visual-body {
    height: 248px;
    left: 38px;
    width: 142px;
  }

  .voe-visual-paper {
    height: 94px;
    right: -26px;
    top: 92px;
    width: 128px;
  }

  .voe-visual-card {
    display: none;
  }

  .voe-section-heading h2 {
    font-size: 30px;
  }

  .voe-step-title {
    justify-content: flex-start;
  }

  .voe-step-title i {
    font-size: 30px;
  }

  .voe-step-title h3 {
    text-align: left;
  }

  .voe-step-card p,
  .voe-step-card ul {
    margin-left: 0;
    max-width: none;
    text-align: left;
  }

  .voe-profile-area,
  .voe-profile-card {
    text-align: left;
  }

  .voe-profile-icon {
    margin-left: 0;
  }

  .voe-button {
    min-height: 50px;
    padding: 0 24px;
    width: 100%;
  }

  .voe-map {
    height: 300px;
  }
}

.voe-profile-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  border-radius: 14px;
  background-color: var(--brand-brown-10);
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.voe-profile-icon i {
  font-size: 40px;
  line-height: 1;
}

/* =========================================================
   Ajuste Hero - imagem real abaixo dos textos
   Caminho da imagem: assets/img/rapaz-voe.jpg
   ========================================================= */

.voe-hero {
  min-height: 860px;
  padding: 170px 0 0;
}

.voe-hero__grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr;
  justify-items: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.voe-hero__content {
  max-width: 760px;
  padding-bottom: 0;
  text-align: center;
}

.voe-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}

.voe-hero p:not(.voe-eyebrow) {
  margin: 0 auto 48px;
  max-width: 680px;
  text-align: center;
}

.voe-hero__visual {
  align-self: end;
  background-image: url("assets/img/rapaz-voe.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: 430px;
  margin: 0 auto;
  max-width: 540px;
  position: relative;
  width: min(540px, 100%);
}

.voe-hero__image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 430px;
  max-width: 540px;
  object-fit: contain;
  width: 100%;
}

/* Esconde a ilustração antiga criada por CSS */
.voe-hero__visual .voe-visual-card,
.voe-hero__visual .voe-visual-person,
.voe-hero__visual .voe-visual-base {
  display: none !important;
}

@supports selector(:has(*)) {
  .voe-hero__visual:has(.voe-hero__image) {
    background-image: none;
    height: auto;
  }
}

@media (max-width: 992px) {
  .voe-hero {
    min-height: auto;
    padding: 140px 0 0;
  }

  .voe-hero__grid {
    gap: 34px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .voe-hero__content {
    max-width: 760px;
    padding-bottom: 0;
    text-align: center;
  }

  .voe-hero__visual {
    height: 390px;
    max-width: 500px;
    width: min(500px, 100%);
  }

  .voe-hero__image {
    max-height: 390px;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .voe-hero {
    padding-top: 118px;
  }

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

  .voe-hero p:not(.voe-eyebrow) {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .voe-hero__visual {
    height: 320px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }

  .voe-hero__image {
    max-height: 320px;
    max-width: 100%;
  }
}

/* =========================================================
   Ajuste Hero - imagem real com círculo e adesivos
   Usar com: assets/images/about/flavio-png.png
   ========================================================= */

.voe-hero {
  min-height: 900px;
  padding: 150px 0 0;
}

.voe-hero__grid {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr;
  justify-items: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.voe-hero__content {
  max-width: 850px;
  padding-bottom: 0;
  text-align: center;
}

.voe-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  text-align: center;
}

.voe-hero p:not(.voe-eyebrow) {
  margin: 0 auto 48px;
  max-width: 680px;
  text-align: center;
}

.voe-hero__visual {
  align-items: flex-end;
  align-self: end;
  background-image: none;
  display: flex;
  height: 450px;
  isolation: isolate;
  justify-content: center;
  margin: 0 auto;
  max-width: 680px;
  position: relative;
  width: min(680px, 100%);
}

/* Círculo de destaque atrás da pessoa */
.voe-hero__visual::before {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 320px 320px 0 0;
  bottom: 0;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.18);
  content: "";
  height: 295px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(590px, 94%);
  z-index: 0;
}

.voe-hero__image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 450px;
  max-width: 560px;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 2;
}

/* Adesivos decorativos */
.voe-hero-sticker {
  background:
    radial-gradient(
      circle at 34px 50%,
      var(--brand-brown-30) 0 15px,
      transparent 16px
    ),
    linear-gradient(var(--brand-brown-10), var(--brand-brown-10)) 74px 27px /
      86px 6px no-repeat,
    linear-gradient(var(--brand-brown-10), var(--brand-brown-10)) 74px 43px /
      58px 6px no-repeat,
    var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
  display: block;
  height: 70px;
  position: absolute;
  width: 190px;
  z-index: 3;
}

.voe-hero-sticker--left {
  left: 8px;
  top: 132px;
}

.voe-hero-sticker--right {
  bottom: 74px;
  right: 0;
  transform: scale(0.9);
}

/* Caso ainda existam elementos antigos da ilustração no HTML */
.voe-hero__visual .voe-visual-card,
.voe-hero__visual .voe-visual-person,
.voe-hero__visual .voe-visual-base {
  display: none !important;
}

@media (max-width: 992px) {
  .voe-hero {
    min-height: auto;
    padding: 140px 0 0;
  }

  .voe-hero__grid {
    gap: 38px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .voe-hero__visual {
    height: 420px;
    max-width: 600px;
    width: 100%;
  }

  .voe-hero__visual::before {
    height: 270px;
    width: min(540px, 92%);
  }

  .voe-hero__image {
    max-height: 420px;
    max-width: 520px;
  }

  .voe-hero-sticker--left {
    left: 0;
    top: 130px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .voe-hero-sticker--right {
    bottom: 70px;
    right: 0;
    transform: scale(0.78);
    transform-origin: right center;
  }
}

@media (max-width: 576px) {
  .voe-hero {
    padding-top: 118px;
  }

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

  .voe-hero p:not(.voe-eyebrow) {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .voe-hero__visual {
    height: 330px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }

  .voe-hero__visual::before {
    height: 210px;
    width: 92%;
  }

  .voe-hero__image {
    max-height: 330px;
    max-width: 100%;
  }

  .voe-hero-sticker {
    height: 58px;
    width: 158px;
  }

  .voe-hero-sticker--left {
    left: -12px;
    top: 118px;
    transform: scale(0.68);
  }

  .voe-hero-sticker--right {
    bottom: 52px;
    right: -12px;
    transform: scale(0.62);
  }
}

.whatsapp-dropdown {
  position: fixed;
  right: 30px;
  bottom: 105px;
  z-index: 9999;
}

.whatsapp-float {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 20, 3, 0.25);
}

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

.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  min-width: 210px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 8px 25px rgba(37, 20, 3, 0.18);
  transition: all 0.3s ease-in-out;
}

.whatsapp-dropdown:hover .whatsapp-menu,
.whatsapp-dropdown:focus-within .whatsapp-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #251403;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.whatsapp-menu a i {
  color: #25d366;
  font-size: 20px;
}

.whatsapp-menu a:hover {
  color: #b28f44;
}

@media screen and (max-width: 767px) {
  .whatsapp-dropdown {
    right: 20px;
    bottom: 85px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}

#whatsapp-fixed {
  position: fixed !important;
  right: 24px;
  bottom: 24px;
  z-index: 999999 !important;
  display: block !important;
}

#whatsapp-fixed a {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

#whatsapp-fixed a:hover {
  transform: scale(1.08);
  background-color: #20bd5a;
  color: #fff !important;
}

#whatsapp-fixed i {
  line-height: 1;
}

@media (max-width: 767px) {
  #whatsapp-fixed {
    right: 16px;
    bottom: 16px;
  }

  #whatsapp-fixed a {
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
}
