/* ==========================================================================
   SÓ SUCATA REDESIGN - PREMIUM DESIGN SYSTEM (VERMELHO E CINZA)
   ========================================================================== */

:root {
  /* HSL Tailored Colors - Rebranded to Red and Gray/Slate */
  --primary: hsl(0, 96%, 48%);          /* Vermelho Só Sucata Oficial */
  --primary-hover: hsl(0, 96%, 40%);
  --primary-glow: hsla(0, 96%, 48%, 0.15);
  
  --secondary: hsl(215, 25%, 35%);      /* Cinza Grafite / Slate */
  --secondary-hover: hsl(215, 25%, 25%);
  --secondary-glow: hsla(215, 25%, 35%, 0.15);
  
  --dark-bg: hsl(222, 47%, 11%);         /* Slate Escuro (Fundo do Hero/Footer) */
  --dark-surface: hsl(223, 47%, 15%);    /* Superfície de Card Escura */
  --dark-border: hsla(217, 33%, 32%, 0.3);
  
  --light-bg: hsl(210, 40%, 98%);       /* Off-White Moderno */
  --light-surface: hsl(0, 0%, 100%);     /* Superfície Clara */
  --light-border: hsl(214, 32%, 91%);
  
  --text-dark: hsl(215, 25%, 27%);       /* Texto Principal */
  --text-muted: hsl(215, 16%, 47%);      /* Texto Secundário */
  --text-light: hsl(210, 40%, 98%);      /* Texto Claro */
  --text-white: hsl(0, 0%, 100%);
  
  /* Gradientes de Destaque */
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, hsl(355, 85%, 40%) 100%);
  --gradient-metal: linear-gradient(135deg, hsl(215, 20%, 45%) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(222, 47%, 8%) 0%, var(--dark-bg) 100%);
  --gradient-light-card: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(210, 40%, 99%) 100%);
  
  /* Bordas e Sombras */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px -10px var(--primary-glow);
  --shadow-whats: 0 8px 24px rgba(37, 211, 102, 0.3);
  
  /* Tipografia */
  --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transições e Configurações */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

/* Reset e Fundações */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: hsl(215, 15%, 80%);
  border-radius: var(--radius-full);
  border: 2px solid var(--light-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   CLASSES UTILITÁRIAS
   ========================================================================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-wide {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  padding: 8rem 0;
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding: 12rem 0;
  }
}

.bg-light { background-color: var(--light-bg); }
.bg-white { background-color: var(--light-surface); }
.text-center { text-align: center; }

/* Cabeçalho de Seção */
.section-heading {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-heading {
    margin-bottom: 7rem;
  }
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: var(--primary-glow);
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.section-title-global {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title-global span {
  color: var(--primary);
}

@media (min-width: 768px) {
  .section-title-global {
    font-size: 4.2rem;
  }
}

.section-desc-global {
  font-size: 1.7rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.4rem 2.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-large {
  padding: 1.8rem 3.6rem;
  font-size: 1.6rem;
}

.btn-sm {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--gradient-brand);
  filter: brightness(1.08);
  box-shadow: 0 12px 35px -5px var(--primary-glow);
}

.btn-secondary {
  background: var(--gradient-metal);
  color: var(--text-white);
}

.btn-secondary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 35px -5px var(--secondary-glow);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--dark-bg);
  border-color: var(--text-white);
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

.top-announcement {
  background: var(--gradient-brand);
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.announcement-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .announcement-flex {
    justify-content: space-between;
  }
}

.announcement-text i {
  margin-right: 0.5rem;
}

.announcement-link {
  text-decoration: underline;
  white-space: nowrap;
}

.announcement-link i {
  transition: transform 0.2s ease;
}

.announcement-link:hover i {
  transform: translateX(3px);
}

/* Sticky Header */
.main-header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-glow);
}

.logo-meta {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Logo Image Styling Updates */
.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo-img {
  height: 38px;
}

.drawer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.desktop-navigation {
  display: none;
}

@media (min-width: 992px) {
  .desktop-navigation {
    display: block;
  }
  .desktop-navigation ul {
    display: flex;
    gap: 3.2rem;
  }
  .desktop-navigation .nav-link {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.8rem 0;
    position: relative;
  }
  .desktop-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
  }
  .desktop-navigation .nav-link:hover,
  .desktop-navigation .nav-link.active {
    color: var(--primary);
  }
  .desktop-navigation .nav-link:hover::after,
  .desktop-navigation .nav-link.active::after {
    width: 100%;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-header-cta {
  display: none !important;
}

@media (min-width: 576px) {
  .btn-header-cta {
    display: inline-flex !important;
  }
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Active Hamburger animation */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--light-surface);
  z-index: 1003;
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.drawer-logo i {
  color: var(--primary);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  color: var(--primary);
}

.drawer-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.drawer-link {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  border-left: 3px solid transparent;
  padding-left: 1.5rem;
}

.drawer-link.active,
.drawer-link:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}

.drawer-foot {
  margin-top: auto;
  border-top: 1px solid var(--light-border);
  padding-top: 3rem;
}

.drawer-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.drawer-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.drawer-contact i {
  color: var(--primary);
}

/* ==========================================================================
   HERO / BANNER PRINCIPAL
   ========================================================================== */

.hero-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-white);
  padding: 10rem 0 14rem;
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Altura maior para efeito de scroll */
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  position: relative;
  z-index: 2;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-text-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242, 5, 5, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 5, 5, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(242, 5, 5, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 5, 5, 0);
  }
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5.6rem;
  }
}

.highlight-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.8rem;
  color: hsl(215, 25%, 80%);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* Card Destacado no Hero */
.hero-sidebar-card {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  letter-spacing: 1.5px;
}

.sidebar-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sidebar-text {
  font-size: 1.5rem;
  color: hsl(215, 25%, 80%);
  margin-bottom: 2.5rem;
}

.sidebar-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.sidebar-checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-white);
}

.sidebar-checklist i {
  color: var(--primary);
}

/* Divisor de onda */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-path {
  fill: var(--light-bg);
}

/* ==========================================================================
   CATÁLOGO DE MATERIAIS (Bento Grid Orgânico)
   ========================================================================== */

.section-materials {
  background-color: var(--light-bg);
}

.catalog-control-panel {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.search-full-width {
  max-width: 600px;
  width: 100%;
}

.search-bar-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 2rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  pointer-events: none;
}

#search-materials-input {
  width: 100%;
  padding: 1.6rem 2.2rem 1.6rem 5.5rem;
  font-family: var(--font-body);
  font-size: 1.6rem;
  background-color: var(--light-surface);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-full);
  outline: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

#search-materials-input:focus {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(242, 5, 5, 0.12);
  transform: translateY(-1px);
}

/* Bento Grid Orgânico */
.catalog-grid-organic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .catalog-grid-organic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .catalog-grid-organic {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-block-card {
  background: var(--gradient-light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-block-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.category-block-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 5, 5, 0.15);
}

.category-block-card:hover::before {
  transform: scaleX(1);
}

.block-header {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  margin-bottom: 2rem;
}

.block-icon {
  width: 54px;
  height: 54px;
  background-color: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.category-block-card:hover .block-icon {
  background: var(--gradient-brand);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.block-title-meta {
  display: flex;
  flex-direction: column;
}

.block-title-meta h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.block-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.block-desc {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Chips Container (Acomodação Orgânica) */
.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.material-chip {
  background-color: hsl(210, 40%, 96%);
  border: 1px solid var(--light-border);
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.material-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(242, 5, 5, 0.08);
}

/* Estado de Destaque na Busca */
.material-chip.highlighted {
  background: var(--gradient-brand);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(242, 5, 5, 0.3);
  transform: scale(1.05) translateY(-2px);
}

/* Estado Desativado / Ocultado na Busca */
.material-chip.faded {
  opacity: 0.25;
  pointer-events: none;
  transform: scale(0.95);
}

/* Feedback de Busca Vazia */
.no-results-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0;
  color: var(--text-muted);
}

.no-results-msg i {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  opacity: 0.8;
}

.no-results-msg h4 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.no-results-msg p {
  font-size: 1.6rem;
  max-width: 420px;
}

/* ==========================================================================
   COMO FUNCIONA (Timeline)
   ========================================================================== */

.process-timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 6rem;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 25px;
  width: 4px;
  height: calc(100% - 80px);
  background: var(--light-border);
  z-index: 1;
}

@media (min-width: 992px) {
  .process-timeline-wrapper {
    flex-direction: row;
    gap: 3rem;
  }
  .timeline-line {
    top: 25px;
    left: 40px;
    width: calc(100% - 80px);
    height: 4px;
  }
}

.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .timeline-item {
    flex-direction: column;
    flex: 1;
    gap: 2rem;
  }
}

.timeline-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--light-surface);
  border: 4px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.dot-inner {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-muted);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--primary);
  background: var(--gradient-brand);
}

.timeline-item:hover .dot-inner {
  color: var(--text-white);
}

.timeline-content-box {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  width: 100%;
}

.timeline-item:hover .timeline-content-box {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 5, 5, 0.15);
}

.timeline-icon {
  width: 46px;
  height: 46px;
  background-color: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.timeline-step-title {
  font-family: var(--font-headings);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.timeline-step-text {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BANNER PARALLAX IMERSIVO
   ========================================================================== */

.banner-parallax-immersive {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  color: var(--text-white);
  text-align: center;
}

@media (min-width: 768px) {
  .banner-parallax-immersive {
    padding: 14rem 0;
  }
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateY(0);
}

.banner-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  z-index: 1;
}

.banner-inner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(242, 5, 5, 0.15);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--primary);
  margin: 0 auto 3rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.banner-headline {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .banner-headline {
    font-size: 4.4rem;
  }
}

.banner-subtext {
  font-size: 1.8rem;
  line-height: 1.8;
  color: hsl(215, 25%, 80%);
  margin-bottom: 4.5rem;
}

/* ==========================================================================
   QUEM SOMOS (Sobre Nós)
   ========================================================================== */

.about-flex-layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-flex-layout {
    flex-direction: row;
    justify-content: space-between;
  }
  .about-text-column {
    flex: 1.1;
  }
  .about-visual-column {
    flex: 0.9;
  }
}

.about-paragraph {
  font-size: 1.65rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-bullets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (min-width: 576px) {
  .about-bullets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bullet-item {
  display: flex;
  gap: 1.5rem;
}

.bullet-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.bullet-meta h4 {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.bullet-meta p {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Lado Visual */
.about-visual-column {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.image-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.image-accent-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-glow);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-main-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  object-fit: cover;
  border: 4px solid var(--light-surface);
}

.stats-counters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-counter-card {
  background-color: var(--light-bg);
  border: 1px solid var(--light-border);
  padding: 2.2rem 1rem;
  border-radius: var(--radius-md);
}

.counter-num {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   AVALIAÇÕES (TESTIMONIALS)
   ========================================================================== */

.reviews-slider-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .reviews-slider-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.review-box-item {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.review-box-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-box-head {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  background: var(--gradient-brand);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info h4 {
  font-family: var(--font-headings);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.review-date {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.reviewer-stars {
  margin-left: auto;
  color: hsl(45, 93%, 47%);
  font-size: 1.2rem;
  display: flex;
  gap: 0.2rem;
}

.review-quote {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ==========================================================================
   SEÇÃO DE CONTATO & ORÇAMENTO
   ========================================================================== */

.contact-flex-layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-flex-layout {
    flex-direction: row;
    gap: 6rem;
  }
  .contact-details-column {
    flex: 0.9;
  }
  .contact-form-column {
    flex: 1.1;
  }
}

.contact-col-title {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-col-desc {
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-card-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.info-icon {
  width: 52px;
  height: 52px;
  background-color: var(--secondary-glow);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.info-meta h5 {
  font-family: var(--font-headings);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-link {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.info-link:hover {
  color: var(--primary);
}

.info-text {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tel-inline {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}

.tel-inline:hover {
  color: var(--primary);
}

/* Formulário de Contato Premium */
.glass-form-card {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
}

.form-title-item {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.custom-form-body {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

@media (min-width: 576px) {
  .form-row-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.form-group-item label {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-control-item {
  width: 100%;
  padding: 1.4rem 2rem;
  background-color: var(--light-bg);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
}

.form-control-item:focus {
  border-color: var(--primary);
  background-color: var(--light-surface);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.textarea-item {
  resize: vertical;
  min-height: 120px;
}

/* Mapa */
.google-maps-embed-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 6rem;
}

.map-iframe-element {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.1);
  transition: var(--transition-smooth);
}

.map-iframe-element:hover {
  filter: grayscale(0);
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */

.footer-layout {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 8rem 0 0;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  padding-bottom: 6rem;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-logo i {
  color: var(--primary);
}

.footer-brand-text {
  font-size: 1.45rem;
  color: hsl(215, 25%, 70%);
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  gap: 1.2rem;
}

.social-circle {
  width: 42px;
  height: 42px;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: var(--gradient-brand);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links-list a {
  font-size: 1.45rem;
  color: hsl(215, 25%, 70%);
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.45rem;
  color: hsl(215, 25%, 70%);
  margin-bottom: 2rem;
}

.footer-address-item i {
  color: var(--primary);
  font-size: 1.6rem;
  margin-top: 0.3rem;
}

.footer-copyright-row {
  border-top: 1px solid var(--dark-border);
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright-text, .credits-text {
  font-size: 1.35rem;
  color: hsl(215, 25%, 60%);
}

.credits-text a:hover {
  color: var(--primary);
}

/* ==========================================================================
   BOTÕES FLUTUANTES & INTERAÇÃO MOBILE
   ========================================================================== */

/* WhatsApp Flutuante com tooltip */
.whats-floating-btn {
  position: fixed;
  bottom: 85px; /* Acima da barra mobile */
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: hsl(142, 70%, 45%);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  box-shadow: var(--shadow-whats);
  z-index: 998;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .whats-floating-btn {
    bottom: 30px;
    right: 30px;
  }
}

.whats-floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: hsl(142, 70%, 40%);
}

.whats-floating-btn .tooltip-text {
  position: absolute;
  right: 75px;
  background-color: var(--dark-bg);
  color: var(--text-white);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.whats-floating-btn:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/* Bottom Mobile Action Bar */
.mobile-bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  display: flex;
  z-index: 999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .mobile-bottom-action-bar {
    display: none;
  }
}

.action-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: hsl(215, 25%, 75%);
  font-size: 1rem;
  font-weight: 700;
  gap: 0.4rem;
  border-right: 1px solid var(--dark-border);
  transition: var(--transition-fast);
}

.action-bar-item:last-child {
  border-right: none;
}

.action-bar-item i {
  font-size: 1.8rem;
  color: var(--primary);
}

.action-bar-item:active,
.action-bar-item:hover {
  background-color: var(--dark-surface);
  color: var(--text-white);
}

.item-whats-middle {
  background: var(--gradient-brand);
  color: var(--text-white) !important;
}

.item-whats-middle i {
  color: var(--text-white);
}

.item-whats-middle:active {
  filter: brightness(0.9);
}

/* ==========================================================================
   EFEITOS DE REVEAL EM SCROLL (Fade-in-up)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
