/* ==========================================================================
   1. VARIÁVEIS GLOBAIS DE DESIGN & PALETA DE CORES
   ========================================================================== */
:root {
  /* Tipografia */
  --font-family: 'Parkinsans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-primary: var(--font-family);
  --font-main: var(--font-family);
  --font-title: var(--font-family);
  --font-body: var(--font-family);
  --font-recycle: var(--font-family);

  /* Identidade & Cores Principais */
  --brand-blue: #0466BF;
  --brand-blue-hover: #03529b;
  --brand-blue-glow: rgba(4, 102, 191, 0.35);
  --brand-cyan: #38bdf8;
  --accent-blue: #0466BF;

  /* Botões & Acentos */
  --btn-bg: #05c148;
  --btn-hover-bg: #049b39;
  --neon-border: #00ff88;
  --neon-glow: rgba(0, 255, 136, 0.6);
  --btn-whats-bg: #05c148;
  --btn-whats-neon: rgba(5, 193, 72, 0.75);

  --accent-yellow: #FCB912;
  --accent-orange: #F59E0B;
  --btn-contact-bg: #FCB912;
  --btn-contact-text: #000000;

  /* Backgrounds & Temas */
  --bg-dark: #05070a;
  --bg-dark-secondary: #0b0f19;
  --bg-header: #FFFFFF;
  --text-color: #000000;
  --text-white: #FFFFFF;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  /* Top Bar */
  --topbar-bg: #000000;
  --topbar-text: #FFFFFF;
  --topbar-icon: #FCB912;
  --topbar-hover: #FCB912;
  --hamburger-color: #0466BF;

  /* Efeitos e Bordas */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET GLOBAL & ESTRUTURA BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: #FFFFFF;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   3. TOP BAR (FAIXA SUPERIOR PRETA)
   ========================================================================== */
.site-top-bar {
  background-color: var(--topbar-bg);
  color: var(--topbar-text);
  width: 100%;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1002;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.top-bar-item, 
.top-bar-item:visited, 
.top-bar-item:link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--topbar-text) !important;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.top-bar-item:hover {
  color: var(--topbar-hover) !important;
}

.top-bar-icon {
  width: 16px;
  height: 16px;
  fill: var(--topbar-icon);
  flex-shrink: 0;
  transition: fill 0.25s ease;
}

.top-bar-item:hover .top-bar-icon {
  fill: var(--topbar-hover);
}

.top-bar-mobile {
  display: none;
  width: 100%;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.mobile-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-slide-1 { animation: slideTop1 6s infinite ease-in-out; }
.mobile-slide-2 { animation: slideTop2 6s infinite ease-in-out; }

@keyframes slideTop1 {
  0%, 42% { opacity: 1; transform: translateY(0); }
  48%, 92% { opacity: 0; transform: translateY(-100%); }
  98%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideTop2 {
  0%, 42% { opacity: 0; transform: translateY(100%); }
  48%, 92% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(100%); }
}

@media (max-width: 768px) {
  .top-bar-desktop { display: none; }
  .top-bar-mobile { display: flex; }
}

/* ==========================================================================
   4. SITE HEADER & NAVEGAÇÃO
   ========================================================================== */
.site-header {
  background-color: #FFFFFF !important;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--hamburger-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--hamburger-color);
}

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

.has-dropdown { position: relative; }
.chevron-icon { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s ease; }
.has-dropdown:hover .chevron-icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  min-width: 210px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #f1f5f9;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-link {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover {
  background-color: #f8fafc;
  color: var(--hamburger-color);
}

.btn-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--btn-bg);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 50px;
  border: 2px solid var(--neon-border);
  box-shadow: 0 0 12px var(--neon-glow), inset 0 0 4px var(--neon-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whats:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px var(--neon-border), 0 0 30px var(--neon-glow), inset 0 0 6px var(--neon-border);
  background-color: #094039;
}

.btn-whats svg { width: 18px; height: 18px; fill: #FFFFFF; flex-shrink: 0; }

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  z-index: 1001;
  position: relative;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3.5px;
  background-color: var(--hamburger-color);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.hamburger-btn.is-active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.nav-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #e2e8f0;
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav-mobile-dropdown.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-sub-menu {
  list-style: none;
  padding-left: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  border-left: 2px solid var(--hamburger-color);
}

.mobile-sub-menu.is-active { display: flex; }
.mobile-sub-link { text-decoration: none; color: #475569; font-weight: 700; font-size: 0.95rem; display: block; padding: 6px 0; }
.mobile-cta-wrapper { margin-top: 8px; }
.mobile-cta-wrapper .btn-whats { width: 100%; text-align: center; }

@media (max-width: 1080px) {
  .header-logo-img { height: 56px; max-width: 200px; }
  .nav-desktop-menu, .nav-desktop-cta { display: none !important; }
  .hamburger-btn { display: flex !important; }
}

/* ==========================================================================
   5. HERO CARROSSEL
   ========================================================================== */
.hero-carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  background-color: #000000;
}

.carousel-track-container {
  width: 100%;
  height: 82vh;
  min-height: 580px;
  max-height: 850px;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.60) 50%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 2;
}

.slide-content-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  padding: 0 70px;
  margin: 0 auto;
}

.slide-content-box {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeInUp 0.8s ease forwards;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tagline-badge svg { width: 18px; height: 18px; fill: #fcb912; flex-shrink: 0; }

.slide-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.slide-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-whats-hero, .btn-contact-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-whats-hero {
  background-color: var(--btn-whats-bg);
  color: #FFFFFF;
  border: 2px solid #52ff88;
  box-shadow: 0 0 15px var(--btn-whats-neon);
  animation: pulseNeon 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.btn-whats-hero svg { width: 20px; height: 20px; fill: #FFFFFF; }
.btn-whats-hero:hover { transform: translateY(-3px) scale(1.03); background-color: #04a03b; }

.btn-contact-hero {
  background-color: var(--btn-contact-bg);
  color: var(--btn-contact-text);
  border: 2px solid #fde047;
  box-shadow: 0 8px 20px rgba(252, 185, 18, 0.35);
}

.btn-contact-hero:hover { transform: translateY(-3px) scale(1.03); background-color: #e5a408; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}

.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }
.carousel-arrow svg { width: 22px; height: 22px; fill: #0f172a; }
.carousel-arrow:hover { background-color: #FFFFFF; transform: translateY(-50%) scale(1.1); }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 34px;
  border-radius: 20px;
  background: #fcb912;
  border-color: #FFFFFF;
}

@keyframes pulseNeon {
  0%, 100% { box-shadow: 0 0 12px var(--btn-whats-neon); }
  50% { box-shadow: 0 0 28px #52ff88, 0 0 40px var(--btn-whats-neon); }
}

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

@media (max-width: 900px) {
  .hero-carousel-wrapper { margin-left: 0; margin-right: 0; width: 100%; }
  .carousel-track-container { height: 88vh; min-height: 540px; }
  /* padding lateral generoso para o conteúdo não encostar nas setas */
  .slide-content-container { padding: 0 68px; text-align: center; }
  .slide-content-box { align-items: center; text-align: center; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .cta-button-group { flex-direction: column; width: 100%; align-items: center; }
  .btn-whats-hero, .btn-contact-hero { width: 100%; max-width: 320px; padding: 13px 18px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  /* respiro extra em telas bem pequenas — conteúdo mais afastado das setas */
  .slide-content-container { padding: 0 60px; }
}

/* ==========================================================================
   6. SEÇÃO DIFERENCIAIS
   ========================================================================== */
.features-section {
  position: relative;
  width: 100%;
  padding: 60px 20px 70px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #0f172a;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

.features-container {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.feature-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 35px -6px rgba(0, 0, 0, 0.07);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 28px 55px -10px rgba(0, 0, 0, 0.12);
}

.bubble-icon-container {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bubble-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.25) 0%, rgba(4, 102, 191, 0.12) 70%, rgba(4, 102, 191, 0.05) 100%);
  border: 1.5px solid rgba(4, 102, 191, 0.28);
  box-shadow: 0 10px 25px rgba(4, 102, 191, 0.2);
  backdrop-filter: blur(8px);
  animation: floatBubble 4s ease-in-out infinite alternate;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-6px) scale(1.03); }
}

.bubble-icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
}

.bubble-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .features-container { grid-template-columns: 1fr; max-width: 420px; gap: 24px; }
}

/* ==========================================================================
   7. SEÇÃO SOBRE / PLANO DE MANUTENÇÃO
   ========================================================================== */
.about-section {
  background-color: #FFFFFF;
  width: 100%;
  padding: 80px 0;
  color: #000000;
}

.about-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-badge svg { width: 24px; height: 24px; fill: var(--brand-blue); flex-shrink: 0; }

.about-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #475569;
  font-weight: 400;
}

.btn-maintenance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #05c148;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
  border: 2px solid #00ff88;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.35);
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap !important;
}

.btn-maintenance:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #fcb912;
  color: #000000 !important;
  border-color: #fde047;
  box-shadow: 0 15px 35px rgba(252, 185, 18, 0.45);
}

.btn-maintenance svg { width: 18px; height: 18px; fill: #ffffff; transition: transform 0.25s ease; flex-shrink: 0; }
.btn-maintenance:hover svg { transform: translateX(4px); fill: #000000; }

.about-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .about-section { padding: 50px 0; }
  .about-container { grid-template-columns: 1fr; gap: 36px; padding: 0 16px; }
  .about-content { align-items: flex-start; text-align: left; }
}

@media (max-width: 768px) {
  .about-content {
    align-items: center;
    text-align: center;
  }
  .btn-maintenance {
    /* escala gradativa: maior em 768px, menor em 320px */
    font-size: clamp(0.8rem, 3.8vw, 0.95rem) !important;
    padding: clamp(10px, 2.5vw, 15px) clamp(20px, 5vw, 30px) !important;
    gap: 8px !important;
    margin: 12px auto 0 auto !important;
    width: auto !important;
    white-space: nowrap !important;
  }
  .btn-maintenance svg {
    width: clamp(14px, 3.5vw, 18px) !important;
    height: clamp(14px, 3.5vw, 18px) !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================================
   8. SEÇÃO SUSTENTABILIDADE & FLIP CARDS
   ========================================================================== */
.sustainability-section {
  background-color: var(--brand-blue);
  width: 100%;
  padding: 80px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustainability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1513002749550-c59d786b8e6c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

.sustainability-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sustainability-header {
  text-align: center;
  max-width: 860px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sustainability-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.cards-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  aspect-ratio: 1 / 1;
  min-height: 390px;
  width: 100%;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front, .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 28px;
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px -6px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.card-icon-wrapper {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.25) 0%, rgba(4, 102, 191, 0.12) 70%);
  border: 1.5px solid rgba(4, 102, 191, 0.28);
  flex-shrink: 0;
}

.card-icon-wrapper svg { width: 36px; height: 36px; fill: var(--brand-blue); }

.card-front-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-front-subtitle { font-size: 0.95rem; font-weight: 600; color: #475569; line-height: 1.45; }
.flip-hint { margin-top: 12px; font-size: 0.78rem; font-weight: 800; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 1px; }

.flip-card-back {
  background-color: #1e1e1e;
  color: #FFFFFF;
  transform: rotateY(180deg);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  justify-content: space-between;
}

.card-back-title { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.card-back-subtitle { font-size: 0.95rem; font-weight: 400; line-height: 1.55; color: #e2e8f0; margin: auto 0; }

.btn-whats-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #05c148;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #00ff88;
  white-space: nowrap !important;
}

.btn-whats-card:hover { background-color: #094039; }
.btn-whats-card svg { width: 16px; height: 16px; fill: #FFFFFF; flex-shrink: 0; }

@media (max-width: 992px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 680px) {
  .sustainability-title { font-size: 1.3rem !important; }
  .sustainability-section { padding: 50px 0; }
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .flip-card { min-height: 350px; }
}

/* ==========================================================================
   9. SEÇÃO SERVIÇOS 3D CARDS
   ========================================================================== */
.services-section {
  position: relative;
  width: 100%;
  padding: 90px 20px 100px;
  background: radial-gradient(circle at 50% 30%, #0d1527 0%, #05070a 70%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-blue-glow) 0%, rgba(4, 102, 191, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 65px;
  position: relative;
  z-index: 2;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(4, 102, 191, 0.15);
  border: 1px solid rgba(4, 102, 191, 0.35);
  border-radius: 50px;
  color: var(--brand-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.services-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-title span {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-top: 14px; font-weight: 400; }

.cards-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  z-index: 2;
}

.cards-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.card-3d {
  position: absolute;
  width: 320px;
  height: 430px;
  background-color: #f8f9fa;
  border-radius: 28px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  cursor: pointer;
  user-select: none;
}

.card-3d.active {
  transform: translateX(0) translateZ(160px) rotateY(0deg) scale(1.08);
  z-index: 10;
  opacity: 1;
  background-color: #ffffff;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px var(--brand-blue-glow), 0 0 0 2px var(--brand-blue) inset;
}

.card-3d.prev { transform: translateX(-260px) translateZ(0) rotateY(22deg) scale(0.9); z-index: 5; opacity: 0.85; }
.card-3d.next { transform: translateX(260px) translateZ(0) rotateY(-22deg) scale(0.9); z-index: 5; opacity: 0.85; }
.card-3d.far-prev { transform: translateX(-460px) translateZ(-140px) rotateY(38deg) scale(0.78); z-index: 2; opacity: 0.55; }
.card-3d.far-next { transform: translateX(460px) translateZ(-140px) rotateY(-38deg) scale(0.78); z-index: 2; opacity: 0.55; }
.card-3d.hidden { transform: translateX(0) translateZ(-300px) scale(0.5); opacity: 0; pointer-events: none; }

.card-header-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }

.card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-box svg { width: 32px; height: 32px; stroke-width: 2; }
.card-tag { font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 12px; text-transform: uppercase; }

/* Cores por serviço */
.card-3d[data-service="redes"] .card-icon-box { background: rgba(5, 193, 72, 0.12); color: #05C148; }
.card-3d[data-service="redes"].active .card-icon-box { background: #05C148; color: #ffffff; }
.card-3d[data-service="redes"] .card-tag { background: rgba(5, 193, 72, 0.1); color: #05C148; }

.card-3d[data-service="dados"] .card-icon-box { background: rgba(139, 69, 19, 0.12); color: #8B4513; }
.card-3d[data-service="dados"].active .card-icon-box { background: #8B4513; color: #ffffff; }
.card-3d[data-service="dados"] .card-tag { background: rgba(139, 69, 19, 0.1); color: #8B4513; }

.card-3d[data-service="impressoras"] .card-icon-box { background: rgba(4, 102, 191, 0.12); color: #0466BF; }
.card-3d[data-service="impressoras"].active .card-icon-box { background: #0466BF; color: #ffffff; }
.card-3d[data-service="impressoras"] .card-tag { background: rgba(4, 102, 191, 0.1); color: #0466BF; }

.card-3d[data-service="hardware"] .card-icon-box { background: rgba(192, 38, 211, 0.12); color: #C026D3; }
.card-3d[data-service="hardware"].active .card-icon-box { background: #C026D3; color: #ffffff; }
.card-3d[data-service="hardware"] .card-tag { background: rgba(192, 38, 211, 0.1); color: #C026D3; }

.card-3d[data-service="contratos"] .card-icon-box { background: rgba(252, 185, 18, 0.15); color: #D97706; }
.card-3d[data-service="contratos"].active .card-icon-box { background: #FCB912; color: #000000; }
.card-3d[data-service="contratos"] .card-tag { background: rgba(252, 185, 18, 0.12); color: #D97706; }

.card-body { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.card-title { font-size: 1.25rem; font-weight: 800; color: #0f172a; line-height: 1.35; margin-bottom: 18px !important; text-transform: uppercase; }
.card-description { font-size: 0.92rem; color: #475569; line-height: 1.6; }
.card-footer { margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.06); }

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #05c148;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  white-space: nowrap !important;
}

.card-btn:hover { background-color: #094039; }
.card-btn svg { width: 18px; height: 18px; stroke: #FFFFFF; flex-shrink: 0; }

.controls-wrapper { display: flex; align-items: center; gap: 20px; margin-top: 50px; z-index: 5; }

.nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-btn:hover { background: var(--brand-blue); border-color: var(--brand-blue); }
.nav-btn svg { width: 22px; height: 22px; stroke-width: 2.5; }

/* Dots do carrossel de serviços (desktop + mobile) */
.dots-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.dots-container .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dots-container .dot.active {
  width: 32px;
  border-radius: 16px;
  background: #fcb912;
  border-color: #ffffff;
}

@media (max-width: 768px) {

  .services-section { padding: 60px 16px; }
  .services-title { font-size: 1.8rem; }

  /* Carrossel de serviços: modo mobile — 1 card visível por vez */
  .cards-3d-wrapper {
    perspective: none;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .cards-3d-container {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;         /* bloco simples, sem flex 3D */
  }

  /* Esconder TODOS os cards por padrão (incluindo prev, next, far-*) */
  .card-3d,
  .card-3d.prev,
  .card-3d.next,
  .card-3d.far-prev,
  .card-3d.far-next,
  .card-3d.hidden {
    display: none !important;
    transform: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Somente o card ativo é exibido, ocupando o fluxo normal */
  .card-3d.active {
    display: flex !important;   /* card-3d usa flex internamente */
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    width: 100% !important;
    max-width: 340px !important;
    height: auto !important;
    min-height: 400px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    z-index: 5 !important;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5) !important;
  }

  /* Controles de navegação centralizados */
  .controls-wrapper {
    margin-top: 24px;
    justify-content: center;
  }

  /* Dots dos serviços: horizontal e centrado */
  .dots-container {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    width: max-content !important;
  }
  .dots-container .dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
    display: inline-block !important;
  }
  .dots-container .dot.active {
    width: 28px !important;
    border-radius: 14px !important;
    background: #fcb912 !important;
    border-color: #fff !important;
  }
}

/* ==========================================================================
   10. SEÇÃO POR QUE NOS ESCOLHER (REASONS)
   ========================================================================== */
.reasons-section {
  background-color: #FFFFFF;
  width: 100%;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reasons-container { max-width: 1240px; width: 100%; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; max-width: 850px; margin-left: auto; margin-right: auto; }
.section-subtitle { font-size: 1.05rem; font-weight: 500; color: #55606E; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; }
.section-subtitle::before, .section-subtitle::after { content: ''; display: inline-block; width: 24px; height: 2px; background-color: var(--accent-yellow); border-radius: 2px; }
.section-title { font-size: 2.35rem; font-weight: 800; color: #000000; line-height: 1.25; letter-spacing: -0.5px; }
.section-title .highlight-blue { color: var(--brand-blue); }

.reasons-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.reason-card {
  position: relative;
  background-color: #F8F9FA;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.reason-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 3px solid #000000;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 5;
}

.reason-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2); }
.reason-card:hover::after { opacity: 1; transform: scale(1); }

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reason-card:hover .card-image { transform: scale(1.07); }

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42%;
  pointer-events: none;
  z-index: 2;
}

.overlay-gray { background: linear-gradient(to top, rgba(225, 229, 235, 0.98) 0%, rgba(225, 229, 235, 0.88) 50%, rgba(225, 229, 235, 0) 100%); }
.overlay-blue { background: linear-gradient(to top, rgba(4, 102, 191, 0.98) 0%, rgba(4, 102, 191, 0.85) 50%, rgba(4, 102, 191, 0) 100%); }
.overlay-orange { background: linear-gradient(to top, rgba(245, 158, 11, 0.98) 0%, rgba(245, 158, 11, 0.85) 50%, rgba(245, 158, 11, 0) 100%); }

.card-content {
  position: relative;
  z-index: 3;
  padding: 16px 18px 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.card-badge svg { width: 18px; height: 18px; }
.card-theme-gray .card-badge svg { fill: #000000; }
.card-theme-blue .card-badge svg { fill: var(--brand-blue); }
.card-theme-orange .card-badge svg { fill: var(--accent-orange); }

.reasons-section .card-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 auto;
}

.card-theme-gray .card-title { color: #000000; }
.card-theme-blue .card-title { color: #FFFFFF; }
.card-theme-orange .card-title { color: #FFFFFF; }

@media (max-width: 1024px) {
  .reasons-section .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 700px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .reasons-section { padding: 45px 16px; }
  .reasons-section .cards-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ==========================================================================
   11. SEÇÃO ORÇAMENTO EXPRESSO (FAIXA COM BACKGROUND)
   ========================================================================== */
.orcamento-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-image: url('assets/rede_computadores.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orcamento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.orcamento-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.orcamento-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.btn-whats-orcamento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--btn-bg);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--neon-border);
  box-shadow: 0 0 14px var(--neon-glow);
  cursor: pointer;
  white-space: nowrap !important;
  animation: whats-breathing 2.5s infinite ease-in-out;
}

.btn-whats-orcamento svg { width: 22px; height: 22px; fill: #FFFFFF; flex-shrink: 0; }
.btn-whats-orcamento:hover { background-color: var(--btn-hover-bg); transform: translateY(-3px) scale(1.04); }

@keyframes whats-breathing {
  0%, 100% { transform: scale(1); box-shadow: 0 0 14px var(--neon-glow); }
  50% { transform: scale(1.06); box-shadow: 0 0 26px rgba(0, 255, 136, 0.95); }
}

@media (max-width: 768px) {
  .orcamento-title { font-size: 1.45rem; }
  .btn-whats-orcamento { font-size: clamp(0.78rem, 3.2vw, 0.92rem); padding: 12px 20px; width: auto; max-width: 100%; }
}

/* ==========================================================================
   12. SEÇÃO DEPOIMENTOS (INFINITE SCROLLER & CTA BOTÃO)
   ========================================================================== */
.testimonials-section {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 100%;
  padding: 90px 0 100px 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

.testimonials-header {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.testimonials-title span { color: var(--brand-blue); }
.testimonials-subtitle { font-size: 1.125rem; color: #64748B; max-width: 680px; margin: 0 auto 30px auto; }

.trust-metrics {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
}

.stars-group { display: flex; gap: 3px; color: var(--accent-yellow); }
.stars-group svg { width: 18px; height: 18px; fill: currentColor; }

.carousel-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  padding: 15px 0;
  z-index: 1;
}

.carousel-container::before, .carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.carousel-container::before { left: 0; background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }
.carousel-container::after { right: 0; background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }

.testimonials-section .carousel-track { display: flex; width: max-content; gap: 24px; }
.track-left { animation: scrollLeft 45s linear infinite; }
.track-right { animation: scrollRight 50s linear infinite; }
.testimonials-section .carousel-track:hover { animation-play-state: paused; }

@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 12px)); } }
@keyframes scrollRight { 0% { transform: translateX(calc(-50% - 12px)); } 100% { transform: translateX(0); } }

.notification-card {
  width: 380px;
  flex-shrink: 0;
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 25px -5px rgba(4, 102, 191, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.notification-card:hover { transform: translateY(-6px) scale(1.01); border-color: var(--brand-blue); }

.card-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #F1F5F9; }
.notification-source { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; color: #64748B; text-transform: uppercase; }
.user-profile { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar-wrapper { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.user-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.user-name { font-size: 1rem; font-weight: 700; color: #0F172A; }
.user-role { font-size: 0.8rem; color: #64748B; }
.card-stars { display: flex; gap: 3px; margin-bottom: 10px; color: var(--accent-yellow); }
.card-stars svg { width: 15px; height: 15px; fill: currentColor; }
.testimonial-text { font-size: 0.925rem; color: #334155; line-height: 1.5; margin-bottom: 14px; }
.card-footer-tag { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 8px; }
.card-footer-tag.tag-blue { background-color: #EBF5FF; color: var(--brand-blue); }
.card-footer-tag.tag-green { background-color: #E6F4EA; color: #137333; }

/* Botão de Fechamento Azul */
.testimonials-bottom-cta {
  width: 100%;
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--brand-blue);
  color: #FFFFFF !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(4, 102, 191, 0.25);
  transition: var(--transition-smooth);
  white-space: nowrap !important;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-btn-whatsapp:hover { background-color: #034F94; transform: translateY(-3px); }
.cta-btn-whatsapp svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

@media (max-width: 768px) {
  .testimonials-section { padding: 60px 0; }
  .testimonials-title { font-size: 1.95rem; }
  .notification-card { width: 310px; padding: 18px; }
  .carousel-container::before, .carousel-container::after { width: 40px; }
  .trust-metrics { flex-direction: column; gap: 6px; border-radius: 20px; padding: 12px 20px; }
}

@media (max-width: 768px) {
  .testimonials-bottom-cta {
    padding: 0 16px;
  }
  .cta-btn-whatsapp {
    /* escala gradativa: maior em 768px, menor em 320px */
    font-size: clamp(0.82rem, 3.8vw, 1.05rem) !important;
    padding: clamp(12px, 2.8vw, 16px) clamp(22px, 5.5vw, 36px) !important;
    gap: 8px !important;
    letter-spacing: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
    display: inline-flex !important;
  }
  .cta-btn-whatsapp svg {
    width: clamp(16px, 4vw, 22px) !important;
    height: clamp(16px, 4vw, 22px) !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================================
   13. SEÇÃO RECICLAGEM E SUSTENTABILIDADE VERDE
   ========================================================================== */
.recycle-section {
  width: 100%;
  background: linear-gradient(135deg, #08381e 0%, #12984a 50%, #062b16 100%);
  color: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.recycle-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.recycle-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.recycle-content { display: flex; flex-direction: column; gap: 32px; max-width: 580px; }

.recycle-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  width: fit-content;
}

.recycle-badge-icon { width: 22px; height: 22px; stroke: #FFFFFF; stroke-width: 2; fill: none; flex-shrink: 0; }
.recycle-badge-text { font-size: 0.95rem; font-weight: 500; color: rgba(255, 255, 255, 0.95); }

.recycle-title { font-size: 2.8rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: #FFFFFF; }
.recycle-description { font-size: 1.08rem; line-height: 1.65; color: rgba(255, 255, 255, 0.85); font-weight: 400; }
.recycle-stats { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.recycle-stat-item { display: flex; flex-direction: column; gap: 10px; }
.recycle-stat-header { display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; font-weight: 600; }
.recycle-stat-percentage { font-weight: 800; font-size: 1.15rem; }

.recycle-progress-track {
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.recycle-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #EBECE8 0%, #F8FAF6 100%);
  border-radius: 50px;
  transition: width 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.recycle-image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }

.recycle-image-card {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.recycle-image-card img { width: 100%; height: 520px; object-fit: cover; display: block; }

.recycle-floating-icons {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 10;
}

.glass-icon-box {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatGlass 4.5s ease-in-out infinite alternate;
}

.glass-icon-box svg { width: 36px; height: 36px; fill: none; stroke: #FFFFFF; stroke-width: 1.8; }

@keyframes floatGlass {
  0% { transform: translateY(0px); }
  100% { transform: translateY(6px); }
}

@media (max-width: 1024px) {
  .recycle-grid { grid-template-columns: 1fr; gap: 50px; }
  .recycle-floating-icons { left: 20px; gap: 20px; }
  .glass-icon-box { width: 68px; height: 68px; }
  .recycle-image-card img { height: 420px; }
}

@media (max-width: 768px) {
  .recycle-section { padding: 60px 0; }
  .recycle-title { font-size: 2.1rem; }
  .recycle-floating-icons { position: absolute; flex-direction: row; left: 50%; top: -34px; transform: translateX(-50%); gap: 24px; }
  .recycle-image-card img { height: 340px; }
}

/* ==========================================================================
   14. SEÇÃO FORMULÁRIO DE ORÇAMENTO & MAPA LOCALIZAÇÃO
   ========================================================================== */
.unified-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(160deg, #0b0f19 0%, #05070a 50%, #070c16 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 60px 45px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.unified-container { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 60px; }
.orcamento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.orcamento-info { display: flex; flex-direction: column; gap: 24px; }

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 0.85rem;
  text-transform: uppercase;
  width: fit-content;
}

.badge-tag i { color: var(--brand-cyan); }
.main-title { font-size: 2.6rem; font-weight: 800; line-height: 1.2; color: var(--brand-blue); letter-spacing: -0.5px; }
.main-title span { background: linear-gradient(135deg, #38bdf8 0%, #0466BF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.main-subtitle { font-size: 1.1rem; color: var(--text-muted); }

.benefits-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.benefit-item { display: flex; align-items: center; gap: 14px; background: rgba(15, 23, 42, 0.5); border: 1px solid rgba(255, 255, 255, 0.08); padding: 14px 20px; border-radius: var(--radius-md); }
.benefit-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(4, 102, 191, 0.15); border: 1px solid rgba(4, 102, 191, 0.3); display: flex; align-items: center; justify-content: center; color: var(--brand-cyan); font-size: 1.1rem; flex-shrink: 0; }
.benefit-text { font-size: 0.98rem; font-weight: 600; color: #FFFFFF; }

.form-glass-card {
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.form-title-wrapper { margin-bottom: 24px; }
.form-title-wrapper h3 { font-size: 1.45rem; font-weight: 700; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
.form-title-wrapper h3 i { color: var(--brand-cyan); }
.form-title-wrapper p { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

.budget-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.88rem; font-weight: 600; color: #e2e8f0; display: flex; align-items: center; gap: 6px; }
.form-label span { color: var(--brand-cyan); }

.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper i { position: absolute; left: 16px; color: var(--brand-cyan); font-size: 1rem; pointer-events: none; z-index: 2; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: rgba(10, 15, 26, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 13px 16px 13px 44px;
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-select option { background-color: #0b0f19; color: #ffffff; }
.form-textarea { padding-top: 14px; min-height: 100px; resize: vertical; }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-blue);
  background-color: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 0 4px rgba(4, 102, 191, 0.2);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #0466BF 0%, #024077 100%);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 24px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 10px 25px var(--brand-blue-glow);
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0088ff 0%, #0466BF 100%);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  margin: 10px 0;
}

.location-header { text-align: center; max-width: 800px; margin: 0 auto; }
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(4, 102, 191, 0.15);
  border: 1px solid rgba(4, 102, 191, 0.25);
  border-radius: 50px;
  color: var(--brand-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-title { font-size: 2.3rem; font-weight: 800; color: #FFFFFF; margin-bottom: 12px; }
.location-title span { background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.location-subtitle { font-size: 1.05rem; color: var(--text-muted); }

.location-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.info-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-header { display: flex; align-items: center; gap: 14px; }
.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(4, 102, 191, 0.2);
  border: 1px solid rgba(4, 102, 191, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-title { font-size: 1.05rem; font-weight: 700; color: #FFFFFF; }
.info-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.info-text strong { color: #FFFFFF; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #05c148;
  background: rgba(5, 193, 72, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.status-dot { width: 8px; height: 8px; background-color: #05c148; border-radius: 50%; }

.map-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121620;
}

.map-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(11, 15, 25, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.map-location-address { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #FFFFFF; }
.map-actions { display: flex; align-items: center; gap: 10px; }

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-google-maps { background: var(--brand-blue); color: #FFFFFF; }
.btn-waze { background: rgba(255, 255, 255, 0.08); color: #FFFFFF; }
.btn-copy { background: rgba(4, 102, 191, 0.12); color: var(--brand-cyan); }

.map-iframe-container { position: relative; width: 100%; height: 450px; }
.map-iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #05c148;
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 25px rgba(5, 193, 72, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast-notification.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1024px) {
  .orcamento-grid { grid-template-columns: 1fr; gap: 40px; }
  .unified-section { padding: 50px 30px; }
}

@media (max-width: 768px) {
  .badge-tag { font-size: 0.65rem !important; padding: 6px 10px !important; }
  .unified-section { padding: 35px 16px; }
  .main-title { font-size: 1.85rem; }
  .location-title { font-size: 1.75rem; }
  .form-glass-card { padding: 24px 16px; }
  .map-top-bar { flex-direction: column; align-items: flex-start; gap: 14px; padding: 14px 16px; }
  .map-actions { width: 100%; flex-wrap: wrap; }
  .btn-action { flex: 1 1 calc(50% - 6px); justify-content: center; }
  .map-iframe-container { height: 320px; }
}

/* ==========================================================================
   15. SITE FOOTER (RODAPÉ)
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, #0d1527 0%, #05070a 75%);
  border-top: 1px solid rgba(4, 102, 191, 0.3);
  color: #FFFFFF;
  overflow: hidden;
  padding-top: 70px;
}

.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.footer-cta-card {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(5, 7, 10, 0.95) 100%);
  border: 1px solid rgba(4, 102, 191, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-info { display: flex; align-items: center; gap: 20px; }

.cta-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(5, 193, 72, 0.15);
  border: 1px solid #05c148;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05c148;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cta-text-wrapper h3 { font-size: 1.35rem; font-weight: 800; color: #FFFFFF; margin-bottom: 4px; }
.cta-text-wrapper p { color: var(--text-muted); font-size: 0.95rem; }

.btn-cta-whats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #05c148;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(5, 193, 72, 0.4);
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-cta-whats:hover { background-color: #049c3a; transform: translateY(-3px) scale(1.03); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col { display: flex; flex-direction: column; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.footer-logo-img { height: 100px; width: auto; max-width: 280px; object-fit: contain; display: block; }
.footer-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.social-links { display: flex; align-items: center; gap: 12px; margin-top: 4px; }

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--brand-blue); color: #FFFFFF; transform: translateY(-4px); }
.social-btn.whats:hover { background: #05c148; }
.social-btn.insta:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::after { content: ''; display: block; width: 30px; height: 3px; background: var(--brand-blue); border-radius: 2px; }

.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-link-item a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-link-item a:hover { color: #FFFFFF; transform: translateX(6px); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(4, 102, 191, 0.12);
  border: 1px solid rgba(4, 102, 191, 0.3);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details { display: flex; flex-direction: column; }
.contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--accent-yellow); margin-bottom: 2px; }
.contact-val { font-size: 0.93rem; color: var(--text-muted); text-decoration: none; }
a.contact-val:hover { color: #FFFFFF; text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); background-color: var(--bg-dark-secondary); padding: 24px 0; margin-top: 20px; }
.footer-bottom-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.copyright-text { color: var(--text-subtle); font-size: 0.88rem; }
.copyright-text strong { color: #FFFFFF; }

.footer-bottom-actions { display: flex; align-items: center; gap: 24px; }
.bottom-links { display: flex; gap: 18px; list-style: none; }
.bottom-links a { color: var(--text-subtle); text-decoration: none; font-size: 0.85rem; }
.bottom-links a:hover { color: var(--brand-cyan); }

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.back-to-top-btn:hover { background: var(--brand-blue); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta-card { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-info { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .site-footer { padding-top: 50px; }
  .footer-logo-img { height: 76px; max-width: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cta-card { padding: 24px 16px; }
  .btn-cta-whats { width: 100%; justify-content: center; }
  .footer-bottom-container, .footer-bottom-actions { flex-direction: column; text-align: center; gap: 14px; }
}

/* ==========================================================================
   16. PÁGINA SOBRE NÓS (SOBRE.HTML)
   ========================================================================== */
.page-header-banner {
  padding: 140px 24px 60px;
  background: linear-gradient(to right, #0f172a, #0b0f19);
  text-align: center;
  position: relative;
}

.banner-container { position: relative; z-index: 1; }
.page-header-banner h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.banner-line {
  width: 80px;
  height: 4px;
  background-color: var(--brand-blue);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.sobre-section {
  padding: 80px 24px 100px;
  background-color: var(--bg-dark);
}

.sobre-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.sobre-content { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.sobre-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; color: #FFFFFF; letter-spacing: -0.5px; }
.sobre-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); display: flex; flex-direction: column; gap: 16px; }
.sobre-image-wrapper { flex: 1; position: relative; }
.sobre-image { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); position: relative; z-index: 2; object-fit: cover; aspect-ratio: 4 / 3; }

.sobre-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100;
}

/* Sobre.html: mobile — empilhar em coluna com imagem entre título e texto */
@media (max-width: 768px) {
  /* Container vira coluna e centraliza */
  .sobre-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 0 16px !important;
  }

  /* 'Dissolve' o wrapper de conteúdo, elevando filhos ao nível do container */
  .sobre-content {
    display: contents !important;
  }

  /* Ordem: 1 = título, 2 = imagem, 3 = texto, 4 = CTA */
  .sobre-title {
    order: 1 !important;
    font-size: clamp(1.6rem, 5vw, 2rem) !important;
  }

  .sobre-image-wrapper {
    order: 2 !important;
    width: 100% !important;
  }

  .sobre-image {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  .sobre-text {
    order: 3 !important;
    font-size: 0.97rem !important;
  }

  .sobre-cta {
    order: 4 !important;
  }
}