/*
 * Generated by scripts/build-css.js.
 * Modules: 00-foundation.css, 10-solar-showcase.css, 20-home-sections.css, 30-shared-components.css, 40-theme-home.css, 45-shared-faq.css, 47-theme-home-footer.css, 48-home-solar-responsive.css, 80-home-reviews.css
 * Edit public/css/modules/*.css and run npm run build:css.
 */
/* Self-hosted brand fonts: removes the external Google Fonts stylesheet from
   the critical rendering path and keeps typography stable during first paint. */
@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/bebas-neue-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-italic-400.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-900.woff2') format('woff2');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/fonts/ibm-plex-sans-400-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/fonts/ibm-plex-mono-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/fonts/ibm-plex-mono-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-primary: #0A0D10;
  --bg-secondary: #111418;
  --accent-primary: #D9A608;
  --accent-secondary: #2AF5A0;
  --accent-solar: #FF6B2B;
  --text-main: #E8EAF0;
  --text-muted: #8892A0;
  --border-color: #1E2530;
  --font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  /* Derived tokens (theme-aware) */
  --nav-bg: rgba(10, 13, 16, 0.92);
  --hero-overlay-start: rgba(10, 10, 10, 0.9);
  --hero-overlay-end: rgba(10, 10, 10, 0.4);
  --btn-primary-hover: #BF9207;
  --btn-primary-text: #0A0D10;
  --btn-primary-shadow: rgba(217, 166, 8, 0.3);
  --accent-tint: rgba(245, 200, 66, 0.1);
  --accent-tint-border: rgba(245, 200, 66, 0.2);
  --accent-tint-soft: rgba(217, 166, 8, 0.05);
  --cta-gradient-end: #A67C00;
  --cta-heading-color: #0A0D10;
  --cta-body-color: rgba(10, 13, 16, 0.7);
  --cta-btn-bg: #0A0D10;
  --cta-btn-color: #E8EAF0;
  --cta-on-accent: #0A0D10;
  --reveal-overlay: rgba(10, 13, 16, 0.98);
  --bento-info-fade: rgba(10, 13, 16, 0.95);
  --shadow-color: rgba(0, 0, 0, 0.35);
  --surface-glass: rgba(255, 255, 255, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: clamp(14px, 1vw + 0.5rem, 18px); }
body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-main); }
h1 { font-family: var(--font-display); font-size: 5rem; letter-spacing: 2px; line-height: 1; text-transform: uppercase; }
h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
h3 { font-family: var(--font-heading); font-size: 1.5rem; }
a { color: var(--text-main); text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2.5rem); }

/* Blueprint Grid */
.bg-blueprint { position: relative; }
.bg-blueprint::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border-color) 1px, transparent 1px), linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.04; z-index: 0; pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; font-family: var(--font-heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  transition: all 0.3s ease; border: 1px solid transparent; border-radius: 4px;
  font-size: 0.95rem;
}
.btn-primary { background-color: var(--accent-primary); color: var(--btn-primary-text); }
.btn-primary:hover { background-color: var(--btn-primary-hover); transform: translateY(-2px); box-shadow: 0 4px 20px var(--btn-primary-shadow); }
.btn-outline { background-color: transparent; color: var(--text-main); border-color: var(--border-color); }
.btn-outline:hover { border-color: var(--text-main); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-main); border: none; padding: 1rem 0; }
.btn-ghost:hover { color: var(--accent-primary); }

/* Corner Brackets */
.bracket-box { position: relative; padding: 2rem; background-color: var(--bg-secondary); border-radius: 6px; }
.bracket-box::before, .bracket-box::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border-color: var(--text-muted); border-style: solid; transition: border-color 0.3s;
}
.bracket-box::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.bracket-box::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.bracket-box:hover::before, .bracket-box:hover::after { border-color: var(--accent-primary); }

/* Badges */
.badge-mono {
  display: inline-block; font-family: var(--font-mono); font-size: 0.8rem;
  padding: 0.25rem 0.6rem; background-color: var(--border-color); color: var(--text-main); border-radius: 3px;
}

/* Layout */
.section-padding { padding: 6rem 0; }
.grid { display: grid; gap: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Section Header */
.section-separator { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; height: 20px; }
.section-separator span { font-family: var(--font-mono); color: var(--accent-primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.klyfe-symbol { height: 100%; width: auto; max-width: 100%; display: block; }
.klyfe-symbol path, .klyfe-symbol rect { fill: var(--accent-solar); }

/* ═══ LOGO ANIMADA (SVG) ═══ */
.logo-animated { height: 50px; width: 145px; display: flex; align-items: center; flex-shrink: 0; }
.logo-animated svg { height: 50px; width: 145px; display: block; }
.logo-animated-footer { height: 40px; width: 116px; display: flex; align-items: center; flex-shrink: 0; }
.logo-animated-footer svg { height: 40px; width: 116px; display: block; }
.logo-mobile-wrapper { height: 45px; margin-bottom: 2rem; display: flex; justify-content: center; }
.logo-mobile-wrapper svg { height: 100%; width: auto; }

/* Efeito de Pulsação Elétrica */
.logo-symbol-energy {
  animation: logoPulse 5s infinite;
  transform-origin: center;
}

@keyframes logoPulse {
  0%, 70%, 74%, 78%, 100% { 
    filter: drop-shadow(0 0 10px var(--accent-solar)); 
    opacity: 1;
  }
  72%, 76% { 
    filter: none;
    opacity: 0.1;
  }
}

.logo-animated:hover .logo-cls-white { fill: var(--accent-primary); }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease,
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

/* ═══ NAVBAR PILL (FLOATING APÓS SCROLL) ═══ */
.navbar.navbar-pill {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 2.5rem));
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(14, 18, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

[data-theme="solar-warm"] .navbar.navbar-pill {
  background: rgba(251, 248, 242, 0.94);
  border: 1px solid rgba(184, 134, 11, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(184, 134, 11, 0.06);
}

[data-theme="daylight-gold"] .navbar.navbar-pill,
[data-theme="sky-trust"] .navbar.navbar-pill,
[data-theme="soft-industrial"] .navbar.navbar-pill,
[data-theme="azure-sky"] .navbar.navbar-pill {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-pill .container {
  padding: 0 1.25rem;
}

.navbar.navbar-pill .logo svg,
.navbar.navbar-pill .logo img {
  transform: scale(0.92);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.navbar.navbar-pill .nav-links {
  gap: 1.25rem;
}

.navbar.navbar-pill .nav-links .btn-primary {
  padding: 0.55rem 1.25rem !important;
  border-radius: 999px !important;
  font-size: 0.88rem !important;
}

.navbar.navbar-pill .location-selector .nav-location {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface-glass);
}

[data-theme="solar-warm"] .navbar.navbar-pill .location-selector .nav-location {
  border: 1px solid rgba(184, 134, 11, 0.25);
  background: rgba(184, 134, 11, 0.04);
  color: #0E1217;
}

.navbar.navbar-pill .dropdown-menu {
  top: calc(100% + 14px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .navbar.navbar-pill {
    top: 8px;
    width: calc(100% - 1.2rem);
    height: 58px;
    padding: 0 0.4rem;
  }
  .navbar.navbar-pill .container {
    padding: 0 0.35rem;
  }
  .navbar.navbar-pill .logo svg,
  .navbar.navbar-pill .logo img {
    max-height: 28px;
    transform: scale(0.88);
    transform-origin: left center;
  }
  .navbar.navbar-pill .quick-city-selector {
    border-radius: 16px;
    top: calc(100% + 8px);
    width: calc(100% - 1rem);
    left: 0.5rem;
    overflow: hidden;
  }
}

.navbar .logo-cls-white { fill: var(--text-main); }
.navbar .logo-cls-yellow { fill: var(--accent-primary, #D9A608); }
.navbar .logo-animated:hover .logo-cls-white { fill: var(--accent-primary, #D9A608); }
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-location-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-tint);
    color: var(--accent-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--accent-tint-border);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-mobile-actions { display: flex; }
}

/* Quick City Selector Mobile */
.quick-city-selector {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    background: var(--bg-secondary, #111418);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    z-index: 2500;
    overflow: hidden;
}

[data-theme="solar-warm"] .quick-city-selector,
[data-theme="daylight-gold"] .quick-city-selector,
[data-theme="sky-trust"] .quick-city-selector,
[data-theme="soft-industrial"] .quick-city-selector,
[data-theme="azure-sky"] .quick-city-selector {
    background: #FFFDFB;
    border-color: rgba(227, 90, 27, 0.25);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.quick-city-selector.open {
    display: flex;
    animation: slideDown 0.25s ease-out;
}

.quick-city-header {
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    color: var(--accent-primary, #E35A1B);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-mono, monospace);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface-glass, rgba(255,255,255,0.03));
}

.quick-city-selector a {
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.quick-city-selector a:last-child {
    border-bottom: none;
}

.quick-city-selector a.active {
    background: var(--accent-tint-soft);
    color: var(--accent-primary);
    font-weight: 700;
}

.quick-city-selector a i {
    width: 20px;
    text-align: center;
    color: var(--accent-primary);
}

@keyframes slideDown {
    from { transform: translateY(-8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-family: var(--font-heading); text-transform: uppercase; font-size: 1rem; font-weight: 700; position: relative; }
.nav-links a:hover { color: var(--accent-primary); }
.nav-links a.active { color: var(--accent-primary); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -1rem;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  min-width: 260px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all 0.3s; border-radius: 6px;
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--bg-primary); padding-left: 1.5rem; color: var(--accent-primary); }

/* Location Selector */
.location-selector .nav-location {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-glass);
    transition: all 0.3s ease;
}
.location-selector:hover .nav-location {
    border-color: var(--accent-primary);
    color: var(--text-main);
    background: var(--accent-tint-soft);
}
.location-selector .nav-location i.fa-map-marker-alt {
    color: var(--accent-primary);
    font-size: 0.9rem;
}
.location-selector .dropdown-menu {
    min-width: 200px;
    right: 0;
    left: auto;
}


/* ═══ HERO ═══ */
.hero { 
  min-height: 100vh; 
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex; 
  align-items: center; 
  position: relative; 
  overflow: hidden;
  box-sizing: border-box;
  background-image: linear-gradient(to right, var(--hero-overlay-start) 30%, var(--hero-overlay-end) 100%), url('../img/hero-klyfe.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: lightning 5s infinite;
}

.hero .container {
  width: 100%;
  position: relative;
  contain: layout style;
}

@keyframes lightning {
  0%, 85%, 100% { filter: brightness(1) contrast(1) saturate(1); }
  88% { filter: brightness(2.2) contrast(0.95) saturate(0.7); }
  90% { filter: brightness(1.3) contrast(1); }
  93% { filter: brightness(3.2) contrast(0.9) saturate(0.6); }
  96% { filter: brightness(1) contrast(1) saturate(1); }
}

/* ═══ HERO INTERNO ═══ */
.hero-internal {
  padding: 180px 0 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed !important;
}
.hero-internal h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-top: 1rem;
}

/* ═══ HERO SOLAR FLAGSHIP (COM FOTO DE FUNDO) ═══ */
.solar-flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-solar-bg {
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.70) 0%, rgba(10, 15, 29, 0.88) 100%), url('/img/hero-solar-condominios.webp') center/cover no-repeat;
  padding: 5rem 0 6rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .hero-solar-bg {
    padding: 3.5rem 0 4.5rem 0;
  }
}

/* ═══ COMPONENTES ADICIONAIS ═══ */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
}
.faq-item h4 {
  cursor: pointer;
  transition: color 0.3s;
}
.faq-item h4:hover {
  color: var(--accent-solar);
}

.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 650px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin: 1.5rem 0 2rem; max-width: 550px; line-height: 1.7; }

.hero-service-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.8rem;
  font-size: 0.92rem;
}

.hero-service-links a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-service-links a:hover,
.hero-service-links a:focus-visible {
  color: var(--accent-primary);
}

.hero-service-line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-service-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--accent-primary);
}

.hero-service-arrow {
  color: var(--text-main);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-service-all {
  color: var(--text-muted) !important;
}

.hero-service-all:hover,
.hero-service-all:focus-visible {
  color: var(--accent-primary) !important;
}

@media (max-width: 640px) {
  .hero-service-links {
    gap: 0.6rem 0.8rem;
    font-size: 0.84rem;
  }

  .hero-service-line {
    display: none;
  }

  .hero-service-all {
    flex-basis: 100%;
    margin-left: 0;
  }

  .hero-service-arrow {
    display: none;
  }
}
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; border-top: 1px solid var(--border-color); padding-top: 2rem; }
.stat-item h4 { font-family: var(--font-mono); font-size: 2.2rem; color: var(--text-main); }
.stat-item p { font-family: var(--font-heading); color: var(--text-muted); text-transform: uppercase; font-size: 0.9rem; }

/* Page Hero (subpages) */
.page-hero { padding: 8rem 0 4rem; border-bottom: 1px solid var(--border-color); }
.page-hero .breadcrumb { font-family: var(--font-mono); color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.85rem; }
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: var(--accent-primary); }

/* ═══ SOLUTIONS ACCORDION ═══ */
.accordion-list { max-width: 600px; }
.accordion-item {
  border-bottom: 1px solid var(--border-color); cursor: pointer;
  transition: all 0.3s;
}
.accordion-item:hover { border-color: var(--accent-primary); }
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; text-transform: uppercase;
}
.accordion-header i { font-size: 0.8rem; transition: transform 0.3s; color: var(--text-muted); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); color: var(--accent-primary); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
}
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-body-inner { padding-bottom: 1.5rem; }

/* ═══ CARDS SOLUÇÕES ═══ */
.card-solucao {
  background: var(--bg-secondary); padding: 2.5rem; position: relative;
  border-left: 4px solid var(--border-color); transition: all 0.4s ease;
  border-radius: 6px; display: block;
}
.card-solucao:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.card-solucao.eletrica { border-left-color: var(--accent-primary); }
.card-solucao.automacao { border-left-color: var(--accent-secondary); }
.card-solucao.solar { border-left-color: var(--accent-solar); }
.card-solucao ul { margin-top: 1.5rem; }
.card-solucao ul li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; color: var(--text-muted); }
.card-solucao ul li::before { content: '→'; position: absolute; left: 0; }

/* ═══ FEATURE GRID (Automação style) ═══ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 8px; padding: 2rem 1.5rem; text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover { border-color: var(--accent-secondary); transform: translateY(-4px); }
.feature-card .icon {
  width: 50px; height: 50px; border-radius: 12px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: rgba(42, 245, 160, 0.1); color: var(--accent-secondary);
}
.feature-card h4 { font-family: var(--font-heading); margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ═══ ZIGZAG TIMELINE ═══ */
.zigzag-timeline { position: relative; }
.zigzag-step { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.zigzag-step .step-content { padding: 2rem; }
.zigzag-step .step-line { display: flex; flex-direction: column; align-items: center; }
.zigzag-step .step-dot {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--accent-primary);
  background: var(--bg-primary);
}
.zigzag-step .step-connector { width: 2px; height: 40px; background: var(--border-color); }
.zigzag-step:nth-child(odd) .step-content:first-child { text-align: right; }
.zigzag-step:nth-child(even) .step-content:first-child { order: 3; }

/* ═══ FAQ ACCORDION ═══ */
.faq-item {
  border: 1px solid var(--border-color); border-radius: 6px;
  margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--accent-primary); }
.faq-question {
  padding: 1.2rem 1.5rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  background: var(--bg-secondary); transition: background 0.3s;
}
.faq-question:hover { background: var(--border-color); }
.faq-question i { font-size: 0.8rem; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.active .faq-question { background: var(--border-color); }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 1000px; }
.faq-answer-inner { padding: 1.2rem 1.5rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; border-top: 1px solid var(--border-color); }

/* ═══ PROJECT CARDS (overlapping) ═══ */
.projects-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  position: relative; overflow: hidden; border-radius: 8px;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  transition: all 0.4s ease; min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--accent-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.project-card.large { grid-column: span 2; min-height: 320px; }
.project-card .project-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg-primary) 100%);
}
.project-card .project-info { position: relative; z-index: 1; padding: 2rem; }

/* ═══ TESTIMONIALS ═══ */
.testimonial-card { padding: 2rem; background: var(--bg-secondary); border-radius: 8px; border: 1px solid var(--border-color); }
.testimonial-card .quote { font-size: 2rem; color: var(--accent-primary); font-family: serif; line-height: 1; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-card .author { font-family: var(--font-heading); color: var(--text-main); font-weight: 700; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--cta-gradient-end) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--cta-heading-color); margin-bottom: 1rem; font-size: 3rem; }
.cta-banner p { color: var(--cta-body-color); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.cta-banner .btn-dark {
  background: var(--cta-btn-bg); color: var(--cta-btn-color);
  padding: 1rem 2rem; border-radius: 4px; font-family: var(--font-heading);
  font-weight: 700; text-transform: uppercase; display: inline-flex;
  align-items: center; gap: 0.5rem; transition: all 0.3s; border: none; cursor: pointer;
}
.cta-banner .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--shadow-color); }

/* ═══ STAT CIRCLES ═══ */
.stat-circle {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--accent-secondary); display: flex;
  flex-direction: column; align-items: center; justify-content: center;
}
.stat-circle h4 { font-family: var(--font-mono); font-size: 1.8rem; color: var(--accent-secondary); line-height: 1; }
.stat-circle p { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }

/* ═══ BRANDS ROW ═══ */
.brands-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.brands-row span {
  font-family: var(--font-body); font-size: 1rem; color: var(--text-muted);
  transition: color 0.3s; letter-spacing: 0.5px;
}
.brands-row span:hover { color: var(--text-main); }

/* ═══ CALCULATOR ═══ */
.calculator-box {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 8px; padding: 2.5rem; max-width: 450px;
}
.calculator-result {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 8px; padding: 2.5rem; text-align: center;
}
.calculator-result .big-value { font-family: var(--font-display); font-size: 4rem; color: var(--accent-solar); line-height: 1; }

/* ═══ FOOTER ═══ */
footer { background: var(--bg-primary); border-top: 2px solid var(--accent-primary); padding: 4rem 0 2rem; }

/* ═══ WHATSAPP ═══ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px;
  background-color: #25D366; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 1000; transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ 1. MARQUEE TICKER (PILLS / BADGES FLUTUANTES) ═══ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  background: var(--bg-secondary);
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.marquee-pill i {
  color: var(--accent-primary);
  font-size: 0.95rem;
}
.marquee-pill:hover {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ═══ 2. SCROLL SPY NAV ═══ */
.scroll-nav {
  position: fixed; left: 2rem; top: 50%; transform: translateY(-50%);
  z-index: 900; display: flex; flex-direction: column; gap: 1.2rem;
}
.scroll-nav .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-color); transition: all 0.3s; cursor: pointer;
  position: relative;
}
.scroll-nav .dot.active { background: var(--accent-primary); box-shadow: 0 0 10px rgba(245,200,66,0.4); }
.scroll-nav .dot::after {
  content: attr(data-label); position: absolute; left: 22px; top: 50%;
  transform: translateY(-50%); white-space: nowrap;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}

/* ═══ 3. REVEAL CARDS ═══ */
.reveal-card {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 8px; overflow: hidden; transition: all 0.4s ease;
  cursor: pointer; position: relative;
  height: 380px; /* Fixed height for stability */
  display: flex;
  flex-direction: column;
}
.reveal-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.reveal-card.eng:hover { border-color: var(--accent-primary); }
.reveal-card.solar:hover { border-color: var(--accent-solar); }
.reveal-card.auto:hover { border-color: var(--accent-secondary); }

.reveal-card .card-top { padding: 2.5rem 2rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.reveal-card .card-top .card-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  transition: all 0.4s;
}
.reveal-card:hover .card-top .card-icon { transform: scale(1.1); }

.reveal-card .card-bottom {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--reveal-overlay);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  overflow-y: auto;
}
.reveal-card:hover .card-bottom { transform: translateY(0); }
.reveal-card .card-bottom::-webkit-scrollbar {
  width: 4px;
}
.reveal-card .card-bottom::-webkit-scrollbar-track {
  background: transparent;
}
.reveal-card .card-bottom::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
.reveal-card.eng::-webkit-scrollbar-thumb { background: rgba(217, 166, 8, 0.3); }
.reveal-card.solar::-webkit-scrollbar-thumb { background: rgba(255, 107, 43, 0.3); }
.reveal-card.auto::-webkit-scrollbar-thumb { background: rgba(42, 245, 160, 0.3); }

.reveal-card .card-bottom-inner { width: 100%; }
.reveal-card .card-bottom ul { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.reveal-card .card-bottom ul li {
  padding: 0.35rem 0; padding-left: 1.2rem; position: relative;
  font-size: 0.88rem;
  text-align: left;
}
.reveal-card.eng .card-bottom ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); }
.reveal-card.solar .card-bottom ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-solar); }
.reveal-card.auto .card-bottom ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-secondary); }

.reveal-card .card-bottom ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.reveal-card.eng .card-bottom ul li a:hover { color: var(--accent-primary); }
.reveal-card.solar .card-bottom ul li a:hover { color: var(--accent-solar); }
.reveal-card.auto .card-bottom ul li a:hover { color: var(--accent-secondary); }

/* ═══ 3.0. TRUST COUNTER BAR (MÉTRICAS DE CREDIBILIDADE SOLAR) ═══ */
.trust-counter-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.25rem 0;
  position: relative;
  z-index: 2;
}
.trust-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-counter-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--border-color);
}
.trust-counter-item:last-child {
  border-right: none;
}
.trust-counter-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.trust-counter-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-weight: 500;
}

/* ═══ 3.1. CARDS DE PERFIS SOLARES (FLAGSHIP & SHOWCASE) ═══ */
.home-sec-solucoes {
  background: #FFFFFF;
  padding: 5.5rem 0;
  position: relative;
}
.home-solar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.home-solar-header-left {
  flex: 1 1 380px;
  max-width: 520px;
}
.home-solar-tag {
  display: inline-block;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.home-solar-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #0E1217;
}
.text-solar-orange {
  color: #E35A1B !important;
}
.home-solar-header-right {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
}
.home-solar-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}
.home-solar-filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.solar-filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #64748B;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.solar-filter-btn:hover {
  color: #E35A1B;
  background: rgba(227, 90, 27, 0.08);
}
.solar-filter-btn.active {
  background: #E35A1B;
  color: #FFFFFF;
  border-color: #E35A1B;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
}

/* UX Interaction Hint Bar (Desktop) */
.home-solar-ux-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFF7ED;
  border: 1px solid rgba(227, 90, 27, 0.28);
  box-shadow: 0 3px 10px rgba(227, 90, 27, 0.08);
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #334155;
  width: fit-content;
}
.ux-hint-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E35A1B;
  color: #FFFFFF;
  font-size: 0.75rem;
  animation: uxPulse 2.2s infinite ease-in-out;
}
.ux-hint-text strong {
  color: #0F172A;
  font-weight: 700;
}

@keyframes uxPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(227, 90, 27, 0.45);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(227, 90, 27, 0);
  }
}

@media (max-width: 1023px) {
  .home-solar-ux-hint {
    display: none;
  }
}

/* Grid de 3 Colunas & Expansão Interativa Desktop */
.home-solar-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
}
.solar-showcase-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #0E1217;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #1E2530;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease, opacity 0.45s ease, background-color 0.5s ease, filter 0.45s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  position: relative;
  will-change: transform;
}
.solar-showcase-card.is-hidden {
  display: none !important;
}

@media (min-width: 901px) {
  .solar-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 90, 27, 0.85);
    background: #121720;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 25px rgba(227, 90, 27, 0.2);
    z-index: 2;
  }
}

.solar-showcase-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #11141A;
  flex-shrink: 0;
}
.solar-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.solar-showcase-card:hover .solar-showcase-img {
  transform: scale(1.08);
}
.solar-showcase-badge-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 18, 23, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.solar-showcase-card:hover .solar-showcase-badge-floating {
  opacity: 1;
  transform: translateY(0);
}

.solar-showcase-body {
  padding: 1.25rem 1.15rem 1.45rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  background: transparent;
}
.solar-showcase-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.solar-showcase-number {
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.solar-showcase-tag-pill {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
}
.solar-showcase-card:hover .solar-showcase-tag-pill {
  opacity: 1;
}

.solar-showcase-title {
  color: #FFFFFF;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.solar-showcase-highlight {
  color: #E2E8F0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.55rem;
}
.solar-showcase-text {
  color: #94A3B8;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
  max-height: 80px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, margin-bottom 0.4s ease;
}

/* Conteúdo Expandido no Hover (Desktop) */
.solar-showcase-expanded {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, margin-bottom 0.4s ease;
  pointer-events: none;
}
.solar-showcase-expanded-desc {
  color: #E2E8F0;
  font-size: 0.83rem;
  line-height: 1.48;
  margin-bottom: 0.9rem;
  border-left: 3px solid #E35A1B;
  padding: 0.55rem 0.75rem;
  background: rgba(227, 90, 27, 0.08);
  border-radius: 0 8px 8px 0;
}
.solar-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.solar-showcase-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.81rem;
  color: #CBD5E1;
  line-height: 1.35;
}
.solar-showcase-features li strong {
  color: #FFFFFF;
  font-weight: 700;
}
.solar-showcase-features li i {
  width: 16px;
  text-align: center;
  font-size: 0.86rem;
  flex-shrink: 0;
  color: #FF7A3D;
}

@media (min-width: 901px) {
  .solar-showcase-card:hover .solar-showcase-text {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }
  .solar-showcase-card:hover .solar-showcase-expanded {
    max-height: 450px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-bottom: 1.25rem;
  }
}

.solar-showcase-link {
  margin-top: auto;
  color: #E35A1B;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: fit-content;
}
.link-text-hover {
  display: none;
}
.link-text-default {
  display: inline;
}
.solar-showcase-card:hover .solar-showcase-link {
  gap: 0.7rem;
  color: #FF7A3D;
}
.solar-showcase-link i {
  font-size: 0.75rem;
  transition: transform 0.35s ease;
}
.solar-showcase-card:hover .solar-showcase-link i {
  transform: translateX(3px);
}

@media (min-width: 901px) {
  .solar-showcase-card:hover .link-text-default {
    display: none;
  }
  .solar-showcase-card:hover .link-text-hover {
    display: inline;
  }
  .solar-showcase-card:hover .solar-showcase-link {
    background: linear-gradient(135deg, #E35A1B 0%, #FF6F2E 100%);
    color: #FFFFFF;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(227, 90, 27, 0.4);
    gap: 0.6rem;
  }
  .solar-showcase-card:hover .solar-showcase-link i {
    color: #FFFFFF;
    transform: translateX(4px);
  }
}

/* ═══ CTA SOLAR BANNER (DARK PILL STYLE) ═══ */
.home-solar-bottom-cta {
  margin-top: 3rem;
  background: #0E1217;
  border-radius: 18px;
  padding: 1.6rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-left: 5px solid #E35A1B;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.solar-cta-content {
  flex: 1 1 450px;
}
.solar-cta-title {
  color: #FFFFFF;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 0.35rem 0;
  line-height: 1.2;
}
.solar-cta-desc {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.solar-cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-solar-cta-main {
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
  border: 1px solid #E35A1B;
}
.btn-solar-cta-main:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.45);
}
.btn-solar-cta-ghost {
  background: transparent;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid #334155;
}
.btn-solar-cta-ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Responsividade Showcase */
@media (max-width: 900px) {
  .solar-showcase-card .solar-showcase-text {
    display: block;
    margin-bottom: 1rem;
  }
  .solar-showcase-card .solar-showcase-expanded {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 1rem;
  }
  .solar-showcase-card .solar-showcase-tag-pill {
    opacity: 1;
  }
  .solar-showcase-card .solar-showcase-badge-floating {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .home-solar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .home-solar-header-left, .home-solar-header-right {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
  .home-solar-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .home-solar-bottom-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .solar-cta-content {
    flex: none;
    width: 100%;
  }
  .solar-cta-actions {
    width: 100%;
    display: flex;
    gap: 0.75rem;
  }
  .btn-solar-cta-main, .btn-solar-cta-ghost {
    flex: 1 1 calc(50% - 0.38rem);
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 580px) {
  .home-solar-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .solar-cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-solar-cta-main, .btn-solar-cta-ghost {
    width: 100%;
    flex: none;
  }
}

.home-solar-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
.segment-card-flagship {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.segment-card-flagship:hover {
  transform: translateY(-6px);
  border-color: #f59e0b;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.2);
}
.segment-card-img-wrap {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  position: relative;
}
.segment-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.segment-card-flagship:hover .segment-card-img {
  transform: scale(1.04);
}
.segment-card-flagship h3 {
  color: var(--text-main);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.segment-card-flagship p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.segment-card-action {
  margin-top: 1.5rem;
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.segment-card-flagship:hover .segment-card-action {
  gap: 0.65rem;
}

/* ═══ 3.2. PILARES DE ENGENHARIA & AUTOMAÇÃO (MODERN REDESIGN) ═══ */
.home-sec-eng-auto {
  background: #FAF8F5;
  border-top: 1px solid rgba(227, 90, 27, 0.08);
  padding: 5.5rem 0;
  position: relative;
}
.home-eng-hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.home-eng-hero-copy {
  flex: 1 1 480px;
  max-width: 580px;
}
.home-eng-tag {
  display: inline-block;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.home-eng-hero-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.25px;
  color: #0E1217;
  margin: 0;
}
.home-eng-title-divider {
  width: 36px;
  height: 3px;
  background: #E35A1B;
  border-radius: 2px;
  margin: 1.4rem 0;
}
.home-eng-hero-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Visual Hero Direita com Overlay Bar */
.home-eng-hero-visual {
  flex: 1 1 520px;
}
.home-eng-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  background: #0E1217;
  height: 380px;
}
.home-eng-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-eng-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 18, 23, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.95rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-eng-overlay-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.home-eng-overlay-item i {
  color: #E35A1B;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.home-eng-overlay-item div {
  display: flex;
  flex-direction: column;
}
.home-eng-overlay-item strong {
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
}
.home-eng-overlay-item span {
  color: #94A3B8;
  font-size: 0.7rem;
  line-height: 1.15;
}

/* Grid de Cards de Pilares */
.home-eng-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}
.eng-modern-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.eng-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  border-color: rgba(227, 90, 27, 0.3);
}
.eng-modern-card.auto:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.eng-modern-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #0E1217;
}
.eng-modern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.eng-modern-card:hover .eng-modern-img {
  transform: scale(1.06);
}
.eng-modern-badge-icon {
  position: absolute;
  bottom: 14px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.eng-modern-badge-icon.badge-orange {
  background: #E35A1B;
}
.eng-modern-badge-icon.badge-teal {
  background: #0D9488;
}

.eng-modern-body {
  padding: 1.75rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eng-modern-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0E1217;
  margin-bottom: 0.5rem;
}
.eng-modern-desc {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.eng-modern-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.eng-modern-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.eng-service-check-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s ease, transform 0.2s ease;
}
.eng-service-check-link i {
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.eng-service-check-link.orange i {
  color: #E35A1B;
}
.eng-service-check-link.teal i {
  color: #0D9488;
}
.eng-service-check-link:hover {
  color: #0E1217;
  transform: translateX(2px);
}
.eng-service-check-link.orange:hover i {
  transform: scale(1.15);
}
.eng-service-check-link.teal:hover i {
  transform: scale(1.15);
}

.eng-modern-cta-link {
  margin-top: auto;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.25s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
}
.eng-modern-cta-link.orange {
  color: #E35A1B;
}
.eng-modern-cta-link.teal {
  color: #0D9488;
}
.eng-modern-cta-link:hover {
  gap: 0.75rem;
}
.eng-modern-cta-link i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}
.eng-modern-cta-link:hover i {
  transform: translateX(3px);
}

/* Responsividade Seção 02 */
@media (max-width: 1024px) {
  .home-eng-hero-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .home-eng-hero-copy, .home-eng-hero-visual {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .home-eng-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
@media (max-width: 640px) {
  .home-eng-overlay-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.85rem;
  }
  .eng-modern-services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .eng-modern-body {
    padding: 1.5rem 1.25rem;
  }
}

/* ═══ 3.3. SEÇÃO 03: SERVIÇOS DO DIA A DIA (MODERN REDESIGN) ═══ */
.home-sec-eletrica {
  background: #FFF9F5 !important;
  border-top: 1px solid rgba(227, 90, 27, 0.08);
  padding: 5.5rem 0;
  position: relative;
}
.daily-services-layout {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.daily-services-sidebar {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
}
.daily-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.08);
  border: 1px solid rgba(227, 90, 27, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 1.25rem;
}
.daily-sec-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.5px;
  color: #0E1217;
  margin: 0;
  text-transform: uppercase;
}
.daily-title-divider {
  width: 36px;
  height: 3px;
  background: #E35A1B;
  border-radius: 2px;
  margin: 1.4rem 0;
}
.daily-sec-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 2rem 0;
}

/* Trust List */
.daily-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.daily-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.daily-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(227, 90, 27, 0.1);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.daily-trust-text {
  display: flex;
  flex-direction: column;
}
.daily-trust-text strong {
  color: #0E1217;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.daily-trust-text span {
  color: #64748B;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Left CTA Button */
.btn-daily-left-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.95rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(227, 90, 27, 0.35);
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}
.btn-daily-left-cta:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 90, 27, 0.45);
}

/* Grid de 8 Cards à Direita */
.daily-services-grid {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.daily-modern-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(227, 90, 27, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 140px;
}
.daily-modern-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 90, 27, 0.4);
  box-shadow: 0 12px 28px rgba(227, 90, 27, 0.12);
}
.daily-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.daily-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227, 90, 27, 0.08);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.daily-modern-card:hover .daily-card-icon {
  background: #E35A1B;
  color: #FFFFFF;
  transform: scale(1.05);
}
.daily-card-badge {
  background: #FFF1EA;
  color: #E35A1B;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.daily-card-title {
  color: #0E1217;
  font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
}
.daily-card-desc {
  color: #64748B;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  padding-right: 1.5rem;
}
.daily-card-arrow {
  position: absolute;
  bottom: 1.35rem;
  right: 1.4rem;
  color: #E35A1B;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.daily-modern-card:hover .daily-card-arrow {
  transform: translateX(4px);
}

/* Banner Inferior */
.daily-bottom-banner {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.16);
  border-radius: 18px;
  padding: 1.35rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(227, 90, 27, 0.05);
  flex-wrap: wrap;
  margin-top: 3.5rem;
}
.daily-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.daily-banner-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #E35A1B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.3);
  flex-shrink: 0;
}
.daily-banner-title {
  color: #0E1217;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.daily-banner-center {
  flex: 1 1 320px;
}
.daily-banner-center p {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.daily-banner-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-daily-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.8rem 1.45rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
  transition: all 0.3s ease;
}
.btn-daily-whatsapp:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.45);
}
.daily-micro-badges {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.daily-micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #64748B;
  font-size: 0.78rem;
  font-weight: 600;
}
.daily-micro-badge i {
  color: #E35A1B;
  font-size: 0.85rem;
}

/* Responsividade Seção 03 */
@media (max-width: 1080px) {
  .daily-services-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .daily-services-sidebar {
    flex: none;
    width: 100%;
  }
  .daily-bottom-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .daily-banner-left {
    width: 100%;
  }
  .daily-banner-center {
    flex: none;
    width: 100%;
  }
  .daily-banner-right {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .daily-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .daily-banner-right {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .btn-daily-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .daily-micro-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

/* ═══ 3.4. SEÇÃO 04: A EMPRESA (MODERN REDESIGN) ═══ */
.home-sec-empresa {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(227, 90, 27, 0.08);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.home-empresa-main-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  margin-bottom: 4rem;
}

/* Visual frame */
.home-empresa-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.empresa-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: clamp(40px, 6vw, 80px) 20px clamp(40px, 6vw, 80px) 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(227, 90, 27, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  background: #0E1217;
  z-index: 2;
}

.empresa-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-empresa-visual-wrap:hover .empresa-visual-img {
  transform: scale(1.04);
}

.empresa-decor-stroke {
  position: absolute;
  top: -16px;
  left: -18px;
  width: 55%;
  height: 55%;
  border-top: 2px solid #E35A1B;
  border-left: 2px solid #E35A1B;
  border-radius: clamp(40px, 6vw, 80px) 0 0 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.empresa-decor-dots {
  position: absolute;
  top: -24px;
  right: -16px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(rgba(227, 90, 27, 0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}

/* Content */
.home-empresa-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empresa-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.08);
  border: 1px solid rgba(227, 90, 27, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.empresa-sec-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: #0E1217;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
}

.empresa-title-line {
  width: 44px;
  height: 3px;
  background: #E35A1B;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.empresa-sec-desc {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 2.25rem 0;
}

.btn-empresa-action {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(227, 90, 27, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-empresa-action:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 90, 27, 0.45);
}

.btn-empresa-action i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.btn-empresa-action:hover i {
  transform: translateX(4px);
}

/* ═══ Floating 3-Pillars Card ═══ */
.home-empresa-pillars-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.14);
  border-radius: 22px;
  padding: 1.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 12px 35px rgba(227, 90, 27, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
}

.empresa-pillar-col {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.empresa-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFF1EA;
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227, 90, 27, 0.12);
  transition: transform 0.3s ease;
}

.empresa-pillar-col:hover .empresa-pillar-icon {
  transform: scale(1.08);
}

.empresa-pillar-info {
  display: flex;
  flex-direction: column;
}

.empresa-pillar-heading {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0E1217;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.empresa-pillar-text {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
}

.empresa-pillar-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.08);
}

.empresa-actions-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-empresa-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0E1217;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(14, 18, 23, 0.15);
  text-decoration: none;
  background: #FFFFFF;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-empresa-map-link i {
  color: #E35A1B;
  font-size: 0.95rem;
}

.btn-empresa-map-link:hover {
  border-color: #E35A1B;
  color: #E35A1B;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(227, 90, 27, 0.12);
}

/* ═══ Hub da Sede Física e Rota Interativa ═══ */
.home-empresa-sede-card {
  margin-top: 2.75rem;
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(227, 90, 27, 0.07), 0 4px 14px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 480px;
}

.empresa-sede-map-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: #F1EFEB;
}

.empresa-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.empresa-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  display: block;
}

.empresa-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(14, 18, 23, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  z-index: 2;
  pointer-events: none;
}

.empresa-map-badge i {
  color: #E35A1B;
}

.empresa-map-pin-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FF9D;
  box-shadow: 0 0 10px #00FF9D;
  animation: mapPinPulse 2s infinite;
}

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

.empresa-sede-info-col {
  padding: clamp(1.75rem, 3.2vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sede-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.08);
  border: 1px solid rgba(227, 90, 27, 0.22);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.sede-info-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.06;
  color: #0E1217;
  margin: 0 0 0.85rem 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.sede-info-desc {
  color: #64748B;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

.sede-address-box {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  background: #F8F9FA;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
  margin-bottom: 1rem;
  position: relative;
}

.sede-address-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(227, 90, 27, 0.1);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.sede-address-text {
  flex: 1;
  min-width: 0;
}

.sede-address-label {
  display: block;
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 0.15rem;
}

.sede-address-val {
  display: block;
  font-size: 0.88rem;
  color: #0E1217;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.btn-copy-address {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #64748B;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-copy-address:hover {
  border-color: #E35A1B;
  color: #E35A1B;
  background: #FFF5F0;
  transform: translateY(-1px);
}

.btn-copy-address.copied {
  border-color: #10B981;
  color: #10B981;
  background: #ECFDF5;
}

.copy-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #0E1217;
  color: #FFFFFF;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.btn-copy-address:hover .copy-tooltip,
.btn-copy-address.copied .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

.sede-schedule-row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-bottom: 1.45rem;
  font-size: 0.84rem;
  color: #475569;
}

.sede-schedule-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sede-schedule-item i {
  color: #E35A1B;
  font-size: 0.9rem;
}

.sede-schedule-divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.12);
}

.sede-route-actions {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.btn-route-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.32);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-route-primary:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(227, 90, 27, 0.45);
}

.btn-route-primary i {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-route-primary:hover i {
  transform: translateX(2px) translateY(-2px);
}

.btn-route-waze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #33CCFF;
  color: #0E1217 !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(51, 204, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-route-waze:hover {
  background: #1ABCFE;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(51, 204, 255, 0.38);
}

.btn-route-waze i {
  font-size: 1.15rem;
}

.sede-proof-link {
  font-size: 0.83rem;
  color: #64748B;
  display: flex;
  align-items: center;
}

.sede-proof-link a {
  color: #64748B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s ease;
}

.sede-proof-link a:hover {
  color: #E35A1B;
  text-decoration: underline;
}

.sede-proof-link i {
  color: #FFB900;
  font-size: 0.95rem;
}

/* Responsividade Seção 04 */
@media (max-width: 1024px) {
  .home-empresa-main-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .home-empresa-content-wrap {
    align-items: center;
  }
  .empresa-title-line {
    margin-left: auto;
    margin-right: auto;
  }
  .empresa-actions-group {
    justify-content: center;
  }
  .home-empresa-pillars-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .empresa-pillar-divider {
    display: none;
  }
  .home-empresa-sede-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .empresa-sede-map-col {
    min-height: 340px;
    height: 340px;
  }
}
@media (max-width: 640px) {
  .empresa-actions-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-empresa-action,
  .btn-empresa-map-link {
    width: 100%;
    justify-content: center;
  }
  .empresa-pillar-col {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .btn-empresa-action {
    width: 100%;
    justify-content: center;
  }
  .sede-schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .sede-schedule-divider {
    display: none;
  }
  .sede-route-actions {
    grid-template-columns: 1fr;
  }
  .btn-route-primary,
  .btn-route-waze {
    width: 100%;
  }
}

/* ═══ 3.5. SEÇÃO 05: DIFERENCIAIS OPERACIONAIS (MODERN REDESIGN) ═══ */
.home-sec-diferenciais {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(227, 90, 27, 0.08);
  padding: 5.5rem 0;
  position: relative;
}
.dif-layout {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.dif-sidebar {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
}
.dif-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.08);
  border: 1px solid rgba(227, 90, 27, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 1.25rem;
}
.dif-sec-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.25px;
  color: #0E1217;
  margin: 0;
}
.dif-title-divider {
  width: 36px;
  height: 3px;
  background: #E35A1B;
  border-radius: 2px;
  margin: 1.4rem 0;
}
.dif-sec-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 2rem 0;
}

/* Bullet Items */
.dif-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dif-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.dif-bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(227, 90, 27, 0.1);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dif-bullet-text {
  display: flex;
  flex-direction: column;
}
.dif-bullet-text strong {
  color: #0E1217;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.dif-bullet-text span {
  color: #64748B;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Bento Grid */
.dif-bento-grid {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dif-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(227, 90, 27, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.dif-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 90, 27, 0.35);
  box-shadow: 0 10px 25px rgba(227, 90, 27, 0.1);
}

/* Card Hero ART */
.dif-card-hero {
  background: #FFFFFF;
  padding: 1.75rem 2rem;
}
.dif-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227, 90, 27, 0.08);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.dif-card-icon-box.small {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}
.dif-card-title {
  color: #0E1217;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.4rem 0;
}
.dif-card-desc {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.dif-art-stat {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(227, 90, 27, 0.1);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.dif-art-num {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #E35A1B;
  line-height: 1;
}
.dif-art-label {
  color: #0E1217;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Subgrid 2x2 */
.dif-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.dif-card-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.dif-card-title-sm {
  color: #0E1217;
  font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

/* Bottom Banner */
.dif-bottom-banner {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.15);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(227, 90, 27, 0.05);
  flex-wrap: wrap;
  margin-top: 3.5rem;
}
.dif-banner-items {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1 1 auto;
}
.dif-banner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dif-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(227, 90, 27, 0.08);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.dif-banner-text {
  display: flex;
  flex-direction: column;
}
.dif-banner-text strong {
  color: #0E1217;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}
.dif-banner-text span {
  color: #64748B;
  font-size: 0.78rem;
  line-height: 1.3;
}
.dif-banner-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.08);
}
.dif-banner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.btn-dif-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
  transition: all 0.3s ease;
}
.btn-dif-banner-cta:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.45);
}
.dif-banner-sub {
  color: #64748B;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dif-banner-sub i {
  color: #64748B;
  font-size: 0.72rem;
}

/* Responsividade Seção 05 */
@media (max-width: 1080px) {
  .dif-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .dif-sidebar {
    flex: 1 1 100%;
  }
  .dif-banner-items {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .dif-banner-divider {
    display: none;
  }
  .dif-bottom-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .dif-banner-action {
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .dif-subgrid {
    grid-template-columns: 1fr;
  }
  .btn-dif-banner-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ 3.8. SEÇÃO 08: BLOG TÉCNICO (MODERN REDESIGN) ═══ */
.home-sec-blog {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(227, 90, 27, 0.08);
  padding: 5.5rem 0;
  position: relative;
}
.home-blog-header-block {
  margin-bottom: 2.75rem;
}
.home-blog-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.08);
  border: 1px solid rgba(227, 90, 27, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.home-blog-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.home-blog-sec-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.5px;
  color: #0E1217;
  margin: 0;
  text-transform: uppercase;
}
.home-blog-sec-lead {
  max-width: 520px;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Filter Pills */
.home-blog-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-filter-btn {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #334155;
  font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.blog-filter-btn:hover {
  border-color: #E35A1B;
  color: #E35A1B;
}
.blog-filter-btn.active {
  background: #E35A1B;
  border-color: #E35A1B;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(227, 90, 27, 0.25);
}

/* Card Hero Horizontal (Featured Post) */
.home-blog-featured-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(227, 90, 27, 0.04);
  display: flex;
  margin-bottom: 2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-blog-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 90, 27, 0.35);
  box-shadow: 0 16px 40px rgba(227, 90, 27, 0.12);
}
.blog-featured-img-wrap {
  flex: 0 0 48%;
  max-height: 380px;
  overflow: hidden;
  background: #0E1217;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-blog-featured-card:hover .blog-featured-img {
  transform: scale(1.04);
}
.blog-featured-content {
  flex: 1 1 52%;
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.blog-meta-badge {
  background: #FFF1EA;
  color: #E35A1B;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}
.blog-read-time {
  color: #94A3B8;
  font-size: 0.8rem;
}
.blog-featured-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0E1217;
  margin: 0 0 1rem 0;
}
.blog-featured-title a {
  color: #0E1217;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-featured-title a:hover {
  color: #E35A1B;
}
.blog-featured-desc {
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.75rem 0;
}

/* Grid de 3 Cards */
.home-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.home-blog-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 90, 27, 0.35);
  box-shadow: 0 12px 30px rgba(227, 90, 27, 0.1);
}
.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0E1217;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-blog-card:hover .blog-card-img {
  transform: scale(1.05);
}
.blog-floating-icon {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.blog-card-body {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0E1217;
  margin: 0 0 0.6rem 0;
}
.blog-card-title a {
  color: #0E1217;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-title a:hover {
  color: #E35A1B;
}
.blog-card-desc {
  color: #64748B;
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}
.blog-read-action {
  margin-top: auto;
  color: #E35A1B;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.blog-read-action:hover {
  gap: 0.7rem;
}
.blog-read-action i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}
.blog-read-action:hover i {
  transform: translateX(3px);
}

/* Banner Inferior do Blog */
.home-blog-bottom-banner {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.15);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 8px 24px rgba(227, 90, 27, 0.04);
  flex-wrap: wrap;
}
.blog-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227, 90, 27, 0.1);
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.blog-banner-title {
  color: #0E1217;
  font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.15rem 0;
}
.blog-banner-desc {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}
.btn-blog-bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
  transition: all 0.3s ease;
}
.btn-blog-bottom-cta:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.45);
}

/* Responsividade Blog */
@media (max-width: 1024px) {
  .home-blog-featured-card {
    flex-direction: column;
  }
  .blog-featured-img-wrap {
    flex: 0 0 240px;
    max-height: 240px;
  }
  .blog-featured-content {
    padding: 1.75rem;
  }
  .home-blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-blog-cards-grid {
    grid-template-columns: 1fr;
  }
  .home-blog-bottom-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .btn-blog-bottom-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ 3.9. MASTER CTA MULTISSERVIÇOS (MODERN HIGH-CONVERSION) ═══ */
.home-sec-cta {
  background: var(--bg-primary, #FFFFFF);
  padding: 4.5rem 0 5.5rem;
  position: relative;
}

.home-master-cta-card {
  position: relative;
  background: linear-gradient(145deg, #090D12 0%, #111722 50%, #0D1219 100%);
  border: 1px solid rgba(227, 90, 27, 0.3);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(227, 90, 27, 0.08);
  overflow: hidden;
  text-align: center;
}

.cta-card-glow-top {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(227, 90, 27, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-card-glow-bottom {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(227, 90, 27, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.home-master-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFA477;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(227, 90, 27, 0.12);
  border: 1px solid rgba(227, 90, 27, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.cta-tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E35A1B;
  box-shadow: 0 0 10px #E35A1B;
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% { transform: scale(0.9); opacity: 0.65; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.65; }
}

.cta-master-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
}

.cta-master-desc {
  color: #CBD5E1;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  max-width: 820px;
  margin: 0 0 2.5rem 0;
}

.cta-master-desc strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* 4 Scope Pills */
.cta-services-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  width: 100%;
  max-width: 840px;
  margin-bottom: 2.75rem;
}

.cta-scope-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.cta-scope-pill:hover {
  background: rgba(227, 90, 27, 0.08);
  border-color: rgba(227, 90, 27, 0.35);
  transform: translateY(-2px);
}

.cta-scope-pill i {
  color: #E35A1B;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.cta-scope-pill span {
  color: #E2E8F0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Actions Row */
.cta-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 1.05rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(227, 90, 27, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-primary:hover {
  background: #FF6622;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 90, 27, 0.6);
}

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

.btn-cta-primary:hover i {
  transform: translateX(4px);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF !important;
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 1.05rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-whatsapp i {
  color: #25D366;
  font-size: 1.25rem;
}

.btn-cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* Trust Proof Row */
.cta-trust-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  width: 100%;
}

.cta-proof-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #94A3B8;
  font-size: 0.86rem;
}

.cta-proof-item i {
  color: #E35A1B;
  font-size: 0.95rem;
}

.cta-proof-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

/* Responsividade CTA Master */
@media (max-width: 820px) {
  .cta-services-scope-grid {
    grid-template-columns: 1fr;
  }
  .cta-trust-proof-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-proof-divider {
    display: none;
  }
  .btn-cta-primary, .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}
.pillar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.pillar-card.eng {
  border-top: 4px solid var(--accent-primary);
}
.pillar-card.auto {
  border-top: 4px solid var(--accent-secondary);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}
.pillar-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.pillar-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.pillar-card.eng .pillar-card-icon {
  background: rgba(217, 166, 8, 0.12);
  color: var(--accent-primary);
}
.pillar-card.auto .pillar-card-icon {
  background: rgba(42, 245, 160, 0.12);
  color: var(--accent-secondary);
}
.pillar-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.pillar-card.eng .pillar-badge {
  background: rgba(217, 166, 8, 0.15);
  color: var(--accent-primary);
}
.pillar-card.auto .pillar-badge {
  background: rgba(42, 245, 160, 0.15);
  color: var(--accent-secondary);
}
.pillar-card-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.2;
}
.pillar-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.pillar-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}
.pillar-services-list li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.pillar-card.eng .pillar-services-list li a:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}
.pillar-card.auto .pillar-services-list li a:hover {
  color: var(--accent-secondary);
  transform: translateX(4px);
}
.pillar-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.pillar-card:hover .pillar-card-btn {
  transform: translateX(4px);
}
.pillar-card.eng .pillar-card-btn {
  color: var(--accent-primary);
}
.pillar-card.auto .pillar-card-btn {
  color: var(--accent-secondary);
}

.home-solar-cta-bar {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.bento-grid .bento-item {
  position: relative; overflow: hidden; border-radius: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: all 0.4s; padding: 0;
}
.bento-grid .bento-item:hover { border-color: var(--accent-primary); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.bento-grid .bento-item.span-2 { grid-column: span 2; min-height: 320px; }
.bento-grid .bento-item .bento-bg {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  display: flex; align-items: center; justify-content: center; font-size: 6rem; color: var(--text-main);
}
.bento-grid .bento-item .bento-info { position: relative; z-index: 1; padding: 2rem; background: linear-gradient(transparent, var(--bento-info-fade)); }

/* ═══ 5. SECTION NUMBER ═══ */
.section-numbered { position: relative; }
.section-numbered .section-number {
  position: absolute; top: -1rem; left: 0;
  font-family: var(--font-display); font-size: 12rem; line-height: 1;
  color: var(--text-main); opacity: 0.03; pointer-events: none; z-index: 0;
  user-select: none;
}

/* ═══ FORM ═══ */
.form-group { margin-bottom: 1.5rem; }
.form-control {
  width: 100%; padding: 1rem; background-color: var(--bg-primary);
  border: 1px solid var(--border-color); color: var(--text-main);
  font-family: var(--font-body); border-radius: 4px; transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: var(--accent-primary); }
label {
  display: block; margin-bottom: 0.5rem; font-family: var(--font-heading);
  color: var(--text-muted); text-transform: uppercase; font-size: 0.9rem;
}

/* ═══ MOBILE NAV ═══ */
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-main); background: none; border: none; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-secondary, #FFFFFF);
  z-index: 2100;
  padding: 1.5rem 1.4rem 2rem 1.4rem;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.mobile-nav .close-btn {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-main);
  background: none;
  border: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-region-header {
  background: #FFF7F2;
  border: 1px solid rgba(227, 90, 27, 0.22);
  border-radius: 12px;
  padding: 0.75rem;
  margin: 0.85rem 0 1.1rem 0;
}
[data-theme="solar-warm"] .mobile-nav-region-header {
  background: #FFF5EE;
  border-color: rgba(227, 90, 27, 0.25);
}
.mobile-nav-region-header .region-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: #E35A1B;
  margin-bottom: 0.5rem;
}
.mobile-region-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.mobile-region-pills .region-pill {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem !important;
  border-radius: 8px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  border: 1px solid #E2E8F0 !important;
  background: #FFFFFF !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.mobile-region-pills .region-pill.active {
  background: #E35A1B !important;
  border-color: #E35A1B !important;
  color: #FFFFFF !important;
  box-shadow: 0 3px 10px rgba(227, 90, 27, 0.25);
}
.mobile-region-pills .region-pill.active::after {
  content: '✓';
  font-size: 0.85rem;
  font-weight: bold;
}
.mobile-nav-links-wrap {
  display: flex;
  flex-direction: column;
}
.mobile-nav a.nav-item {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav a.nav-item:hover,
.mobile-nav a.nav-item.active {
  color: #E35A1B;
  padding-left: 0.4rem;
}
.mobile-nav a.text-solar-orange-nav {
  color: #E35A1B;
}
.mobile-nav-footer {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}
.btn-mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2050; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  h1 { font-size: 3.5rem; }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-showcase { grid-template-columns: repeat(2, 1fr); }
  .project-card.large { grid-column: span 1; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .zigzag-step { grid-template-columns: 40px 1fr; }
  .zigzag-step .step-content:last-child { display: none; }
  .zigzag-step:nth-child(even) .step-content:first-child { order: unset; }
  .scroll-nav { display: none; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid .bento-item.span-2 { grid-column: span 2; }
  .section-numbered .section-number { font-size: 8rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-showcase { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .section-padding { padding: 4rem 0; }
  .cta-banner h2 { font-size: 2rem; }
  .brands-row { gap: 1.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid .bento-item.span-2 { grid-column: span 1; }
  .marquee-track span { font-size: 1.2rem; padding: 0 1.5rem; }
  .section-numbered .section-number { font-size: 6rem; }
}

/* ═══ SOLAR CALCULATOR ═══ */
.calc-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.calc-input-group { display: flex; flex-direction: column; gap: 2rem; }
.calc-slider-wrap { position: relative; }
.calc-label { 
  display: flex; justify-content: space-between; 
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.calc-label span:last-child { color: var(--accent-solar); font-weight: bold; font-size: 1.2rem; }

input[type=range] {
  -webkit-appearance: none; width: 100%; background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%; height: 6px; cursor: pointer; background: rgba(255,255,255,0.1); border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
  height: 24px; width: 24px; border-radius: 50%; background: var(--accent-solar);
  cursor: pointer; -webkit-appearance: none; margin-top: -9px;
  box-shadow: 0 0 15px var(--accent-solar);
}

.calc-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.result-card {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-color);
  padding: 2rem; border-radius: 4px; text-align: center;
  transition: transform 0.3s;
}
.result-card:hover { transform: translateY(-5px); border-color: var(--accent-solar); }
.result-card h4 { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; }
.result-card .value { font-family: var(--font-heading); font-size: 2rem; color: var(--text-main); }
.result-card .unit { font-size: 0.9rem; color: var(--accent-solar); }

@media (max-width: 1024px) {
  .calc-container { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}

/* ═══ NEW PREMIUM FOOTER ═══ */
.main-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  color: var(--text-main);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
}
.footer-logo { display: flex; align-items: center; margin-bottom: 1.5rem; width: fit-content; height: 50px; }
.footer-logo svg { height: 100%; width: auto; display: block; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.google-reviews { display: flex; flex-direction: column; gap: 0.5rem; }
.google-reviews .stars { color: var(--accent-solar); font-size: 0.8rem; }
.google-reviews span { color: var(--text-muted); font-size: 0.85rem; font-family: var(--font-mono); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}
.footer-links a:hover { color: var(--accent-primary); transform: translateX(5px); }

.contact-info {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.8rem;
  line-height: 1.5;
}
.contact-info a { color: #F1F5F9; text-decoration: none; }
.contact-info a:hover { color: var(--accent-primary); text-decoration: underline; }
.contact-info i { color: var(--accent-primary); margin-top: 3px; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.copyright p { color: var(--text-muted); font-size: 0.9rem; }
.developer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.developer img {
  height: 22px;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(1);
}
.developer a:hover img { opacity: 1; filter: grayscale(0); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .main-footer { padding: 4rem 0 2rem; }
}

/* ═══ HERO BLACKOUT ANIMATION ═══ */
.hero {
  transition: filter 0.8s ease, opacity 0.8s ease;
  will-change: filter, opacity;
}

/* Efeito de Flicker ao 'Cair a Energia' */
.hero.shutting-down {
  animation: powerFlicker 1.2s ease-out forwards !important;
}

@keyframes powerFlicker {
  0% { filter: brightness(1) contrast(1); opacity: 1; }
  10% { filter: brightness(0.75) contrast(1.1); opacity: 0.95; }
  20% { filter: brightness(1) contrast(1); opacity: 1; }
  30% { filter: brightness(0.65) contrast(1.15); opacity: 0.9; }
  40% { filter: brightness(0.95) contrast(1.05); opacity: 0.95; }
  50% { filter: brightness(0.6) contrast(1.1); opacity: 0.85; }
  60% { filter: brightness(0.85) contrast(1.1); opacity: 0.9; }
  100% { filter: brightness(0.65) contrast(1.05); opacity: 0.75; }
}

/* Estado de Energia Desligada (após o flicker - imagem mantida visível) */
.hero.power-off {
  animation: none !important;
  filter: brightness(0.65) contrast(1.05);
  opacity: 0.75;
}

.hero.power-off .bg-blueprint::before {
  opacity: 0.25;
}

/* ═══ MOBILE RESPONSIVENESS FOR REVEAL CARDS ═══ */
@media (max-width: 768px) {
  .reveal-card {
    height: auto !important;
    display: block !important;
  }
  .reveal-card .card-top {
    padding: 2rem 1.5rem 1rem 1.5rem !important;
  }
  .reveal-card .card-bottom {
    position: static !important;
    transform: translateY(0) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    padding: 0 1.5rem 2rem 1.5rem !important;
    border-top: none !important;
  }
  .reveal-card .card-bottom-inner {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
  }
  .reveal-card:hover {
    transform: none !important;
  }
}

/* ═══ SOCIAL HUB ═══ */
.social-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.social-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.social-card .social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.social-card .social-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.social-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  transition: color 0.3s;
}

.social-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.social-card .social-action {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s;
}

/* Hover effects with brand specific gradients/colors */
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Instagram */
.social-card.instagram:hover {
  border-color: #E1306C;
}
.social-card.instagram:hover .social-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
}
.social-card.instagram .social-icon { color: #E1306C; }
.social-card.instagram .social-action { color: #E1306C; }
.social-card.instagram:hover h3 { color: #E1306C; }

/* LinkedIn */
.social-card.linkedin:hover {
  border-color: #0077B5;
}
.social-card.linkedin:hover .social-icon {
  background: #0077B5;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}
.social-card.linkedin .social-icon { color: #0077B5; }
.social-card.linkedin .social-action { color: #0077B5; }
.social-card.linkedin:hover h3 { color: #0077B5; }

/* YouTube */
.social-card.youtube:hover {
  border-color: #FF0000;
}
.social-card.youtube:hover .social-icon {
  background: #FF0000;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
.social-card.youtube .social-icon { color: #FF0000; }
.social-card.youtube .social-action { color: #FF0000; }
.social-card.youtube:hover h3 { color: #FF0000; }

/* TikTok */
.social-card.tiktok:hover {
  border-color: #00f2fe;
}
.social-card.tiktok:hover .social-icon {
  background: #000;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}
.social-card.tiktok .social-icon { color: #00f2fe; }
.social-card.tiktok .social-action { color: #00f2fe; }
.social-card.tiktok:hover h3 { color: #00f2fe; }

/* Pinterest */
.social-card.pinterest:hover {
  border-color: #BD081C;
}
.social-card.pinterest:hover .social-icon {
  background: #BD081C;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(189, 8, 28, 0.4);
}
.social-card.pinterest .social-icon { color: #BD081C; }
.social-card.pinterest .social-action { color: #BD081C; }
.social-card.pinterest:hover h3 { color: #BD081C; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .social-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .social-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ SOLAR & GENERAL GRID MOBILE RESPONSIVENESS ═══ */

/* Responsive typography for internal heroes */
.hero-internal-title {
  color: var(--text-main);
  font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
  line-height: 1.1;
  margin-top: 1.5rem;
}

.hero-internal-desc {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 800px;
  margin: 1.5rem 0;
}

/* Solar Calculator Container */
.calc-container {
  background: var(--bg-secondary);
  padding: 3rem;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* General Layout Breakpoints for Grid System */
@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .calc-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-cols-4 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid { gap: 1.5rem; }
  .section-padding { padding: 4rem 0; }
}

@media (max-width: 576px) {
  .calc-container {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .calc-results {
    grid-template-columns: 1fr !important;
  }
}

/* ═══ THEME PREVIEWS (home only via ?theme=) ═══ */
[data-theme="solar-warm"],
[data-theme="daylight-gold"],
[data-theme="sky-trust"],
[data-theme="soft-industrial"],
[data-theme="azure-sky"] {
  --nav-bg: rgba(255, 255, 255, 0.92);
  --hero-overlay-start: rgba(16, 19, 24, 0.88);
  --hero-overlay-end: rgba(16, 19, 24, 0.4);
  --reveal-overlay: rgba(255, 255, 255, 0.98);
  --bento-info-fade: rgba(16, 19, 24, 0.92);
  --shadow-color: rgba(16, 19, 24, 0.12);
  --surface-glass: rgba(16, 19, 24, 0.03);
  --cta-heading-color: #101318;
  --cta-body-color: rgba(16, 19, 24, 0.72);
  --cta-btn-bg: #101318;
  --cta-btn-color: #F5F6F8;
  --cta-on-accent: #101318;
  --btn-primary-text: #FFFFFF;
}

[data-theme="solar-warm"] {
  --bg-primary: #F5F6F8;
  --bg-secondary: #FFFFFF;
  --text-main: #101318;
  --text-muted: #5C6570;
  --border-color: #E4E7EC;
  --accent-primary: #E35A1B;
  --accent-secondary: #0F7A4A;
  --accent-solar: #FF6B2B;
  --btn-primary-hover: #C44812;
  --btn-primary-text: #101318;
  --btn-primary-shadow: rgba(227, 90, 27, 0.28);
  --accent-tint: rgba(227, 90, 27, 0.1);
  --accent-tint-border: rgba(227, 90, 27, 0.22);
  --accent-tint-soft: rgba(227, 90, 27, 0.06);
  --cta-gradient-end: #C44812;
}

/* The darker hover orange needs light text; the regular orange uses dark text. */
[data-theme="solar-warm"] .btn-primary:hover {
  color: #FFFFFF;
}

[data-theme="daylight-gold"] {
  --bg-primary: #FBF8F2;
  --bg-secondary: #FFFFFF;
  --text-main: #1A1510;
  --text-muted: #6B5F4A;
  --border-color: #E8E0D0;
  --accent-primary: #B8860B;
  --accent-secondary: #2A8C6A;
  --accent-solar: #D4621A;
  --btn-primary-hover: #9A7009;
  --btn-primary-text: #FFFFFF;
  --btn-primary-shadow: rgba(184, 134, 11, 0.32);
  --accent-tint: rgba(184, 134, 11, 0.1);
  --accent-tint-border: rgba(184, 134, 11, 0.22);
  --accent-tint-soft: rgba(184, 134, 11, 0.05);
  --cta-gradient-end: #7A5800;
  --nav-bg: rgba(251, 248, 242, 0.94);
}

[data-theme="sky-trust"] {
  --bg-primary: #F2F5F8;
  --bg-secondary: #FFFFFF;
  --text-main: #0F1720;
  --text-muted: #5B6775;
  --border-color: #DDE3EA;
  --accent-primary: #D97706;
  --accent-secondary: #0D6E4F;
  --accent-solar: #EA580C;
  --btn-primary-hover: #B45309;
  --btn-primary-shadow: rgba(217, 119, 6, 0.28);
  --accent-tint: rgba(217, 119, 6, 0.1);
  --accent-tint-border: rgba(217, 119, 6, 0.22);
  --accent-tint-soft: rgba(217, 119, 6, 0.06);
  --cta-gradient-end: #B45309;
}

[data-theme="soft-industrial"] {
  --bg-primary: #EEF0F3;
  --bg-secondary: #F8F9FA;
  --text-main: #1A1D21;
  --text-muted: #606870;
  --border-color: #D5D9DE;
  --accent-primary: #B8860B;
  --accent-secondary: #2A9B7A;
  --accent-solar: #D9531E;
  --btn-primary-hover: #9A7009;
  --btn-primary-text: #1A1D21;
  --btn-primary-shadow: rgba(184, 134, 11, 0.28);
  --accent-tint: rgba(184, 134, 11, 0.12);
  --accent-tint-border: rgba(184, 134, 11, 0.25);
  --accent-tint-soft: rgba(184, 134, 11, 0.06);
  --cta-gradient-end: #9A7009;
}

[data-theme="azure-sky"] {
  --bg-primary: #F7FBFE;
  --bg-secondary: #FFFFFF;
  --text-main: #0E2433;
  --text-muted: #5A7388;
  --border-color: #D5E8F4;
  --accent-primary: #3B9DD9;
  --accent-secondary: #1A8A6A;
  --accent-solar: #E86B2A;
  --btn-primary-hover: #2B87C4;
  --btn-primary-text: #FFFFFF;
  --btn-primary-shadow: rgba(59, 157, 217, 0.32);
  --accent-tint: rgba(59, 157, 217, 0.1);
  --accent-tint-border: rgba(59, 157, 217, 0.22);
  --accent-tint-soft: rgba(59, 157, 217, 0.05);
  --cta-gradient-end: #1E6FA0;
  --nav-bg: rgba(247, 251, 254, 0.94);
}

/* Hero keeps light text over photo (scoped vars for inline styles) */
[data-theme="solar-warm"] .hero,
[data-theme="daylight-gold"] .hero,
[data-theme="sky-trust"] .hero,
[data-theme="soft-industrial"] .hero,
[data-theme="azure-sky"] .hero {
  --text-main: #F5F6F8;
  --text-muted: #C5CAD3;
  color: #F5F6F8;
}

[data-theme="solar-warm"] .hero h1,
[data-theme="daylight-gold"] .hero h1,
[data-theme="sky-trust"] .hero h1,
[data-theme="soft-industrial"] .hero h1,
[data-theme="azure-sky"] .hero h1 {
  color: #F5F6F8;
}

[data-theme="solar-warm"] .hero .btn-ghost,
[data-theme="daylight-gold"] .hero .btn-ghost,
[data-theme="sky-trust"] .hero .btn-ghost,
[data-theme="soft-industrial"] .hero .btn-ghost,
[data-theme="azure-sky"] .hero .btn-ghost {
  color: #F5F6F8;
}

[data-theme="solar-warm"] .cta-banner .btn-dark[style],
[data-theme="daylight-gold"] .cta-banner .btn-dark[style],
[data-theme="sky-trust"] .cta-banner .btn-dark[style],
[data-theme="soft-industrial"] .cta-banner .btn-dark[style],
[data-theme="azure-sky"] .cta-banner .btn-dark[style] {
  border-color: var(--cta-on-accent) !important;
  color: var(--cta-on-accent) !important;
}

/* Soften logo pulse glow on light themes */
[data-theme="solar-warm"] .logo-symbol-energy,
[data-theme="daylight-gold"] .logo-symbol-energy,
[data-theme="sky-trust"] .logo-symbol-energy,
[data-theme="soft-industrial"] .logo-symbol-energy,
[data-theme="azure-sky"] .logo-symbol-energy {
  animation: none;
  filter: none;
}

/* Theme preview picker */
.theme-picker {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 2rem);
  padding: 0.55rem 0.7rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  box-shadow: 0 8px 28px var(--shadow-color);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}
.theme-picker-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0.4rem;
  white-space: nowrap;
}
.theme-picker a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.theme-picker a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
.theme-picker a.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--btn-primary-text);
}
.theme-picker .swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .theme-picker {
    bottom: 5.5rem;
    border-radius: 12px;
    padding: 0.6rem;
  }
  .theme-picker-label { width: 100%; text-align: center; padding-bottom: 0.2rem; }
}

/* ═══ THEME SECTION REDESIGNS (hero + navbar untouched) ═══ */

/* ═══════════════════════════════════════════
   1. SOLAR-WARM — landing solar amigável
   Faixas de cor alternadas
═══════════════════════════════════════════ */
[data-theme="solar-warm"] .home-identity-divider { display: none !important; }

/* Marquee: faixa solar quente com pílulas em vidro translúcido */
[data-theme="solar-warm"] .marquee-wrap {
  background: linear-gradient(90deg, #E35A1B, #FF6B2B 50%, #E35A1B);
  border: none;
  margin: 0;
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(227, 90, 27, 0.2);
}
[data-theme="solar-warm"] .marquee-pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
[data-theme="solar-warm"] .marquee-pill i {
  color: #FFE600;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
[data-theme="solar-warm"] .marquee-pill:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Ritmo geral: mais ar entre seções */
[data-theme="solar-warm"] .home-sec {
  padding: 6.5rem 0;
  position: relative;
}

/* Sem ondas / sem blueprint — só faixas de cor */
[data-theme="solar-warm"] .home-sec::before,
[data-theme="solar-warm"] .bg-blueprint::before,
[data-theme="solar-warm"] .main-footer::before {
  display: none !important;
  content: none !important;
}

/* Separators: pills solar */
[data-theme="solar-warm"] .home-sec .section-separator {
  justify-content: flex-start;
  margin-bottom: 1.35rem;
  height: auto;
}
[data-theme="solar-warm"] .home-sec .section-separator span {
  background: #FFF0E6;
  color: var(--accent-primary);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  border: 1px solid rgba(227,90,27,0.18);
  box-shadow: 0 4px 14px rgba(227,90,27,0.08);
}
[data-theme="solar-warm"] .home-sec .section-separator .klyfe-symbol { display: none; }
[data-theme="solar-warm"] .home-sec h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  letter-spacing: 0.5px;
}

/* ── SOLUÇÕES: branco limpo ── */
[data-theme="solar-warm"] .home-sec-solucoes {
  background: #FFFFFF !important;
  padding-top: 5.5rem;
}
[data-theme="solar-warm"] .home-sec-solucoes h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 14ch;
  line-height: 1.05;
  margin-bottom: 1rem;
}
[data-theme="solar-warm"] .home-sec-solucoes .section-intro {
  max-width: 36rem !important;
  font-size: 1.05rem;
  margin-bottom: 2.75rem !important;
}
/* ── SOLUÇÕES: SOLAR SPOTLIGHT NO TEMA SOLAR-WARM ── */
[data-theme="solar-warm"] .trust-counter-bar {
  background: #FFFFFF;
  border-top: 1px solid rgba(227, 90, 27, 0.12);
  border-bottom: 1px solid rgba(227, 90, 27, 0.12);
  box-shadow: 0 4px 20px rgba(227, 90, 27, 0.04);
}
[data-theme="solar-warm"] .trust-counter-item {
  border-right: 1px solid rgba(227, 90, 27, 0.12);
}
[data-theme="solar-warm"] .trust-counter-item:last-child {
  border-right: none;
}
[data-theme="solar-warm"] .trust-counter-number {
  color: #E35A1B;
}

[data-theme="solar-warm"] .home-sec-solucoes {
  background: #FFFFFF !important;
  padding-top: 5.5rem;
}
[data-theme="solar-warm"] .home-sec-solucoes h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 18ch;
  line-height: 1.05;
  margin-bottom: 1rem;
}
[data-theme="solar-warm"] .home-sec-solucoes .section-intro {
  max-width: 44rem !important;
  font-size: 1.05rem;
  margin-bottom: 3rem !important;
}
[data-theme="solar-warm"] .home-solar-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 100%;
}
[data-theme="solar-warm"] .segment-card-flagship {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-left: 4px solid #E35A1B;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(227, 90, 27, 0.08);
}
[data-theme="solar-warm"] .segment-card-flagship:hover {
  transform: translateY(-6px);
  border-color: #E35A1B;
  box-shadow: 0 22px 50px rgba(227, 90, 27, 0.18);
}
[data-theme="solar-warm"] .segment-card-action {
  color: #E35A1B;
}
[data-theme="solar-warm"] .home-solar-cta-bar {
  background: linear-gradient(135deg, #FFF7F2 0%, #FFEFE6 100%);
  border: 1px solid rgba(227, 90, 27, 0.16);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(227, 90, 27, 0.07);
}

/* ── ENGENHARIA & AUTOMAÇÃO NO TEMA SOLAR-WARM ── */
[data-theme="solar-warm"] .home-sec-eng-auto {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(227, 90, 27, 0.1);
  padding: 6.5rem 0;
}
[data-theme="solar-warm"] .home-sec-eng-auto h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  max-width: 18ch;
  line-height: 1.08;
}
[data-theme="solar-warm"] .pillar-card {
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(227, 90, 27, 0.07);
}
[data-theme="solar-warm"] .pillar-card.eng {
  border-top: 4px solid #E35A1B;
}
[data-theme="solar-warm"] .pillar-card.auto {
  border-top: 4px solid #0D9488;
}
[data-theme="solar-warm"] .pillar-card.eng .pillar-card-icon {
  background: #FFF4EC;
  color: #E35A1B;
}
[data-theme="solar-warm"] .pillar-card.auto .pillar-card-icon {
  background: #F0FDF4;
  color: #0D9488;
}
[data-theme="solar-warm"] .pillar-card.eng .pillar-badge {
  background: #FFF4EC;
  color: #E35A1B;
}
[data-theme="solar-warm"] .pillar-card.auto .pillar-badge {
  background: #F0FDF4;
  color: #0D9488;
}
[data-theme="solar-warm"] .pillar-card.eng .pillar-services-list li a:hover {
  color: #E35A1B;
}
[data-theme="solar-warm"] .pillar-card.auto .pillar-services-list li a:hover {
  color: #0D9488;
}
[data-theme="solar-warm"] .pillar-card.eng .pillar-card-btn {
  color: #E35A1B;
  border-top-color: rgba(227, 90, 27, 0.12);
}
[data-theme="solar-warm"] .pillar-card.auto .pillar-card-btn {
  color: #0D9488;
  border-top-color: rgba(13, 148, 136, 0.12);
}
[data-theme="solar-warm"] .pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(227, 90, 27, 0.14);
}

/* ── ELÉTRICA: faixa pêssego ── */
[data-theme="solar-warm"] .home-sec-eletrica {
  background: #FFF4EC !important;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(227,90,27,0.1);
  border-radius: 16px;
  background: #fff;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 6px 20px rgba(16,19,24,0.04);
  text-align: left !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card:hover {
  box-shadow: 0 14px 32px rgba(227,90,27,0.12);
  transform: translateY(-3px);
  border-color: rgba(227,90,27,0.3);
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  border-radius: 12px;
  background: rgba(227,90,27,0.1) !important;
  color: #E35A1B !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card-content {
  flex: 1;
  min-width: 0;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card-content h4 {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
[data-theme="solar-warm"] .home-sec-eletrica .feature-card-content p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}
[data-theme="solar-warm"] .home-sec-eletrica .btn-outline {
  border-radius: 999px;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  padding: 0.9rem 1.8rem;
  background: #fff;
}

/* ── EMPRESA: branco ── */
[data-theme="solar-warm"] .home-sec-empresa {
  background: #FFFFFF !important;
}
[data-theme="solar-warm"] .home-empresa-grid { gap: 3rem !important; }
[data-theme="solar-warm"] .home-empresa-visual {
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  max-width: 340px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(227,90,27,0.18) !important;
  border: 4px solid #ffffff !important;
}
[data-theme="solar-warm"] .home-empresa-visual > div { opacity: 0.35 !important; }
[data-theme="solar-warm"] .home-sec-empresa .btn-outline {
  border-radius: 999px;
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

/* ── DIFERENCIAIS: faixa coral suave ── */
[data-theme="solar-warm"] .home-sec-diferenciais {
  background: #FFE8D6 !important;
}
[data-theme="solar-warm"] .home-sec-diferenciais > .container {
  position: relative;
  z-index: 1;
}
[data-theme="solar-warm"] .home-sec-diferenciais h2 {
  text-align: left !important;
  font-size: 2.8rem;
}
[data-theme="solar-warm"] .home-sec-diferenciais .home-sec-lead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
[data-theme="solar-warm"] .home-diferenciais-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
}
[data-theme="solar-warm"] .home-diferenciais-grid .bracket-box {
  border: none;
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 24px rgba(227,90,27,0.08);
}
[data-theme="solar-warm"] .home-diferenciais-grid .bracket-box::before,
[data-theme="solar-warm"] .home-diferenciais-grid .bracket-box::after { display: none; }
[data-theme="solar-warm"] .home-diferenciais-grid .bracket-box:hover {
  box-shadow: 0 14px 32px rgba(227,90,27,0.14);
  transform: translateY(-2px);
}

/* ── DEPOIMENTOS: branco ── */
[data-theme="solar-warm"] .home-sec-depoimentos {
  background: #FFFFFF !important;
}
[data-theme="solar-warm"] .home-depoimentos-grid {
  grid-template-columns: 1fr !important;
  max-width: 720px;
  margin: 0 auto;
  gap: 1.25rem;
}
[data-theme="solar-warm"] .home-depoimentos-grid .testimonial-card {
  border: none;
  border-radius: 20px;
  padding: 2.25rem;
  background: #FFF7F2;
  box-shadow: 0 10px 30px rgba(227,90,27,0.08);
}
[data-theme="solar-warm"] .home-depoimentos-grid .testimonial-card .quote {
  color: var(--accent-solar);
  font-size: 3rem;
}
[data-theme="solar-warm"] .home-depoimentos-grid .testimonial-card p {
  font-size: 1.15rem;
  font-style: normal;
  color: var(--text-main);
}

/* ── PROJETOS: faixa pêssego escura suave ── */
[data-theme="solar-warm"] .home-sec-projetos {
  background: #FFF4EC !important;
}
[data-theme="solar-warm"] .home-sec-projetos > .container {
  position: relative;
  z-index: 1;
}
[data-theme="solar-warm"] .home-sec-projetos [style*="min-height: 400px"] {
  border-radius: 24px !important;
  overflow: hidden;
  border: none !important;
  box-shadow: 0 22px 55px rgba(16,19,24,0.18);
}
[data-theme="solar-warm"] .home-sec-projetos .btn-outline {
  border-radius: 999px;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: #fff;
}

/* ── BLOG: branco ── */
[data-theme="solar-warm"] .home-sec-blog {
  background: #FFFFFF !important;
}
[data-theme="solar-warm"] .home-blog-grid {
  grid-template-columns: 1fr !important;
  max-width: 720px;
  gap: 1.25rem;
}
[data-theme="solar-warm"] .home-blog-grid .bracket-box {
  border: none;
  border-radius: 18px;
  padding: 2rem 2.25rem;
  background: #FFF7F2;
  box-shadow: 0 10px 28px rgba(227,90,27,0.07);
}
[data-theme="solar-warm"] .home-blog-grid .bracket-box::before,
[data-theme="solar-warm"] .home-blog-grid .bracket-box::after { display: none; }
[data-theme="solar-warm"] .home-blog-grid .bracket-box:hover {
  box-shadow: 0 16px 36px rgba(227,90,27,0.14);
  transform: translateY(-3px);
}

/* ── SOCIAL: faixa coral ── */
[data-theme="solar-warm"] .home-sec-social {
  background: #FFE8D6 !important;
  border-top: none !important;
}
[data-theme="solar-warm"] .home-sec-social .social-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
[data-theme="solar-warm"] .home-sec-social .social-card {
  border-radius: 18px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 28px rgba(227,90,27,0.08);
}
[data-theme="solar-warm"] .home-sec-social .social-card:hover {
  box-shadow: 0 16px 36px rgba(227,90,27,0.16);
  transform: translateY(-3px);
}

/* ── CTA: card flutuante sobre fundo branco ── */
[data-theme="solar-warm"] .home-sec-cta {
  background: #FFFFFF !important;
  padding: 3rem 0 5rem;
}
[data-theme="solar-warm"] .home-sec-cta .home-cta-inner {
  background: linear-gradient(125deg, #E35A1B, #FF6B2B 50%, #C44812);
  border-radius: 28px;
  padding: 3.75rem 3rem;
  box-shadow: 0 28px 70px rgba(227,90,27,0.32);
  position: relative;
  z-index: 1;
}
[data-theme="solar-warm"] .home-sec-cta .btn-dark {
  border-radius: 999px;
  padding: 1.05rem 2rem;
}

/* ── FAQ (MODERN 2-COLUMN REDESIGN) ── */
.home-sec-faq,
[data-theme="solar-warm"] .home-sec-faq {
  background: #FFF7F2 !important;
  position: relative;
  overflow: hidden;
}
.home-faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(227, 90, 27, 0.32);
  border-radius: 999px;
  padding: 0.4rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  color: #E35A1B;
  margin-bottom: 1.25rem;
  box-shadow: 0 3px 10px rgba(227, 90, 27, 0.08);
}
.home-faq-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #0E1217;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
  line-height: 1.1;
  text-align: center;
}
.home-faq-subtitle {
  max-width: 620px;
  font-size: 0.98rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

/* Coluna Esquerda: Accordion Card */
.home-faq-accordion-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.home-faq-accordion-card .faq-item {
  border-bottom: 1px solid #F1F5F9;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: #FFFFFF;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}
.home-faq-accordion-card .faq-item:last-child {
  border-bottom: none;
}
.home-faq-accordion-card .faq-item.active {
  background: #FFFDFB;
  border-left-color: #E35A1B;
}
.home-faq-accordion-card .faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0E1217;
  transition: all 0.25s ease;
}
.home-faq-accordion-card .faq-question:hover {
  background: rgba(227, 90, 27, 0.02);
}
.home-faq-accordion-card .faq-item.active .faq-question {
  background: transparent;
  color: #0E1217;
}
.home-faq-accordion-card .faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.home-faq-accordion-card .faq-item.active .faq-toggle-icon {
  background: #FFF5EE;
  border-color: rgba(227, 90, 27, 0.35);
  color: #E35A1B;
  transform: rotate(45deg);
}
.home-faq-accordion-card .faq-question-text {
  flex: 1;
  line-height: 1.35;
}
.home-faq-accordion-card .faq-chevron-icon {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: transform 0.3s ease, color 0.25s ease;
}
.home-faq-accordion-card .faq-item.active .faq-chevron-icon {
  color: #E35A1B;
  transform: rotate(180deg);
}
.home-faq-accordion-card .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: none;
}
.home-faq-accordion-card .faq-item.active .faq-answer {
  max-height: 20rem;
}
.home-faq-accordion-card .faq-answer-inner {
  padding: 0 1.6rem 1.5rem calc(1.6rem + 32px + 1.1rem);
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}
.home-faq-accordion-card .faq-answer-inner p {
  margin: 0;
}

/* Coluna Direita: Sidebar Card */
.home-faq-sidebar-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 2.2rem 2rem;
  position: sticky;
  top: 100px;
}
.faq-sidebar-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-sidebar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFF5EE;
  border: 1px solid rgba(227, 90, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E35A1B;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq-sidebar-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0E1217;
  margin: 0;
  line-height: 1.2;
}
.faq-sidebar-divider {
  width: 38px;
  height: 3px;
  background: #E35A1B;
  border-radius: 2px;
  margin: 1.1rem 0;
}
.faq-sidebar-desc {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.6rem;
}
.faq-sidebar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.faq-sidebar-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.sidebar-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF5EE;
  color: #E35A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-sidebar-features li strong {
  display: block;
  color: #0E1217;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
}
.faq-sidebar-features li span {
  display: block;
  color: #64748B;
  font-size: 0.78rem;
  line-height: 1.35;
}
.faq-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.btn-faq-budget {
  background: #E35A1B;
  color: #FFFFFF !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(227, 90, 27, 0.35);
  border: 1px solid #E35A1B;
}
.btn-faq-budget:hover {
  background: #CC4E15;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 90, 27, 0.45);
}
.btn-faq-whatsapp {
  background: #FFFFFF;
  color: #0E1217 !important;
  border: 1px solid rgba(227, 90, 27, 0.35);
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}
.btn-faq-whatsapp:hover {
  border-color: #25D366;
  color: #25D366 !important;
  background: rgba(37, 211, 102, 0.04);
  transform: translateY(-2px);
}
.faq-sidebar-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #94A3B8;
  font-size: 0.78rem;
}

@media (max-width: 1024px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-faq-sidebar-card {
    position: static;
  }
}
@media (max-width: 640px) {
  .home-faq-accordion-card .faq-question {
    padding: 1.1rem 1.25rem;
    gap: 0.75rem;
    font-size: 1rem;
  }
  .home-faq-accordion-card .faq-answer-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .home-faq-sidebar-card {
    padding: 1.75rem 1.4rem;
  }
}

/* FOOTER */
[data-theme="solar-warm"] .main-footer {
  border-top: none;
  background: #1A1210;
  position: relative;
}
[data-theme="solar-warm"] .main-footer .container {
  position: relative;
  z-index: 1;
}
[data-theme="solar-warm"] .main-footer,
[data-theme="solar-warm"] .main-footer a,
[data-theme="solar-warm"] .footer-col h4,
[data-theme="solar-warm"] .footer-tagline,
[data-theme="solar-warm"] .footer-links a,
[data-theme="solar-warm"] .footer-bottom {
  color: #D9C8BC;
}
[data-theme="solar-warm"] .footer-col h4,
[data-theme="solar-warm"] .footer-links a:hover {
  color: #FF8A4C;
}
[data-theme="solar-warm"] .main-footer .logo-cls-white { fill: #F5EDE6; }
[data-theme="solar-warm"] .main-footer .logo-cls-yellow,
[data-theme="solar-warm"] .main-footer .klyfe-symbol path,
[data-theme="solar-warm"] .main-footer .klyfe-symbol rect { fill: #E35A1B; }
[data-theme="solar-warm"] .footer-col h4::after { background: #E35A1B; }
[data-theme="solar-warm"] .copyright p,
[data-theme="solar-warm"] .developer { color: #D9C8BC; }

/* Shared responsive rules for the Home and Solar showcase components. */
@media (max-width: 990px) {
  .home-solar-profiles-grid,
  [data-theme="solar-warm"] .home-solar-profiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  .pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .trust-counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 0 !important;
  }
  .trust-counter-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  [data-theme="solar-warm"] .home-sec { padding: 5rem 0; }
  [data-theme="solar-warm"] .home-sec-solucoes .reveal-card { grid-template-columns: 1fr; }
  [data-theme="solar-warm"] .home-sec-eletrica .feature-grid,
  [data-theme="solar-warm"] .home-diferenciais-grid,
  [data-theme="solar-warm"] .home-sec-social .social-hub-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .home-solar-profiles-grid,
  [data-theme="solar-warm"] .home-solar-profiles-grid {
    grid-template-columns: 1fr !important;
  }
  .pillar-services-list {
    grid-template-columns: 1fr !important;
  }
  .trust-counter-grid {
    grid-template-columns: 1fr !important;
  }
  .trust-counter-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
  }
  .trust-counter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .home-solar-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .home-solar-cta-bar .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ NOVO DESIGN DA SEÇÃO DE AVALIAÇÕES (GOOGLE REVIEWS) ═══ */
.home-sec-depoimentos {
  background: #FFFDF9 !important;
  padding: 6rem 0;
  position: relative;
}

.home-reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.review-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.07);
  border: 1px solid rgba(234, 88, 12, 0.22);
  color: #EA580C;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.review-main-title {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #0E1217;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.review-sub-title {
  color: #64748B;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Floating Google Summary Card */
.google-reviews-summary-card {
  max-width: 860px;
  margin: 0 auto 3.5rem auto;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  padding: 1.6rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
}

.summary-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary-col.center-col {
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0 1.5rem;
}

.summary-col.right-col {
  justify-content: flex-end;
}

.summary-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 88, 12, 0.35);
  background: rgba(234, 88, 12, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.summary-text-group {
  display: flex;
  flex-direction: column;
}

.summary-label-muted {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  line-height: 1.2;
}

.summary-score-large {
  font-family: var(--font-heading, 'Barlow Condensed', sans-serif);
  font-size: 2.3rem;
  font-weight: 900;
  color: #0E1217;
  line-height: 1;
  margin-top: 0.15rem;
}

.summary-score-large small {
  font-size: 1.3rem;
  font-weight: 700;
  color: #94A3B8;
}

.summary-google-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.summary-google-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0E1217;
}

.summary-stars-gold {
  color: #EA580C;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-top: 0.25rem;
}

/* Reviews Cards Grid */
.google-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.google-review-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(234, 88, 12, 0.35);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.review-quote-svg {
  color: #EA580C;
  font-size: 1.6rem;
  opacity: 0.95;
}

.review-stars-gold {
  color: #EA580C;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review-card-body {
  flex: 1;
  margin-bottom: 1.75rem;
}

.review-card-body p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 88, 12, 0.35);
  background: rgba(234, 88, 12, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0E1217;
  line-height: 1.2;
}

.review-author-info span {
  display: block;
  font-size: 0.82rem;
  color: #64748B;
  margin-top: 0.2rem;
}

/* Bottom CTA to Google Profile */
.google-reviews-footer-link {
  text-align: center;
}

.btn-consult-google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: #EA580C;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.btn-consult-google:hover {
  transform: translateX(4px);
  color: #C2410C;
}

@media (max-width: 900px) {
  .google-reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem;
  }
  .summary-col.center-col {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 1rem 0;
    justify-content: flex-start;
  }
  .summary-col.right-col {
    justify-content: flex-start;
  }
  .google-testimonials-grid {
    grid-template-columns: 1fr;
  }
}
