/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #fdfdfd;
  --default-color: #555555;
  --heading-color: #333333;
  --accent-color: #FF6B35;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}


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

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

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #f3e9df;
}

.dark-background {
  --background-color: #110702b7;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #b9572d;
  --contrast-color: #ffffff;
}

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

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

a {
  color: var(--accent-color); /* Ajustado para DB6D3C */
  text-decoration: none;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

/* =========================
   HEADER — versão premium
   ========================= */
.header{
  --hdr-bg: rgba(0,0,0,.10);
  --hdr-brd: rgba(255,255,255,.10);
  --hdr-text: #fff;
  --hdr-muted: rgba(255,255,255,.82);

  color: var(--hdr-text);
  background: transparent;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, backdrop-filter .25s ease;
  z-index: 997;
}

/* container “glass” leve no topo */
.header .container-fluid{
  border-radius: 18px;
  padding: 10px 14px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* Logo */
.header .logo{
  gap: 10px;
  text-decoration: none;
}

.header .logo img{
  max-height: 34px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
}

.header .logo .sitename{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.01em;
  color: var(--hdr-text);
  white-space: nowrap;
}

/* Nav */
.navmenu ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  align-items:center;
  gap: 10px;
}

.navmenu a{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;

  color: var(--hdr-muted);
  text-decoration:none;
  transition: transform .18s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

/* underline animada (fica fino) */
.navmenu a::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: rgba(var(--accent-rgb, 253 126 20) / .85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .9;
}

.navmenu a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.navmenu a:hover::after{
  transform: scaleX(1);
}

.navmenu a.active{
  color:#fff;
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}

.navmenu a.active::after{
  transform: scaleX(1);
}

/* =========================
   CTA — Visoná Munck
   ========================= */
.navmenu .nav-cta{ margin-left: 8px; }

.navmenu .btn-munck{
  padding: 10px 14px;
  border-radius: 999px;

  background: color-mix(in srgb, var(--accent-color), black 12%);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--contrast-color);

  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .16);
}

.navmenu .btn-munck::after{ display:none; } /* CTA sem underline */

.navmenu .btn-munck:hover{
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .22);
}

.navmenu .btn-munck i{
  font-size: 16px;
}
/* Remove o underline padrão do Bootslander (que duplica) */
#navmenu a::before{
  content: none !important;
  display: none !important;
}

#navmenu a{
  border-bottom: 0 !important;
  background-image: none !important;
}

/* =========================
   Header ao rolar (scrolled)
   ========================= */
.scrolled .header{
  padding: 12px 0;
}

.scrolled .header .container-fluid{
  background: rgba(70,21,2,.72); /* mantém tua identidade */
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile toggle */
.mobile-nav-toggle{
  font-size: 28px;
  line-height: 0;
  color: #fff;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mobile-nav-toggle:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .14);
}

/* Responsivo */
@media (max-width: 1200px){
  .header .container-fluid{ padding: 10px 12px; }
  .navmenu ul{ gap: 8px; }
}

/* Se seu menu mobile usa JS do template, esse CSS já encaixa bem.
   Se quiser eu te deixo o menu mobile “drawer” premium também. */

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color); /* Ajustado para DB6D3C */
    color: var(--contrast-color);
  }

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color); /* Ajustado para DB6D3C */
  border-color: var(--accent-color); /* Ajustado para DB6D3C */
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color); /* Ajustado para DB6D3C */
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color); /* Ajustado para DB6D3C */
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color); /* Ajustado para DB6D3C */
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/* =========================
   HERO (vídeo) — versão mais premium
   ========================= */

.hero{
  /* Ajuste fino para header fixo (se tiver) */
  --hero-top: clamp(92px, 10vh, 140px);
  --hero-bottom: 84px;

  /* Tokens visuais */
  --hero-overlay: rgba(0,0,0,.68);
  --hero-overlay-2: rgba(0,0,0,.35);
  --hero-glow: rgba(255,255,255,.06);
  --hero-border: rgba(255,255,255,.10);

  --wave-color: #9E421A; /* mantém teu tom, mas centraliza pra você trocar fácil */

  width: 100%;
  min-height: 100svh;
  position: relative;
  padding: var(--hero-top) 0 var(--hero-bottom);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate; /* garante camadas bem controladas */
}

/* Vídeo */
.hero-video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  pointer-events:none;
  transform: scale(1.02); /* reduz “borda preta” em alguns devices */
  filter: saturate(1.05) contrast(1.05) brightness(.85);
}

/* Overlay principal (gradiente mais bonito que chapado) */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(120deg, rgba(0,0,0,.78), rgba(0,0,0,.52) 55%, rgba(0,0,0,.72)),
    radial-gradient(1200px 600px at 15% 25%, var(--hero-glow), transparent 60%),
    radial-gradient(900px 500px at 85% 35%, rgba(255,255,255,.04), transparent 60%);
}

/* Brilho “neon” sutil com accent (fica top com teu estilo) */
.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  z-index:2;
  background:
    radial-gradient(700px 420px at 18% 30%, rgba(var(--accent-rgb, 158 66 26) / .24), transparent 62%),
    radial-gradient(800px 520px at 78% 40%, rgba(var(--accent-rgb, 158 66 26) / .14), transparent 65%);
  pointer-events:none;
  mix-blend-mode: screen;
  opacity:.9;
}

/* Conteúdo por cima */
.hero .container{
  position:relative;
  z-index:3;
}

/* Tipografia */
.hero h1{
  margin:0 0 18px 0;
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.08;
  font-size: clamp(30px, 3.2vw, 54px);
  color: var(--heading-color);
  text-wrap: balance;
}

.hero p{
  margin: 8px 0 28px 0;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height:1.45;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 52ch;
}

/* Fallback se o browser não suportar color-mix */
@supports not (color-mix(in srgb, white, black)){
  .hero p{ color: rgba(255,255,255,.82); }
}

/* Typed */
.hero .typed{
  display:inline-block;
  white-space:nowrap;
  border-bottom: 4px solid var(--accent-color);
  padding-bottom: 2px;
  text-shadow: 0 0 18px rgba(var(--accent-rgb, 158 66 26) / .22);
}

.hero .cursor{
  display:inline-block;
  width: .4ch;
  margin-left: 4px;
  border-right: 2px solid var(--accent-color);
  transform: translateY(2px);
  animation: cursor-blink .9s step-end infinite;
}

@keyframes cursor-blink{
  50%{ opacity:0; }
}

/* Botões */
.hero .btn-get-started{
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Efeito “shine” discreto */
.hero .btn-get-started::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 35%, transparent 50%);
  transform: translateX(-140%);
  transition: transform .65s ease;
  pointer-events:none;
  opacity:.35;
}

.hero .btn-get-started:hover::after{
  transform: translateX(140%);
}

/* Acessibilidade */
.hero .btn-get-started:focus-visible{
  outline: none;
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb, 158 66 26) / .22);
}

/* Botão preenchido */
.hero .btn-get-started.solid-btn{
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 26px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 22px rgba(var(--accent-rgb, 158 66 26) / .20);
}

.hero .btn-get-started.solid-btn:hover{
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow:
    0 14px 34px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 30px rgba(var(--accent-rgb, 158 66 26) / .30);
}

/* Botão outline (glass) */
.hero .btn-get-started.outline-btn{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(var(--accent-rgb, 158 66 26) / .55);
  color: color-mix(in srgb, var(--accent-color), white 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.hero .btn-get-started.outline-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(var(--accent-rgb, 158 66 26) / .85);
  box-shadow:
    0 14px 34px rgba(0,0,0,.28),
    0 0 24px rgba(var(--accent-rgb, 158 66 26) / .22);
}

.hero .btn-get-started i{
  font-size: 18px;
}

/* Espaçamento entre botões */
.hero .d-flex.gap-3{
  gap: 12px;
  flex-wrap: wrap;
}

/* Card da imagem — mais “premium” */
.hero .hero-img{
  display:flex;
  justify-content:center;
}

.hero .hero-img img{
  width: min(380px, 88%);
  border-radius: 22px;
  border: 1px solid var(--hero-border);
  box-shadow:
    0 18px 60px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,255,255,.05);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Animação flutuante mais suave */
.hero .animated{
  animation: hero-float 2.6s ease-in-out infinite alternate;
}

@keyframes hero-float{
  0%{ transform: translateY(10px) rotate(-.3deg); }
  100%{ transform: translateY(-10px) rotate(.3deg); }
}

/* Ondas decorativas */
.hero .hero-waves{
  display:block;
  width:100%;
  height:70px;
  position:absolute;
  left:0;
  bottom:0;
  right:0;
  z-index:4;
  opacity:.95;
  filter: drop-shadow(0 -8px 18px rgba(0,0,0,.35));
}

.hero .wave1 use{ animation: move-forever1 10s linear infinite; animation-delay: -2s; fill: var(--wave-color); opacity: .55; }
.hero .wave2 use{ animation: move-forever2  8s linear infinite; animation-delay: -2s; fill: var(--wave-color); opacity: .35; }
.hero .wave3 use{ animation: move-forever3  6s linear infinite; animation-delay: -2s; fill: var(--wave-color); opacity: .75; }

@keyframes move-forever1{ 0%{ transform: translate(85px, 0%);} 100%{ transform: translate(-90px, 0%);} }
@keyframes move-forever2{ 0%{ transform: translate(-90px, 0%);} 100%{ transform: translate(85px, 0%);} }
@keyframes move-forever3{ 0%{ transform: translate(-90px, 0%);} 100%{ transform: translate(85px, 0%);} }

/* Responsivo */
@media (max-width: 991px){
  .hero{
    padding-top: clamp(86px, 10vh, 120px);
    padding-bottom: 92px;
  }
  .hero p{ max-width: 60ch; }
}

@media (max-width: 640px){
  .hero h1{ font-size: 30px; line-height: 1.12; }
  .hero p{ font-size: 16px; margin-bottom: 22px; }
  .hero .btn-get-started{ font-size: 12px; padding: 11px 18px; }
  .hero .hero-waves{ height: 56px; }
}

/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce){
  .hero .animated,
  .hero .wave1 use,
  .hero .wave2 use,
  .hero .wave3 use,
  .hero .btn-get-started::after,
  .hero .cursor{
    animation: none !important;
    transition: none !important;
  }
}



/* =========================
   ABOUT — versão mais premium
   ========================= */
.about{
  --about-gap: clamp(18px, 2.4vw, 28px);

  padding-top: clamp(56px, 6vw, 86px);
  position: relative;
}

/* leve textura/halo no fundo da seção */
.about::before{
  content:"";
  position:absolute;
  inset:-2px 0 auto 0;
  height: 260px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 25%, rgba(var(--accent-rgb, 253 126 20) / .14), transparent 65%),
    radial-gradient(900px 420px at 82% 25%, rgba(var(--accent-rgb, 253 126 20) / .08), transparent 70%);
  opacity:.95;
  z-index:0;
}

.about .container{
  position:relative;
  z-index:1;
}

/* Header institucional */
.about .content{
  max-width: 920px;
  margin-inline: auto;
}

.about .content h3{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;

  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: color-mix(in srgb, var(--accent-color), white 12%);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.about .content h2{
  margin-top: 14px;
  font-size: clamp(26px, 4.6vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--heading-color);
  text-wrap: balance;
}

.about .content p{
  margin-top: 14px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.about .content p:last-child{ margin-bottom: 0; }

/* Botão (caso use depois) */
.about .content .read-more{
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;

  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.22), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .16);
}

.about .content .read-more:hover{
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow: 0 16px 40px rgba(0,0,0,.28), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .22);
}

.about .content .read-more i{
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
}

/* =========================
   Cards (icon-box)
   ========================= */
.about .icon-box{
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: clamp(22px, 2.5vw, 34px);
  text-align: left;
  overflow: hidden;

  box-shadow:
    0 18px 60px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.04);

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* brilho de fundo sutil no card */
.about .icon-box::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 220px at 15% 20%, rgba(var(--accent-rgb, 253 126 20) / .18), transparent 60%),
    radial-gradient(520px 220px at 85% 30%, rgba(255,255,255,.08), transparent 60%);
  opacity:.55;
  pointer-events:none;
}

/* topo do card: ícone em “chip” */
.about .icon-box i{
  width: 62px;
  height: 62px;
  border-radius: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  line-height: 0;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: color-mix(in srgb, var(--accent-color), white 14%);

  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  transition: transform .22s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  position: relative;
  z-index: 1;
}

.about .icon-box h3{
  margin: 16px 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.about .icon-box p{
  margin: 0;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 1;
}

/* Hover: levanta + glow elegante */
.about .icon-box:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow:
    0 22px 70px rgba(0,0,0,.26),
    0 0 28px rgba(var(--accent-rgb, 253 126 20) / .18);
  background: rgba(255,255,255,.075);
}

.about .icon-box:hover i{
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .75);
  box-shadow:
    0 18px 50px rgba(0,0,0,.22),
    0 0 26px rgba(var(--accent-rgb, 253 126 20) / .22);
}

/* removi teu “stagger” negativo (ele costuma quebrar no mobile e deixa desalinhado)
   se quiser aquele efeito em zig-zag, faço a versão boa com grid e offsets seguros */

/* =========================
   Vídeo institucional — mais clean e elegante
   ========================= */
.about-video-wrapper{
  margin-top: clamp(14px, 2vw, 22px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* Texto convite */
.video-invite{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), white 10%);
  display:flex;
  align-items:center;
  gap: 10px;
  letter-spacing: -.01em;
  animation: floatText 2.4s ease-in-out infinite;
}

.video-invite i{
  filter: drop-shadow(0 10px 18px rgba(var(--accent-rgb, 253 126 20) / .18));
}

@keyframes floatText{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(4px); }
}

/* Botão play */
.video-play-button{
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(var(--accent-rgb, 253 126 20) / .65);
  color: color-mix(in srgb, var(--accent-color), white 10%);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size: 34px;
  position: relative;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  overflow: hidden;

  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.video-play-button:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.10);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .85);
  box-shadow:
    0 24px 70px rgba(0,0,0,.26),
    0 0 28px rgba(var(--accent-rgb, 253 126 20) / .22);
}

/* Ripple usando accent (tira o laranja hardcoded) */
.video-play-button .ripple{
  position:absolute;
  border: 2px solid rgba(var(--accent-rgb, 253 126 20) / .65);
  border-radius: 999px;
  animation: ripple-wave 1.9s infinite;
  pointer-events:none;
  opacity: .55;
}

.video-play-button .ripple:nth-child(2){ animation-delay: .65s; }
.video-play-button .ripple:nth-child(3){ animation-delay: 1.3s; }

@keyframes ripple-wave{
  0%{ width: 78px; height: 78px; opacity: .55; transform: scale(1); }
  100%{ width: 170px; height: 170px; opacity: 0; transform: scale(1.8); }
}

/* Player */
.about-video-player{
  margin-top: 18px;
  max-width: 860px;
  width: 100%;
  display: none;

  border-radius: 18px;
  overflow: hidden;
  position: relative;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 24px 90px rgba(0,0,0,.30),
    0 0 28px rgba(var(--accent-rgb, 253 126 20) / .14);

  animation: growVideo .35s ease forwards;
}

.about-video-player video{
  width:100%;
  height:auto;
  display:block;
}

/* Botão fechar */
.video-close{
  position:absolute;
  top: 12px;
  right: 12px;

  width: 42px;
  height: 42px;
  border-radius: 14px;

  background: rgba(0,0,0,.35);
  color: white;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  z-index:10;

  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.video-close:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.48);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 0 18px rgba(var(--accent-rgb, 253 126 20) / .20);
}

@keyframes growVideo{
  from{ opacity:0; transform: translateY(6px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

/* =========================
   Scroll down
   ========================= */
.scroll-down-wrapper{
  display:flex;
  justify-content:center;
  margin-top: 14px;
}

.scroll-down{
  width: 48px;
  height: 48px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;

  color: color-mix(in srgb, var(--accent-color), white 10%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  box-shadow: 0 14px 40px rgba(0,0,0,.16);
  animation: bounceDown 2.2s infinite;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.scroll-down:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 18px 60px rgba(0,0,0,.22), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .16);
  background: rgba(255,255,255,.10);
}

@keyframes bounceDown{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
}

/* =========================
   Responsivo
   ========================= */
@media (max-width: 768px){
  .about{ padding-top: 56px; }
  .about .icon-box{ text-align: left; }
  .video-play-button{ width: 72px; height: 72px; border-radius: 20px; }
  @keyframes ripple-wave{
    0%{ width: 72px; height: 72px; opacity: .55; transform: scale(1); }
    100%{ width: 160px; height: 160px; opacity: 0; transform: scale(1.8); }
  }
}

/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce){
  .video-invite,
  .scroll-down,
  .video-play-button .ripple{
    animation: none !important;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Ícones com fundo circular e translúcido */
.features .features-item i {
  font-size: 24px;
  border-radius: 50%;
  padding: 16px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

/* Títulos */
.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.3;
  transition: transform 0.3s ease;
}

.features .features-item h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}

/* Hover geral */
.features .features-item:hover {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.features .features-item:hover i {
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .features .features-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .features .features-item i {
    margin-bottom: 10px;
  }
}

/* Cores por classe */
.features-item.orange i {
  background-color: rgba(255, 187, 44, 0.15);
  color: #ffbb2c;
}

.features-item.blue i {
  background-color: rgba(85, 120, 255, 0.15);
  color: #5578ff;
}

.features-item.pink i {
  background-color: rgba(232, 3, 104, 0.15);
  color: #e80368;
}

.features-item.green i {
  background-color: rgba(41, 204, 97, 0.15);
  color: #29cc61;
}

.features-item.purple i {
  background-color: rgba(227, 97, 255, 0.15);
  color: #e361ff;
}

.features-item.gold i {
  background-color: rgba(255, 167, 110, 0.15);
  color: #ffa76e;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 60px 0;
  position: relative;
}

.stats .stats-item-wrapper {
  position: relative;
  padding-top: 40px; /* espaço para o ícone */
}

.stats i {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  font-size: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(219, 109, 60, 0.1); /* Accent translúcido */
  color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.3s ease, background-color 0.3s;
  z-index: 10;
}

/* Efeito ao passar o mouse */
.stats .col-lg-3:hover i {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 0 18px var(--accent-color);
}

/* Card de estatística */
.stats .stats-item {
  background-color: var(--surface-color);
  padding: 50px 30px 30px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover eleva o card */
.stats .col-lg-3:hover .stats-item {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Número */
.stats .stats-item span {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: transform 0.3s ease;
}

/* Descrição */
.stats .stats-item p {
  font-family: var(--heading-font);
  font-size: clamp(14px, 2vw, 18px);
  margin: 0;
  color: var(--default-color);
}

/* Responsivo */
@media (max-width: 768px) {
  .stats .stats-item-wrapper {
    padding-top: 50px;
  }

  .stats .stats-item {
    padding: 60px 20px 30px;
  }

  .stats i {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

/* Cores por classe */
.stats .orange i {
  background-color: rgba(255, 187, 44, 0.15);
  color: #ffbb2c;
}

.stats .blue i {
  background-color: rgba(85, 120, 255, 0.15);
  color: #5578ff;
}

.stats .green i {
  background-color: rgba(41, 204, 97, 0.15);
  color: #29cc61;
}

.stats .red i {
  background-color: rgba(232, 3, 104, 0.15);
  color: #e80368;
}


/* =========================
   SERVIÇOS — Spotlight (cards premium)
   ========================= */
.services-spotlight{
  --card-bg: rgba(255,255,255,.06);
  --card-brd: rgba(255,255,255,.10);
  --shadow: 0 20px 70px rgba(0,0,0,.18);
  --shadow2: 0 28px 90px rgba(0,0,0,.30);
  --radius: 20px;

  padding: clamp(54px, 6vw, 86px) 0;
  background: var(--background-color);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

.services-spotlight::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(var(--accent-rgb, 253 126 20) / .14), transparent 65%),
    radial-gradient(900px 420px at 82% 22%, rgba(255,255,255,.05), transparent 70%);
  opacity:.9;
}

.services-spotlight .section-title{
  position: relative;
  z-index: 1;
}

.services-spotlight .section-title h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 3.3vw, 34px);
  font-weight: 1000;
  letter-spacing: -.02em;
  color: var(--heading-color);
  text-transform: uppercase;
}

.services-spotlight .subtitle{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
}

.services-spotlight .description-title{
  color: color-mix(in srgb, var(--accent-color), white 10%);
  text-shadow: 0 0 18px rgba(var(--accent-rgb, 253 126 20) / .14);
}

.services-spotlight .section-subtitle{
  margin: 10px auto 0;
  max-width: 62ch;
  font-size: clamp(14px, 1.6vw, 16px);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* CTA do site */
.spotlight-cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.spotlight-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(var(--accent-rgb, 253 126 20) / .55);
  color: var(--heading-color);
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .02em;

  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 26px rgba(var(--accent-rgb, 253 126 20) / .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.spotlight-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .80);
  box-shadow: 0 22px 70px rgba(0,0,0,.22), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .18);
  background: rgba(255,255,255,.10);
}

.spotlight-btn--ghost{
  border-color: rgba(255,255,255,.14);
}

/* =========================
   Cards
   ========================= */
.svc-card{
  height: 100%;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-brd);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

/* brilho interno */
.svc-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(420px 220px at 15% 18%, rgba(var(--accent-rgb, 253 126 20) / .16), transparent 62%),
    radial-gradient(460px 260px at 85% 22%, rgba(255,255,255,.08), transparent 64%);
  opacity:.55;
}

.svc-media{
  position: relative;
  background: rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.svc-media img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.svc-badges{
  position:absolute;
  left: 12px;
  top: 12px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.svc-badge{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.svc-body{
  padding: 18px;
  position: relative;
  z-index: 1;
}

.svc-body h3{
  margin: 0 0 8px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading-color);
  font-size: 18px;
}

.svc-body p{
  margin: 0 0 12px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.6;
  font-size: 14px;
}

/* lista curta */
.svc-points{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.svc-points li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-weight: 700;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.svc-points i{
  color: color-mix(in srgb, var(--accent-color), white 10%);
  transform: translateY(1px);
}

/* botões */
.svc-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration:none;
  cursor: pointer;

  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--heading-color);
}

.btn-mini:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.btn-mini.btn-solid{
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: var(--contrast-color);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .16);
}

.btn-mini.btn-solid:hover{
  background: color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .22);
}

.btn-mini.btn-outline{
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  color: color-mix(in srgb, var(--accent-color), white 10%);
}

.btn-mini.btn-outline:hover{
  border-color: rgba(var(--accent-rgb, 253 126 20) / .80);
  box-shadow: 0 22px 70px rgba(0,0,0,.20), 0 0 26px rgba(var(--accent-rgb, 253 126 20) / .18);
}

/* Hover do card */
.svc-card:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: var(--shadow2), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .12);
}

.svc-card:hover .svc-media img{
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

/* footer CTA */
.svc-footer-cta{
  position: relative;
  z-index: 1;
}

/* Responsivo */
@media (max-width: 992px){
  .svc-media img{ height: 230px; }
}

@media (max-width: 576px){
  .svc-media img{ height: 210px; }
  .svc-actions{ justify-content: center; }
}

/* =========================
   GALLERY — versão premium
   ========================= */
.gallery{
  position: relative;
  overflow: hidden;
}

/* halo suave no fundo */
.gallery::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(var(--accent-rgb, 253 126 20) / .10), transparent 65%),
    radial-gradient(900px 420px at 82% 22%, rgba(255,255,255,.05), transparent 70%);
  opacity:.9;
}

.gallery .container{ position: relative; z-index: 1; }

.gallery .gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  box-shadow: 0 18px 60px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* clique em toda a área */
.gallery .gallery-item > a{
  display:block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.gallery .gallery-item img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display:block;

  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.02) contrast(1.02);
}

/* overlay com gradiente + ícone */
.gallery .gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding: 12px;

  background:
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery .gallery-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 0 18px rgba(var(--accent-rgb, 253 126 20) / .14);
  transform: translateY(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* Hover premium */
.gallery .gallery-item:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 26px 90px rgba(0,0,0,.28), 0 0 28px rgba(var(--accent-rgb, 253 126 20) / .12);
  background: rgba(255,255,255,.075);
}

.gallery .gallery-item:hover img{
  transform: scale(1.10);
  filter: saturate(1.08) contrast(1.06);
}

.gallery .gallery-item:hover .gallery-overlay{
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-icon{
  transform: translateY(0);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .22);
}

/* Acessibilidade */
.gallery .gallery-item:focus-within{
  outline: none;
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb, 253 126 20) / .18), 0 26px 90px rgba(0,0,0,.28);
}

/* Responsivo */
@media (max-width: 991px){
  .gallery .gallery-item img{ height: 190px; }
}

@media (max-width: 576px){
  .gallery .gallery-item img{ height: 180px; }
}

/* Menos animação */
@media (prefers-reduced-motion: reduce){
  .gallery .gallery-item,
  .gallery .gallery-item img,
  .gallery .gallery-overlay,
  .gallery .gallery-icon{
    transition: none !important;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color); /* Ajustado para DB6D3C */
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color); /* Ajustado para DB6D3C */
  color: var(--contrast-color);
  border-color: var(--accent-color); /* Ajustado para DB6D3C */
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

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

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color); /* Ajustado para DB6D3C */
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color); /* Ajustado para DB6D3C */
  color: var(--contrast-color);
  border-color: var(--accent-color); /* Ajustado para DB6D3C */
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

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

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

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

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

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

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

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

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

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

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

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

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

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

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

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color); /* Ajustado para DB6D3C */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Caixa atrás de cada info */
.contact .info-box {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact .info-box:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

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

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

.contact .info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact .info-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}

.contact .info-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Mapa */
.contact .map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact .map-frame {
  width: 100%;
  height: 350px;
  border: none;
}

/* Botão "Abrir rota" */
.contact .btn-open-route {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact .btn-open-route:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact .map-frame {
    height: 280px;
  }

  .contact .btn-open-route {
    padding: 10px 22px;
    font-size: 14px;
  }

  .contact .info-item {
    flex-direction: row;
    align-items: center;
  }
}


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

/* =========================
   CATÁLOGO — Serviços / Produtos
   ========================= */
.services-offers{
  --card-bg: rgba(255,255,255,.06);
  --card-brd: rgba(255,255,255,.10);
  --card-brd2: rgba(var(--accent-rgb, 253 126 20) / .55);
  --shadow: 0 20px 70px rgba(0,0,0,.18);
  --shadow2: 0 28px 90px rgba(0,0,0,.30);
  --radius: 18px;

  padding: clamp(54px, 6vw, 80px) 0;
  background: var(--background-color);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

/* Halo de fundo discreto */
.services-offers::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(var(--accent-rgb, 253 126 20) / .14), transparent 65%),
    radial-gradient(900px 420px at 82% 22%, rgba(255,255,255,.05), transparent 70%);
  opacity:.9;
}

/* título */
.services-offers .section-title{
  position: relative;
  z-index: 1;
}

.services-offers .section-title h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 3.3vw, 34px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--heading-color);
  text-transform: uppercase;
}

.services-offers .section-title .subtitle{
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

.services-offers .description-title{
  color: color-mix(in srgb, var(--accent-color), white 8%);
  text-shadow: 0 0 20px rgba(var(--accent-rgb, 253 126 20) / .16);
}



/* =========================
   Controles (Busca + Chips)
   ========================= */
.catalog-controls{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

.catalog-search{
  display:flex;
  align-items:center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 50px rgba(0,0,0,.14);

  min-width: min(540px, 92vw);
}

.catalog-search i{
  color: color-mix(in srgb, var(--accent-color), white 10%);
  opacity: .9;
}

.catalog-search input{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 14px;
}

.catalog-search input::placeholder{
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 600;
}

.catalog-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content:center;
}

.chip{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--heading-color);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;

  padding: 10px 14px;
  border-radius: 999px;

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chip:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .14);
}

.chip.is-active{
  border-color: rgba(var(--accent-rgb, 253 126 20) / .65);
  box-shadow: 0 18px 60px rgba(0,0,0,.20), 0 0 26px rgba(var(--accent-rgb, 253 126 20) / .18);
}

/* =========================
   Cards
   ========================= */
.catalog-item{ position: relative; z-index: 1; }

.service-box{
  background: var(--card-bg);
  border: 1px solid var(--card-brd);
  border-radius: var(--radius);
  padding: 14px;
  height: 100%;
  overflow: hidden;
  position: relative;

  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* brilho de fundo no card */
.service-box::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(420px 220px at 18% 12%, rgba(var(--accent-rgb, 253 126 20) / .16), transparent 62%),
    radial-gradient(460px 260px at 80% 22%, rgba(255,255,255,.08), transparent 64%);
  opacity:.55;
}

.service-media{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}

.service-box img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.service-badges{
  position:absolute;
  left: 10px;
  top: 10px;
  display:flex;
  gap: 8px;
}

.badge-soft{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Texto */
.service-box h3{
  margin: 12px 0 8px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.service-box p{
  font-size: 13px;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;

  /* mantém altura parecida */
  min-height: 44px;
}

/* Ações */
.service-actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration:none;
  cursor: pointer;

  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--heading-color);
}

.btn-mini:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.btn-mini.btn-solid{
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: var(--contrast-color);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.18), 0 0 22px rgba(var(--accent-rgb, 253 126 20) / .16);
}

.btn-mini.btn-solid:hover{
  background: color-mix(in srgb, var(--accent-color), white 8%);
  box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .22);
}

.btn-mini.btn-outline{
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  color: color-mix(in srgb, var(--accent-color), white 10%);
}

.btn-mini.btn-outline:hover{
  border-color: rgba(var(--accent-rgb, 253 126 20) / .75);
  box-shadow: 0 22px 70px rgba(0,0,0,.20), 0 0 26px rgba(var(--accent-rgb, 253 126 20) / .18);
}

/* Hover do card: tilt + glow */
.service-box:hover{
  transform: translateY(-4px);
  border-color: var(--card-brd2);
  box-shadow: var(--shadow2), 0 0 30px rgba(var(--accent-rgb, 253 126 20) / .12);
  background: rgba(255,255,255,.075);
}

.service-box:hover img{
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

/* Aparição suave */
.catalog-item.is-hidden{ display: none !important; }

/* =========================
   5 colunas (desktop) + responsivo
   ========================= */
@media (min-width: 1200px){
  .col-lg-2-5{ flex: 0 0 auto; width: 20%; }
}

@media (max-width: 991px){
  .col-lg-2-5{ width: 33.3333%; }
}

@media (max-width: 768px){
  .col-lg-2-5{ width: 50%; }
  .service-box img{ height: 140px; }
}

@media (max-width: 576px){
  .col-lg-2-5{ width: 100%; }
  .service-box img{ height: 170px; }
}

/* =========================
   Modal
   ========================= */
.service-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.service-modal.is-open{ display:block; }

.service-modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.service-modal__dialog{
  position: relative;
  width: min(980px, 92vw);
  margin: 7vh auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 110px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: modalIn .22s ease forwards;
}

@keyframes modalIn{
  from{ opacity:0; transform: translateY(8px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

.service-modal__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
  z-index: 2;
}

.service-modal__close:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb, 253 126 20) / .55);
  box-shadow: 0 0 20px rgba(var(--accent-rgb, 253 126 20) / .18);
}

.service-modal__grid{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
}

.service-modal__media{
  background: rgba(0,0,0,.18);
  border-right: 1px solid rgba(255,255,255,.10);
}

.service-modal__media img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit: cover;
  display:block;
}

.service-modal__content{
  padding: 22px;
}

.service-modal__content h3{
  margin: 0 0 10px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading-color);
}

.service-modal__content p{
  margin: 0 0 18px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
}

.service-modal__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 860px){
  .service-modal__grid{ grid-template-columns: 1fr; }
  .service-modal__media img{ min-height: 220px; }
}
/* ============================
   PATCH — MODAL PRODUTOS (fundo/visibilidade)
   Cole no FINAL do main.css
   ============================ */

.service-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;              /* abre só com .is-open */
}

.service-modal.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* fundo (overlay) mais escuro + blur leve */
.service-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

/* caixa do modal (NÃO use opacity aqui, senão apaga o texto junto) */
.service-modal__dialog{
  position: relative;
  width: min(1100px, 96vw);
  max-height: min(78vh, 740px);
  border-radius: 22px;
  overflow: hidden;

  background: rgba(14,16,20,.92);
  color: #f4f6ff;

  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);

  opacity: 1 !important;
  filter: none !important;
}

/* layout: imagem + conteúdo */
.service-modal__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 520px;
}

/* lado da imagem */
.service-modal__media{
  background: #fff;
}

.service-modal__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}

/* lado do texto (reforça contraste) */
.service-modal__content{
  padding: 24px 24px 18px;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(255,255,255,.08), transparent 55%),
    rgba(14,16,20,.92);
  opacity: 1 !important;
}

.service-modal__content h3{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #fff;
}

.service-modal__content p{
  margin: 0 0 18px;
  color: rgba(244,246,255,.78);
  line-height: 1.5;
  max-width: 54ch;
}

/* botões do modal */
.service-modal__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* garante que nada fique “apagado” por alguma regra antiga */
.service-modal .btn-mini,
.service-modal a,
.service-modal button{
  opacity: 1 !important;
  filter: none !important;
}

/* botão de fechar */
.service-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;

  display: grid;
  place-items: center;
  z-index: 3;
}

.service-modal__close:hover{
  background: rgba(255,255,255,.16);
}

.service-modal__close i{
  font-size: 18px;
}

/* responsivo: empilha em telas menores */
@media (max-width: 860px){
  .service-modal.is-open{ padding: 14px; }
  .service-modal__dialog{ max-height: 86vh; }
  .service-modal__grid{ grid-template-columns: 1fr; }
  .service-modal__media{ height: 46vh; }
  .service-modal__content{ padding: 18px; }
}
