/*----------------------------------------------------------------------
  CSS INDEX: Móveis Dellabruna Landing Page
  ----------------------
    ## Default Style
    ## Common Classes
    ## Header style
    ## Hero Section
    ## Sobre Nós Section
    ## Diferenciais Section
    ## Produtos Section
    ## Projetos Section
    ## Clientes Section
    ## FAQ Section
    ## Main Footer
/* -------------------------------------------------------------- */

/*******************************************************/
/******************* ## Default Style ******************/
/*******************************************************/
* { margin: 0; padding: 0; border: none; outline: none; box-shadow: none; }
html { scroll-behavior: smooth; }

/* Offset de scroll por seção — ajuste cada valor conforme necessário */
#home         { scroll-margin-top: 0px; }
#clientes     { scroll-margin-top: 250px; }
#sobre-nos    { scroll-margin-top: 72px; }
#diferenciais { scroll-margin-top: 72px; }
#produtos     { scroll-margin-top: 150px; }
#projetos     { scroll-margin-top: 150px; }
#faq          { scroll-margin-top: 72px; }
body {
  color: var(--black-30); background-color: white; position: relative; font-weight: 400; line-height: 28px; font-size: 16px; font-family: "Montserrat", sans-serif;
  --primary-color: #ffb700; --heading-color: #FFFFFF; --secondary-color: #131412; --black-120: #0F100E; --black-110: #111210; --black-100: #131412; --black-90: #2B2C2A; --black-80: #424341; --black-70: #5A5B59; --black-60: #717271; --black-50: #898A89; --black-40: #A1A1A0; --black-30: #B8B9B8; --black-20: #D0D0D0; --black-10: #E7E8E7; --border-color: #D9DFE7;
}
a { color: var(--black-30); cursor: pointer; outline: none; transition: 0.5s; text-decoration: none; }
a:hover, a:focus, a:visited { text-decoration: none; outline: none; }
a:hover { color: var(--primary-color); }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: var(--black-30); }
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 { color:var(--heading-color); }
.text-black{ color:var(--black-90); }
ul, li { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: inline-block; }

.fa, .fas { font-weight: lighter; }
.fa-long-arrow-right:before, .fa-long-arrow-left:before { font-weight: lighter; }

.black-120-bg{ background-color: var(--black-120); }
.white-bg{ background: white; }
.marrom-principal { background-color: #5d2e12; }

.theme-btn { padding: 16px 32px; background:var(--primary-color); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 500; transition: 0.5s;}
.theme-btn:hover { color: #fff; opacity: 0.9;}

/*******************************************************/
/****************** ## Common Classes *****************/
/*******************************************************/
.page-wrapper { position: relative; z-index: 9; width: 100%; margin: 0 auto; overflow: hidden; min-width: 300px; isolation: isolate; }
.page-wrapper::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/pattern.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 760px auto;
  opacity: .2;
  filter: grayscale(100%);
  mix-blend-mode: soft-light;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0.65) 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 15%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.35) 85%,
    transparent 100%
  );
}
@media only screen and (min-width: 1400px) { .container { max-width: 1410px; } }
.container-fluid { padding-left: 0; padding-right: 0; }
.row { --bs-gutter-x: 0; }

@media only screen and (min-width: 992px) { .gap-64 { --bs-gutter-x: 64px; } }

section { background-size: cover; background-repeat: no-repeat; }
.section-title h2 span { color: var(--primary-color); }

/* Tabs */
ul.nav-pills.tab-style-one{ margin-left: auto; margin-right: auto; width: fit-content; max-width: 100%; }
ul.nav-pills.tab-style-one .nav-link{ color: var(--black-30); font-weight: 600; padding:16px 32px; border-radius: 0; background: transparent; border-bottom: 1px solid var(--border-color); }
.tab-style-one .nav-link.active, .tab-style-one .nav-item.current .nav-link { color: var(--primary-color); border-bottom-color: var(--primary-color); }

/* Scroll Top */
.scroll-top { position: fixed; bottom: 25px; right: 0; width: 40px; height: 40px; z-index: 99; color: white; display: none; cursor: pointer; background: var(--primary-color); animation: pulse 2s infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 35px rgba(255, 255, 255, 0); } }

.text-white *, .text-white a { color:var(--heading-color); }
.rel { position: relative; } .z-1 { z-index: 1; }
.overlay { z-index: 55; position: relative; opacity: 1; }
.overlay::before { position: absolute; content: ""; width: 100%; height: 100%; z-index: -1; top: 0; left: 0; opacity: 0.3; }

/* Spacing */
.pt-32 { padding-top: 32px; } .pt-40 { padding-top: 40px; } .pt-64 { padding-top: 64px; } .pt-96 { padding-top: 96px; } .py-128{ padding-top: 90px; padding-bottom: 90px; }
.pb-64 { padding-bottom: 64px; } .pb-96 { padding-bottom: 96px; }
.mt-16{ margin-top: 16px; } .mb-0{ margin-bottom: 0; } .mb-16{ margin-bottom: 16px; } .mb-32{ margin-bottom: 32px; } .mb-64{ margin-bottom: 64px; } .mb-96{ margin-bottom: 25px; }

/* Typography */
.heading, h1, h2, h3, h4, h5, h6 { color: var(--black-30); font-family: "Montserrat", sans-serif; }
.projetos-section .carousel-control-prev-icon i, .diferenciais-section .carousel-control-prev-icon i { color: var(--black-90); }
.projetos-section .carousel-control-next-icon i, .diferenciais-section .carousel-control-next-icon i { color: var(--black-90); }
.delay-0-2s { animation-delay: 0.2s; } .delay-0-4s { animation-delay: 0.4s; }

/*******************************************************/
/******************* ## Header style ******************/
/*******************************************************/
header { margin-bottom: 92px; }
.main-header { position: relative; z-index: 999; width: 100%; transition: all 500ms ease; }
.main-header .header-upper { z-index: 5; width: 100%; position: absolute; transition: all 500ms ease; }
.main-header.fixed-header { background: var(--black-120); }
.main-header.fixed-header .header-upper { top: 0; left: 0; position: fixed; animation: sticky 1s; box-shadow: 0px 0px 30px 0px rgba(0,0,0, 0.5); }
@keyframes sticky { 0% { top: -100px; } 100% { top: 0; } }

/* Logo Base */
.main-header .logo { z-index: 9; padding: 2px 0; position: relative; filter: grayscale(100%) invert(1); width: 115px; }

/* Menu Base */
.main-menu .navbar-collapse { padding: 0; }
.main-menu .navbar-collapse ul { margin: 0; padding: 0; }

/* =========================================
   Estilos Desktop (Telas grandes)
========================================= */
@media only screen and (min-width: 992px) {
  .main-header .logo-outer { display: block; }
  .main-menu .navbar-header { display: none; }
  .main-menu .navbar-collapse { display: block !important; }
  
  .main-menu .navbar-collapse > ul { display: flex; align-items: center; justify-content: flex-end; }
  .main-menu .navbar-collapse > ul > li { position: relative; padding: 25px 16px; }
  .main-menu .navbar-collapse > ul > li > a { color: var(--black-30); text-transform: uppercase; font-size: 15px; font-weight: 500; transition: 0.3s; }
  .main-menu .navbar-collapse > ul > li > a:hover { color: var(--primary-color); }
}

/* =========================================
   Estilos Mobile (Celulares e Tablets)
========================================= */
@media only screen and (max-width: 991px) {
  header { margin-bottom: 46px; }
  .main-header .logo-outer { display: none; } 

  .main-header .nav-outer { 
    width: 100%; 
    margin-left: 0 !important; 
}
  
  .main-menu { width: 100%; }
  
  .main-menu .navbar-header { 
      display: flex; 
      align-items: center; 
      justify-content: center;
      width: 100%; 
      padding: 15px 0; 
  }
  
  .main-menu .mobile-logo img { max-width: 70px; filter: grayscale(100%) invert(1); }
  
  .main-menu .navbar-toggle { display: none; } 
  
  .main-menu .navbar-collapse { position: absolute; left: 0; top: 100%; width: 100%; background: var(--black-100); max-height: calc(100vh - 80px); overflow-y: auto; z-index: 99; padding: 10px 0; border-top: 1px solid var(--black-90);}
  .main-menu .navbar-collapse > ul { display: flex; flex-direction: column; }
  .main-menu .navbar-collapse li { border-bottom: 1px solid var(--black-90); }
  .main-menu .navbar-collapse li:last-child { border-bottom: none; }
  .main-menu .navbar-collapse li a { display: block; padding: 15px 20px; font-size: 16px; color: var(--heading-color); text-transform: uppercase; transition: 0.3s; }
  .main-menu .navbar-collapse li a:hover { color: var(--primary-color); padding-left: 25px; }
}

/* =========================================
     [NOVO] Ajustes do Hero para Mobile
  ========================================= */
  .hero-section { margin-top: -60px; }
  .hero-section .carousel-item { height: 100vh; min-height: 600px; padding-top: 80px; align-content: flex-start; }
  
  .category-line { padding-left: 54px; }
  .category-line:after { width: 40px; top: 10px; }

  .hero-highlight-mobile { font-size: 25px; font-weight: 300; line-height: 1.2; }
  .hero-stroke-mobile { font-size: 60px; font-weight: 700 !important; color: var(--primary-color); }
  .hero-text-mobile { font-size: 18px; font-weight: 400; line-height: 1.5; color: var(--heading-color); }



/*******************************************************/
/******************** ## Hero Section ******************/
/*******************************************************/
.hero-section { position: relative; margin-top: -7em; }
.category-line{ color: white; padding-left: 128px; position: relative; }
.category-hero{ color: var(--heading-color); }
.category-line:after { content: ''; position: absolute; width: 96px; height: 1px; background: var(--primary-color); left: 0; top: 13px; }
.hero-section .carousel-item { background-size: cover; background-position: center; height: 85vh; position: relative; align-content: center; }
.hero-section .carousel-item .container { position: relative; z-index: 1; }
.hero-section .carousel-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), transparent); z-index: 0; }
h1.hero-highlight { font-size: 60px; font-weight: 300; line-height: 1; }
h1.hero-text { font-size: 25px; font-weight: 400; }
.hero-section .hero-stroke { font-size: 100px; font-weight: 700 !important; color: var(--primary-color); }



/*******************************************************/
/************* ## Clientes Logos Section ***************/
/*******************************************************/
.clientes-logos-section {
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.mask-edges {
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused; 
}

.logo-slide {
  width: 220px;
  margin: 0 40px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slide img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;

  transition: all 0.4s ease;
  cursor: pointer;
}

.logo-slide img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%); 
  }
}

@media (max-width: 767px) {
  .logo-slide {
      width: 150px;
      margin: 0 20px;
  }
  .logo-slide img {
      max-height: 60px;
  }
}

/*******************************************************/
/****************## Sobre Nós Section ******************/
/*******************************************************/
.sobre-nos-section .container{ position: relative; }
.sobre-nos-section .category-line:after{ top: 44%; width: 196px; }
.sobre-nos-bg {color: var(--black-10) !important;}
.sobre-nos-section .big-text{ font-size: 7em; text-shadow: 1px 1px 0 var(--primary-color), -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color), -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color); padding-left: 228px; z-index: 1; padding-bottom: 34px; letter-spacing: -5px; }
.sobre-nos-section .right-image{ position: absolute; right: -3em; max-height: 100%; max-width: 100%; }
.sobre-nos-section .small-image{ padding-left: 64px; z-index: 1; object-fit: cover; }
.sobre-nos-section .sobre-nos-subtitle{ font-size: 55px; font-weight: 600; }
.sobre-nos-section .sobre-nos-text{ font-size: 18px; font-weight: 500; line-height: 1.8; color: var(--black-90) }

@media(max-width: 991px){ .sobre-nos-section .right-image{ padding-left: 74px; } }
@media(max-width: 767px){
  .sobre-nos-section .right-image{ position: unset; padding-left: 0; margin-top: 10px; }
  .sobre-nos-section .small-image{ display: none; }
  .sobre-nos-section .category-line:after{ width: 64px; }
  .sobre-nos-section .big-text{ padding-left: 96px; font-size: 4em;}
}

/*******************************************************/
/**************** ## Diferenciais Section **************/
/*******************************************************/
.diferenciais-section .carousel-item { height: 100%; padding-left: 50px; padding-right: 50px;}
.diferenciais-section .carousel-item-next, 
.diferenciais-section .carousel-item-prev, 
.diferenciais-section .carousel-item.active { 
    display: flex !important; 
    align-items: stretch; 
}
.diferenciais-section .item { 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    height: 100%; 
}
.diferenciais-section .item > .row.mb-64 { 
    flex: 1 1 auto; 
    align-items: flex-start !important; 
    min-height: 172px; 
    margin-bottom: 64px !important; 
    position: relative;
}
.diferenciais-section .item img { 
    width: 100%; 
    height: 320px; 
    object-fit: cover; 
    flex: 0 0 auto; 
    margin-top: auto; 
}
.diferenciais-section .item .diferencial-giant-text{ position: absolute; right: -16px; top: 0.3em; color: var(--primary-color); opacity: 0.2; font-size: 14em; font-weight: 700; transition: 0.3s;}
.diferenciais-section .item:hover .diferencial-giant-text{ opacity: 0.5; }
.diferenciais-section .item .text{ padding-right: 45px; padding-top: 32px; z-index: 1; }
.diferenciais-section .item:first-child { padding-right: 64px; }
.diferenciais-section .item:nth-child(2) { padding-left: 32px; padding-right: 32px; }
.diferenciais-section .item:last-child { padding-left: 64px; }
.diferencial-title { font-size: 25px; text-transform: uppercase; font-weight: 700; }

.carousel-buttons button { background:var(--primary-color); width: 40px; height: 40px; }
.carousel-buttons button i { color: var(--black-100); }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  display: contents;
}

@media(max-width: 1199px){ .diferenciais-section .item .text{ padding-right: 0; padding-top: 0; } }
@media(max-width: 991px){ .diferenciais-section .item { padding-left: 8px !important; padding-right: 8px !important; } }
@media(max-width: 767px){ .diferenciais-section .item img{ height: 240px; } }

/*******************************************************/
/***************** ## Produtos Section *****************/
/*******************************************************/
.produtos-section .produtos-grid { margin-left: auto; margin-right: auto; max-width: 1400px; }
.produtos-section .produto-card { position: relative; background: #fff; border: 1px solid #e8e8e8; border-radius: 15px; height: 100%; min-height: 280px; padding: 32px 24px; overflow: hidden; transition: border-color 0.3s ease; margin-bottom: 30px; display: flex; align-items: center; justify-content: center;}
.produtos-section .produto-card:hover { border-color: #ccc; }
.produtos-section .produto-card img { width: 100%; max-height: 320px; object-fit: contain; }
.produtos-section .produto-card .carousel-caption { position: absolute; right: 0; bottom: 0; left: unset; width: fit-content; background: #4c230b; padding: 24px; text-align: left; transform: perspective(250px) rotateY(-90deg); transform-origin: right bottom; transition: all 400ms ease-in-out; }
.produtos-section .produto-card:hover .carousel-caption { transform: perspective(250px) rotateY(0deg); }
.produtos-section .produto-card .sub-title { display: inline-flex; align-items: center; color: var(--primary-color); text-transform: uppercase; }
.produtos-section .produto-card .sub-title:before { content: ''; width: 32px; height: 1px; background: var(--primary-color); margin-right: 16px; }
.produtos-section .produto-card h4 { margin-bottom: 0; font-size: 1rem; }

.produtos-section .nav-pills .nav-link.active { background: unset; color: var(--primary-color); border-color: var(--primary-color);}

@media only screen and (min-width: 992px) {
  .produtos-section .produto-card { min-height: 360px; padding: 40px 28px; }
  .produtos-section .produto-card img { max-height: 380px; }
  .produtos-section .produto-card .carousel-caption { padding: 32px; }
}

@media only screen and (max-width: 991px) {
  .produtos-section .produto-card { 
      flex-direction: column; 
      padding: 24px 12px; 
  }
  
  .produtos-section .produto-card .carousel-caption { 
      transform: none; 
      position: relative; 
      width: 100%;
      max-width: 100%; 
      padding: 16px 0 0; 
      margin-top: 8px; 
      background: transparent;
      text-align: center;
  }
  
  .produtos-section .produto-card .carousel-caption h4 { 
      color: #333 !important;
  }
  
  .produtos-section .produto-card .sub-title:before { 
      display: none; 
  }
  
  .produtos-section .nav-pills { 
      justify-content: center; 
      margin: 0 auto; 
  }
}

/*******************************************************/
/***************** ## Projetos Section *****************/
/*******************************************************/
.projetos-section .section-title{ float: left; }
.projetos-section .carousel-item-next, .projetos-section .carousel-item-prev, .projetos-section .carousel-item.active { display: flex; }
.projetos-section .carousel-item .carousel-caption{ position: relative; text-align: left; background: white; color: var(--black-90); padding: 32px; left: 16px; top: -64px; margin-right: 32px; bottom: 0; }
.projetos-section .carousel-item .carousel-caption h6{ font-size: 1.25rem; }
.projetos-section .carousel-item{ margin-bottom: -64px; }
.projetos-section .carousel-item img{ width: 100%; }
.projetos-section .projeto-act:nth-child(even){ margin-top: 64px; }
.section-heading .carousel-buttons{ float: right; margin: auto 0 auto auto; }
.buttons-vertical{ display: grid; }
.buttons-vertical button.prev{ margin-bottom: 4px; }

@media (min-width: 1200px){
  .projetos-section .projeto-act:nth-child(2) { padding-left: 7.5px; padding-right: 15px; }
  .projetos-section .projeto-act:nth-child(3) { padding-left: 15px; padding-right: 7.5px; }
  .projetos-section .projeto-act:first-child { padding-right: 22.5px; }
  .projetos-section .projeto-act:last-child { padding-left: 22.5px; }
}
@media(max-width: 767px){ .projetos-section .carousel-item { margin-bottom: -64px; } .projetos-section .projeto-act{ padding: 0!important; } }

/*******************************************************/
/***************** ## Clientes Section *****************/
/*******************************************************/
section#clientes { border-top: 1px solid rgba(255, 255, 255, 0.192); }
.counter-title { color: var(--heading-color); text-transform: capitalize; }
.count-text, span.h3.count-text-2 { font-size: 3em; font-weight:600;  color: var(--primary-color) !important; }
@media(max-width: 991px) { 
  .clientes-section .row.gap-4 > div { margin-bottom: 32px; }
  .clientes-section .row.gap-4 > div:last-child { margin-bottom: 0; }
}

/*******************************************************/
/******************* ## FAQ Section ********************/
/*******************************************************/
.faq-section .faq{ padding-right: 32px; }
.accordion-item { background-color: unset; border: unset; border-bottom: 1px solid var(--black-80); }
.accordion-button { padding: 34px 0; background-color:unset; color: rgb(126, 126, 126); font-weight: 700; font-size: 20px;}
.accordion-body{ padding: 20px 0 20px 0; color: rgb(126, 126, 126); font-size: 18px; font-weight: 500; }
.accordion-button:focus { box-shadow: unset; color: var(--primary-color); }
.accordion-button:not(.collapsed) { color: var(--primary-color); background-color: unset; box-shadow: unset; border-bottom: 1px solid var(--primary-color); }
.accordion-button::after { 
  background-image: none !important;
  content: '\f107'; 
  font-weight: 600; 
  font-family: 'Font Awesome 5 Pro'; 
  font-size: 16px; 
  transition: all .3s; 
  position: absolute; 
  right: 0; 
  color: var(--primary-color); 
}

.accordion-button:not(.collapsed)::after { 
  background-image: none !important; 
  transform: rotate(-180deg); 
}

.faq-section .image{ padding-left: 32px; position: relative; text-align: right; overflow: hidden; }
.faq-section .image img{ position: relative; top: 64px; right: 64px; z-index: 1; max-width: calc(100% - 64px); }
.faq-section .image:after{ content: ''; width: calc(100% - 96px); height: calc(100% - 64px); background: var(--primary-color); position: absolute; top: 0; right: 0; transition: 0.3s;}

@media(max-width: 991px){ .faq-section .faq { padding-right: 0; } .faq-section .image{ display: none; } }

/*******************************************************/
/****************** ## Main Footer *********************/
/*******************************************************/
.footer-section { background-color: #4c230b; color: #ffffff; padding: 80px 0 20px; }
.footer-section a { color: #ffffff; } .footer-section a:hover { color: var(--primary-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { height: 250px; margin-top: -3em; margin-bottom: 25px; filter: brightness(0) invert(1); }
.footer-contact-title, .footer-social-title, .footer-links-title { color: var(--primary-color); margin-bottom: 25px; text-transform: uppercase; font-size: 1.1rem; font-weight: 700; }
.footer-ul { display: flex; flex-direction: column; gap: 12px; }
.footer-social-links { display: flex; gap: 15px; }
.footer-social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; font-size: 1.2rem; }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; opacity: 0.6; }

.whatsapp-float { position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px; background-color: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); z-index: 1000; color: #ffffff; font-size: 2rem; transition: 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #128c7e; color: #ffffff; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-logo { height: 120px; margin-top: 0; } }


@media (max-width: 767px) {
    
  /* 1. TÍTULOS GLOBAIS E CABEÇALHOS DE SEÇÃO */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; line-height: 1.3; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }
  .section-title h2 { font-size: 28px; } /* Títulos como "DIFERENCIAIS", "NOSSOS PROJETOS" */
  .category-line { font-size: 12px; } /* Textos pequenos com a linha amarela */

  /* 2. SEÇÃO: SOBRE NÓS */
  .sobre-nos-section .big-text { font-size: 3.5em; padding-left: 64px; } /* Texto vazado gigante de fundo */
  .sobre-nos-section .sobre-nos-subtitle { font-size: 24px; line-height: 1.3; }
  .sobre-nos-section .sobre-nos-text { font-size: 15px; line-height: 1.6; }

  /* 3. SEÇÃO: DIFERENCIAIS */
  .diferencial-title { font-size: 20px; line-height: 1.2; }
  .diferenciais-section .item p { font-size: 15px; } /* Texto descritivo do diferencial */
  .diferenciais-section .item .diferencial-giant-text { font-size: 8em; right: 0; } /* O número gigante de fundo (01, 02...) */

  /* 4. SEÇÃO: PRODUTOS */
  ul.nav-pills.tab-style-one .nav-link { font-size: 14px; padding: 10px 16px; } /* Texto das abas de categorias */
  .produtos-section .produto-card .sub-title { font-size: 12px; } /* Ex: "MESAS BISTRÔ" no card */
  .produtos-section .produto-card h4 { font-size: 18px; } /* Nome do produto no card */

  /* 5. SEÇÃO: PROJETOS */
  .projetos-section .carousel-item .carousel-caption h6 { font-size: 16px; } /* Nome do projeto */

  /* 6. SEÇÃO: CLIENTES (Contadores e Texto) */
  .count-text, span.h3.count-text-2 { font-size: 2.2em !important; } /* Números gigantes (Ex: 2.5 Milhões) */
  .counter-title { font-size: 16px; } /* Ex: "de Peças", "Projetos" */
  .clientes-content p { font-size: 15px !important; line-height: 1.6 !important; } /* Parágrafo descritivo abaixo dos números */
  
  /* 7. SEÇÃO: FAQ (Perguntas Frequentes) */
  .accordion-button { font-size: 15px; padding: 20px 20px 10px 0; } /* Pergunta */
  .accordion-body { font-size: 14px; line-height: 1.6; } /* Resposta */

  /* 8. FOOTER (Rodapé) */
  .footer-contact-title, .footer-social-title, .footer-links-title { font-size: 18px; }
  .footer-section p, .footer-section a, .footer-bottom { font-size: 14px; }
}