/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!../../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./styles/app.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ---
title:   Colors
section: Core
---

###### Grays

```example:color
@color: #111 @name: Gray Darker
@color: #333 @name: Gray Dark
@color: #666 @name: Gray
@color: #aaa @name: Gray Light
@color: #ddd @name: Gray Lighter
@color: #f0f0f0 @name: Gray White
```

###### Pallets

```example:color
@color: #eade00 @name: Yellow
@color: #3b78e7 @name: Blue
@color: #cc0000 @name: Red
@color: #afcc49 @name: Green
```
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #1a1a1a;
  transition: color 0.2s ease;
}
a:hover {
  color: #005a8a;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

.justify-content-between {
  justify-content: space-between;
}

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

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

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

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

#masthead {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: background-color 1s ease, backdrop-filter 1s ease, -webkit-backdrop-filter 1s ease, padding 1s ease, height 1s ease;
  /* Overlay menu - dropdown style */
  /* Backdrop para .main-navigation quando menu aberto */
  /* Posicionar o overlay relativo ao main-navigation */
}
#masthead.is-scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#masthead:not(.is-scrolled) .negative {
  fill: #000;
}
#masthead .site-title > a {
  display: block;
}
#masthead .col2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
#masthead .col2 .site-branding {
  display: flex;
  align-items: center;
}
#masthead .col2 .site-branding .site-title {
  margin: 0 !important;
}
#masthead .col2 .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 12px 20px;
}
@media (max-width: 768px) {
  #masthead .col2 .main-navigation .hero-badge {
    display: none;
  }
}
#masthead .col2 .main-navigation .hero-badge span {
  color: #FFF;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  padding: 10px 21px;
  background: #FFB821;
  border-radius: 25px;
}
#masthead .nav-overlay {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
#masthead .nav-overlay.is-open {
  display: block;
  animation: slideDown 0.3s ease-out;
  width: 100%;
}
@media (max-width: 768px) {
  #masthead .nav-overlay.is-open {
    min-width: 260px;
  }
}
#masthead .main-navigation.menu-open {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease-out;
  padding: 12px 20px;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#masthead .nav-overlay-inner {
  padding: 0 24px 24px;
}
#masthead .nav-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#masthead .overlay-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#masthead .overlay-menu a {
  color: #E6E6E6;
  text-decoration: none;
  font-family: Raleway, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s ease;
}
#masthead .overlay-menu a:hover {
  color: #FFB821;
}
#masthead .nav-overlay-top .hero-badge {
  border-radius: 25px;
  background: #FFB821;
  padding: 8px 16px;
}
#masthead .nav-overlay-top .hero-badge .hero-badge-text {
  color: #FFF;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
#masthead .nav-overlay-top .hero-badge .hero-badge-text a {
  color: #fff !important;
}
#masthead .nav-overlay-top .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#masthead .nav-overlay-top .menu-toggle svg {
  width: 24px;
  height: 18px;
}
#masthead .main-navigation {
  position: relative;
}
#masthead .menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  height: 38px;
  width: 38px;
}

.hero-badge > span > a {
  color: #fff !important;
}

footer {
  background: #D7B46A;
  margin: 0;
  padding: 70px 0;
  position: relative;
  height: 100%;
  width: 100%;
  font-family: "Gotham", sans-serif;
  /* Padding extra no mobile para acomodar o botão sticky-assessment-mobile */
}
@media (max-width: 768px) {
  footer {
    margin-top: 50px; /* 70px original + 70px para o botão sticky */
  }
}
footer.site-footer--alternative {
  background: #121212;
  /* Animação para o botão do footer alternativo */
}
footer.site-footer--alternative .footer-content--alternative h3 {
  color: #FFF;
}
footer.site-footer--alternative .footer-content--alternative .footer-cta {
  color: #FFF;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
footer.site-footer--alternative .footer-content--alternative .footer-cta p {
  color: #FFF;
}
footer.site-footer--alternative .footer-content--alternative .footer-cta small {
  color: #FFF;
}
footer.site-footer--alternative .entry-btn--alternative .btn-cta--alternative {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
footer.site-footer--alternative .entry-btn--alternative .btn-cta--alternative:hover {
  transform: translateY(-3px);
  background: #D7B46A;
  box-shadow: 0 8px 25px rgba(215, 180, 106, 0.4);
}
footer.site-footer--alternative .entry-btn--alternative .btn-cta--alternative:hover span {
  color: #000;
  transform: translateY(-1px);
  font-weight: 800;
}
footer.site-footer--alternative .entry-btn--alternative .btn-cta--alternative:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
  transition: left 0.6s;
  left: 100%;
}
footer.site-footer--alternative .entry-btn--alternative .btn-cta--alternative span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .col3 {
  display: grid;
  grid-template-columns: 380px 1fr 200px;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .col3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
footer .col3 h3 {
  color: #000;
  font-family: Raleway;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}
@media (max-width: 768px) {
  footer .col3 h3 {
    font-size: 24px;
    letter-spacing: 8px;
    max-width: 100%;
    text-align: center;
  }
}
footer .col3 .entry-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.45px;
}
@media (max-width: 768px) {
  footer .col3 .entry-address {
    gap: 12px;
  }
}
footer .col3 .entry-address span {
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 95%;
  /* 15.2px */
  letter-spacing: 2.88px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer .col3 .entry-address span {
    line-height: 1.2;
  }
}
footer .col3 .entry-address svg {
  width: auto;
  height: 22px;
}
@media (max-width: 768px) {
  footer .col3 .entry-address svg {
    height: 28px;
  }
}
footer .col3 .entry-btn {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  footer .col3 .entry-btn {
    top: 0;
    left: 0;
    width: auto;
    height: fit-content;
  }
}
footer .col3 .entry-btn a {
  border-radius: 30px;
  background: #E2E8ED;
  width: 198px;
  height: 60.454px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
footer .col3 .entry-btn a:hover {
  transform: translateY(-3px);
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
footer .col3 .entry-btn a:hover span {
  color: #fff;
  transform: translateY(-1px);
  font-weight: 800;
}
footer .col3 .entry-btn a:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  left: 100%;
}
footer .col3 .entry-btn span {
  color: #0F0F0F;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .col3 .logo-footer {
  position: relative;
  z-index: 1;
  width: 155px;
  height: 100px;
  /* top: 100px; */
  right: 0;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  footer .col3 .logo-footer {
    width: 100px;
    height: auto;
  }
}
footer .col3 .footer-cta {
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  max-width: 338px;
  margin: 0 auto;
}
footer .col3 .footer-cta p {
  color: #000;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
}
footer .col3 .footer-cta small {
  color: #000;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
footer .footer-brand {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 100px;
}
footer .footer-brand .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-brand .social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
}
footer .footer-brand .social-links img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.btn, .btn-secondary, .btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover, .btn-secondary:hover, .btn-primary:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
}
.btn-primary:hover {
  background-color: #005a8a;
  border-color: #005a8a;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}
.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

/**
 * Sticky Assessment Mobile Component
 * Botão flutuante que fica sticky no bottom-left apenas no mobile
 * Para ao chegar no footer
 */
.sticky-assessment-mobile {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50;
  display: none; /* Inicialmente escondido, aparece apenas no mobile */
  /* Só exibir no mobile (max-width: 768px) */
  /* Estado quando deve "parar" no footer */
}
@media (max-width: 768px) {
  .sticky-assessment-mobile {
    display: block;
  }
}
.sticky-assessment-mobile .sticky-assessment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #FFB821; /* Mesma cor do botão de assessment */
  border-radius: 25px;
  padding: 0 21px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 180px; /* Largura mínima para o texto */
  /* Animação de entrada */
  animation: slideInLeft 0.5s ease-out;
}
.sticky-assessment-mobile .sticky-assessment-btn:hover {
  background: rgb(237, 161.2027027027, 0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 33, 0.3);
}
.sticky-assessment-mobile .sticky-assessment-btn:active {
  transform: translateY(0);
}
.sticky-assessment-mobile .sticky-assessment-btn .sticky-assessment-text {
  color: #FFF;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.sticky-assessment-mobile.sticky-stopped {
  position: absolute;
  bottom: auto;
  /* O JavaScript vai calcular a posição exata */
}

/* Animação de entrada */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Esconder em telas maiores que mobile */
@media (min-width: 769px) {
  .sticky-assessment-mobile {
    display: none !important;
  }
}
/* ==========================================================================
   COMPONENTE HERO - Design baseado no Figma Tavros
   ========================================================================== */
/* Animações de entrada da direita para esquerda */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animação fadeInRight para hero-text */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Estado inicial para hero-text - opacidade 0 */
.hero-text {
  opacity: 0;
}

/* Animação para classe text-animated */
.hero-text.text-animated {
  opacity: 1;
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Animação de entrada para hero-content quando slide é ativado */
@keyframes heroContentSlideIn {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animação de expansão para hero-image */
@keyframes heroImageExpansion {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-description,
  .hero-actions,
  .hero-image,
  .hero-img,
  .hero-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-section {
  background: #1a1a1a;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  height: 754px;
  display: flex;
  align-items: center;
  /* Garantir que o conteúdo fique acima do fundo */
  /* Ajustes visuais básicos de setas e bullets (mantém estilo do tema) */
}
@media (max-width: 768px) {
  .hero-section {
    height: 420px;
  }
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: filter;
  transition: filter 0.1s ease-out;
  z-index: 1;
  /* Camada com blur (usa a var --hero-bg definida inline) */
  /* Container da imagem sem blur (contain) */
}
.hero-section .hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, url(../images/hero-background.jpg));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(23px);
  transform: scale(1.06);
  z-index: 1;
}
.hero-section .hero-background .hero-bg-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-section .hero-background .hero-bg-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-section .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1320px;
}
.hero-section .hero-content {
  display: grid;
  grid-template-columns: 623px 1fr;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 3rem;
  /* Estado padrão visível */
  opacity: 1;
  transform: translateX(0);
  /* Estado oculto para animação */
  /* Estado animado */
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }
}
.hero-section .hero-content.hero-content--hidden {
  opacity: 0 !important;
  transform: translateX(80px) !important;
}
.hero-section .hero-content.hero-content--animate {
  animation: heroContentSlideIn 0.8s ease-out forwards !important;
}
.hero-section .hero-text {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(6.8000001907px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 60px;
  gap: 30px;
  /* Estado oculto para animação */
  /* Estado animado */
}
@media (max-width: 768px) {
  .hero-section .hero-text {
    padding: 20px 60px 0 20px;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: none;
  }
}
.hero-section .hero-text.hero-text--hidden {
  opacity: 0 !important;
  transform: translateX(30px) !important;
}
.hero-section .hero-text.hero-text--animate {
  animation: fadeInRight 0.8s ease-out forwards !important;
}
.hero-section .hero-text .hero-title {
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 66px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  color: white;
  padding: 0;
  margin: 0;
  /* Animação de entrada */
  animation: slideInFromRight 1s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
@media (max-width: 768px) {
  .hero-section .hero-text .hero-title {
    font-size: 1.75rem;
    line-height: 1.1;
  }
}
.hero-section .hero-text .hero-description {
  color: #FFF;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  max-width: 308px;
  margin: 0;
  padding: 0;
  /* Animação de entrada */
  animation: slideInFromRight 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
@media (max-width: 768px) {
  .hero-section .hero-text .hero-description {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.hero-section .hero-text .hero-actions {
  /* Animação de entrada */
  animation: slideInFromRight 1s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}
.hero-section .hero-text .hero-actions .hero-btn-primary {
  background: #D7B46A;
  color: #000;
  padding: 11px 21px;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}
.hero-section .hero-text .hero-actions .hero-btn-primary:hover {
  background: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
  color: #1a1a1a;
}
.hero-section .hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Animação de expansão para hero-img quando o slide está ativo */
  /* .splide__slide--active .hero-img {
    animation: heroImageExpansion 6s ease-in-out infinite !important;
  } */
  /* Seletor alternativo com maior especificidade */
}
.hero-section .hero-image .hero-img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  animation: heroImageExpansion 13.4s ease-in-out infinite !important;
}
.hero-section .hero-image .hero-img--contain {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-section .hero-image .hero-img--contain {
    object-fit: cover;
  }
}
.hero-section .hero-image .hero-section .splide__slide--active .hero-img {
  animation: heroImageExpansion 6s ease-in-out infinite !important;
}
.hero-section .hero-image .hero-video[style*="cursor: pointer"]::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 10;
  pointer-events: none;
}
.no-autoplay-support .hero-section .hero-image .hero-video {
  cursor: pointer;
}
.no-autoplay-support .hero-section .hero-image .hero-video::before {
  content: "Clique para reproduzir";
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 10;
  pointer-events: none;
}
.hero-section .hero-splide {
  height: 100%;
  width: 100%;
  min-width: 0; /* evita overflow em grids/flex */
  position: relative; /* base para paginacao/controles */
  /* Ocultar navegação quando há apenas um slide */
}
.hero-section .hero-splide.single-slide .splide__arrows,
.hero-section .hero-splide.single-slide .hero-arrows,
.hero-section .hero-splide.single-slide .splide__pagination {
  display: none !important;
}
.hero-section .hero-splide .splide__track {
  height: 100%;
  width: 100%;
}
.hero-section .hero-splide .splide__list {
  height: 100%;
}
.hero-section .hero-splide .splide__slide {
  height: 100%;
  overflow: hidden;
}
.hero-section .hero-splide .splide__slide[style*=background-image] {
  position: relative;
  /* Garantir que o vídeo e conteúdo fiquem acima do blur */
}
.hero-section .hero-splide .splide__slide[style*=background-image]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(23px); /* Mesmo blur das outras LIs */
  transform: scale(1.06); /* Mesmo scale das outras LIs */
  z-index: 1; /* Camada superior como nas outras LIs */
}
.hero-section .hero-splide .splide__slide[style*=background-image] .hero-slide {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section .hero-splide .splide__arrow--prev {
    left: 0;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-splide .splide__arrow--next {
    right: 0;
  }
}
.hero-section .hero-slide {
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .hero-section .hero-slide:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.2117647059);
    z-index: 1;
  }
}
.hero-section .hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
}
.hero-section .hero-slide-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}
.hero-section .hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slide--video .hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Acima da camada de blur (z-index: 1), mesmo padrão das outras LIs */
  overflow: hidden;
}
.hero-section .hero-slide--video .hero-video-container .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero-section .hero-slide--video .hero-video-container .hero-video {
    object-fit: contain;
  }
}
.hero-section .hero-slide--video .hero-video-container .hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-section .hero-slide--video .hero-background {
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 3; /* Mesmo padrão das outras LIs (linha 92) */
}
.hero-section .splide__arrows {
  position: absolute;
  inset: 0 0 0 0;
  pointer-events: none;
  z-index: 10; /* Z-index maior que o link wrapper */
}
.hero-section .splide__arrows button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .hero-section .splide__arrows button {
    width: 34px;
    height: 34px;
  }
}
.hero-section .splide__arrows button:hover {
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .splide__pagination {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  bottom: 88px;
  right: 0;
  /* transform: translateX(-50%); */
  z-index: 10; /* Z-index maior que o link wrapper */
  display: flex !important; /* força visível caso algum reset esconda */
  justify-content: flex-end;
  gap: 20px;
  pointer-events: auto;
  /* Baixar 32px no mobile */
}
@media (max-width: 768px) {
  .hero-section .splide__pagination {
    bottom: 32px;
  }
}
.hero-section .splide__pagination li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  padding: 5px;
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset; */
}
.hero-section .splide__pagination li button.is-active {
  background: #fff; /* gold do tema */
}
.hero-section .splide__pagination li button.is-active::after {
  border: 1px solid #D7B46A;
  padding: 9px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
}

.projetos-section {
  background: #D7B46A;
  padding: 5rem 0 !important;
  overflow: hidden;
}
@media (max-width: 768px) {
  .projetos-section {
    padding: 2rem 0 !important;
  }
}
.projetos-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.projetos-section .projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 992px) {
  .projetos-section .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
@media (max-width: 768px) {
  .projetos-section .projetos-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.projetos-section .projeto-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 350px;
}
.projetos-section .projeto-card--animated {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
}
.projetos-section .projeto-card--visible {
  opacity: 1;
  transform: translateY(0);
}
.projetos-section .projeto-card--dimmed {
  opacity: 0.7;
  transform: scale(0.98);
}
.projetos-section .projeto-card--hover-active {
  z-index: 10;
}
.projetos-section .projeto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.projetos-section .projeto-card:hover .projeto-image .projeto-overlay--default {
  opacity: 0;
  visibility: hidden;
}
.projetos-section .projeto-card:hover .projeto-image .projeto-overlay--hover {
  opacity: 1;
  visibility: visible;
}
.projetos-section .projeto-card--primary .projeto-overlay--default {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.projetos-section .projeto-card--primary .projeto-overlay--default .projeto-content {
  max-width: 280px;
}
.projetos-section .projeto-card--primary .projeto-overlay--default .projeto-content .projeto-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.projetos-section .projeto-card--primary .projeto-overlay--default .projeto-content .projeto-description {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.projetos-section .projeto-card--primary .projeto-overlay--default .projeto-content .projeto-btn {
  background: #f4c430;
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: lowercase;
}
.projetos-section .projeto-card--primary .projeto-overlay--default .projeto-content .projeto-btn:hover {
  background: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  color: #1a1a1a;
}
.projetos-section .projeto-card--form {
  background: white;
  color: #1a1a1a;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
}
@media (max-width: 992px) {
  .projetos-section .projeto-card--form {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .projetos-section .projeto-card--form {
    grid-column: span 1;
  }
}
.projetos-section .projeto-card .projeto-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.projetos-section .projeto-card .projeto-image .projeto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.projetos-section .projeto-card .projeto-image .projeto-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #4d4d4d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.projetos-section .projeto-card .projeto-image .projeto-placeholder i {
  font-size: 3rem;
  color: white;
  opacity: 0.7;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s ease;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--default {
  opacity: 1;
  visibility: visible;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%);
  opacity: 0;
  visibility: hidden;
  align-items: flex-start;
  padding: 0;
  height: 100%;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed {
  max-width: 280px;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed .projeto-title {
  display: none !important;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed .projeto-description {
  padding: 28px 28px !important;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed .projeto-description p {
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 0;
  /* 125% */
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed .projeto-description p strong {
  color: #FFF;
  font-family: Raleway;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  display: block;
  margin: 0;
  padding: 0;
  /* 109.375% */
}
.projetos-section .projeto-card .projeto-image .projeto-overlay--hover .projeto-content--detailed .projeto-btn {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content {
  width: 100%;
  color: white;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content--detailed {
  max-width: 280px;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-title {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  padding: 18px 14px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(7.5px);
  /* 125% */
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-title--large {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-title {
    font-size: 1rem;
  }
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-description {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-btn {
  background: transparent;
  background: #000;
  width: 100%;
  padding: 12px 14px;
  border-radius: 0;
  text-transform: lowercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 125% */
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-btn:hover {
  background: white;
  color: #1a1a1a;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-btn--primary {
  background: #f4c430;
  color: #1a1a1a;
  border: 2px solid #f4c430;
  font-weight: 600;
}
.projetos-section .projeto-card .projeto-image .projeto-overlay .projeto-content .projeto-btn--primary:hover {
  background: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  border-color: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  color: #1a1a1a;
}
.projetos-section .projeto-form-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px 24px;
}
.projetos-section .projeto-form-container .form-header .form-title {
  color: #000;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 144.444% */
  letter-spacing: 0.9px;
}
.projetos-section .projeto-form-container .form-header .form-subtitle {
  color: #000;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 105% */
}
.projetos-section .projeto-form-container .projeto-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.projetos-section .projeto-form-container .projeto-contact-form .form-group {
  position: relative;
}
.projetos-section .projeto-form-container .projeto-contact-form .form-group .form-input {
  width: 100%;
  padding: 0 0 0.6rem 0;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  border-radius: 1px;
  background: transparent;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
.projetos-section .projeto-form-container .projeto-contact-form .form-group .form-input::placeholder {
  color: rgba(26, 26, 26, 0.5);
  font-weight: 400;
}
.projetos-section .projeto-form-container .projeto-contact-form .form-group .form-input:focus {
  outline: none;
  border-bottom-color: #1a1a1a;
  background: transparent;
}
.projetos-section .projeto-form-container .projeto-contact-form .form-submit {
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  align-self: flex-end;
  min-width: 101px;
  color: #79663e;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  border-radius: 30px;
  background: #D7B46A;
  /* 126.667% */
}
.projetos-section .projeto-form-container .projeto-contact-form .form-submit:hover {
  background: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  transform: translateY(-2px);
  color: #000;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sobre-section {
  background-color: #f8f9fa;
}
.sobre-section .sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .sobre-section .sobre-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.sobre-section .sobre-text .sobre-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #333;
}
.sobre-section .sobre-text .sobre-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.sobre-section .sobre-text .sobre-features .feature-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}
.sobre-section .sobre-text .sobre-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.sobre-section .sobre-text .sobre-features .feature-item .feature-icon {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.sobre-section .sobre-text .sobre-features .feature-item .feature-icon i {
  display: block;
}
.sobre-section .sobre-text .sobre-features .feature-item .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.sobre-section .sobre-text .sobre-features .feature-item .feature-description {
  color: #6c757d;
  line-height: 1.5;
}
.sobre-section .sobre-image {
  text-align: center;
}
.sobre-section .sobre-image .sobre-img {
  max-width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: block;
}

.clientes-section {
  background: #1a1a1a;
  padding: 5rem 0 5.5rem !important;
}
.clientes-section.clients-animation-ready .cliente-item:not(.client-animate-item) {
  opacity: 1;
  transform: none;
}
.clientes-section.clients-animated .cliente-item {
  opacity: 1;
  transform: translateY(0);
}
.clientes-section .clientes-header {
  text-align: left;
  margin-bottom: 5rem;
}
.clientes-section .clientes-header .clientes-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .clientes-section .clientes-header .clientes-title {
    font-size: 3rem;
  }
}
.clientes-section .clientes-splide .splide__track {
  overflow: hidden;
}
.clientes-section .clientes-splide .splide__slide {
  display: block;
}
.clientes-section .clientes-splide .splide__grid__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clientes-section .clientes-splide .clientes-arrows .clientes-arrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.clientes-section .clientes-splide .clientes-arrows .clientes-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}
.clientes-section .clientes-splide .clientes-arrows .clientes-arrow--prev {
  left: -12px;
}
.clientes-section .clientes-splide .clientes-arrows .clientes-arrow--next {
  right: -12px;
}
.clientes-section .clientes-splide .clientes-pagination {
  bottom: -18px;
}
.clientes-section .clientes-splide .clientes-pagination .splide__pagination__page {
  background: rgba(255, 255, 255, 0.35);
}
.clientes-section .clientes-splide .clientes-pagination .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1);
}
.clientes-section .clientes-splide .clientes-arrow--prev {
  left: 0;
}
.clientes-section .clientes-splide .clientes-arrow--next {
  right: 0;
}
.clientes-section .clientes-splide.single-slide .splide__arrows,
.clientes-section .clientes-splide.single-slide .clientes-arrows,
.clientes-section .clientes-splide.single-slide .splide__pagination,
.clientes-section .clientes-splide.single-slide .clientes-pagination {
  display: none !important;
}
.clientes-section .clientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (max-width: 768px) {
  .clientes-section .clientes-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.clientes-section .cliente-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.clientes-section .cliente-item:hover {
  transform: translateY(-5px);
}
.clientes-section .cliente-item.client-animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--animation-delay, 0s);
}
.clientes-section .cliente-item.client-animate-item.client-animate {
  opacity: 1;
  transform: translateY(0);
}
.clientes-section .cliente-item.client-animate-item:hover {
  transform: translateY(-5px);
}
.clientes-section .cliente-item a {
  display: block;
  transition: all 0.3s ease;
}
.clientes-section .cliente-item a:hover {
  opacity: 0.8;
}
.clientes-section .cliente-item .cliente-logo {
  max-width: 250px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.clientes-section .cliente-item .cliente-logo:hover {
  opacity: 1;
}
.clientes-section .cliente-item .cliente-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  padding: 1rem 1.5rem;
  text-align: center;
}
.clientes-section .cliente-item .cliente-placeholder span {
  color: white;
  font-size: 0.875rem;
  opacity: 0.7;
}

.assessment-team {
  background: #D7B46A;
}

.assessment-section {
  padding: 0;
}
.assessment-section .assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 992px) {
  .assessment-section .assessment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.assessment-section .assessment-text .assessment-description {
  padding: 66px 0;
}
@media (max-width: 768px) {
  .assessment-section .assessment-text .assessment-description {
    padding: 40px 0 0;
  }
}
.assessment-section .assessment-text .assessment-description p {
  color: #000;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 1.2px;
  margin: 0;
}
@media (max-width: 768px) {
  .assessment-section .assessment-text .assessment-description p {
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.assessment-section .assessment-text .assessment-description p strong {
  color: #000;
  font-family: Raleway;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 154.839% */
  letter-spacing: 1.55px;
}
@media (max-width: 768px) {
  .assessment-section .assessment-text .assessment-description p strong {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: normal;
  }
}
.assessment-section .assessment-text .assessment-cta .assessment-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .assessment-section .assessment-text .assessment-cta .assessment-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .assessment-section .assessment-text .assessment-cta .assessment-title {
    font-size: 2rem;
  }
}
.assessment-section .assessment-text .assessment-cta .assessment-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.assessment-section .assessment-text .assessment-cta .assessment-btn {
  background: #f4c430;
  color: #1a1a1a;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}
.assessment-section .assessment-text .assessment-cta .assessment-btn:hover {
  background: rgb(228.8394495413, 175.7752293578, 12.1605504587);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
  color: #1a1a1a;
}
.assessment-section .assessment-image {
  text-align: center;
  height: 100%;
  display: block;
}
.assessment-section .assessment-image .assessment-img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.assessment-section .assessment-image .assessment-placeholder {
  background: rgba(102, 102, 102, 0.1);
  border-radius: 1rem;
  padding: 5rem;
  border: 2px dashed rgba(102, 102, 102, 0.3);
}
.assessment-section .assessment-image .assessment-placeholder .placeholder-content {
  text-align: center;
}
.assessment-section .assessment-image .assessment-placeholder .placeholder-content i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #666666;
  opacity: 0.5;
}
.assessment-section .assessment-image .assessment-placeholder .placeholder-content p {
  color: #666666;
  opacity: 0.7;
  font-size: 0.875rem;
}
.assessment-section .assessment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  background: #D7B46A;
}
@media (max-width: 768px) {
  .assessment-section .assessment-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.assessment-section .assessment-footer .footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.assessment-section .assessment-footer .footer-social {
  display: flex;
  gap: 1rem;
}
.assessment-section .assessment-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.assessment-section .assessment-footer .footer-social a:hover {
  background: #f4c430;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.assessment-section .assessment-footer .footer-social a i {
  font-size: 1rem;
}

.home {
  scroll-behavior: smooth;
}
.home #masthead:not(.is-scrolled) .negative {
  fill: #fff;
}

.front-page .site-main {
  padding: 0;
}
.front-page section {
  padding: 0;
}
.front-page .sobre-header,
.front-page .servicos-header,
.front-page .projetos-header,
.front-page .depoimentos-header,
.front-page .contato-header {
  text-align: center;
  margin-bottom: 3rem;
}
.front-page .sobre-header .sobre-title,
.front-page .sobre-header .servicos-title,
.front-page .sobre-header .projetos-title,
.front-page .sobre-header .depoimentos-title,
.front-page .sobre-header .contato-title,
.front-page .servicos-header .sobre-title,
.front-page .servicos-header .servicos-title,
.front-page .servicos-header .projetos-title,
.front-page .servicos-header .depoimentos-title,
.front-page .servicos-header .contato-title,
.front-page .projetos-header .sobre-title,
.front-page .projetos-header .servicos-title,
.front-page .projetos-header .projetos-title,
.front-page .projetos-header .depoimentos-title,
.front-page .projetos-header .contato-title,
.front-page .depoimentos-header .sobre-title,
.front-page .depoimentos-header .servicos-title,
.front-page .depoimentos-header .projetos-title,
.front-page .depoimentos-header .depoimentos-title,
.front-page .depoimentos-header .contato-title,
.front-page .contato-header .sobre-title,
.front-page .contato-header .servicos-title,
.front-page .contato-header .projetos-title,
.front-page .contato-header .depoimentos-title,
.front-page .contato-header .contato-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .front-page .sobre-header .sobre-title,
  .front-page .sobre-header .servicos-title,
  .front-page .sobre-header .projetos-title,
  .front-page .sobre-header .depoimentos-title,
  .front-page .sobre-header .contato-title,
  .front-page .servicos-header .sobre-title,
  .front-page .servicos-header .servicos-title,
  .front-page .servicos-header .projetos-title,
  .front-page .servicos-header .depoimentos-title,
  .front-page .servicos-header .contato-title,
  .front-page .projetos-header .sobre-title,
  .front-page .projetos-header .servicos-title,
  .front-page .projetos-header .projetos-title,
  .front-page .projetos-header .depoimentos-title,
  .front-page .projetos-header .contato-title,
  .front-page .depoimentos-header .sobre-title,
  .front-page .depoimentos-header .servicos-title,
  .front-page .depoimentos-header .projetos-title,
  .front-page .depoimentos-header .depoimentos-title,
  .front-page .depoimentos-header .contato-title,
  .front-page .contato-header .sobre-title,
  .front-page .contato-header .servicos-title,
  .front-page .contato-header .projetos-title,
  .front-page .contato-header .depoimentos-title,
  .front-page .contato-header .contato-title {
    font-size: 3rem;
  }
}
.front-page .sobre-header .sobre-subtitle,
.front-page .sobre-header .servicos-subtitle,
.front-page .sobre-header .projetos-subtitle,
.front-page .sobre-header .depoimentos-subtitle,
.front-page .sobre-header .contato-subtitle,
.front-page .servicos-header .sobre-subtitle,
.front-page .servicos-header .servicos-subtitle,
.front-page .servicos-header .projetos-subtitle,
.front-page .servicos-header .depoimentos-subtitle,
.front-page .servicos-header .contato-subtitle,
.front-page .projetos-header .sobre-subtitle,
.front-page .projetos-header .servicos-subtitle,
.front-page .projetos-header .projetos-subtitle,
.front-page .projetos-header .depoimentos-subtitle,
.front-page .projetos-header .contato-subtitle,
.front-page .depoimentos-header .sobre-subtitle,
.front-page .depoimentos-header .servicos-subtitle,
.front-page .depoimentos-header .projetos-subtitle,
.front-page .depoimentos-header .depoimentos-subtitle,
.front-page .depoimentos-header .contato-subtitle,
.front-page .contato-header .sobre-subtitle,
.front-page .contato-header .servicos-subtitle,
.front-page .contato-header .projetos-subtitle,
.front-page .contato-header .depoimentos-subtitle,
.front-page .contato-header .contato-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.page-statement,
.page-about-us {
  background: #E7E7E7;
  /* Gentle shake animation keyframes */
  /* Pulse animation keyframes */
  /* Hover pulse animation keyframes (com elevação) */
  /* Fade in from right animation keyframes */
  /* Numbers grid (Our Numbers) */
  /* Transactions grid */
  /* Team Slider */
}
.page-statement #masthead:not(.is-scrolled) .positive,
.page-about-us #masthead:not(.is-scrolled) .positive {
  fill: #000;
}
.page-statement .site--alt .site-header--alternative .site-title a svg path.negative,
.page-about-us .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #000;
}
.page-statement .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path,
.page-about-us .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #000;
}
.page-statement .statement-hero,
.page-about-us .statement-hero {
  padding: 200px 0 0;
}
@media (max-width: 768px) {
  .page-statement .statement-hero,
  .page-about-us .statement-hero {
    padding: 100px 0 0;
  }
}
.page-statement .statement-hero .page-title,
.page-about-us .statement-hero .page-title {
  color: #000;
  font-family: Raleway;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  /* 100% */
}
@media (max-width: 768px) {
  .page-statement .statement-hero .page-title,
  .page-about-us .statement-hero .page-title {
    font-size: 48px;
    line-height: 1.4;
  }
}
.page-statement .statement-hero .page-subtitle,
.page-about-us .statement-hero .page-subtitle {
  margin-bottom: 118px;
}
.page-statement .statement-hero .page-subtitle p,
.page-about-us .statement-hero .page-subtitle p {
  color: #000;
  font-family: Raleway;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 30px;
  /* Tarja animation styles */
}
@media (max-width: 768px) {
  .page-statement .statement-hero .page-subtitle p,
  .page-about-us .statement-hero .page-subtitle p {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    margin-bottom: 40px;
  }
}
.page-statement .statement-hero .page-subtitle p .tarja,
.page-statement .statement-hero .page-subtitle p em,
.page-about-us .statement-hero .page-subtitle p .tarja,
.page-about-us .statement-hero .page-subtitle p em {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-style: italic;
  /* Pseudo-elemento para a tarja */
  /* Estado ativo da tarja */
  /* Respeitar preferência de movimento reduzido */
}
.page-statement .statement-hero .page-subtitle p .tarja::before,
.page-statement .statement-hero .page-subtitle p em::before,
.page-about-us .statement-hero .page-subtitle p .tarja::before,
.page-about-us .statement-hero .page-subtitle p em::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #D7B46A;
  z-index: -1;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}
.page-statement .statement-hero .page-subtitle p .tarja.tarja-active::before,
.page-statement .statement-hero .page-subtitle p em.tarja-active::before,
.page-about-us .statement-hero .page-subtitle p .tarja.tarja-active::before,
.page-about-us .statement-hero .page-subtitle p em.tarja-active::before {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .page-statement .statement-hero .page-subtitle p .tarja::before,
  .page-statement .statement-hero .page-subtitle p em::before,
  .page-about-us .statement-hero .page-subtitle p .tarja::before,
  .page-about-us .statement-hero .page-subtitle p em::before {
    width: 100% !important;
    transition: none !important;
  }
}
.page-statement .statement-facts .facts-grid ul,
.page-about-us .statement-facts .facts-grid ul {
  margin-left: 72px;
  margin-top: 40px;
  list-style: square;
}
.page-statement .statement-facts .facts-grid ul li,
.page-about-us .statement-facts .facts-grid ul li {
  color: #000;
  font-family: Raleway;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-statement .statement-facts .facts-grid ul li,
  .page-about-us .statement-facts .facts-grid ul li {
    font-size: 1rem;
  }
}
.page-statement .statement-facts .fact-item,
.page-about-us .statement-facts .fact-item {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* Respect reduced motion preference */
  /* Class to activate shake animation */
}
.page-statement .statement-facts .fact-item:not(:first-child),
.page-about-us .statement-facts .fact-item:not(:first-child) {
  margin-top: 40px;
}
@media (prefers-reduced-motion: reduce) {
  .page-statement .statement-facts .fact-item .fact-item,
  .page-about-us .statement-facts .fact-item .fact-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 768px) {
  .page-statement .statement-facts .fact-item,
  .page-about-us .statement-facts .fact-item {
    margin-bottom: 40px;
  }
}
.page-statement .statement-facts .fact-item.shake-in,
.page-about-us .statement-facts .fact-item.shake-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: gentleShake 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes gentleShake {
  0% {
    transform: translateX(0) scale(1);
  }
  12% {
    transform: translateX(-3px) scale(1.015);
  }
  24% {
    transform: translateX(2.5px) scale(1.01);
  }
  36% {
    transform: translateX(-2px) scale(1.008);
  }
  48% {
    transform: translateX(1.5px) scale(1.005);
  }
  60% {
    transform: translateX(-1px) scale(1.003);
  }
  72% {
    transform: translateX(0.8px) scale(1.002);
  }
  84% {
    transform: translateX(-0.5px) scale(1.001);
  }
  92% {
    transform: translateX(0.3px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 180, 106, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(215, 180, 106, 0.08);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 180, 106, 0);
  }
}
@keyframes hoverPulse {
  0% {
    transform: scale(1) translateY(-1px);
    box-shadow: 0 0 0 0 rgba(215, 180, 106, 0.3);
  }
  50% {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 0 0 6px rgba(215, 180, 106, 0.08);
  }
  100% {
    transform: scale(1) translateY(-1px);
    box-shadow: 0 0 0 0 rgba(215, 180, 106, 0);
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.page-statement h3,
.page-about-us h3 {
  color: #121212;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 53.75% */
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .page-statement h3,
  .page-about-us h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 2.4px;
  }
}
.page-statement .statement-numbers,
.page-about-us .statement-numbers {
  position: relative;
  background: #E7E7E7;
  padding: 70px 0;
  /* Layout principal 2x2 */
  /* Cartões dos quadrantes */
  /* Alternância de cores conforme layout */
  /* Círculo central com título */
  /* Responsividade */
}
.page-statement .statement-numbers .container,
.page-about-us .statement-numbers .container {
  position: relative;
}
.page-statement .statement-numbers .numbers-layout,
.page-about-us .statement-numbers .numbers-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 520px;
  /* Animação de pulse cadênciada quando entra no viewport */
}
.page-statement .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(1),
.page-about-us .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(1) {
  animation: pulse 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.2s;
}
.page-statement .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(2),
.page-about-us .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(2) {
  animation: pulse 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.4s;
}
.page-statement .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(3),
.page-about-us .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(3) {
  animation: pulse 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.6s;
}
.page-statement .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(4),
.page-about-us .statement-numbers .numbers-layout.animate-cards .numbers-card:nth-child(4) {
  animation: pulse 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.8s;
}
.page-statement .statement-numbers .numbers-card,
.page-about-us .statement-numbers .numbers-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  min-height: 240px;
  transition: all 0.3s ease;
  cursor: pointer;
  /* Efeito de hover com pulse */
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-card,
  .page-about-us .statement-numbers .numbers-card {
    order: 2;
    min-height: 100%;
  }
}
.page-statement .statement-numbers .numbers-card:hover,
.page-about-us .statement-numbers .numbers-card:hover {
  animation: hoverPulse 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  /* Respeitar preferência de movimento reduzido */
}
@media (prefers-reduced-motion: reduce) {
  .page-statement .statement-numbers .numbers-card:hover,
  .page-about-us .statement-numbers .numbers-card:hover {
    animation: none !important;
    transform: translateY(-1px) !important;
  }
}
.page-statement .statement-numbers .numbers-card .numbers-icon,
.page-about-us .statement-numbers .numbers-card .numbers-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 130.762px;
  height: 93.53px;
  opacity: 0.9;
  /* icons can be applied via background-image if needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-card .numbers-icon,
  .page-about-us .statement-numbers .numbers-card .numbers-icon {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    max-width: 70px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    left: 0;
  }
}
.page-statement .statement-numbers .numbers-card .numbers-icon:nth-child(1),
.page-about-us .statement-numbers .numbers-card .numbers-icon:nth-child(1) {
  left: 28px;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-card .numbers-icon:nth-child(1),
  .page-about-us .statement-numbers .numbers-card .numbers-icon:nth-child(1) {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    max-width: 70px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    left: 0 !important;
  }
}
.page-statement .statement-numbers .numbers-card .numbers-label,
.page-about-us .statement-numbers .numbers-card .numbers-label {
  margin: 0;
  color: #000;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.6px;
  max-width: 260px;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-card .numbers-label,
  .page-about-us .statement-numbers .numbers-card .numbers-label {
    line-height: 1;
  }
}
.page-statement .statement-numbers .numbers-top-left,
.page-statement .statement-numbers .numbers-bottom-right,
.page-about-us .statement-numbers .numbers-top-left,
.page-about-us .statement-numbers .numbers-bottom-right {
  background: #D7B46A;
}
.page-statement .statement-numbers .numbers-top-left .numbers-label,
.page-statement .statement-numbers .numbers-bottom-right .numbers-label,
.page-about-us .statement-numbers .numbers-top-left .numbers-label,
.page-about-us .statement-numbers .numbers-bottom-right .numbers-label {
  color: #121212;
}
.page-statement .statement-numbers .numbers-top-right,
.page-statement .statement-numbers .numbers-bottom-right,
.page-about-us .statement-numbers .numbers-top-right,
.page-about-us .statement-numbers .numbers-bottom-right {
  text-align: right;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-top-right,
  .page-statement .statement-numbers .numbers-bottom-right,
  .page-about-us .statement-numbers .numbers-top-right,
  .page-about-us .statement-numbers .numbers-bottom-right {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
}
.page-statement .statement-numbers .numbers-top-right .numbers-icon,
.page-statement .statement-numbers .numbers-bottom-right .numbers-icon,
.page-about-us .statement-numbers .numbers-top-right .numbers-icon,
.page-about-us .statement-numbers .numbers-bottom-right .numbers-icon {
  right: 28px;
  left: unset !important;
}
.page-statement .statement-numbers .numbers-top-right .numbers-label,
.page-statement .statement-numbers .numbers-bottom-right .numbers-label,
.page-about-us .statement-numbers .numbers-top-right .numbers-label,
.page-about-us .statement-numbers .numbers-bottom-right .numbers-label {
  text-align: right;
  max-width: 411px;
  font-size: 30px;
  line-height: 44px;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-top-right .numbers-label,
  .page-statement .statement-numbers .numbers-bottom-right .numbers-label,
  .page-about-us .statement-numbers .numbers-top-right .numbers-label,
  .page-about-us .statement-numbers .numbers-bottom-right .numbers-label {
    text-align: left;
    line-height: 1;
  }
}
.page-statement .statement-numbers .numbers-top-right,
.page-statement .statement-numbers .numbers-bottom-left,
.page-about-us .statement-numbers .numbers-top-right,
.page-about-us .statement-numbers .numbers-bottom-left {
  background: #000;
}
.page-statement .statement-numbers .numbers-top-right .numbers-label,
.page-statement .statement-numbers .numbers-bottom-left .numbers-label,
.page-about-us .statement-numbers .numbers-top-right .numbers-label,
.page-about-us .statement-numbers .numbers-bottom-left .numbers-label {
  color: #fff;
}
.page-statement .statement-numbers .numbers-center,
.page-about-us .statement-numbers .numbers-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #FFF;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-center,
  .page-about-us .statement-numbers .numbers-center {
    order: 1;
  }
}
.page-statement .statement-numbers .numbers-center span,
.page-about-us .statement-numbers .numbers-center span {
  display: flex;
  color: #121212;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .page-statement .statement-numbers .numbers-center span,
  .page-about-us .statement-numbers .numbers-center span {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .page-statement .statement-numbers .numbers-layout,
  .page-about-us .statement-numbers .numbers-layout {
    min-height: 460px;
  }
  .page-statement .statement-numbers .numbers-center,
  .page-about-us .statement-numbers .numbers-center {
    width: 260px;
    height: 260px;
  }
  .page-statement .statement-numbers .numbers-card,
  .page-about-us .statement-numbers .numbers-card {
    min-height: 200px;
  }
}
@media (max-width: 768px) {
  .page-statement .statement-numbers,
  .page-about-us .statement-numbers {
    padding: 24px 0 40px;
  }
  .page-statement .statement-numbers .numbers-layout,
  .page-about-us .statement-numbers .numbers-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }
  .page-statement .statement-numbers .numbers-center,
  .page-about-us .statement-numbers .numbers-center {
    position: static;
    transform: none;
    width: 220px;
    height: 220px;
    margin: 0 auto -30px;
  }
  .page-statement .statement-numbers .numbers-card,
  .page-about-us .statement-numbers .numbers-card {
    min-height: 160px;
  }
}
.page-statement .statement-transactions,
.page-about-us .statement-transactions {
  /* background: #E9E9E9; */
  padding: 0 0 70px;
  /* Efeito hover - quando há duas imagens, texto fica entre elas */
  /* Fallback para browsers que não suportam :has() */
  /* Responsividade 4/2/1 colunas */
}
.page-statement .statement-transactions .section-title,
.page-about-us .statement-transactions .section-title {
  /* 50% */
  margin: 0 0 30px;
  color: #000;
  font-family: Raleway;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 128px;
  /* 213.333% */
}
@media (max-width: 768px) {
  .page-statement .statement-transactions .section-title,
  .page-about-us .statement-transactions .section-title {
    font-size: 32px;
    line-height: 1.2;
  }
}
.page-statement .statement-transactions .transactions-grid,
.page-about-us .statement-transactions .transactions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.page-statement .statement-transactions .transaction-card,
.page-about-us .statement-transactions .transaction-card {
  background: #FFF;
  border: 1px solid #E1E1E1;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.page-statement .statement-transactions .transaction-logos,
.page-about-us .statement-transactions .transaction-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* min-height: 110px; */
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.page-statement .statement-transactions .logo,
.page-about-us .statement-transactions .logo {
  max-width: 140px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.page-statement .statement-transactions .transaction-text,
.page-about-us .statement-transactions .transaction-text {
  margin: 10px 0;
  color: #444;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
  transition: all 0.3s ease;
}
.page-statement .statement-transactions .transaction-card:hover .transaction-logos,
.page-about-us .statement-transactions .transaction-card:hover .transaction-logos {
  /* Quando há duas imagens, reorganiza o layout */
}
.page-statement .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary),
.page-about-us .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary) {
  flex-direction: column;
  gap: 8px;
}
.page-statement .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary) .logo-primary,
.page-about-us .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary) .logo-primary {
  order: 1;
}
.page-statement .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary) .logo-secondary,
.page-about-us .statement-transactions .transaction-card:hover .transaction-logos:has(.logo-secondary) .logo-secondary {
  order: 3;
}
.page-statement .statement-transactions .transaction-card:hover .transaction-text,
.page-about-us .statement-transactions .transaction-card:hover .transaction-text {
  /* Quando há duas imagens, o texto vai para o meio */
  order: 2;
  margin: 8px 0;
}
.page-statement .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos,
.page-about-us .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos {
  flex-direction: column;
  gap: 8px;
}
.page-statement .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos .logo-primary,
.page-about-us .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos .logo-primary {
  order: 1;
}
.page-statement .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos .logo-secondary,
.page-about-us .statement-transactions .transaction-card.has-two-logos:hover .transaction-logos .logo-secondary {
  order: 3;
}
.page-statement .statement-transactions .transaction-card.has-two-logos:hover .transaction-text,
.page-about-us .statement-transactions .transaction-card.has-two-logos:hover .transaction-text {
  order: 2;
  margin: 8px 0;
}
@media (max-width: 992px) {
  .page-statement .statement-transactions .transactions-grid,
  .page-about-us .statement-transactions .transactions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-statement .statement-transactions .transactions-grid,
  .page-about-us .statement-transactions .transactions-grid {
    grid-template-columns: 1fr;
  }
}
.page-statement .statement-team,
.page-about-us .statement-team {
  margin: 0;
  background: #D7B46A;
  padding: 70px 0;
}
.page-statement .statement-team .section-title,
.page-about-us .statement-team .section-title {
  color: #E7E7E7;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 44px;
  padding: 0;
}
@media (max-width: 768px) {
  .page-statement .statement-team .section-title,
  .page-about-us .statement-team .section-title {
    font-size: 48px;
  }
}
.page-statement .statement-team .team-splide,
.page-about-us .statement-team .team-splide {
  margin: 2rem 0;
  /* Team Cards */
  /* Pagination customization */
}
.page-statement .statement-team .team-splide .team-card,
.page-about-us .statement-team .team-splide .team-card {
  text-align: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.page-statement .statement-team .team-splide .team-card .team-photo,
.page-about-us .statement-team .team-splide .team-card .team-photo {
  width: 100%;
  height: 304px;
  margin: 0 auto 16px;
  border-radius: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.page-statement .statement-team .team-splide .team-card .team-photo img,
.page-about-us .statement-team .team-splide .team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.page-statement .statement-team .team-splide .team-card .team-meta,
.page-about-us .statement-team .team-splide .team-card .team-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  /* Estado inicial da animação */
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  /* Classe para ativar a animação */
  /* Respeitar preferência de movimento reduzido */
}
.page-statement .statement-team .team-splide .team-card .team-meta.fade-in-right,
.page-about-us .statement-team .team-splide .team-card .team-meta.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}
.page-statement .statement-team .team-splide .team-card .team-meta.fade-in-right .team-role,
.page-about-us .statement-team .team-splide .team-card .team-meta.fade-in-right .team-role {
  animation: fadeInFromRight 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.page-statement .statement-team .team-splide .team-card .team-meta.fade-in-right .team-name,
.page-about-us .statement-team .team-splide .team-card .team-meta.fade-in-right .team-name {
  animation: fadeInFromRight 0.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
@media (prefers-reduced-motion: reduce) {
  .page-statement .statement-team .team-splide .team-card .team-meta,
  .page-about-us .statement-team .team-splide .team-card .team-meta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-statement .statement-team .team-splide .team-card .team-meta .team-role,
  .page-statement .statement-team .team-splide .team-card .team-meta .team-name,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-role,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-name {
    animation: none !important;
  }
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-role,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-role {
  color: #000;
  font-family: Raleway;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  /* 147.619% */
  letter-spacing: 1.05px;
  display: block;
  opacity: 0;
  transform: translateX(30px);
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-name,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-name {
  color: #E7E7E7;
  font-family: Raleway;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 1.3px;
  display: block;
  opacity: 0;
  transform: translateX(30px);
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-info,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 4px;
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin:hover,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin:hover {
  background: #000;
  color: #D7B46A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin:active,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin:active {
  transform: translateY(0);
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin svg,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin:hover svg,
.page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin:hover svg {
  transform: scale(1.1);
}
@media (prefers-reduced-motion: reduce) {
  .page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin {
    transition: none !important;
  }
  .page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin:hover,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin:hover {
    transform: none !important;
  }
  .page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin svg,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin svg {
    transition: none !important;
  }
  .page-statement .statement-team .team-splide .team-card .team-meta .team-linkedin:hover svg,
  .page-about-us .statement-team .team-splide .team-card .team-meta .team-linkedin:hover svg {
    transform: none !important;
  }
}
.page-statement .statement-team .team-splide .splide__pagination__page,
.page-about-us .statement-team .team-splide .splide__pagination__page {
  bottom: -40px;
}
.page-statement .statement-team .team-splide .splide__pagination__page.is-active,
.page-about-us .statement-team .team-splide .splide__pagination__page.is-active {
  background: #000 !important;
}

/* Footer específico da page-statement (irmão imediato de <main.page-statement>) */
.site-main.page-statement + .site-footer {
  background: #121212;
  color: #FFF;
}
.site-main.page-statement + .site-footer h1,
.site-main.page-statement + .site-footer h2,
.site-main.page-statement + .site-footer h3,
.site-main.page-statement + .site-footer h4,
.site-main.page-statement + .site-footer h5,
.site-main.page-statement + .site-footer h6,
.site-main.page-statement + .site-footer p,
.site-main.page-statement + .site-footer small,
.site-main.page-statement + .site-footer strong,
.site-main.page-statement + .site-footer span,
.site-main.page-statement + .site-footer a {
  color: #FFF;
}
.site-main.page-statement + .site-footer .entry-btn a {
  background: #fff;
}
.site-main.page-statement + .site-footer .entry-btn a span {
  color: #000;
}

.clients .site-footer--alternative {
  margin-top: 0;
}
.clients #masthead:not(.is-scrolled) svg path {
  fill: #000;
}
.clients #masthead.is-scrolled svg path {
  fill: #fff;
}
.clients #masthead.is-scrolled .menu-toggle svg path {
  stroke: #fff;
}
.clients #masthead .menu-toggle svg path {
  stroke: #000;
}
.clients #masthead .menu-open .menu-toggle svg path {
  stroke: #fff !important;
}

.clients-page {
  min-height: 100vh;
  background: #D7B46A;
  transition: background-color 0.6s ease;
}
.clients-page .clients-title,
.clients-page .timeline-content p {
  color: #FFF;
}
.clients-page .timeline-line {
  background: rgba(255, 255, 255, 0.3);
}
.clients-page .marker-dot {
  background: transparent;
  border-color: transparent;
}
.state-default .clients-page .timeline-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.state-dark .clients-page .timeline-icon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.clients-page.state-dark {
  background: #121212;
}
.clients-page.state-dark .clients-title,
.clients-page.state-dark .timeline-content p {
  color: #D7B46A;
}
.clients-page.state-dark .timeline-line {
  background: rgba(215, 180, 106, 0.3);
}

.clients-page #masthead .site-title svg path.negative {
  fill: #000;
}
.clients-page #masthead .site-title svg path:not(.negative) {
  fill: #D7B46A;
}

.clients-timeline-section {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .clients-timeline-section {
    padding: 5.5rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.clients-header {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .clients-header {
    margin-bottom: 15px;
  }
}

.clients-title {
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  transition: color 0.6s ease;
  margin-top: 58px;
}
@media (max-width: 992px) {
  .clients-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .clients-title {
    font-size: 2.5rem;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .clients-title {
    font-size: 2.2rem;
  }
}

.clients-timeline-container {
  position: relative;
  max-width: 976px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
  transition: background-color 0.6s ease;
}
@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
}
.timeline-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: height 0.8s ease;
  z-index: 2;
  height: 0%;
}
.state-dark .timeline-line::after {
  background: #f4c430;
}
.state-default .timeline-line::after {
  background: #000;
}
.timeline-line.progress-1::after {
  height: 12.5%;
}
.timeline-line.progress-2::after {
  height: 25%;
}
.timeline-line.progress-3::after {
  height: 37.5%;
}
.timeline-line.progress-4::after {
  height: 50%;
}
.timeline-line.progress-5::after {
  height: 62.5%;
}
.timeline-line.progress-6::after {
  height: 75%;
}
.timeline-line.progress-7::after {
  height: 87.5%;
}
.timeline-line.progress-8::after {
  height: 100%;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.8s ease;
  padding-left: 131px;
}
@media (max-width: 768px) {
  .timeline-item {
    margin-bottom: 3rem;
    padding-left: 60px;
  }
}
.timeline-item.active .timeline-marker {
  display: block;
}
.state-dark .timeline-item.active .timeline-marker .marker-dot {
  background: #f4c430;
  border-color: #f4c430;
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 1s ease;
}
.state-default .timeline-item.active .timeline-marker .marker-dot {
  background: #000;
  border-color: #000;
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 1s ease;
}
.timeline-item.active .timeline-icon {
  opacity: 1;
  transform: scale(1);
  display: flex;
  animation: fadeInRight 0.8s ease-out;
}
.timeline-item:not(.active) .timeline-icon {
  opacity: 0;
  transform: scale(0.8);
  display: none;
}
.timeline-item:hover .timeline-marker .marker-dot {
  transform: translate(-50%, -50%) scale(1.1);
}

.timeline-marker {
  position: absolute;
  left: 82px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: none;
}
@media (max-width: 768px) {
  .timeline-marker {
    left: 22px;
  }
}

.marker-dot {
  width: 20px;
  height: 20px;
  border: 3px solid;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  max-width: 440px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .timeline-content {
    max-width: 190px;
    margin-right: 1rem;
  }
}
.timeline-content p {
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  line-height: 1.8;
  margin: 0;
  transition: color 0.6s ease;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  /* 134.375% */
  letter-spacing: 1.6px;
}
@media (max-width: 768px) {
  .timeline-content p {
    font-size: 1rem;
  }
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  flex-shrink: 0;
}
.timeline-icon img {
  width: 200px;
  height: auto;
  object-fit: contain;
  transition: all 1s ease;
}
.state-default .timeline-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
@media (max-width: 768px) {
  .timeline-icon img {
    width: 90px;
    height: auto;
  }
}

@keyframes timelineItemAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-item {
  animation: timelineItemAppear 0.6s ease-out;
  animation-fill-mode: both;
}
.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .for-whom-text,
  .for-whom-title,
  .segment {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.page-for-whom,
.page-our-clients {
  background: #121212;
}
.page-for-whom .site--alt .site-header--alternative .site-title a svg path.negative,
.page-our-clients .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #FFF;
}
.page-for-whom #masthead:not(.is-scrolled) .negative,
.page-our-clients #masthead:not(.is-scrolled) .negative {
  fill: #fff;
}
.page-for-whom #masthead:not(.is-scrolled) .positive,
.page-our-clients #masthead:not(.is-scrolled) .positive {
  fill: #fff;
}

.for-whom-page {
  background: #1a1a1a;
  color: white;
}
.for-whom-page .for-whom-section {
  margin-top: 70px;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .for-whom-page .for-whom-section {
    background-position: center left;
  }
}
.for-whom-page .for-whom-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.for-whom-page .for-whom-section .for-whom-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 640px;
  max-width: 670px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-title {
  animation: fadeInFromRight 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 3rem;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 50% */
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-title {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-title {
    font-size: 36px;
    line-height: 1.2;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment {
  margin-bottom: 3rem;
  animation: fadeInFromRight 1s ease-out;
  animation-fill-mode: both;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment {
    margin-bottom: 0.5rem;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment:first-child {
  animation-delay: 0.6s;
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment:last-child {
  margin-bottom: 0;
  animation-delay: 0.9s;
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-title {
  color: #FFF;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  /* 134.375% */
  letter-spacing: 1.6px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 480px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-title {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-title br {
    display: none;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-description {
  color: #FFF;
  font-family: Raleway;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 160% */
  letter-spacing: 1.25px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-description {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}
@media (max-width: 480px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-description {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul {
  list-style: square;
  margin-left: 24px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul {
    margin-left: 20px;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul li {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul li {
    font-size: 14px;
  }
}
.for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-section .for-whom-text .for-whom-segments .segment .segment-content ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.for-whom-page .for-whom-section .for-whom-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual {
  width: 100%;
  max-width: 500px;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .visual-elements {
  position: relative;
  width: 100%;
  height: 100%;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  height: 30%;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow {
  position: absolute;
  width: 0;
  height: 0;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 60px;
  background: #f4c430;
  transform-origin: bottom;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -5px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid #f4c430;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow.arrow-1 {
  left: 20%;
  transform: rotate(-15deg);
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow.arrow-2 {
  left: 50%;
  transform: translateX(-50%);
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow.arrow-3 {
  right: 20%;
  transform: rotate(15deg);
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.1);
  border: 2px solid #f4c430;
  display: flex;
  justify-content: center;
  align-items: center;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person.person-center {
  width: 40px;
  height: 40px;
  background: #f4c430;
  z-index: 3;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person.person-left {
  left: 15px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person.person-right {
  right: 15px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 60px;
  height: 40px;
  background: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble .bubble-dots {
  display: flex;
  gap: 4px;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble .bubble-dots span {
  width: 6px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
  animation: bubblePulse 1.5s infinite;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble .bubble-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .communication-bubble .bubble-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.for-whom-page .for-whom-cta-section {
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, rgba(244, 196, 48, 0.05) 100%);
  padding: 5rem 0;
}
.for-whom-page .for-whom-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.for-whom-page .for-whom-cta-section .cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-cta-section .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.for-whom-page .for-whom-cta-section .cta-content .cta-text .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #f4c430;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.for-whom-page .for-whom-cta-section .cta-content .cta-text .cta-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-cta-section .cta-content .cta-text .cta-subtitle br {
    display: none;
  }
}
.for-whom-page .for-whom-cta-section .cta-content .cta-button .btn {
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.for-whom-page .for-whom-cta-section .cta-content .cta-button .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
}
.for-whom-page .for-whom-cta-section .cta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-cta-section .cta-footer {
    flex-direction: column;
    gap: 1rem;
  }
}
.for-whom-page .for-whom-cta-section .cta-footer .footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #f4c430;
}
.for-whom-page .for-whom-cta-section .cta-footer .footer-social {
  display: flex;
  gap: 1rem;
}
.for-whom-page .for-whom-cta-section .cta-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.1);
  color: #f4c430;
  transition: all 0.3s ease;
}
.for-whom-page .for-whom-cta-section .cta-footer .footer-social a:hover {
  background: #f4c430;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.for-whom-page .for-whom-cta-section .cta-footer .footer-social a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-cta {
    margin-top: 30px;
    margin-left: 20px;
  }
}
.for-whom-page .for-whom-cta .for-whom-cta-button {
  background: #D7B46A;
  color: #000;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
  letter-spacing: -0.2px;
  /* 125% */
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .for-whom-page .for-whom-cta .for-whom-cta-button {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .for-whom-page .for-whom-cta .for-whom-cta-button {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
  }
}
.for-whom-page .for-whom-cta .for-whom-cta-button:hover {
  background: #f1cb79;
}

@keyframes bubblePulse {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@media (max-width: 480px) {
  .for-whom-page {
    width: 100%;
    overflow-x: hidden;
  }
  .for-whom-page .for-whom-section {
    padding: 3rem 0;
  }
  .for-whom-page .for-whom-section .for-whom-content {
    gap: 1.5rem;
  }
  .for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual {
    height: 300px;
  }
  .for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle {
    width: 100px;
    height: 100px;
  }
  .for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person {
    width: 25px;
    height: 25px;
  }
  .for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .team-icon .team-circle .person.person-center {
    width: 35px;
    height: 35px;
  }
  .for-whom-page .for-whom-section .for-whom-visual .for-whom-default-visual .growth-arrows .arrow::before {
    height: 40px;
  }
  .for-whom-page .for-whom-cta-section {
    padding: 3rem 0;
  }
}
.insights-page {
  background-color: #1a1a1a;
  color: #ffffff;
  min-height: 100vh;
  padding: 80px 0 40px;
}
.insights-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.insights-hero {
  margin-bottom: 60px;
}
.insights-hero .insights-main-title {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #d4af37;
  margin: 0;
  max-width: 600px;
}
@media (max-width: 768px) {
  .insights-hero .insights-main-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .insights-hero .insights-main-title {
    font-size: 2rem;
  }
}

.insights-featured-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .insights-featured-posts {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.insights-featured-posts .featured-post-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.insights-featured-posts .featured-post-card:hover {
  transform: translateY(-3px);
}
.insights-featured-posts .featured-post-card .featured-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.insights-featured-posts .featured-post-card .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights-featured-posts .featured-post-card .featured-image .image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #b8b8b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights-featured-posts .featured-post-card .featured-content {
  padding: 25px;
}
.insights-featured-posts .featured-post-card .featured-content .featured-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 15px;
  line-height: 1.4;
}
.insights-featured-posts .featured-post-card .featured-content .featured-excerpt {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
.insights-featured-posts .featured-post-card .featured-content .featured-cta .learn-more-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.insights-featured-posts .featured-post-card .featured-content .featured-cta .learn-more-btn:hover {
  background-color: #d4af37;
  color: #1a1a1a;
}

.insights-categories {
  margin-bottom: 50px;
}
.insights-categories .categories-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 20px;
}
.insights-categories .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .insights-categories .category-filters {
    gap: 6px;
  }
}
.insights-categories .category-filters .category-btn {
  background-color: transparent;
  border: 1px solid #555555;
  color: #cccccc;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.insights-categories .category-filters .category-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
}
.insights-categories .category-filters .category-btn.active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #1a1a1a;
  font-weight: 500;
}
@media (max-width: 768px) {
  .insights-categories .category-filters .category-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

.insights-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .insights-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .insights-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
}
.insights-posts-grid .post-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.insights-posts-grid .post-card:hover {
  transform: translateY(-3px);
}
.insights-posts-grid .post-card .post-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.insights-posts-grid .post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights-posts-grid .post-card .post-image .image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #b8b8b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights-posts-grid .post-card .post-content {
  padding: 20px;
}
.insights-posts-grid .post-card .post-content .post-title {
  font-size: 1rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 12px;
  line-height: 1.4;
}
.insights-posts-grid .post-card .post-content .post-excerpt {
  color: #cccccc;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.insights-posts-grid .post-card .post-content .post-cta .learn-more-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.insights-posts-grid .post-card .post-content .post-cta .learn-more-btn:hover {
  background-color: #d4af37;
  color: #1a1a1a;
}

.insights-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  margin-bottom: 60px;
  border-top: 1px solid #333333;
}
@media (max-width: 768px) {
  .insights-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 0;
  }
}
.insights-cta .cta-left {
  flex: 1;
}
.insights-cta .cta-left .cta-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .insights-cta .cta-left .cta-title {
    font-size: 1.5rem;
  }
}
.insights-cta .cta-left .cta-subtitle {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}
.insights-cta .cta-right .contact-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}
.insights-cta .cta-right .contact-btn:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #1a1a1a;
}

.insights-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .insights-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.insights-footer .footer-left .logo-text {
  font-size: 1.3rem;
  font-weight: 400;
  color: #d4af37;
}
.insights-footer .footer-right {
  display: flex;
  gap: 15px;
}
.insights-footer .footer-right a {
  color: #999999;
  transition: color 0.3s ease;
}
.insights-footer .footer-right a:hover {
  color: #d4af37;
}
.insights-footer .footer-right a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1200px) {
  .insights-page .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .insights-page {
    padding: 60px 0 30px;
  }
  .insights-hero {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .insights-page .container {
    padding: 0 15px;
  }
  .insights-featured-posts .featured-post-card .featured-content {
    padding: 20px;
  }
  .insights-posts-grid .post-card .post-content {
    padding: 15px;
  }
  .insights-cta {
    padding: 25px 0;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}
.loading::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid transparent;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 6px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.single-solutions {
  background: #EBEBEB;
}
.single-solutions .site--alt .site-header--alternative.is-scrolled .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #fff;
}
.single-solutions .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #000;
}
.single-solutions .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #000;
}
.single-solutions .menu-open .menu-toggle svg path {
  stroke: #fff;
}
.single-solutions #masthead:not(.is-scrolled) .positive {
  fill: #000;
}
.single-solutions #masthead:not(.is-scrolled) .negative {
  fill: #000;
}

.solutions-submenu {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-submenu .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .solutions-submenu .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.solutions-submenu__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .solutions-submenu__content {
    height: 60px;
  }
}

.solutions-submenu__title {
  color: #FFF;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  /* 179.167% */
  letter-spacing: 1.44px;
}
@media (max-width: 768px) {
  .solutions-submenu__title {
    display: none;
  }
}

.solutions-submenu__list {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  margin: 0 20px 0 0;
  list-style: none;
  scroll-snap-type: x mandatory;
  flex: 1;
}
@media (max-width: 768px) {
  .solutions-submenu__list {
    justify-content: flex-start;
    overflow-x: scroll;
    margin: 0;
  }
}

.solutions-submenu__item {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .solutions-submenu__item {
    padding: 1rem 0;
  }
}

.solutions-submenu__item.is-active .solutions-submenu__link {
  border-radius: 25px;
  background: #D7B46A;
  color: #1a1a1a;
  font-weight: 600;
  height: 28px;
}

.solutions-submenu__link {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  text-decoration: none;
  color: #cccccc;
  color: #FFF;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
  /* 129.412% */
}
.solutions-submenu__link:hover {
  color: #D7B46A;
}

.solutions-hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
@media (max-width: 768px) {
  .solutions-hero {
    min-height: 240px;
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero {
    background-attachment: scroll;
  }
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.solutions-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.solutions-hero__title {
  color: #fff;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin: 0;
}

.solutions-content {
  padding: 2rem 0;
}

.solutions-content__description {
  max-width: 1100px;
  font-size: 1.125rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .solutions-content__description h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}

.solutions-items {
  padding: 1rem 0 2rem;
}

.solutions-items__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.solutions-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
}

.solutions-item__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.solutions-item__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.solutions-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.solutions-cta__button {
  display: inline-block;
  padding: 0.875rem 1.25rem;
  background: #f4c430;
  color: #000;
  border-radius: 0.375rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .solutions-items__grid {
    grid-template-columns: 1fr;
  }
}
@keyframes conditionalFieldFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-assessment,
.page-assessment-thank-you {
  background: #EBEBEB;
}
.page-assessment #masthead.is-scrolled,
.page-assessment-thank-you #masthead.is-scrolled {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.page-assessment #masthead:not(.is-scrolled) .negative,
.page-assessment-thank-you #masthead:not(.is-scrolled) .negative {
  fill: #fff;
}
.page-assessment .site--alt .site-header--alternative,
.page-assessment-thank-you .site--alt .site-header--alternative {
  background: #000 !important;
}
.page-assessment .site--alt .site-header--alternative .site-title a svg path.negative,
.page-assessment-thank-you .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #fff;
}
.page-assessment .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path,
.page-assessment-thank-you .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #fff;
}
.page-assessment .assessment-hero,
.page-assessment-thank-you .assessment-hero {
  padding: 140px 0 30px;
  text-align: center;
}
.page-assessment .assessment-hero .page-subtitle,
.page-assessment-thank-you .assessment-hero .page-subtitle {
  max-width: 550px;
  margin: 44px auto 0;
}
.page-assessment .assessment-progress,
.page-assessment-thank-you .assessment-progress {
  margin: 40px auto;
  max-width: 750px;
}
.page-assessment .assessment-progress .progress-steps,
.page-assessment-thank-you .assessment-progress .progress-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.page-assessment .assessment-progress .progress-steps .step,
.page-assessment-thank-you .assessment-progress .progress-steps .step {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
.page-assessment .assessment-progress .progress-steps .step.active,
.page-assessment-thank-you .assessment-progress .progress-steps .step.active {
  opacity: 1;
  color: #000;
  font-weight: 600;
}
.page-assessment .assessment-progress .progress-steps .step .step-arrow,
.page-assessment-thank-you .assessment-progress .progress-steps .step .step-arrow {
  display: none;
  width: 14px;
  height: 13px;
  background: #000;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2715%27 viewBox=%270 0 16 15%27 fill=%27none%27%3E%3Cpath d=%27M15 7.5L0.999999 7.5M0.999999 7.5L8 14M0.999999 7.5L8 1%27 stroke=%27%231E1E1E%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  cursor: pointer;
  transition: opacity 0.3s ease;
  transform: rotate(180deg);
}
.page-assessment .assessment-progress .progress-steps .step .step-arrow:hover,
.page-assessment-thank-you .assessment-progress .progress-steps .step .step-arrow:hover {
  opacity: 0.7;
}
.page-assessment .assessment-progress .progress-steps .step .step-number,
.page-assessment-thank-you .assessment-progress .progress-steps .step .step-number {
  white-space: nowrap;
}
.page-assessment .assessment-progress .progress-steps .step:not(:first-child) .step-arrow,
.page-assessment-thank-you .assessment-progress .progress-steps .step:not(:first-child) .step-arrow {
  display: block;
}
.page-assessment .assessment-progress .progress-steps .step,
.page-assessment-thank-you .assessment-progress .progress-steps .step {
  display: flex;
}
.page-assessment .assessment-form,
.page-assessment-thank-you .assessment-form {
  max-width: 750px;
  margin: 0 auto 70px;
}
.page-assessment .assessment-form .form-step,
.page-assessment-thank-you .assessment-form .form-step {
  display: none;
}
.page-assessment .assessment-form .form-step.active,
.page-assessment-thank-you .assessment-form .form-step.active {
  display: block;
}
.page-assessment .assessment-form .step-title,
.page-assessment-thank-you .assessment-form .step-title {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.page-assessment .assessment-form .step-description,
.page-assessment-thank-you .assessment-form .step-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}
.page-assessment .assessment-form .form-fields,
.page-assessment-thank-you .assessment-form .form-fields {
  margin: 40px 0;
}
.page-assessment .assessment-form .form-row,
.page-assessment-thank-you .assessment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-assessment .assessment-form .form-row,
  .page-assessment-thank-you .assessment-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-assessment .assessment-form .form-group,
.page-assessment-thank-you .assessment-form .form-group {
  margin-bottom: 40px;
}
.page-assessment .assessment-form .form-group.conditional-field,
.page-assessment-thank-you .assessment-form .form-group.conditional-field {
  overflow: hidden;
}
.page-assessment .assessment-form .form-group.conditional-field.hidden,
.page-assessment-thank-you .assessment-form .form-group.conditional-field.hidden {
  display: none !important;
}
.page-assessment .assessment-form .form-group.conditional-field.visible,
.page-assessment-thank-you .assessment-form .form-group.conditional-field.visible {
  display: block;
  animation: conditionalFieldFadeIn 0.3s ease;
}
.page-assessment .assessment-form .form-group .field-title,
.page-assessment-thank-you .assessment-form .form-group .field-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.page-assessment .assessment-form .form-group input[type=text],
.page-assessment .assessment-form .form-group input[type=email],
.page-assessment .assessment-form .form-group input[type=tel],
.page-assessment .assessment-form .form-group textarea,
.page-assessment-thank-you .assessment-form .form-group input[type=text],
.page-assessment-thank-you .assessment-form .form-group input[type=email],
.page-assessment-thank-you .assessment-form .form-group input[type=tel],
.page-assessment-thank-you .assessment-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
}
.page-assessment .assessment-form .form-group input[type=text]:focus,
.page-assessment .assessment-form .form-group input[type=email]:focus,
.page-assessment .assessment-form .form-group input[type=tel]:focus,
.page-assessment .assessment-form .form-group textarea:focus,
.page-assessment-thank-you .assessment-form .form-group input[type=text]:focus,
.page-assessment-thank-you .assessment-form .form-group input[type=email]:focus,
.page-assessment-thank-you .assessment-form .form-group input[type=tel]:focus,
.page-assessment-thank-you .assessment-form .form-group textarea:focus {
  outline: none;
  border-bottom-color: #D7B46A;
}
.page-assessment .assessment-form .form-group input[type=text].error,
.page-assessment .assessment-form .form-group input[type=email].error,
.page-assessment .assessment-form .form-group input[type=tel].error,
.page-assessment .assessment-form .form-group textarea.error,
.page-assessment-thank-you .assessment-form .form-group input[type=text].error,
.page-assessment-thank-you .assessment-form .form-group input[type=email].error,
.page-assessment-thank-you .assessment-form .form-group input[type=tel].error,
.page-assessment-thank-you .assessment-form .form-group textarea.error {
  border-bottom-color: #dc3545;
}
.page-assessment .assessment-form .form-group.radio-group .field-title,
.page-assessment-thank-you .assessment-form .form-group.radio-group .field-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.page-assessment .assessment-form .form-group.radio-group .field-description,
.page-assessment-thank-you .assessment-form .form-group.radio-group .field-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}
.page-assessment .assessment-form .form-group.radio-group .radio-options,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option {
  flex: 0 0 calc((100% - 24px) / 3);
  display: flex;
  align-items: stretch;
  min-height: 83.19px;
}
@media (max-width: 768px) {
  .page-assessment .assessment-form .form-group.radio-group .radio-option,
  .page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option {
    flex: 0 0 100%;
  }
}
.page-assessment .assessment-form .form-group.radio-group .radio-option input[type=radio],
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option input[type=radio] {
  display: none;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option label,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option label:before,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option label:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option label:hover,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option label:hover {
  border-color: #D7B46A;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option label:hover:before,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option label:hover:before {
  border-color: #D7B46A;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option input[type=radio]:checked + label,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option input[type=radio]:checked + label {
  background-color: #f8f9fa;
  border-color: #D7B46A;
}
.page-assessment .assessment-form .form-group.radio-group .radio-option input[type=radio]:checked + label:before,
.page-assessment-thank-you .assessment-form .form-group.radio-group .radio-option input[type=radio]:checked + label:before {
  background-color: #D7B46A;
  border-color: #D7B46A;
  box-shadow: inset 0 0 0 3px white;
}
.page-assessment .assessment-form .form-navigation,
.page-assessment-thank-you .assessment-form .form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}
.page-assessment .assessment-form .form-navigation .btn-prev,
.page-assessment-thank-you .assessment-form .form-navigation .btn-prev {
  background: transparent;
  border-radius: 30px;
  border: 1px solid #000;
  color: #494949;
  font-family: Raleway;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 188.235% */
  padding: 4px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-assessment .assessment-form .form-navigation .btn-prev svg,
.page-assessment-thank-you .assessment-form .form-navigation .btn-prev svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.page-assessment .assessment-form .form-navigation .btn-prev:hover,
.page-assessment-thank-you .assessment-form .form-navigation .btn-prev:hover {
  background: #f8f9fa;
  border-color: #D7B46A;
}
.page-assessment .assessment-form .form-navigation .btn-next,
.page-assessment-thank-you .assessment-form .form-navigation .btn-next {
  background: transparent;
  border-radius: 30px;
  border: 1px solid #000;
  color: #0F0F0F;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 188.235% */
  padding: 4px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-assessment .assessment-form .form-navigation .btn-next:hover,
.page-assessment-thank-you .assessment-form .form-navigation .btn-next:hover {
  background: #c4a55f;
  border-color: #c4a55f;
}
.page-assessment .assessment-form .form-navigation .btn-next svg,
.page-assessment-thank-you .assessment-form .form-navigation .btn-next svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.page-assessment .assessment-form .form-navigation .btn-submit,
.page-assessment-thank-you .assessment-form .form-navigation .btn-submit {
  background: #D7B46A;
  border: 1px solid #D7B46A;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  font-weight: 600;
}
.page-assessment .assessment-form .form-navigation .btn-submit:hover,
.page-assessment-thank-you .assessment-form .form-navigation .btn-submit:hover {
  background: #d8ae4e;
  border-color: #c4a55f;
}
.page-assessment .assessment-form .form-navigation .btn-submit:disabled,
.page-assessment-thank-you .assessment-form .form-navigation .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-assessment .assessment-form .form-navigation .form-step[data-step="1"] .form-navigation,
.page-assessment-thank-you .assessment-form .form-navigation .form-step[data-step="1"] .form-navigation {
  justify-content: flex-end;
}
.page-assessment .assessment-form .form-navigation .form-step:not([data-step="1"]) .form-navigation,
.page-assessment-thank-you .assessment-form .form-navigation .form-step:not([data-step="1"]) .form-navigation {
  justify-content: space-between;
}

/**
 * Assessment Thank You Page Styles
 * Design baseado no layout fornecido
 */
.page-assessment-thanks,
.page-assessment-thank-you {
  background: #EBEBEB;
}
.page-assessment-thanks .site--alt .site-header--alternative,
.page-assessment-thank-you .site--alt .site-header--alternative {
  background: #000 !important;
}
.page-assessment-thanks .site--alt .site-header--alternative .site-title a svg path.negative,
.page-assessment-thank-you .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #fff;
}
.page-assessment-thanks .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path,
.page-assessment-thank-you .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #fff;
}
.page-assessment-thanks .thanks-hero,
.page-assessment-thank-you .thanks-hero {
  background-color: #F5F5F5;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.page-assessment-thanks .thanks-hero .container,
.page-assessment-thank-you .thanks-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-assessment-thanks .thanks-hero .thanks-content,
.page-assessment-thank-you .thanks-hero .thanks-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-assessment-thanks .thanks-hero .thanks-title,
.page-assessment-thank-you .thanks-hero .thanks-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  color: #333;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .page-assessment-thanks .thanks-hero .thanks-title,
  .page-assessment-thank-you .thanks-hero .thanks-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .page-assessment-thanks .thanks-hero .thanks-title,
  .page-assessment-thank-you .thanks-hero .thanks-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.page-assessment-thanks.has-header-alternative .site-header--alternative,
.page-assessment-thank-you.has-header-alternative .site-header--alternative {
  background-color: #F5F5F5;
  border-bottom: none;
}

.page-assessment-thank-you .site-footer--alternative {
  background-color: #2C2C2C;
  color: #fff;
  padding: 60px 0 40px;
}
.page-assessment-thank-you .site-footer--alternative .footer-content--alternative {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page-assessment-thank-you .site-footer--alternative .footer-content--alternative {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}
.page-assessment-thank-you .site-footer--alternative .entry-btn--alternative {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .page-assessment-thank-you .site-footer--alternative .entry-btn--alternative {
    justify-content: center;
  }
}
.page-assessment-thank-you .site-footer--alternative .entry-btn--alternative .btn-cta--alternative {
  background-color: #fff;
  color: #2C2C2C;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}
.page-assessment-thank-you .site-footer--alternative .entry-btn--alternative .btn-cta--alternative:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-assessment-thank-you .site-footer--alternative .entry-btn--alternative .btn-cta--alternative span {
  color: inherit;
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #444;
}
@media (max-width: 768px) {
  .page-assessment-thank-you .site-footer--alternative .footer-brand--alternative {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative .logo-footer svg {
  height: 25px;
  width: auto;
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative .social-links--alternative {
  display: flex;
  gap: 16px;
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative .social-links--alternative a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative .social-links--alternative a:hover {
  transform: translateY(-2px);
}
.page-assessment-thank-you .site-footer--alternative .footer-brand--alternative .social-links--alternative a svg {
  width: 32px;
  height: 32px;
}

.single-post-page {
  background-color: #121212 !important;
  color: #ffffff !important;
  min-height: 100vh !important;
  padding: 150px 0 40px !important;
}
.single-post-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-post-content {
  color: #ffffff !important;
  margin-bottom: 80px;
}
.single-post-content .entry-header {
  margin-bottom: 30px;
}
.single-post-content .entry-title {
  margin-bottom: 20px;
  color: #D7B46A;
  font-family: Raleway;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px; /* 100% */
}
.single-post-content .entry-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.single-post-content .entry-meta .posted-on {
  color: #cccccc !important;
  font-size: 0.9rem;
}
.single-post-content .entry-meta .post-categories {
  color: #cccccc !important;
  font-size: 0.9rem;
}
.single-post-content .entry-meta .post-categories a {
  color: #d4af37 !important;
  text-decoration: none;
}
.single-post-content .entry-meta .post-categories a:hover {
  text-decoration: underline;
}
.single-post-content .post-thumbnail {
  margin-bottom: 30px;
}
.single-post-content .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.single-post-content .post-thumbnail .post-thumbnail-caption {
  margin-top: 4px;
  color: #999999 !important;
  font-family: Raleway;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
.single-post-content .wp-block-embed {
  margin: 30px 0;
}
.single-post-content .wp-block-embed iframe {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 8px;
  margin: 20px auto;
}
.single-post-content .wp-block-embed-youtube {
  margin: 30px 0;
}
.single-post-content .wp-block-embed-youtube iframe,
.single-post-content .wp-block-embed-youtube iframe[src*="youtube.com"],
.single-post-content .wp-block-embed-youtube iframe[src*="youtu.be"] {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  min-height: 315px;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.single-post-content .instagram-media {
  margin: 20px auto !important;
  min-height: 600px;
}
.single-post-content .entry-content {
  color: #cccccc !important;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 714px;
  margin: 0 auto 60px;
}
.single-post-content .entry-content h1, .single-post-content .entry-content h2, .single-post-content .entry-content h3, .single-post-content .entry-content h4, .single-post-content .entry-content h5, .single-post-content .entry-content h6 {
  color: #D7B46A !important;
  margin: 30px 0 15px 0;
}
.single-post-content .entry-content p {
  margin-bottom: 20px;
  color: #FFF;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8; /* 144.444% */
}
.single-post-content .entry-content blockquote {
  border-left: 4px solid #D7B46A !important;
  padding-left: 20px;
  margin: 20px auto;
  max-width: 100%;
  background-color: transparent;
}
.single-post-content .entry-content blockquote p {
  margin-bottom: 0;
}
.single-post-content .entry-content ol {
  list-style: decimal;
  margin-bottom: 20px;
  color: #FFF;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 40px; /* 144.444% */
}
.single-post-content .entry-content ul {
  list-style: disc;
  margin-bottom: 20px;
  color: #FFF;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 40px; /* 144.444% */
}
.single-post-content .entry-content a {
  color: #d4af37 !important;
  text-decoration: underline;
}
.single-post-content .entry-content a:hover {
  color: #ffffff !important;
}

.related-insights-section {
  border-top: 1px solid #333333;
  padding-top: 60px;
}
.related-insights-section .insights-hero {
  margin-bottom: 60px;
}
.related-insights-section .insights-hero .insights-main-title {
  margin: 0;
  max-width: 500px;
  color: #D7B46A;
  font-family: Raleway;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 57px; /* 142.5% */
}
.related-insights-section .insights-featured-posts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}
.related-insights-section .insights-featured-posts .featured-post-card {
  background-color: #2a2a2a !important;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 33px;
}
.related-insights-section .insights-featured-posts .featured-post-card:hover {
  transform: translateY(-3px);
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-image {
  height: 320px;
  position: relative;
  overflow: hidden;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-image .image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #b8b8b8 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-content {
  padding: 0;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-content .featured-title {
  margin-bottom: 15px;
  color: #D7B46A;
  font-family: Raleway;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-top: 20px; /* 116.667% */
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-content .featured-excerpt {
  color: #FFF;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  margin-bottom: 25px;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-content .featured-cta .learn-more-btn {
  background-color: #ffffff !important;
  color: #0C0C0C !important;
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: -0.2px;
}
.related-insights-section .insights-featured-posts .featured-post-card .featured-content .featured-cta .learn-more-btn:hover {
  background-color: #d4af37 !important;
  color: #1a1a1a !important;
}
.related-insights-section .insights-categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.related-insights-section .insights-categories .categories-title {
  color: #D7B46A;
  font-family: Raleway;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  margin: 0; /* 200% */
}
.related-insights-section .insights-categories .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.related-insights-section .insights-categories .category-filters .category-btn {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  padding: 6px 12px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #FFF;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 129.412% */
}
.related-insights-section .insights-categories .category-filters .category-btn:hover {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
}
.related-insights-section .insights-categories .category-filters .category-btn.active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #1a1a1a !important;
  font-weight: 500;
}
.related-insights-section .insights-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}
.related-insights-section .insights-posts-grid .post-card {
  background: rgba(217, 217, 217, 0.12);
  border-radius: 0;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.related-insights-section .insights-posts-grid .post-card:hover {
  transform: translateY(-3px);
}
.related-insights-section .insights-posts-grid .post-card .post-image {
  height: 264px;
  position: relative;
  overflow: hidden;
}
.related-insights-section .insights-posts-grid .post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-insights-section .insights-posts-grid .post-card .post-image .image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #b8b8b8 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-insights-section .insights-posts-grid .post-card .post-content {
  padding: 0;
}
.related-insights-section .insights-posts-grid .post-card .post-content .post-title {
  color: #D7B46A;
  font-family: Raleway;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 20px;
  margin-top: 20px; /* 108.333% */
}
.related-insights-section .insights-posts-grid .post-card .post-content .post-excerpt {
  color: #cccccc !important;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.related-insights-section .insights-posts-grid .post-card .post-content .post-cta .learn-more-btn {
  background-color: #ffffff !important;
  color: #0C0C0C !important;
  padding: 8px 13px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: -0.2px;
}
.related-insights-section .insights-posts-grid .post-card .post-content .post-cta .learn-more-btn:hover {
  background-color: #d4af37 !important;
  color: #1a1a1a !important;
}

@media (max-width: 768px) {
  .single-post-content .entry-title {
    font-size: 2.4rem;
  }
  .related-insights-section .insights-categories {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    overflow-x: scroll;
  }
  .related-insights-section .single-post-content .wp-block-embed iframe,
  .related-insights-section .single-post-content .wp-block-embed-youtube iframe,
  .related-insights-section .single-post-content iframe[src*="youtube.com"],
  .related-insights-section .single-post-content iframe[src*="youtu.be"] {
    min-height: 200px;
    margin: 15px 0;
  }
  .related-insights-section .insights-hero .insights-main-title {
    font-size: 2.2rem;
  }
  .related-insights-section .insights-featured-posts {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .related-insights-section .insights-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .related-insights-section .insights-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 600px) {
  .single-post-content .entry-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .single-post-page {
    padding: 80px 0 40px;
  }
  .single-post-page .container {
    padding: 0 15px;
  }
  .related-insights-section .insights-hero .insights-main-title {
    font-size: 1.8rem;
  }
}
.single-products {
  background: #EBEBEB;
}
.single-products .site--alt .site-header--alternative.is-scrolled .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #fff;
}
.single-products .site--alt .site-header--alternative .site-title a svg path.negative {
  fill: #000;
}
.single-products .site--alt .site-header--alternative .main-navigation--alternative:not(.menu-open) button svg path {
  stroke: #000;
}
.single-products .menu-open .menu-toggle svg path {
  stroke: #fff;
}
.single-products #masthead:not(.is-scrolled) .positive {
  fill: #000;
}
.single-products #masthead:not(.is-scrolled) .negative {
  fill: #000;
}
.single-products #masthead.is-scrolled .positive {
  fill: #fff !important;
}
.single-products #masthead.is-scrolled .negative {
  fill: #fff !important;
}

.single-products.business-plan #masthead:not(.is-scrolled) .negative,
body.business-plan.single-products #masthead:not(.is-scrolled) .negative,
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .negative {
  fill: #000 !important;
}
.single-products.business-plan #masthead:not(.is-scrolled) .positive,
body.business-plan.single-products #masthead:not(.is-scrolled) .positive,
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .positive {
  fill: #000 !important;
}
.single-products.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.negative,
body.business-plan.single-products #masthead:not(.is-scrolled) .site-branding .site-title a svg path.negative,
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.negative {
  fill: #000 !important;
}
.single-products.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color,
body.business-plan.single-products #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color,
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color {
  fill: #000 !important;
}
.single-products.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path[fill="#6f6f6f"],
body.business-plan.single-products #masthead:not(.is-scrolled) .site-branding .site-title a svg path[fill="#6f6f6f"],
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path[fill="#6f6f6f"] {
  fill: #000 !important;
}
.single-products.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color,
body.business-plan.single-products #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color,
body.has-header-alternative.business-plan #masthead:not(.is-scrolled) .site-branding .site-title a svg path.t-color {
  fill: #000 !important;
}

.single-products.business-plan #masthead.is-scrolled .negative,
body.business-plan.single-products #masthead.is-scrolled .negative {
  fill: #fff;
}

.solutions-submenu {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-submenu .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .solutions-submenu .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.solutions-submenu__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .solutions-submenu__content {
    height: 60px;
  }
}

.solutions-submenu__title {
  color: #FFF;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  /* 179.167% */
  letter-spacing: 1.44px;
}
@media (max-width: 768px) {
  .solutions-submenu__title {
    display: none;
  }
}

.solutions-submenu__list {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  margin: 0 20px 0 0;
  list-style: none;
  scroll-snap-type: x mandatory;
  flex: 1;
}
@media (max-width: 768px) {
  .solutions-submenu__list {
    justify-content: flex-start;
    overflow-x: scroll;
    margin: 0;
  }
}

.solutions-submenu__item {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .solutions-submenu__item {
    padding: 1rem 0;
  }
}

.solutions-submenu__item.is-active .solutions-submenu__link {
  border-radius: 25px;
  background: #D7B46A;
  color: #1a1a1a;
  font-weight: 600;
  height: 28px;
}

.solutions-submenu__link {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  text-decoration: none;
  color: #cccccc;
  color: #FFF;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
  /* 129.412% */
}
.solutions-submenu__link:hover {
  color: #D7B46A;
}

.solutions-hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
@media (max-width: 768px) {
  .solutions-hero {
    min-height: 240px;
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero {
    background-attachment: scroll;
  }
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.solutions-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.solutions-hero__title {
  color: #fff;
  font-family: "Raleway", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin: 0;
}

.solutions-content {
  padding: 2rem 0;
}

.solutions-content__description {
  max-width: 1100px;
  font-size: 1.125rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .solutions-content__description h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}

.solutions-items {
  padding: 1rem 0 2rem;
}

.solutions-items__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.solutions-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
}

.solutions-item__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.solutions-item__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.solutions-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.solutions-cta__button {
  display: inline-block;
  padding: 0.875rem 1.25rem;
  background: #f4c430;
  color: #000;
  border-radius: 0.375rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .solutions-items__grid {
    grid-template-columns: 1fr;
  }
}
/**
 * Índice de Estilos para Blocos
 * 
 * Este arquivo centraliza todos os imports relacionados aos blocos
 * para facilitar a manutenção e organização.
 */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.tavros-icon-text {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  /* Estado inicial para animação */
  opacity: 0;
  transform: translateX(-30px);
  /* Animação só é ativada quando a classe --animate estiver presente */
  /* Delays escalonados para criar efeito de cadência */
}
.tavros-icon-text--animate {
  animation: fadeInLeft 0.6s ease-out forwards;
}
.tavros-icon-text--animate:nth-child(1) {
  animation-delay: 0.1s;
}
.tavros-icon-text--animate:nth-child(2) {
  animation-delay: 0.2s;
}
.tavros-icon-text--animate:nth-child(3) {
  animation-delay: 0.3s;
}
.tavros-icon-text--animate:nth-child(4) {
  animation-delay: 0.4s;
}
.tavros-icon-text--animate:nth-child(5) {
  animation-delay: 0.5s;
}
.tavros-icon-text--animate:nth-child(6) {
  animation-delay: 0.6s;
}
.tavros-icon-text--animate:nth-child(7) {
  animation-delay: 0.7s;
}
.tavros-icon-text--animate:nth-child(8) {
  animation-delay: 0.8s;
}
.tavros-icon-text--animate:nth-child(9) {
  animation-delay: 0.9s;
}
.tavros-icon-text--animate:nth-child(10) {
  animation-delay: 1s;
}
.tavros-icon-text__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.tavros-icon-text__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tavros-icon-text__content {
  line-height: 1.4;
}

/**
 * Estilos para o bloco Price Box
 */
.tavros-price-box {
  margin: 2rem 0;
}
.tavros-price-box__content {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 130px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.431372549) 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  max-width: fit-content;
}
.tavros-price-box__content:hover {
  border-color: #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .tavros-price-box__content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
}
.tavros-price-box__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.tavros-price-box__default-price {
  font-size: 1.125rem;
  color: #6c757d;
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tavros-price-box__default-price {
    font-size: 1rem;
  }
}
.tavros-price-box__discount-price {
  font-size: 2rem;
  font-weight: 700;
  color: #198754;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tavros-price-box__discount-price {
    font-size: 1.75rem;
  }
}
.tavros-price-box__label {
  display: inline-block;
  background: #198754;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tavros-price-box__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tavros-price-box__actions {
    width: 100%;
    flex-direction: column;
  }
}
.tavros-price-box__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tavros-price-box__button {
    width: 100%;
    padding: 1rem;
  }
}
.tavros-price-box__button--primary {
  background: #0d6efd;
  color: white;
}
.tavros-price-box__button--primary:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.3019607843);
}
.tavros-price-box__button--primary:active {
  transform: translateY(0);
}
.tavros-price-box__button--secondary {
  background: white;
  color: #0d6efd;
  border-color: #0d6efd;
}
.tavros-price-box__button--secondary:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.3019607843);
}
.tavros-price-box__button--secondary:active {
  transform: translateY(0);
}
.tavros-price-box--compact .tavros-price-box__content {
  padding: 1.5rem;
}
.tavros-price-box--compact .tavros-price-box__discount-price {
  font-size: 2rem;
}
.tavros-price-box--compact .tavros-price-box__button {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}
.tavros-price-box--dark .tavros-price-box__content {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  border-color: #495057;
}
.tavros-price-box--dark .tavros-price-box__default-price {
  color: #adb5bd;
}
.tavros-price-box--dark .tavros-price-box__discount-price {
  color: #51cf66;
}
.tavros-price-box--dark .tavros-price-box__label {
  background: #51cf66;
  color: #212529;
}
.editor-styles-wrapper .tavros-price-box__button {
  pointer-events: none;
}

/**
 * Índice de Estilos para Blocos
 * 
 * Este arquivo centraliza todos os imports relacionados aos blocos
 * para facilitar a manutenção e organização.
 */
/**
 * Estilos para Blocos do WordPress
 * 
 * Este arquivo organiza todos os estilos relacionados aos blocos personalizados
 * e blocos padrão do WordPress que precisam de customização específica.
 */
.wp-block {
  max-width: 100%;
}
.wp-block.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.wp-block.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block.aligncenter {
  text-align: center;
}

.wp-block-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.wp-block-paragraph.has-background {
  padding: 1rem 1.5rem;
  border-radius: 4px;
}
.wp-block-paragraph.has-text-color {
  color: inherit;
}

.wp-block-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
  line-height: 1.2;
  font-weight: 600;
}
.wp-block-heading h1 {
  font-size: 2.5rem;
}
.wp-block-heading h2 {
  font-size: 2rem;
}
.wp-block-heading h3 {
  font-size: 1.75rem;
}
.wp-block-heading h4 {
  font-size: 1.5rem;
}
.wp-block-heading h5 {
  font-size: 1.25rem;
}
.wp-block-heading h6 {
  font-size: 1rem;
}

.wp-block-list {
  margin-bottom: 1.5rem;
}
.wp-block-list ul,
.wp-block-list ol {
  padding-left: 1.5rem;
}
.wp-block-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.wp-block-image {
  margin: 2rem 0;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.wp-block-image.aligncenter {
  text-align: center;
}
.wp-block-image.aligncenter img {
  margin: 0 auto;
}
.wp-block-image.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}
.wp-block-image.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.wp-block-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #007cba;
  background-color: #f8f9fa;
  font-style: italic;
}
.wp-block-quote p {
  margin-bottom: 0.5rem;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}
.wp-block-quote cite {
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
}

.wp-block-code {
  background-color: #f1f3f4;
  padding: 1rem;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-x: auto;
}

.wp-block-separator {
  margin: 2rem 0;
  border: none;
  border-top: 2px solid #ddd;
}
.wp-block-separator.is-style-wide {
  border-top-width: 4px;
}
.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.wp-block-separator.is-style-dots::before {
  content: "•••";
  font-size: 1.5rem;
  color: #666;
}

.wp-block-button {
  margin: 1rem 0;
}

.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-columns .wp-block-column {
    flex-direction: column;
    width: 100%;
    display: flex;
  }
}

.wp-block-group {
  margin: 2rem 0;
}
.wp-block-group.has-background {
  padding: 2rem;
  border-radius: 8px;
}

.wp-block + .wp-block {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .wp-block.alignwide {
    max-width: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .wp-block-image.alignleft, .wp-block-image.alignright {
    float: none;
    margin: 1rem 0;
    text-align: center;
  }
  .wp-block-columns {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .wp-block-heading h1 {
    font-size: 2rem;
  }
  .wp-block-heading h2 {
    font-size: 1.75rem;
  }
  .wp-block-heading h3 {
    font-size: 1.5rem;
  }
  .wp-block-quote {
    padding: 1rem;
  }
  .wp-block-button .wp-block-button__link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.wp-element-button {
  background: #D7B46A;
  color: #000;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.wp-element-button:hover {
  background: #eac471;
  color: #000;
}

.mw-740 {
  width: 100%;
  max-width: 740px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .mw-740 {
    flex-direction: column;
  }
}
.mw-740 > div > div {
  padding: 20px 0;
  display: flex;
}

/*# sourceMappingURL=app.css.map*/