/* 
  GRÁFICA SKOMAN - STYLE SHEET
  Estilo moderno, profissional e com energia criativa
  Paleta: Azul Corporativo (#1565C0), Azul Escuro (#0D47A1), Branco, Branco Suave (#F5F8FF)
  Tipografia: Títulos (Plus Jakarta Sans), Corpo (Inter)
*/

/* -------------------------------------------------------------
   1. TOKENS E VARIÁVEIS DE DESIGN
   ------------------------------------------------------------- */
:root {
  /* Cores Principais */
  --color-primary: #1565C0;
  --color-primary-rgb: 21, 101, 192;
  --color-primary-hover: #0D47A1;
  --color-primary-light: rgba(9, 121, 249, 0.967);

  /* Paleta Escura */
  --color-dark: #0D47A1;
  --color-dark-deep: #0A2E6E;
  --color-dark-light: #1976D2;

  /* Paleta Clara */
  --color-light: #F5F8FF;
  --color-light-gray: #E1E6F0;
  --color-white: #FFFFFF;
  --color-text-muted: #888888;

  /* Cores CMYK Acentuadas (Decoração Gráfica) */
  --color-cyan: #FFC107;
  --color-magenta: #29B6F6;
  --color-yellow: #37474F;

  /* Tipografia */
  --font-title: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sombras */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 10px 25px rgba(21, 101, 192, 0.35);

  /* Bordas e Cantos */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transições */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
   2. RESET E ESTILOS GLOBAIS
   ------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

/* -------------------------------------------------------------
   3. CLASSES DE UTILIDADE / ESTRUTURA
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* -------------------------------------------------------------
   4. BOTÕES E ELEMENTOS DE AÇÃO
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* -------------------------------------------------------------
   5. CABEÇALHO (Header) E NAVEGAÇÃO
   ------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: saturate(180%) blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
  height: 60px;
}

/* Logo Skoman */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* Menu de Navegação */
.nav-navigation {
  transition: var(--transition-normal);
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-normal);
}

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

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

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

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

/* Ações e Carrinho */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.cart-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.2);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-dark);
  transition: var(--transition-normal);
}

.cart-btn:hover .cart-badge {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* Hamburger Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* Responsividade do Menu Mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-dark);
    padding: 100px 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-slow);
    z-index: 999;
  }

  .nav-navigation.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.15rem;
    display: block;
  }

  /* Transformação do Hamburger em X */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* -------------------------------------------------------------
   6. HERO SLIDER SECTION
   ------------------------------------------------------------- */
.hero-slider-container {
  padding-top: 80px;
  overflow-x: hidden;
}

/* ===== SLIDER SKOMAN — início ===== */
/* full-bleed: ocupa a largura toda do ecrã, mesmo que o slider
   esteja dentro de um container centrado com padding. Se a secção
   onde o slider fica não tiver "overflow-x:hidden", adiciona isso
   nela (ou no body) para evitar scroll horizontal indesejado. */
.slider{
  position:relative;
  width:100vw;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  max-width:100vw;
  aspect-ratio:16/8;
  background:#141414;
  overflow:hidden;
  border-top:1px solid rgba(246,243,236,0.15);
  border-bottom:1px solid rgba(246,243,236,0.15);
}

@media (max-width:700px){
  .slider{ aspect-ratio:9/13; }
}

.registo{
  position:absolute;
  width:18px; height:18px;
  z-index:5;
  opacity:0.55;
  pointer-events:none;
}
.registo::before, .registo::after{
  content:"";
  position:absolute;
  background:#f6f3ec;
}
.registo::before{ width:100%; height:1px; top:50%; left:0; transform:translateY(-50%); }
.registo::after{ height:100%; width:1px; left:50%; top:0; transform:translateX(-50%); }
.registo.tl{ top:14px; left:14px; }
.registo.tr{ top:14px; right:14px; }
.registo.bl{ bottom:14px; left:14px; }
.registo.br{ bottom:14px; right:14px; }

/* ====== TEMPO DO SLIDER (ajustar aqui) ======
   5 posições (4 slides + 1 clone), 4s visível + 1s de deslize = 25s ciclo.
   O 5.º slide é clone do 1.º — o salto no reinício é invisível. */
.slides{
  display:flex;
  width:500%;
  height:100%;
  animation: avancar 25s infinite;
  animation-timing-function: linear;
  /* will-change diz ao browser para manter a layer na GPU
     e impede o throttling quando o elemento sai do viewport */
  will-change: transform;
}

.slide{
  width:20%;
  height:100%;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:48px;
  box-sizing:border-box;
  flex-shrink:0;
}


@keyframes avancar{
  0%    { transform: translateX(0%);    } /* slide 1 — início */
  16%   { transform: translateX(0%);    } /* slide 1 — fim     */
  20%   { transform: translateX(-20%);  } /* slide 2 — início  */
  36%   { transform: translateX(-20%);  } /* slide 2 — fim     */
  40%   { transform: translateX(-40%);  } /* slide 3 — início  */
  56%   { transform: translateX(-40%);  } /* slide 3 — fim     */
  60%   { transform: translateX(-60%);  } /* slide 4 — início  */
  76%   { transform: translateX(-60%);  } /* slide 4 — fim     */
  80%   { transform: translateX(-80%);  } /* clone slide 1 — início */
  96%   { transform: translateX(-80%);  } /* clone slide 1 — fim    */
  100%  { transform: translateX(-80%);  } /* reinício invisível: clone = original */
}

.slide-conteudo{
  display: none;
}

/* Fundos dos slides com imagens inteiras e sem cortes */
.slide-1 .fundo{ background-image: url('assets/opt/rom1_800.webp'); }
.slide-2 .fundo{ background-image: url('assets/opt/rom_2_800.webp'); }
.slide-3 .fundo{ background-image: url('assets/opt/rom3_800.webp'); }
.slide-4 .fundo{ background-image: url('assets/opt/slide2_800.webp'); }

.fundo{
  position:absolute;
  inset:0;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}
.fundo::after{
  display:none;
}

.cmyk{
  position:absolute;
  top:24px;
  left:24px;
  display:flex;
  gap:6px;
  z-index:3;
}
.cmyk span{
  width:9px; height:9px;
  border-radius:50%;
  mix-blend-mode:screen;
}
.cmyk span:nth-child(1){ background:#00b6c9; }
.cmyk span:nth-child(2){ background:#e8177d; }
.cmyk span:nth-child(3){ background:#ffcc00; }
.cmyk span:nth-child(4){ background:#e8e8e8; }

.pontos{
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:6;
}
.pontos span{
  width:9px; height:9px;
  border-radius:50%;
  border:1px solid #f6f3ec;
  background:transparent;
  animation: acender 25s infinite;
}
.pontos span:nth-child(1){ animation-delay: 0s; }
.pontos span:nth-child(2){ animation-delay: 5s; }
.pontos span:nth-child(3){ animation-delay: 10s; }
.pontos span:nth-child(4){ animation-delay: 15s; }

@keyframes acender{
  0%   { background:#f6f3ec; }
  18%  { background:#f6f3ec; } /* activo durante 4s (16% visível + 2% margem) */
  20%  { background:transparent; }
  100% { background:transparent; }
}

@media (max-width:600px){
  .slide{ padding:24px; align-items:flex-end; }
  .slide-texto{ display:none; }
}
/* ===== SLIDER SKOMAN — fim ===== */

/* Formas Geométricas e Brilhos de Fundo */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: var(--radius-full);
}

.shape-orange {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, rgba(21, 101, 192, 0) 70%);
  filter: blur(80px);
  animation: floatShape 12s infinite alternate ease-in-out;
}

.shape-cyan {
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.08) 0%, rgba(0, 163, 224, 0) 70%);
  filter: blur(100px);
  animation: floatShape 15s infinite alternate-reverse ease-in-out;
}

.shape-magenta {
  top: 30%;
  left: 35%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(228, 0, 127, 0.05) 0%, rgba(228, 0, 127, 0) 70%);
  filter: blur(60px);
}

.shape-yellow {
  bottom: 20%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.04) 0%, rgba(255, 230, 0, 0) 70%);
  filter: blur(90px);
}

/* Grelha gráfica em linhas finas */
.shape-grid {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  opacity: 0.8;
}

/* Layout Container Hero */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 2rem;
  }
}

/* Conteúdo de Texto Hero */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

@media (max-width: 992px) {
  .hero-content {
    align-items: center;
  }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.6;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 480px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Lado Gráfico do Hero (Visual premium de cartões e cmyk) */
.hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  z-index: 10;
  animation: fadeIn 1.2s ease-in-out;
}

@media (max-width: 992px) {
  .hero-graphic {
    min-height: 380px;
  }
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: absolute;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Card 1: CMYK */
.card-1 {
  width: 260px;
  top: 15%;
  left: 5%;
  z-index: 3;
  animation: floatVertical 6s infinite alternate ease-in-out;
}

.card-1 .card-header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.card-1 .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
}

.card-1 .dot.red {
  background-color: var(--color-magenta);
}

.card-1 .dot.yellow {
  background-color: var(--color-yellow);
}

.card-1 .dot.green {
  background-color: var(--color-cyan);
}

.card-1 .bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  gap: 0.5rem;
}

.card-1 .bar {
  flex: 1;
  border-radius: 4px;
  transition: height 1s ease-in-out;
  position: relative;
}

.card-1 .bar.cyan {
  background-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(0, 163, 224, 0.3);
}

.card-1 .bar.magenta {
  background-color: var(--color-magenta);
  box-shadow: 0 0 10px rgba(228, 0, 127, 0.3);
}

.card-1 .bar.yellow {
  background-color: var(--color-yellow);
  box-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

.card-1 .bar.key {
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.card-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-align: center;
}

/* Card 2: Resolução */
.card-2 {
  width: 240px;
  bottom: 15%;
  right: 5%;
  z-index: 4;
  animation: floatVertical 8s infinite alternate-reverse ease-in-out 1s;
}

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

.card-flex h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.card-flex p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.circle-progress {
  position: relative;
  width: 50px;
  height: 50px;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
}

/* Círculo Gigante de Fundo do Lado Gráfico */
.graphic-circle-decoration {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.3) 0%, rgba(21, 101, 192, 0.02) 100%);
  border: 1px solid rgba(21, 101, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseScale 10s infinite alternate ease-in-out;
  position: relative;
  z-index: 1;
}

.inner-logo {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  background-color: var(--color-dark);
  border: 4px solid var(--color-primary);
  box-shadow: var(--shadow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
}

/* -------------------------------------------------------------
   7. ANIMAÇÕES (Keyframes)
   ------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes floatVertical {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-20px);
  }
}

@keyframes pulseScale {
  from {
    transform: scale(1);
    border-color: rgba(21, 101, 192, 0.2);
  }

  to {
    transform: scale(1.08);
    border-color: rgba(21, 101, 192, 0.4);
  }
}

@keyframes floatShape {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -40px) scale(1.1);
  }
}

/* -------------------------------------------------------------
   8. SECÇÕES E COMPONENTES GERAIS
   ------------------------------------------------------------- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Ajustes de cores para seções escuras / claras */
.services-section .section-title,
.portfolio-section .section-title,
.testimonials-section .section-title,
.contact-section .section-title {
  color: var(--color-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.6;
}

.services-section .section-desc,
.portfolio-section .section-desc,
.testimonials-section .section-desc,
.contact-section .section-desc {
  color: #666666;
}

/* -------------------------------------------------------------
   9. SERVIÇOS
   ------------------------------------------------------------- */
.services-section {
  background-color: var(--color-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.15);
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05) rotate(5deg);
}

.service-icon-wrapper i {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.service-card .service-desc-short {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  max-height: calc(1.6em * 3);
  overflow: hidden;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.btn-service i {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.btn-service:hover {
  color: var(--color-primary-hover);
}

.btn-service:hover i {
  transform: translateX(5px);
}

/* -------------------------------------------------------------
   10. DIFERENCIAIS
   ------------------------------------------------------------- */
.features-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background-color: var(--color-light);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.feature-icon i {
  width: 30px;
  height: 30px;
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

/* ===== PORTFÓLIO SKOMAN — início ===== */
.portfolio {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.portfolio-cabecalho {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.portfolio-cabecalho .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.portfolio-cabecalho h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-transform: none;
  margin-bottom: 1rem;
  color: var(--color-dark);
  line-height: 1.2;
}
.portfolio-cabecalho p {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.6;
}

.filtro-radio { display: none; }

.portfolio .filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.portfolio .filtro-btn {
  padding: 10px 20px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition-normal);
  color: #444444;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.portfolio .filtro-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
#f-todos:checked            ~ .filtros label[for="f-todos"],
#f-impressao:checked        ~ .filtros label[for="f-impressao"],
#f-grandes-formatos:checked ~ .filtros label[for="f-grandes-formatos"],
#f-banners:checked          ~ .filtros label[for="f-banners"],
#f-brindes:checked          ~ .filtros label[for="f-brindes"],
#f-trofeus:checked          ~ .filtros label[for="f-trofeus"],
#f-sinaletica:checked       ~ .filtros label[for="f-sinaletica"],
#f-cartoes:checked          ~ .filtros label[for="f-cartoes"],
#f-flyers:checked           ~ .filtros label[for="f-flyers"] {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-orange);
}

#f-impressao:checked        ~ .grid .item:not(.cat-impressao)        { display: none; }
#f-grandes-formatos:checked ~ .grid .item:not(.cat-grandes-formatos) { display: none; }
#f-banners:checked          ~ .grid .item:not(.cat-banners)          { display: none; }
#f-brindes:checked          ~ .grid .item:not(.cat-brindes)          { display: none; }
#f-trofeus:checked          ~ .grid .item:not(.cat-trofeus)          { display: none; }
#f-sinaletica:checked       ~ .grid .item:not(.cat-sinaletica)       { display: none; }
#f-cartoes:checked          ~ .grid .item:not(.cat-cartoes)          { display: none; }
#f-flyers:checked           ~ .grid .item:not(.cat-flyers)           { display: none; }

.portfolio .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio .item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1c1c1c;
  box-shadow: var(--shadow-sm);
}

.portfolio .item .fundo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.portfolio .item:hover .fundo {
  transform: scale(1.06);
}

.portfolio .item .cmyk {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.portfolio .item .cmyk span {
  width: 7px; height: 7px;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.portfolio .item .cmyk span:nth-child(1) { background: #00b6c9; }
.portfolio .item .cmyk span:nth-child(2) { background: #e8177d; }
.portfolio .item .cmyk span:nth-child(3) { background: #4FCDFF; }

.portfolio .item .legenda {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 46, 110, 0.95), transparent);
  transform: translateY(8px);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.portfolio .item .legenda .tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64B5F6;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.portfolio .item .legenda .titulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}
.portfolio .item:hover .legenda {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.portfolio .item .item-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio .item .item-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.6s ease;
}

.portfolio .item .item-slide.active {
  opacity: 1;
}

.portfolio .item:hover .item-slide.active {
  transform: scale(1.06);
}

.portfolio .item .item-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.portfolio .item .item-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio .item .item-dots .dot.active {
  background: #64B5F6;
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(100, 181, 246, 0.8);
}

/* PORTFOLIO LIGHTBOX MODAL ENHANCED */
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.portfolio-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.portfolio-modal-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 100%;
  max-height: 92vh;
  background: #121212;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.portfolio-modal.active .portfolio-modal-content {
  transform: scale(1);
}

.portfolio-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-modal-close:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

.modal-gallery-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

.portfolio-modal-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  width: 100%;
  transition: opacity 0.3s ease;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-nav-btn:hover {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev { left: 15px; }
.modal-nav-btn.next { right: 15px; }

.modal-dots {
  display: flex;
  gap: 8px;
  margin: 10px 0 4px 0;
}

.modal-dots .m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.modal-dots .m-dot.active {
  background: #64B5F6;
  transform: scale(1.3);
}

.portfolio-modal-info {
  padding: 16px 24px;
  width: 100%;
  background: #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-info-text .tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64B5F6;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.modal-info-text .titulo {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.modal-counter {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 820px) {
  .portfolio .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .portfolio .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio .filtros { gap: 8px; }
  .portfolio .filtro-btn { padding: 7px 14px; font-size: 11px; }
}
/* ===== PORTFÓLIO SKOMAN — fim ===== */

/* -------------------------------------------------------------
   12. DEPOIMENTOS
   ------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}

.avatar-orange {
  background-color: var(--color-primary);
}

.avatar-cyan {
  background-color: var(--color-cyan);
}

.avatar-magenta {
  background-color: var(--color-magenta);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.author-info p {
  font-size: 0.8rem;
  color: #666666;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.rating-star {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  stroke: var(--color-primary);
}

/* -------------------------------------------------------------
   13. CONTACTO
   ------------------------------------------------------------- */
.contact-section {
  background-color: var(--color-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.info-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
}

.info-item-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.info-item-box:hover .info-item-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.info-item-icon i {
  width: 20px;
  height: 20px;
}

.info-item-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.info-item-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

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

.social-circle i {
  width: 18px;
  height: 18px;
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-gray);
}

@media (max-width: 576px) {

  .contact-info-card,
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: #FAFAFA;
  transition: var(--transition-normal);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.btn-submit {
  align-self: flex-start;
  padding: 1rem 2.25rem;
  width: auto;
}

@media (max-width: 576px) {
  .btn-submit {
    width: 100%;
  }
}

/* -------------------------------------------------------------
   14. LOJA ONLINE (loja.html)
   ------------------------------------------------------------- */
.shop-hero {
  background-color: var(--color-dark-deep);
  color: var(--color-white);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.shop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(21, 101, 192, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.shop-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.shop-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.shop-section {
  background-color: var(--color-light);
  padding: 4rem 0 6rem;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.shop-filter-btn {
  padding: 0.625rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: #555555;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-orange);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.1);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #FFFFFF;
  overflow: hidden;
  display: block;
  border-bottom: 1px solid var(--color-light-gray);
  cursor: pointer;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.02) brightness(1.01);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.product-variant {
  font-size: 0.875rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 1rem;
}

.product-price {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.btn-add-cart {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF8A65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------------------------------------------------------------
   15. CARRINHO DE COMPRAS (carrinho.js & drawer)
   ------------------------------------------------------------- */
/* Ajuste de cor do badge do header para vermelho vibrante e suporte à animação de pop */
.cart-badge {
  background-color: #FF3B30 !important;
}

.cart-btn:hover .cart-badge {
  background-color: var(--color-white) !important;
  color: #FF3B30 !important;
}

.badge-pop {
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

/* Overlay do Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Painel Lateral (Drawer) */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background-color: var(--color-dark-deep);
  color: var(--color-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-drawer.active {
  transform: translateX(0);
}

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
    transform: translateX(100%);
  }
}

/* Cabeçalho do Drawer */
.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cart-drawer-close {
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.cart-drawer-close:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: scale(1.05);
}

.cart-drawer-close i {
  width: 20px;
  height: 20px;
}

/* Corpo do Drawer */
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Estado Vazio do Carrinho */
.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.4);
  gap: 1.25rem;
  text-align: center;
}

.cart-empty-message i {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.cart-empty-message p {
  font-size: 1rem;
}

.cart-empty-message .btn-back-shop {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Item do Carrinho */
.cart-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  animation: itemSlideIn 0.3s ease-out;
}

@keyframes itemSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-item-image {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.5);
}

.cart-item-price-unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.cart-item-price-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 1rem;
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.qty-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.qty-btn i {
  width: 14px;
  height: 14px;
}

.qty-value {
  width: 32px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-subtotal {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.cart-item-remove {
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
}

.cart-item-remove:hover {
  color: #FF3B30;
  background-color: rgba(255, 59, 48, 0.1);
}

.cart-item-remove i {
  width: 16px;
  height: 16px;
}

/* Rodapé do Drawer */
.cart-drawer-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-total-label {
  color: rgba(255, 255, 255, 0.8);
}

.cart-total-amount {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 800;
}

.btn-checkout {
  width: 100%;
  padding: 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Micro-animação para o botão de Adicionar ao Carrinho */
.btn-add-cart {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-add-cart.added-success {
  background-color: #2ECC71 !important;
  color: var(--color-white) !important;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4) !important;
  border-color: #2ECC71 !important;
  transform: scale(0.98);
}

/* -------------------------------------------------------------
   LOJA FUNCIONAL: Toolbar, Quantidade, Modal, No-Results
   ------------------------------------------------------------- */

/* --- Toolbar (pesquisa + ordenação) --- */
.shop-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

@media (max-width: 576px) {
  .shop-toolbar {
    flex-direction: column;
  }
}

.shop-search-wrapper {
  position: relative;
  flex: 1;
}

.shop-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #999;
  pointer-events: none;
}

.shop-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: var(--color-white);
  color: var(--color-dark);
  transition: var(--transition-normal);
}

.shop-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
  background-color: var(--color-white);
}

.shop-sort-wrapper {
  min-width: 220px;
}

.shop-sort-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-normal);
  appearance: auto;
}

.shop-sort-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

/* --- Sem resultados --- */
.shop-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #999;
  gap: 0.75rem;
}

.shop-no-results i {
  width: 48px;
  height: 48px;
  color: #ccc;
}

.shop-no-results p {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
}

.shop-no-results span {
  font-size: 0.9rem;
}

/* --- Selector de Quantidade no Card --- */
.product-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-light);
}

.product-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
  min-height: unset !important;
  line-height: 1;
}

.product-qty-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.product-qty-value {
  width: 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* Update product footer to accommodate qty */
.product-footer {
  flex-wrap: wrap;
  gap: 0.75rem !important;
}

/* Make product name clickable */
.product-name {
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-name:hover {
  color: var(--color-primary);
}

.product-image-wrapper {
  cursor: pointer;
}

/* --- Modal de Detalhe do Produto (Vista Rápida v2) --- */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 92%;
  max-width: 860px;
  max-height: 90vh;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  z-index: 3001;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-light);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
  min-height: unset !important;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 576px) {
  .product-modal {
    width: 95%;
    max-height: 94vh;
    border-radius: var(--radius-md);
  }

  .product-modal-close {
    width: 46px;
    height: 46px;
    top: 0.75rem;
    right: 0.75rem;
  }
}

.product-modal-close:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.product-modal-close i {
  width: 20px;
  height: 20px;
  min-height: unset !important;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }
}

/* Galeria do Modal estilo AliExpress */
.product-modal-gallery {
  background-color: #F8FAFC;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .product-modal-gallery {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
  }
}

.modal-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modal-main-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Setas de navegação da foto principal */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-nav-btn:hover {
  background-color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  color: var(--color-primary);
}

.gallery-nav-btn.prev {
  left: 10px;
}

.gallery-nav-btn.next {
  right: 10px;
}

/* Faixa de Miniaturas AliExpress */
.modal-thumbs-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}

.modal-thumbs-grid {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}

.modal-thumb-btn {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  border: 2px solid #E2E8F0;
  background-color: var(--color-white);
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-thumb-btn:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.modal-thumb-btn.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(199, 161, 90, 0.25);
}

.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
}

.modal-thumb-btn:hover {
  border-color: rgba(21, 101, 192, 0.4);
}

.modal-thumb-btn.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(21, 101, 192, 0.2);
}

/* Painel de Informações & Opções */
.product-modal-info {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

@media (max-width: 576px) {
  .product-modal-info {
    padding: 1.5rem;
  }
}

.product-modal-tag {
  display: inline-block;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.product-modal-name {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
}

.product-modal-desc {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.6;
}

/* Metadados do Produto no Modal */
.product-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 0.6rem 0;
}

.modal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  background-color: #F1F5F9;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #E2E8F0;
}

.modal-meta-item i {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.modal-meta-item.meta-iva {
  background-color: #FFF7ED;
  color: #C2410C;
  border-color: #FFEDD5;
}

.modal-meta-item.meta-iva i {
  color: #EA580C;
}

.modal-meta-item.meta-iva-inc {
  background-color: #F0FDF4;
  color: #15803D;
  border-color: #DCFCE7;
}

.modal-meta-item.meta-iva-inc i {
  color: #16A34A;
}

.modal-meta-note {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #EFF6FF;
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: #1E40AF;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.modal-meta-note i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

/* Grupos de Opções */
.modal-option-groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.25rem 0;
}

.modal-option-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.modal-option-group-title span.required-star {
  color: #E11D48;
}

.modal-option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-option-pill {
  padding: 0.45rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  background-color: var(--color-white);
  color: #334155;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.modal-option-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(21, 101, 192, 0.04);
}

.modal-option-pill.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 6px rgba(21, 101, 192, 0.3);
}

/* Alerta de Opções Obrigatórias Pendentes */
.modal-required-warning {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background-color: #FFF1F2;
  border: 1px solid #FECDD3;
  border-radius: var(--radius-sm);
  color: #BE123C;
  font-size: 0.825rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

.modal-required-warning i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Preço e Controlo de Quantidade */
.product-modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #E2E8F0;
}

.product-modal-total-wrap {
  display: flex;
  flex-direction: column;
}

.product-modal-total-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.04em;
}

.product-modal-total {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.product-modal-qty .product-qty-btn {
  width: 36px;
  height: 36px;
}

.product-modal-qty .product-qty-value {
  width: 32px;
  font-size: 1rem;
}

/* Botões de Ação (Carrinho + WhatsApp) */
.modal-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 576px) {
  .modal-actions-row {
    grid-template-columns: 1fr;
  }
}

.product-modal-add {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.product-modal-add:disabled,
.btn-whatsapp-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(40%);
}

.btn-whatsapp-order {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp-order:hover:not(:disabled) {
  background-color: #128C7E;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  color: #FFFFFF;
}

.btn-whatsapp-order i,
.product-modal-add i {
  width: 18px;
  height: 18px;
  min-height: unset !important;
}

/* --- Zoom e Lightbox na Imagem Principal do Modal (Estilo AliExpress) --- */
.modal-main-image-wrap {
  cursor: zoom-in;
}

.modal-main-image-wrap img {
  transform-origin: center center;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
}

.modal-main-image-wrap.is-zooming img {
  transform: scale(1.6);
}

/* Badge indicativa de zoom */
.modal-image-zoom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal-main-image-wrap:hover .modal-image-zoom-badge {
  background-color: var(--color-primary);
  transform: scale(1.05);
}

.modal-image-zoom-badge i {
  width: 13px;
  height: 13px;
}

/* Overlay do Lightbox (z-index 4000) */
.product-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 8, 15, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem 1.5rem;
  user-select: none;
  box-sizing: border-box;
}

.product-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Cabeçalho do Lightbox */
.product-lightbox-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  z-index: 4010;
}

.product-lightbox-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-lightbox-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 450px;
}

.product-lightbox-counter {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.05em;
}

.product-lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: unset !important;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 576px) {
  .product-lightbox-close {
    width: 48px;
    height: 48px;
  }
  
  .product-lightbox-overlay {
    padding: 0.85rem 0.75rem;
  }

  .product-lightbox-title {
    max-width: 200px;
    font-size: 0.95rem;
  }

  .product-lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .product-lightbox-nav.prev {
    left: 4px;
  }

  .product-lightbox-nav.next {
    right: 4px;
  }
}

.product-lightbox-close:hover {
  background-color: #FF3B30;
  border-color: #FF3B30;
  transform: rotate(90deg) scale(1.08);
}

.product-lightbox-close i {
  width: 22px;
  height: 22px;
}

/* Área Central (Stage) */
.product-lightbox-stage {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 0;
  overflow: hidden;
}

/* Navegação por Setas */
.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4015;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  min-height: unset !important;
}

.product-lightbox-nav:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
}

.product-lightbox-nav.prev {
  left: 10px;
}

.product-lightbox-nav.next {
  right: 10px;
}

.product-lightbox-nav i {
  width: 24px;
  height: 24px;
}

/* Imagem e Loader */
.product-lightbox-img-wrapper {
  position: relative;
  max-width: 88vw;
  max-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.product-lightbox-img {
  max-width: 88vw;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  transition: opacity 0.25s ease, transform 0.3s ease;
  cursor: zoom-in;
}

.product-lightbox-img.zoomed {
  cursor: zoom-out;
  transform: scale(1.8);
}

.product-lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 4005;
}

.product-lightbox-loader.active {
  display: block;
}

.lightbox-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: lightboxSpin 0.8s linear infinite;
}

@keyframes lightboxSpin {
  to { transform: rotate(360deg); }
}

/* Rodapé com Miniaturas no Lightbox */
.product-lightbox-footer {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4010;
  padding-top: 0.25rem;
}

.product-lightbox-thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 4px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.product-lightbox-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.product-lightbox-thumb:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.product-lightbox-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(21, 101, 192, 0.6);
  transform: scale(1.06);
}

.product-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
}

/* Ajustes Responsivos para Telas Pequenas */
@media (max-width: 768px) {
  .product-lightbox-overlay {
    padding: 1rem 0.75rem;
  }

  .product-lightbox-title {
    max-width: 180px;
    font-size: 0.95rem;
  }

  .product-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .product-lightbox-nav.prev {
    left: 4px;
  }

  .product-lightbox-nav.next {
    right: 4px;
  }

  .product-lightbox-img-wrapper {
    max-width: 96vw;
    max-height: 68vh;
  }

  .product-lightbox-img {
    max-width: 96vw;
    max-height: 68vh;
  }

  .product-lightbox-thumb {
    width: 50px;
    height: 50px;
  }
}

/* -------------------------------------------------------------
   16. PÁGINA SOBRE NÓS (sobre.html)
   ------------------------------------------------------------- */

/* --- HERO SOBRE --- */
.about-hero {
  position: relative;
  background-color: var(--color-dark-deep);
  color: var(--color-white);
  padding: 10rem 0 6rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.about-shape-orange {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.18) 0%, rgba(21, 101, 192, 0) 70%);
  border-radius: var(--radius-full);
  filter: blur(100px);
  animation: floatShape 12s infinite alternate ease-in-out;
}

.about-shape-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  opacity: 0.8;
}

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

.about-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --- HISTÓRIA --- */
.about-story-section {
  background-color: var(--color-white);
  padding: 6rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-accent-box {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.15) 0%, rgba(21, 101, 192, 0.03) 100%);
  border: 2px solid rgba(21, 101, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseScale 10s infinite alternate ease-in-out;
  position: relative;
}

.story-accent-box::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 101, 192, 0.08);
}

.story-accent-inner {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  background-color: var(--color-dark);
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .story-accent-box {
    width: 180px;
    height: 180px;
  }

  .story-accent-inner {
    width: 110px;
    height: 110px;
  }

  .story-accent-inner .logo-highlight {
    font-size: 2.5rem !important;
  }
}

.about-story-content .section-title {
  margin-bottom: 1.5rem;
}

.about-story-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-story-text:last-child {
  margin-bottom: 0;
}

/* --- CONTADORES ANIMADOS --- */
.about-counters-section {
  background-color: var(--color-dark-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-counters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(21, 101, 192, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
}

.counter-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.counter-item:last-child::after {
  display: none;
}

@media (max-width: 992px) {
  .counter-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .counter-item::after {
    display: none;
  }
}

.counter-number {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  display: inline;
  line-height: 1;
}

.counter-suffix {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.7;
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* --- MISSÃO / VISÃO / VALORES --- */
.about-mvv-section {
  background-color: var(--color-light);
  padding: 6rem 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

.mvv-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.15);
}

.mvv-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}

.mvv-icon-wrapper.mvv-icon-cyan {
  background-color: rgba(0, 163, 224, 0.1);
  color: var(--color-cyan);
}

.mvv-icon-wrapper.mvv-icon-magenta {
  background-color: rgba(228, 0, 127, 0.1);
  color: var(--color-magenta);
}

.mvv-card:hover .mvv-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05) rotate(5deg);
}

.mvv-card:hover .mvv-icon-wrapper.mvv-icon-cyan {
  background-color: var(--color-cyan);
}

.mvv-card:hover .mvv-icon-wrapper.mvv-icon-magenta {
  background-color: var(--color-magenta);
}

.mvv-icon-wrapper i {
  width: 30px;
  height: 30px;
}

.mvv-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.mvv-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.mvv-values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.mvv-value-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-fast);
}

.mvv-value-tag i {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.mvv-card:hover .mvv-value-tag {
  background-color: var(--color-primary-light);
  border-color: rgba(21, 101, 192, 0.2);
}

/* --- EQUIPA --- */
.about-team-section {
  background-color: var(--color-dark-deep);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-team-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-full);
  filter: blur(100px);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(21, 101, 192, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
  transition: var(--transition-normal);
}

.team-avatar-orange {
  background: linear-gradient(135deg, #1565C0, #64B5F6);
}

.team-avatar-cyan {
  background: linear-gradient(135deg, #00A3E0, #4FCDFF);
}

.team-avatar-magenta {
  background: linear-gradient(135deg, #E4007F, #FF6EC7);
}

.team-avatar-yellow {
  background: linear-gradient(135deg, #F9A825, #FBC02D);
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* --- LINHA DO TEMPO --- */
.about-timeline-section {
  background-color: var(--color-light);
  padding: 6rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(21, 101, 192, 0.15) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  border: 3px solid var(--color-light);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.15);
  z-index: 2;
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(21, 101, 192, 0.25);
}

.timeline-content {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.1);
  transform: translateY(-3px);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-dot {
    left: -28px;
    width: 14px;
    height: 14px;
  }

  .timeline-content {
    padding: 1.5rem;
  }
}

/* --- CTA SOBRE --- */
.about-cta-section {
  background: linear-gradient(135deg, var(--color-dark-deep) 0%, var(--color-dark) 50%, var(--color-dark-deep) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------
   REVELAÇÃO DE CONTEÚDO (Scroll Reveal)
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* -------------------------------------------------------------
   BOTÃO FLUTUANTE DO WHATSAPP
   ------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--color-white) !important;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd59;
  transform: scale(1.05) translateY(-3px);
}

.whatsapp-float i {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------------------
   RODAPÉ (Footer)
   ------------------------------------------------------------- */
footer.main-footer {
  background-color: var(--color-dark-deep);
  color: var(--color-white);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-col.brand-col {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 340px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

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

.brand-col .logo {
  text-decoration: none;
  line-height: 0;
}

.brand-col .logo-img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.footer-slogan {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-socials a i,
.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li i {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------------------
   RESPONSIVIDADE DOS GRIDS E CARDS DE PRODUTO
   ------------------------------------------------------------- */
@media (min-width: 993px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 320px) {
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- Layout de E-Commerce estilo AliExpress para Cards no Mobile (<= 768px) --- */
@media (max-width: 768px) {
  /* Grelha compacta de 2 colunas para Serviços */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    row-gap: 12px !important;
  }

  .service-card {
    padding: 0.85rem 0.75rem !important;
    border-radius: var(--radius-sm, 8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    background-color: var(--color-white) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .service-card:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .service-card:hover .service-icon-wrapper {
    transform: none !important;
  }

  .service-icon-wrapper {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    margin-bottom: 0.6rem !important;
    flex-shrink: 0 !important;
    background-color: var(--color-primary-light) !important;
    color: var(--color-primary) !important;
  }

  .service-icon-wrapper i {
    width: 18px !important;
    height: 18px !important;
  }

  .service-title {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: var(--color-dark, #0D47A1) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35rem !important;
    min-height: 2.25em !important;
  }

  .service-card .service-desc-short {
    font-size: 0.75rem !important;
    color: #555555 !important;
    line-height: 1.35 !important;
    margin-bottom: 0.6rem !important;
    flex-grow: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: calc(1.35em * 3) !important;
  }

  .btn-service {
    margin-top: auto !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    gap: 0.35rem !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.2rem 0 !important;
  }

  .btn-service i {
    width: 14px !important;
    height: 14px !important;
  }

  /* Grelha compacta de 2 colunas para Diferenciais (features-grid) */
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    row-gap: 12px !important;
  }

  .feature-item {
    padding: 0.85rem 0.65rem !important;
    background-color: var(--color-light, #F5F8FF) !important;
    border-radius: var(--radius-sm, 8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
  }

  .feature-item:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  }

  .feature-item:hover .feature-icon {
    transform: none !important;
  }

  .feature-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: var(--radius-full) !important;
    margin-bottom: 0.5rem !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
  }

  .feature-icon i {
    width: 18px !important;
    height: 18px !important;
  }

  .feature-title {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: var(--color-dark, #0D47A1) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.25rem !important;
    min-height: 2.2em !important;
  }

  .feature-desc {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    color: #555555 !important;
    margin-bottom: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: calc(1.35em * 3) !important;
  }

  /* Depoimentos compactos no Mobile */
  .testimonials-grid {
    gap: 12px !important;
  }

  .testimonial-card {
    padding: 1.15rem 1rem !important;
    border-radius: var(--radius-sm, 8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }

  .testimonial-card:hover {
    transform: none !important;
  }

  .testimonial-header {
    gap: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .avatar {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
  }

  .author-info h4 {
    font-size: 0.9rem !important;
  }

  .author-info p {
    font-size: 0.75rem !important;
  }

  .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.75rem !important;
  }

  .testimonial-rating {
    gap: 0.2rem !important;
  }

  .rating-star {
    width: 14px !important;
    height: 14px !important;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    row-gap: 14px !important;
  }

  .product-card {
    border-radius: var(--radius-sm, 8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    background-color: var(--color-white) !important;
    height: 100% !important;
  }

  .product-card:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }

  /* Imagem quadrada 1:1 ocupando 100% da largura da coluna */
  .product-image-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: contrast(1.02) brightness(1.01) !important;
    opacity: 1 !important;
  }

  /* Tag compacta */
  .product-tag {
    top: 6px !important;
    left: 6px !important;
    padding: 2px 6px !important;
    font-size: 0.6rem !important;
    border-radius: 4px !important;
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
  }

  /* Informações compactas sem espaço vazio */
  .product-info {
    padding: 0.65rem 0.55rem 0.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    gap: 0.2rem !important;
  }

  /* Título com corte de 2 linhas por reticências */
  .product-name {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 2.15em !important;
  }

  /* Descrição concisa com corte de 2 linhas */
  .product-variant {
    font-size: 0.775rem !important;
    color: #334155 !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 2.7em !important;
  }

  /* Rodapé empilhado com preço em destaque e botões ocupando a largura total */
  .product-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    margin-top: auto !important;
    width: 100% !important;
  }

  /* Preço em destaque logo abaixo das informações */
  .product-price {
    order: 1 !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: var(--color-primary) !important;
    line-height: 1.2 !important;
    margin: 0.1rem 0 0.15rem !important;
    text-align: left !important;
  }

  /* Seletor de quantidade compacto */
  .product-qty-controls {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 30px !important;
    border-radius: var(--radius-sm, 6px) !important;
    background-color: var(--color-light, #F8FAFC) !important;
    border: 1px solid var(--color-light-gray) !important;
  }

  .product-qty-btn {
    width: 30px !important;
    height: 28px !important;
    min-height: unset !important;
    font-size: 1.05rem !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-qty-value {
    flex: 1 !important;
    width: auto !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
  }

  /* Botão Adicionar de largura total por baixo */
  .btn-add-cart {
    order: 3 !important;
    width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0.35rem 0.5rem !important;
    font-size: 0.775rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm, 6px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .shop-section .container,
  .services-section .container,
  .features-section .container,
  .testimonials-section .container,
  .portfolio {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Tamanhos mínimos de toque para acessibilidade (min 44px) */
button,
input,
select,
textarea,
.btn,
.qty-btn,
.cart-item-remove {
  min-height: 44px;
}

/* Ajustes finos para que botões internos e pequenos fiquem proporcionais */
.qty-btn {
  min-height: unset !important;
  height: 30px !important;
  width: 30px !important;
}

.cart-item-remove {
  min-height: unset !important;
  height: 32px !important;
  width: 32px !important;
}

.qty-btn i,
.cart-item-remove i {
  min-height: unset !important;
}

/* Transições mais responsivas e fluidas */
.btn,
.service-card,
.product-card,
.testimonial-card,
.portfolio-item,
.filter-btn,
.shop-filter-btn,
.footer-socials a,
.footer-links a {
  transition: all 0.2s ease !important;
}

/* -------------------------------------------------------------
   18. CALCULADORA DE PREÇOS (calculadora.html)
   ------------------------------------------------------------- */
.calc-section {
  background-color: var(--color-light);
  padding: 4rem 0 6rem;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Steps --- */
.calc-step {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.calc-step:last-child {
  margin-bottom: 0;
}

.calc-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.calc-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), #FF8A65);
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.calc-step-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.calc-step-desc {
  font-size: 0.85rem;
  color: #888;
}

/* --- Product Grid Buttons --- */
.calc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .calc-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.calc-product-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius-md);
  background-color: var(--color-light);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  min-height: unset !important;
  text-align: center;
}

.calc-product-btn span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  line-height: 1.3;
}

.calc-product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.calc-product-icon i {
  width: 22px;
  height: 22px;
  min-height: unset !important;
}

.calc-product-btn:hover {
  border-color: rgba(21, 101, 192, 0.2);
  background-color: var(--color-white);
  transform: translateY(-2px);
}

.calc-product-btn.active {
  border-color: var(--color-primary);
  background-color: rgba(21, 101, 192, 0.06);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.15);
}

.calc-product-btn.active .calc-product-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

.calc-product-btn.active span {
  color: var(--color-primary);
  font-weight: 700;
}

/* --- Options Grid --- */
.calc-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.calc-option-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Quantity wrapper */
.calc-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.calc-qty-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--color-light);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  min-width: 120px;
}

.calc-qty-input {
  width: 65px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  background: transparent;
  min-height: unset !important;
}

.calc-qty-input::-webkit-inner-spin-button,
.calc-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-qty-input[type=number] {
  appearance: textfield;
  /* Oculta spinners — padrão W3C */
}

.calc-qty-suffix {
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
}

/* Custom Slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) var(--slider-pct, 50%), var(--color-light-gray) var(--slider-pct, 50%), var(--color-light-gray) 100%);
  outline: none;
  cursor: pointer;
  min-height: unset !important;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.4);
  cursor: pointer;
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: -0.25rem;
}

/* Select */
.calc-select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-dark);
  background-color: var(--color-light);
  transition: var(--transition-normal);
  width: 100%;
  cursor: pointer;
  appearance: auto;
}

.calc-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
  background-color: var(--color-white);
}

/* Sides Toggle */
.calc-sides-toggle {
  display: flex;
  gap: 0.75rem;
}

.calc-side-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-light);
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: var(--transition-normal);
  min-height: unset !important;
}

.calc-side-btn i {
  width: 16px;
  height: 16px;
  min-height: unset !important;
}

.calc-side-btn:hover {
  border-color: rgba(21, 101, 192, 0.2);
  color: var(--color-dark);
}

.calc-side-btn.active {
  border-color: var(--color-primary);
  background-color: rgba(21, 101, 192, 0.06);
  color: var(--color-primary);
}

/* --- Result Panel --- */
.calc-result-panel {
  background: var(--color-dark-deep);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-result-panel .calc-step-number {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.calc-result-panel .calc-step-title {
  color: var(--color-white);
}

.calc-result-panel .calc-step-desc {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .calc-result-panel {
    position: static;
  }
}

.calc-result-updated {
  animation: resultPulse 0.4s ease;
}

@keyframes resultPulse {
  0% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 20px 50px rgba(21, 101, 192, 0.25);
  }

  100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
}

/* Summary */
.calc-result-summary {
  margin: 1.75rem 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.calc-summary-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), #FF8A65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.calc-summary-icon i {
  width: 24px;
  height: 24px;
  min-height: unset !important;
}

.calc-summary-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.calc-summary-specs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Price Breakdown */
.calc-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.calc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.calc-price-value {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.calc-price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.25rem 0;
}

.calc-price-total-row {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.calc-price-total {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.calc-price-unit-row {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.calc-price-unit {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* Delivery */
.calc-delivery {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
}

.calc-delivery-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(46, 204, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ECC71;
  flex-shrink: 0;
}

.calc-delivery-icon i {
  width: 20px;
  height: 20px;
  min-height: unset !important;
}

.calc-delivery-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.calc-delivery-time {
  font-size: 1rem;
  font-weight: 700;
  color: #2ECC71;
}

/* Action Buttons */
.calc-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-btn-order {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  justify-content: center;
  gap: 0.6rem;
}

.calc-btn-order i {
  width: 18px;
  height: 18px;
  min-height: unset !important;
}

.calc-btn-quote {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.calc-btn-quote:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.calc-btn-quote i {
  width: 16px;
  height: 16px;
  min-height: unset !important;
}

.calc-btn-whatsapp {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.calc-btn-whatsapp:hover {
  background: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.calc-btn-whatsapp i {
  width: 16px;
  height: 16px;
  min-height: unset !important;
}

/* --- CAPACIDADES & ACABAMENTOS DO PORTFÓLIO (sobre.html) --- */
.portfolio-specs-section {
  background-color: var(--color-white);
  padding: 6rem 0;
  border-top: 1px solid var(--color-light-gray);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spec-card:hover {
  transform: translateY(-6px);
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.2);
}

.spec-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spec-card-icon i {
  width: 26px;
  height: 26px;
}

.spec-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.spec-card-desc {
  font-size: 0.925rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background-color: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-light-gray);
}

.spec-card:hover .spec-tag {
  background-color: var(--color-primary-light);
  border-color: rgba(21, 101, 192, 0.15);
  color: var(--color-primary);
}

.portfolio-highlight-quote {
  background: linear-gradient(135deg, var(--color-dark-deep) 0%, #0d47a1 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.quote-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.quote-icon-box i {
  width: 32px;
  height: 32px;
}

.quote-text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}

.quote-text-content span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64B5F6;
}

/* -------------------------------------------------------------
   ANIMAÇÃO DO ÍCONE SPINNER (Lucide)
   ------------------------------------------------------------- */
.lucide-spinner {
  animation: lucide-spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes lucide-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}