/* =========================================================
   BUCKLER SPACES - COMPLETE STYLESHEET
   ========================================================= */

/* FONTES LOCAIS (Wix Madefor Display) */
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* VARIÁVEIS DO SISTEMA */
:root {
  --color-primary: #C36A3C;
  --color-primary-dark: #A54F25;
  --color-primary-light: #D98255;
  --color-gradient-cta: linear-gradient(90deg, #D07645 0%, #BA6236 100%);
  --color-gradient-header: linear-gradient(90deg, #D47949 0%, #AF5932 45%, #6A2F22 100%);
  --color-gradient-ribbon: linear-gradient(180deg, #D47949 0%, #AF5932 50%, #682E22 100%);
  
  --color-bg-dark: #0A0A0A;
  --color-bg-card: #E5E1D7;
  --color-bg-light: #E6E2D8;
  --color-bg-service: #EDE8E2;
  
  --font-main: 'Wix Madefor Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

/* ================= CUSTOM SELECTION & SCROLLBAR ================= */
::selection {
  background: var(--color-primary);
  color: #FFFFFF;
}
::-moz-selection {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-main);
  color: #333333;
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  letter-spacing: -0.01em;
}

/* ================= NAVBAR FIXA GLOBAL (COMPACTA AO ROLAR) ================= */
.z-nav {
  z-index: 10000;
}

.header-nav {
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--color-gradient-cta);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-nav.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 25px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav.scrolled .logo-img {
  height: 20px;
}

.btn-menu {
  color: #FFFFFF;
  background: transparent;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
}

.header-nav.scrolled .btn-menu {
  width: 36px;
  height: 36px;
}

.btn-menu:hover {
  transform: scale(1.08);
}

.menu-icon-open,
.menu-icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-icon-open i {
  font-size: 2.1rem;
  line-height: 1;
  transition: font-size 0.3s ease;
}

.header-nav.scrolled .menu-icon-open i {
  font-size: 1.7rem;
}

.menu-icon-close i {
  font-size: 1.5rem;
  line-height: 1;
  transition: font-size 0.3s ease;
}

.header-nav.scrolled .menu-icon-close i {
  font-size: 1.3rem;
}

.menu-icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.7);
  pointer-events: none;
}

/* Estado Aberto no Botão */
body.menu-open .menu-icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.7);
}

body.menu-open .menu-icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  pointer-events: auto;
}

/* ================= ENTRANCE ANIMATIONS (SITE-WIDE) ================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-down {
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-reveal-up {
  opacity: 0;
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

/* Scroll Reveal Classes (Via Intersection Observer) */
.reveal-element {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element[data-anim="fade-up"] {
  transform: translateY(50px);
}

.reveal-element[data-anim="fade-in"] {
  transform: scale(0.96);
}

.reveal-element[data-anim="fade-scale"] {
  transform: scale(0.93) translateY(30px);
}

.reveal-element[data-anim="fade-left"] {
  transform: translateX(-50px);
}

.reveal-element[data-anim="fade-right"] {
  transform: translateX(50px);
}

.reveal-element.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ================= STAGGERED MENU OVERLAY (React Bits Style) ================= */
.staggered-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9990;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.45s ease;
}

.staggered-menu-overlay.active {
  pointer-events: auto;
  visibility: visible;
}

.menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.staggered-menu-overlay.active .menu-backdrop {
  opacity: 1;
}

.menu-top-spacer {
  height: 70px;
}

.menu-container {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.staggered-menu-overlay.active .menu-container {
  opacity: 1;
  transition-delay: 0.1s;
}

.menu-item-wrapper {
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
  color: #FFFFFF;
  transform: translateY(120%) rotate(3deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, color 0.25s ease;
}

.menu-number {
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.menu-text {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gradient-cta);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-link:hover .menu-text {
  color: #EDE8E2;
  transform: translateX(10px);
}

.menu-link:hover .menu-text::after {
  width: 100%;
}

/* Staggered Delay */
.staggered-menu-overlay.active .menu-item-wrapper:nth-child(1) .menu-link {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  transition-delay: 0.22s;
}

.staggered-menu-overlay.active .menu-item-wrapper:nth-child(2) .menu-link {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  transition-delay: 0.29s;
}

.staggered-menu-overlay.active .menu-item-wrapper:nth-child(3) .menu-link {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  transition-delay: 0.36s;
}

.staggered-menu-overlay.active .menu-item-wrapper:nth-child(4) .menu-link {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  transition-delay: 0.43s;
}

.hover-opacity {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hover-opacity:hover {
  opacity: 1 !important;
  transform: scale(1.15);
  color: var(--color-primary-light) !important;
}

/* ================= HERO SECTION (DOBRA 1 - FIEL À REFERÊNCIA) ================= */
.hero-section {
  min-height: 100vh;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) contrast(1.02);
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) contrast(1.02);
  pointer-events: none;
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.16;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  max-width: 520px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.55;
  color: #F0ECE6;
  max-width: 440px;
  font-weight: 400;
}

/* ================= ABOUT SECTION (DOBRA 2) ================= */
.about-section {
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-bg-light);
  position: relative;
  padding: 80px 0 100px 0;
}

.about-bg-split {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}

.about-bg-left {
  width: 42%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: url('../images/att_image.png');
  background-attachment: fixed;
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-bg-left.reveal-element {
  transform: none !important;
  will-change: opacity !important;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-bg-right {
  width: 58%;
  height: 100%;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.geometric-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
    linear-gradient(225deg, rgba(210, 203, 192, 0.6) 0%, transparent 65%),
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 100%);
}

.about-card {
  background: var(--color-bg-card);
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(40, 20, 15, 0.14);
  position: relative;
  margin-bottom: 25px;
}

.about-card-header {
  background: var(--color-gradient-header);
  padding: 35px 55px;
}

.about-card-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.about-card-body {
  padding: 55px 55px 70px 55px;
  background: var(--color-bg-card);
}

.about-card-text {
  color: #383431;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.62;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-card-cta-wrapper {
  position: absolute;
  bottom: -22px;
  left: 55px;
  z-index: 5;
}

/* ================= WRAPPER SEÇÕES 3 E 4 ================= */
.sections-3-4-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #55271E;
}

.sections-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sections-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ================= SERVICES SECTION (DOBRA 3) ================= */
.services-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.service-card {
  background: var(--color-bg-service);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

.service-media-col {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.service-ribbon {
  width: 68px;
  min-width: 68px;
  background: var(--color-gradient-ribbon);
  position: relative;
  z-index: 3;
}

.service-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(186, 96, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BA6035;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.service-arrow-btn.prev {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.service-arrow-btn.next {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.service-arrow-btn.prev:hover {
  background: rgba(186, 96, 53, 0.08);
  transform: translateY(-50%) scale(1.1);
}

.service-arrow-btn.next:hover {
  background: rgba(186, 96, 53, 0.08);
  transform: translateY(-50%) scale(1.1);
}

.service-img-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-img.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.service-content-col {
  background: var(--color-bg-service);
  padding: 80px 65px;
}

.service-badge-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #BA6035;
  display: inline-block;
}

.service-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-title {
  color: #332622;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-text {
  color: #4A4541;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  font-weight: 400;
}

.service-slider-indicators {
  display: flex;
  align-items: center;
}

.service-slider-indicators .indicator {
  height: 5px;
  border-radius: 3px;
  width: 38px;
  background-color: #D48E6E;
  opacity: 0.35;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-slider-indicators .indicator:hover {
  opacity: 0.7;
}

.service-slider-indicators .indicator.active {
  background-color: #BA6035;
  opacity: 1;
  width: 55px;
}

/* ================= CONTACT SECTION (DOBRA 4) ================= */
.contact-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.contact-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  color: #EDE8E2;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  max-width: 480px;
  font-weight: 300;
}

.contact-glass-card {
  background: rgba(85, 40, 30, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 38px 36px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.glass-form-title {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
  color: #FFFFFF;
}

.glass-form-title strong {
  font-weight: 700;
}

.form-icon-badge {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.form-label-glass {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control-glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 0.95rem;
  color: #2D2320;
  font-family: var(--font-main);
  transition: all 0.25s ease;
}

.form-control-glass::placeholder {
  color: #8C7A72;
  font-size: 0.88rem;
}

.form-control-glass:focus {
  background: rgba(255, 255, 255, 0.96);
  color: #2D2320;
  border-color: rgba(212, 121, 73, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 121, 73, 0.35);
  outline: none;
}

select.form-control-glass {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232D2320' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px 12px;
  padding-right: 45px;
}

select.form-control-glass option {
  background-color: #EDE8E2;
  color: #2D2320;
}

select.form-control-glass option:checked,
select.form-control-glass option:hover {
  background-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 10px 100px var(--color-primary) inset !important;
}

#metragemInput:disabled,
#metragemInput[readonly] {
  background: rgba(255, 255, 255, 0.45);
  color: rgba(45, 35, 32, 0.8);
  cursor: not-allowed;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.social-links .social-icon {
  color: #FFFFFF;
  font-size: 1.25rem;
  opacity: 0.85;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
}

.social-links .social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #D47949;
}

/* ================= FOOTER ================= */
.site-footer {
  background-color: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-img {
  height: 22px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer-copyright {
  color: #8C8A87;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ================= CTA BUTTON ================= */
.btn-cta {
  background: var(--color-gradient-cta);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 15px rgba(186, 98, 54, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background: linear-gradient(90deg, #DD7F4D 0%, #C76B3C 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 98, 54, 0.5);
}

.btn-cta i {
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.btn-cta:hover i {
  transform: translateY(2px);
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 991.98px) {
  .about-bg-split {
    position: relative;
    height: 340px;
    flex-direction: column;
  }
  .about-bg-left {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: center center;
  }
  .about-bg-right {
    display: none;
  }
  .about-section {
    flex-direction: column;
    background-color: var(--color-bg-light);
    padding: 0 0 60px 0;
  }
  .about-card {
    margin-top: -60px;
  }
  .about-card-body {
    padding: 40px 30px 68px 30px; /* Aumentado padding de 48px para 68px para afastar o botão */
  }
  .about-card-header {
    padding: 25px 30px;
  }
  .about-card-cta-wrapper {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
  }
  .about-card-cta-wrapper .btn-cta {
    padding: 10px 26px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .hero-content .btn-cta {
    padding: 10px 16px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .services-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .service-ribbon {
    display: none !important; /* Esconde a fita lateral laranja no mobile */
  }
  .service-media-col {
    min-height: 280px;
    width: 100%;
  }
  .service-img-wrapper {
    width: 100%;
  }
  .service-content-col {
    padding: 45px 35px;
  }
  .service-slider-container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .service-arrow-btn {
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1.2px solid rgba(186, 96, 53, 0.25);
    color: #BA6035 !important;
  }
  .service-arrow-btn.prev {
    left: 8px;
  }
  .service-arrow-btn.next {
    right: 8px;
  }
  .contact-glass-card {
    padding: 28px 22px;
  }
}

@media (max-width: 767.98px) {
  /* Logo menor no mobile */
  .logo-img {
    height: 18px !important;
  }

  /* Parágrafos e títulos centralizados (exceto os de serviços) */
  p:not(.service-text),
  .hero-subtitle,
  .about-card-text,
  .about-card-title,
  .contact-title,
  .contact-subtitle,
  .section-subtitle {
    text-align: center;
  }
  
  .hero-content, .contact-content-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content .btn-cta {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Textos de serviço mantêm o alinhamento à esquerda */
  .service-slide, .service-slide * {
    text-align: left !important;
  }

  /* Centralização das redes sociais e do botão enviar no formulário */
  .contact-form .d-flex.flex-wrap {
    justify-content: center !important;
    text-align: center;
    flex-direction: column;
    align-items: center !important;
    gap: 15px !important;
  }
  
  .contact-form .social-links {
    justify-content: center;
    width: 100%;
    margin-top: 5px;
  }

  /* Centralização das redes sociais e textos no menu suspenso */
  .menu-footer {
    align-items: center !important;
    text-align: center;
  }
  .menu-socials {
    justify-content: center;
    width: 100%;
  }
}

/* ================= BOTÃO VOLTAR AO TOPO ================= */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gradient-cta);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-back-to-top:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #DD7F4D 0%, #C76B3C 100%);
  box-shadow: 0 6px 20px rgba(186, 98, 54, 0.5);
  color: #FFFFFF;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}
