/* DESIGN TOKENS */
:root {
  --color-bg: #EDEDED;
  --color-box-light: #EDEDED;
  --color-box-accent: #213070;
  --color-text-main: #202020;
  --color-text-muted: #667586;
  --color-primary: #213070;
  --color-secondary: #2E5E83;
  --color-white: #EDEDED;
  --color-bg-glass: rgba(237, 237, 237, 0.8);
  --color-surface: #E8E8E8;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  
  /* Global Layout Tokens */
  --container-max-width: 1320px;
  --container-padding: 32px;
  --section-spacing: 40px;
  --header-content-gap: 16px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Curva mais luxuosa */
  --font-logo: 'Ramabhadra', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Ramabhadra', sans-serif;
  --shadow-hover: 0 30px 60px rgba(32, 32, 32, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(33, 48, 112, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

/* SPACING UTILITIES */
.section-spacing {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

.section-compact {
  padding-top: calc(var(--section-spacing) * 0.75);
  padding-bottom: calc(var(--section-spacing) * 0.75);
}

.section-spacious {
  padding-top: calc(var(--section-spacing) * 1.2);
  padding-bottom: calc(var(--section-spacing) * 1.2);
}

.standard-container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

/* GLOBAL GRIDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  width: 100%;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

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

/* AMBIENT GLOWS - REMOVED FOR MINIMALIST VIBE */
.bg-glow {
  display: none;
}

/* NAVBAR & GLASSMORPHISM */
.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  margin: 16px auto 0;
  max-width: 90%;
  border-radius: 100px;
  position: sticky;
  top: 16px;
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, padding 0.4s ease;
}

.navbar.nav-hidden {
  transform: translateY(-200%);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand {
  display: flex;
  align-items: center;
}

.plt-logo {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-box-accent);
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

/* Hover Underline Efeito */
.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-box-accent);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: var(--color-text-main);
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: var(--color-box-accent);
}

/* Carrinho com contador */
.cart-btn {
  position: relative;
}

.cart-indicator {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-indicator.bump {
  transform: scale(1.4);
}

.action-btn {
  background-color: var(--color-text-main);
  color: var(--color-white);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Shine Sweep effect for buttons */
.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: var(--transition);
  z-index: 1;
}

.shine-effect:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  100% {
    left: 200%;
  }
}

.action-btn:hover,
.btn-primary:hover {
  background-color: var(--color-box-accent);
  box-shadow: 0 10px 20px rgba(108, 122, 104, 0.3);
  transform: translateY(-2px);
}

/* BENTO HERO */
.hero-bento {
  padding-top: calc(var(--section-spacing) * 0.5);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 500px 320px;
  gap: var(--spacing-sm);
}

.bento-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* MAIN TEXT BOX */
.bento-main-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.text-gradient {
  background: linear-gradient(to right, var(--color-box-accent), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--spacing-md);
}

.campaign-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 85%;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-text-main);
  color: var(--color-white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-logo);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-text-main);
  padding: 17px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-logo);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background-color: var(--color-text-main);
  color: var(--color-white);
}

.bento-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MAIN IMAGE BOX (PARALLAX) */
.bento-main-image {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  cursor: pointer;
}

.parallax-img {
  width: 110%;
  /* Extra width for movement */
  height: 110%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
  /* JavaScript will handle parallax */
}

.glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: var(--transition);
}

.glass-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-glass);
}

.bento-main-image:hover .glass-btn {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.bento-main-image:hover .glass-overlay {
  opacity: 0.8;
}

/* SMALL BOXES */
.bento-small {
  cursor: pointer;
}

.bento-small-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.bento-small-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.bento-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-small:hover img {
  transform: scale(1.08);
}

.glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.bento-small:hover .glass-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-main);
  transform: translateY(-5px);
}

/* DESTAQUES / HORIZONTAL CAROUSEL */
.carousel-section {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px; /* ~24-32px de respiro antes dos cards */
}

.header-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.header-text p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 300;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.glass-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-main);
}

.glass-icon-btn:hover {
  background: var(--color-text-main);
  color: white;
  transform: scale(1.05);
}

/* Scrolling Container */
.carousel-container {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 30px 16px 20px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.carousel-container::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

/* Card base - sem largura fixa, se adapta ao contexto (grid ou carrossel) */
.product-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Variante exclusiva para carrossel horizontal */
.carousel-container .product-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-image {
  background-color: var(--color-box-light);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/4.5;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-sm);
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  color: var(--color-text-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.quick-add {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--color-box-accent);
  color: #fff;
  border-color: var(--color-box-accent);
  transform: scale(1.1) rotate(90deg);
  /* cute interaction */
}

/* Animacao de sucesso ao clicar no + */
.quick-add.added-success {
  background: #25D366;
  /* Verde sucesso/whatsapp */
  color: white;
  border-color: #25D366;
  transform: scale(1.2) rotate(360deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-info h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.product-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 300;
}

.pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text-main);
}

.unit {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.volume-discount {
  font-size: 0.8rem;
  color: var(--color-box-accent);
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
  background: rgba(108, 122, 104, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

/* SEASONAL CAMPAIGN BANNER */
.seasonal-campaign {
  padding: var(--section-spacing) var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.campaign-glass-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(41, 92, 122, 0.1) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
  align-items: stretch;
}

.campaign-content {
  padding: 80px;
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.campaign-tag {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.campaign-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.campaign-content p {
  color: var(--color-text-muted);
  font-size: 1.25rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.glass-morphism {
  background: rgba(26, 26, 24, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.campaign-visual {
  flex: 1;
  position: relative;
  background: url('https://images.unsplash.com/photo-1549465220-1a8b9238cd48?auto=format&fit=crop&q=80&w=800') center/cover;
  /* Imagem de presente premium provisoria */
}

/* Espaco visual limpo aguardando animacao do designer */

/* LEGAL / SUPORTE PAGES */
.legal-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* FOOTER */
.glass-footer {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding: 60px var(--container-padding);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-list li a:hover {
    color: var(--color-primary);
}

.footer-about-text {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.footer-bottom {
    text-align: center;
    padding: 30px var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}


/* RESPONSIVIDADE GLOBAL DO LAYOUT */
@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
    --section-spacing: 48px;
    --header-content-gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --section-spacing: 32px;
    --header-content-gap: 16px;
  }
  
  .carousel-container .product-card {
    min-width: 260px;
    max-width: 260px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 300px 300px;
  }

  .bento-main-text {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    padding: 60px;
  }

  .bento-main-image {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .bento-small-1 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .bento-small-2 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .campaign-glass-box {
    flex-direction: column;
  }

  .campaign-visual {
    height: 300px;
  }
}

/* PAGE TRANSITIONS */
#main-content {
  opacity: 0;
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.page-transition-out #main-content {
  animation: pageFadeOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes pageFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.98);
  }
}

/* SERVICES PAGE & PRICING BENTO LAYOUT */
.services-container {
  padding: 16px var(--container-padding) 60px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.pricing-light-box {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  width: 100%;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.pricing-bg-text {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 14vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: -0.05em;
  z-index: 0;
  pointer-events: none;
  line-height: 0.8;
  white-space: nowrap;
}

.pricing-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 10;
  margin-top: 60px;
  align-items: center;
}

.pricing-card {
  flex: 1;
  max-width: 360px;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.light-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: var(--color-text-main);
}

.pricing-card.featured-card {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.95);
  /* Tint with brand color */
  border: 1px solid rgba(41, 92, 122, 0.2);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.badge-basic {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text-muted);
}

.badge-recommended {
  background: var(--color-box-accent);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-bestseller {
  background: #b03a2e;
  color: white;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  color: var(--color-primary);
  background: rgba(41, 92, 122, 0.1);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.8rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 32px;
}

.price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pricing-card .btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
}

.light-btn {
  background: var(--color-text-main);
  color: white;
  border: none;
}

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

.highlight-btn {
  background: var(--color-box-accent);
  color: white;
}

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

.pricing-subtext {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}

.pricing-footer-quote {
  text-align: center;
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

.pricing-footer-quote span {
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .pricing-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .pricing-card.featured-card:not(:hover) {
    transform: scale(1);
  }

  .pricing-bg-text {
    font-size: 20vw;
    top: 20px;
  }

  .pricing-footer-quote {
    font-size: 2rem;
  }
}

/* FILTER BUTTONS */
.blog-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--color-box-accent);
  color: white;
  border-color: var(--color-box-accent);
  box-shadow: 0 10px 20px rgba(51, 78, 172, 0.2);
}

/* BLOG / PROJECTS PAGE */
.footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 60px var(--container-padding);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* ========================= */
/* CARDS DE MODELOS COMPACTOS */
/* ========================= */

.model-image {
  aspect-ratio: 4 / 3 !important;
  margin-bottom: 12px !important;
}

.model-card.glass-card {
  padding: 12px;
}

.model-info {
  margin-bottom: 12px;
}

.model-info h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--color-text-main);
}

.model-info .product-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.model-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.model-actions a {
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.model-actions .btn-secondary {
  border: 1px solid rgba(8, 31, 92, 0.2);
}

/* ========================= */
/* SECAO DE SEGMENTOS        */
/* ========================= */

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .segmentos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .segmentos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.segmento-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: default;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.segmento-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 12px 30px rgba(8, 31, 92, 0.08);
}

.segmento-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(51, 78, 172, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-box-accent);
  transition: var(--transition);
}

.segmento-icon svg {
  width: 28px;
  height: 28px;
}

.segmento-card:hover .segmento-icon {
  background: var(--color-box-accent);
  color: white;
}

.segmento-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-main);
}

.blog-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 60px;
  padding-top: 48px;
}

.blog-header {
  text-align: center;
  margin-bottom: 24px;
}

.blog-badge {
  display: inline-block;
  background: var(--color-box-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.blog-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.blog-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-box-accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
  line-height: 1.3;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ANIMATED BACKGROUND GLOW (PARALLAX) */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.glow-1 {
  background: radial-gradient(circle, rgba(235, 185, 255, 0.6) 0%, rgba(220, 150, 255, 0) 70%);
}

.glow-2 {
  background: radial-gradient(circle, rgba(160, 180, 255, 0.6) 0%, rgba(130, 160, 255, 0) 70%);
  opacity: 0.5;
}

/* MODAL AREA DO CLIENTE */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 24, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-glass-card {
  transform: translateY(0) scale(1);
}

.close-modal-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  transition: var(--transition);
}

.close-modal-btn:hover {
  background: var(--color-text-main);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header .plt-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.modal-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  outline: none;
  transition: var(--transition);
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-box-accent);
  box-shadow: 0 0 0 4px rgba(41, 92, 122, 0.1);
}

.input-group input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.modal-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  cursor: pointer;
}

.remember-me input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-box-accent);
  cursor: pointer;
}

.forgot-password {
  color: var(--color-box-accent);
  text-decoration: none;
  font-weight: 600;
}

.modal-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
}

@media (max-width: 768px) {
  .modal-glass-card {
    margin: 20px;
    padding: 32px 24px;
  }
}

/* CARRINHO SIDEBAR */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 24, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: flex-end;
}

.cart-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar-content {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar-overlay.active .cart-sidebar-content {
  transform: translateX(0);
}

.cart-header {
  padding: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.close-cart-btn {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  transition: var(--transition);
}

.close-cart-btn:hover {
  background: var(--color-text-main);
  color: white;
  transform: rotate(90deg);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: var(--transition);
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--color-box-light);
}

.item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.item-details h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.item-details p {
  font-weight: 600;
  color: var(--color-box-accent);
  font-size: 0.95rem;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  border-radius: 20px;
  width: fit-content;
}

.qty-btn {
  background: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  color: var(--color-text-main);
  transition: var(--transition);
}

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

.item-quantity span {
  font-size: 0.9rem;
  font-weight: 600;
  width: 16px;
  text-align: center;
}

.remove-item-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
  width: 20px;
  height: 20px;
}

.remove-item-btn:hover {
  color: #d32f2f;
}

.cart-footer {
  padding: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-main);
}

.cart-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

@media (max-width: 480px) {
  .cart-sidebar-content {
    max-width: 100%;
  }
}

/* SEARCH OVERLAY MODAL */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 80px 24px;
  transform: translateY(-40px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.close-search-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.close-search-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.search-box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 16px;
  margin-bottom: 40px;
  transition: var(--transition);
}

.search-box:focus-within {
  border-bottom-color: var(--color-primary);
}

.search-box svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 20px;
}

.search-box:focus-within svg {
  color: var(--color-primary);
}

#search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  outline: none;
}

#search-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.search-suggestions h3,
.search-results-preview h3 {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.suggestion-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.suggestion-tags .tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #search-input {
    font-size: 1.5rem;
  }

  .search-container {
    padding-top: 60px;
  }
}

/* PRODUCT SINGLE PAGE */
.single-product-section {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px var(--container-padding) 100px;
}

.back-link {
  display: inline-block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 32px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--color-text-main);
  transform: translateX(-5px);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.main-image-container {
  aspect-ratio: 1/1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-box-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-3d {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.badge-3d svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-main);
}

.thumbnail-list {
  display: flex;
  gap: 16px;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.thumbnail:hover {
  opacity: 1;
}

.thumbnail.active {
  border-color: var(--color-box-accent);
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-brand-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.product-ref {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-big {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.price-unit {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.discount-badge {
  background: rgba(41, 92, 122, 0.1);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 16px;
}

.product-description {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.product-personalization {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.personalization-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.personalization-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.personalization-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  opacity: 0.8;
}

.personalization-item::before {
  content: "-";
  color: var(--color-box-accent);
  font-weight: bold;
}

.product-how-it-works {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(8, 31, 92, 0.05);
}

.how-it-works-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.how-it-works-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 16px;
  background: var(--color-box-accent);
  border-radius: 2px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-box-accent);
  background: rgba(51, 78, 172, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.4;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.option-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.color-options {
  display: flex;
  gap: 16px;
}

.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.color-btn.active::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid var(--color-box-accent);
  border-radius: 50%;
}

.color-btn:hover {
  transform: scale(1.1);
}

.glass-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  outline: none;
  backdrop-filter: blur(10px);
}

.glass-input:focus {
  border-color: var(--color-box-accent);
  background: rgba(255, 255, 255, 0.8);
}

.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 4px;
}

.qty-btn-big {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn-big:hover {
  background: rgba(0, 0, 0, 0.05);
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  outline: none;
}

/* Hide arrows in input number */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn-big {
  flex-grow: 1;
  font-size: 1.1rem;
  justify-content: center;
}

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.4);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.home-navbar {
  justify-content: center;
}

.home-navbar .navbar-inner {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  border: 1px solid rgba(32, 32, 32, 0.05);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(33, 48, 112, 0.08);
}

.home-navbar .brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-navbar .brand-wordmark {
  display: block;
  width: 158px;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(33%) saturate(1899%) hue-rotate(205deg) brightness(90%) contrast(95%);
}

.home-navbar .brand-link .plt-logo {
  display: none;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #202020;
}

.home-navbar .nav-links {
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.home-navbar .nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.home-navbar .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.home-navbar .expandable-search {
  width: 44px;
  height: 44px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-navbar .expandable-search.expanded {
  width: 320px;
}

.home-navbar .nav-search-input {
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.home-navbar .navbar-inner .brand,
.home-navbar .navbar-inner .nav-links,
.home-navbar .navbar-inner .nav-actions {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-navbar .navbar-inner.search-active .brand {
  transform: translateX(-6px);
}

.home-navbar .navbar-inner.search-active .nav-links {
  transform: translateX(-4px);
}

.home-navbar .navbar-inner.search-closing .expandable-search,
.home-navbar .navbar-inner.search-closing .nav-search-input,
.home-navbar .navbar-inner.search-closing .brand,
.home-navbar .navbar-inner.search-closing .nav-links,
.home-navbar .navbar-inner.search-closing .nav-actions {
  transition-duration: 0.62s;
}

.home-navbar .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(8, 31, 92, 0.08);
}

.home-navbar .icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
}

.home-navbar .search-btn {
  background: #213070;
  color: #ededed;
  border-color: #213070;
}

.home-navbar .search-btn:hover {
  background: #213070;
  color: #ededed;
  border-color: #213070;
}

.home-navbar .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--color-box-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(33, 48, 112, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-navbar.is-scrolled .navbar-inner {
  background: rgba(237, 237, 237, 0.96);
  box-shadow: 0 18px 44px rgba(8, 31, 92, 0.12);
  transform: translateY(-2px);
}

.feature-item span {
  color: var(--color-primary);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* CAMPAIGN PAGE STYLES */
.campaign-header {
  padding: 100px var(--container-padding) 60px;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.campaign-badge {
  display: inline-block;
  background: var(--color-box-accent);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.campaign-header h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.campaign-header p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.section-title-center h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.section-title-center p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.campaign-products {
  padding: 40px 0 100px;
}

.b2b-form-section {
  padding: 0 var(--container-padding) 100px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.glass-form-wrapper {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  box-shadow: var(--shadow-glass);
}

.form-text-side h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.form-text-side p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.form-contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-box-accent);
  margin-bottom: 4px;
}

.info-block span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.b2b-contact-form {
  display: flex;
  flex-direction: column;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.b2b-contact-form label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
  display: block;
}

.b2b-contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

@media (max-width: 1024px) {
  .glass-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .campaign-header h1 {
    font-size: 3rem;
  }
}

/* LEGAL PAGES */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px var(--container-padding) 120px;
}

.legal-header {
  margin-bottom: 60px;
  text-align: center;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-header p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 48px;
  margin-bottom: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.channel-card {
  padding: 32px;
  text-align: left;
}

/* RESPONSIVE MOBILE MENU (HAMBURGER FULLSCREEN) */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 24, 0.95);
  /* Dark premium glass */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-mobile-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.close-mobile-btn:hover {
  transform: rotate(90deg);
  color: var(--color-primary);
}

.mobile-menu-content {
  width: 100%;
  max-width: 400px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--color-box-accent);
  transform: scale(1.05);
}

.mobile-menu-divider {
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 40px;
}

.mobile-menu-footer {
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .home-navbar .navbar-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .hide-mobile {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Refinamentos extras para mobile generalizados */
  .campaign-title {
    font-size: 3.5rem;
  }

  .navbar {
    padding: 16px 24px !important;
  }

  .home-navbar .brand-wordmark {
    width: 124px;
    max-height: 30px;
  }

  .bento-grid {
    grid-template-rows: auto auto auto auto !important;
  }

  .bento-main-text {
    padding: 40px 24px;
  }

  .bento-main-image {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* PRELOADER STYLES */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.5;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* INTELLIGENT B2B SEARCH OVERLAY UPDATES */
#search-input {
  font-family: var(--font-heading);
  /* Outfit */
}

/* Categorized Results Layout */
.search-results-preview {
  margin-top: 40px;
  animation: pageFadeIn 0.3s forwards;
}

.search-category {
  margin-bottom: 24px;
}

.search-category-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-box-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  /* Inter */
  border: 1px solid transparent;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: var(--color-box-light);
}

.search-result-details h4 {
  color: var(--color-text-main);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.search-result-details p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.close-search-btn {
  /* Enhancing visibility on mobile */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 24px;
  right: 24px;
  z-index: 1000;
}

.close-search-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .close-search-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

/* B2B Premium Mini-Cart Updates */
.production-status-container {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.status-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.status-label {
  color: rgba(255, 255, 255, 0.6);
}

.status-value {
  color: var(--color-box-accent);
  font-weight: 600;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(103, 114, 229, 0.4);
}

.status-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.material-tag {
  display: inline-block;
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.b2b-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 170, 0, 0.1);
  border-left: 3px solid #ffaa00;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
}

.b2b-warning svg {
  width: 24px;
  height: 24px;
  color: #ffaa00;
  flex-shrink: 0;
}

.b2b-warning span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.cart-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Badge Pulse Animation */
@keyframes cartPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    transform: scale(1.4);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.cart-indicator.pulse {
  animation: cartPulse 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: #25D366;
  /* Verde de sucesso instantaneo */
  color: #fff;
}

/* --- PREMIUM LIGHT MODE & REDESIGN COMPONENT OVERRIDES --- */
.glass-effect,
.glass-card,
.campaign-glass-box,
.bento-box,
.glass-footer {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05) !important;
}

.product-image {
  background-color: #F8F9FA !important;
}

.quick-add {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  color: var(--color-text-main) !important;
}

.pricing-light-box,
.light-glass {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: var(--color-text-main) !important;
}

.pricing-bg-text {
  color: rgba(0, 0, 0, 0.03) !important;
}

.pricing-card.featured-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(43, 108, 176, 0.3) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.blog-card {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.cart-sidebar-content {
  background: rgba(255, 255, 255, 0.95) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.cart-item {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* SPOTLIGHT SEARCH */
.spotlight-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.spotlight-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spotlight-container {
  width: 100%;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(31, 38, 135, 0.15);
  transform: scale(0.95);
  transition: all 0.3s ease;
  overflow: hidden;
}

.spotlight-overlay.active .spotlight-container {
  transform: scale(1);
}

.spotlight-box {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spotlight-box input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.25rem;
  color: var(--color-text-main);
  padding: 0 16px;
  font-family: var(--font-body);
}

.spotlight-box input::placeholder {
  color: var(--color-text-muted);
}

.spotlight-esc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: monospace;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.spotlight-esc:hover {
  background: rgba(0, 0, 0, 0.1);
}

.spotlight-results-area {
  padding: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-category-title {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  text-decoration: none;
}

.search-result-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.search-result-details h4 {
  color: var(--color-text-main);
  font-size: 1rem;
  margin-bottom: 4px;
}

.search-result-details p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* CLIENT DRAWER (Slide-Over) */
.client-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.client-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: -20px 0 60px rgba(31, 38, 135, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-drawer-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-main);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.close-drawer-btn:hover {
  background: var(--color-box-accent);
  color: white;
  transform: rotate(90deg);
}

.drawer-body {
  padding: 40px 32px;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.drawer-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.drawer-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.9rem;
}

/* EXPANDABLE SEARCH COMPONENT */
.expandable-search {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 36px;
  height: 36px;
}

.expandable-search.expanded {
  width: 500px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-search-input {
  width: 0;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expandable-search.expanded .nav-search-input {
  width: 100%;
  padding: 0 16px;
  opacity: 1;
}

.expandable-search .search-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  background-color: var(--color-text-main);
  color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}

.expandable-search .search-btn:hover {
  background-color: var(--color-box-accent);
  color: var(--color-white);
  transform: scale(1.05);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 100%;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 16px;
  z-index: 1000;
}

/* PROCESS SECTION */
.process-section {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

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

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

.process-card {
  padding: 24px 20px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-card .process-header-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.process-icon {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-muted);
  opacity: 0.5;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.process-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* FORM ELEMENTS */
.form-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-main);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(8, 31, 92, 0.1);
  padding-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.form-control {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 31, 92, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-main);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--color-box-accent);
  box-shadow: 0 0 0 3px rgba(51, 78, 172, 0.1);
}

.form-control::placeholder {
  color: rgba(8, 31, 92, 0.4);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500 !important;
  color: var(--color-text-main);
}

.file-input {
  padding: 12px;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
}

/* POST SINGLE / PROJECT DETAIL */
.post-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px var(--container-padding) 120px;
}

.post-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.post-video-wrapper video,
.post-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.post-main-content {
  margin-bottom: 80px;
}

.post-main-content h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.post-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 60px;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

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

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.process-section {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 60px;
  margin-top: 80px;
}

.process-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--color-text-main);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  gap: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-box-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.step-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .post-main-content h1 {
    font-size: 2.5rem;
  }
  
  .post-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .process-section {
    padding: 32px 24px;
  }
}

/* TWO PATHS HOVER */
a.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(8, 31, 92, 0.12);
  border-color: rgba(8, 31, 92, 0.15);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: var(--section-spacing) var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

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

.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-text-main);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-box-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* FAQ ACCORDION */
.faq-section {
  padding: var(--section-spacing) var(--container-padding);
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.faq-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-box-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* NEWSLETTER FOOTER */
.newsletter-section {
  padding: 40px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 24px;
}

.newsletter-section h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.newsletter-section p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  transition: border 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--color-box-accent);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--color-box-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--color-text-main);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* SCROLL ANIMATIONS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float .wpp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-text-main);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .wpp-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-float .wpp-tooltip {
    display: none;
  }
}

/* HOME PALETTE OVERRIDES */
body.home-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(46, 94, 131, 0.14) 0%, rgba(46, 94, 131, 0) 34%),
    radial-gradient(circle at 86% 18%, rgba(33, 48, 112, 0.12) 0%, rgba(33, 48, 112, 0) 30%),
    linear-gradient(180deg, #ededed 0%, rgba(237, 237, 237, 0.96) 100%);
}

body.home-page .bg-glow {
  opacity: 0.42;
}

body.home-page .glow-1 {
  background: radial-gradient(circle, rgba(46, 94, 131, 0.28) 0%, rgba(46, 94, 131, 0) 72%);
}

body.home-page .glow-2 {
  background: radial-gradient(circle, rgba(33, 48, 112, 0.24) 0%, rgba(33, 48, 112, 0) 72%);
}

body.home-page .glass-effect,
body.home-page .glass-card,
body.home-page .campaign-glass-box,
body.home-page .bento-box,
body.home-page .glass-footer {
  background: rgba(237, 237, 237, 0.64) !important;
  border-color: rgba(32, 32, 32, 0.08) !important;
  box-shadow: 0 10px 32px rgba(33, 48, 112, 0.08) !important;
}

body.home-page .home-navbar .navbar-inner,
body.home-page .search-dropdown,
body.home-page .mobile-menu-overlay,
body.home-page .product-image,
body.home-page .quick-add,
body.home-page .newsletter-form input {
  background: rgba(237, 237, 237, 0.88) !important;
  border-color: rgba(32, 32, 32, 0.08) !important;
}

body.home-page .home-navbar.is-scrolled .navbar-inner {
  background: rgba(237, 237, 237, 0.96) !important;
  box-shadow: 0 18px 44px rgba(33, 48, 112, 0.12) !important;
}

body.home-page .mobile-menu-overlay {
  background: rgba(32, 32, 32, 0.94) !important;
}

body.home-page .home-navbar .brand-mark {
  background: linear-gradient(145deg, rgba(237, 237, 237, 0.96), rgba(46, 94, 131, 0.12));
}

body.home-page .text-gradient {
  background: linear-gradient(90deg, #213070 0%, #2e5e83 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body.home-page .campaign-subtitle,
body.home-page .section-header p,
body.home-page .process-card p,
body.home-page .testimonial-author span,
body.home-page .footer-about-text,
body.home-page .footer-links-list li a,
body.home-page .newsletter-section p,
body.home-page .faq-header p,
body.home-page .faq-answer p {
  color: rgba(46, 94, 131, 0.92);
}

body.home-page .btn-primary,
body.home-page .action-btn,
body.home-page .newsletter-form button,
body.home-page .whatsapp-float {
  background: #213070;
  color: #ededed;
  border-color: #213070;
  box-shadow: 0 16px 34px rgba(33, 48, 112, 0.2);
}

body.home-page .btn-primary:hover,
body.home-page .action-btn:hover,
body.home-page .newsletter-form button:hover,
body.home-page .whatsapp-float:hover {
  background: #2e5e83;
  color: #ededed;
  box-shadow: 0 20px 38px rgba(46, 94, 131, 0.22);
}

body.home-page .home-navbar .action-btn:hover {
  border-color: #213070;
  box-shadow: 0 14px 36px rgba(33, 48, 112, 0.28);
  transform: translateY(-2px);
}

body.home-page .home-navbar .action-btn,
body.home-page .home-navbar .search-btn,
body.home-page .home-navbar .action-btn:hover,
body.home-page .home-navbar .search-btn:hover,
body.home-page .home-navbar .action-btn:focus-visible,
body.home-page .home-navbar .search-btn:focus-visible,
body.home-page .home-navbar .action-btn:active,
body.home-page .home-navbar .search-btn:active {
  background: #213070;
  border-color: #213070;
  color: #ededed;
}

body.home-page .btn-secondary {
  background: rgba(237, 237, 237, 0.55);
  color: #202020;
  border-color: rgba(32, 32, 32, 0.16);
}

body.home-page .btn-secondary:hover {
  background: #202020;
  color: #ededed;
  border-color: #202020;
}

body.home-page .product-badge,
body.home-page .testimonial-avatar,
body.home-page .search-result-category {
  background: rgba(33, 48, 112, 0.1);
  color: #213070;
}

body.home-page .quick-add {
  color: #202020 !important;
}

body.home-page .quick-add:hover,
body.home-page .quick-add.added-success {
  background: #213070 !important;
  border-color: #213070 !important;
  color: #ededed !important;
}

body.home-page .testimonial-stars {
  color: #2e5e83;
}

body.home-page .footer-bottom,
body.home-page .newsletter-section,
body.home-page .faq-item {
  border-color: rgba(32, 32, 32, 0.08);
}

body.home-page .whatsapp-float .wpp-tooltip {
  background: #202020;
  color: #ededed;
}

body.home-page .search-result-item:hover,
body.home-page a.glass-card:hover {
  border-color: rgba(33, 48, 112, 0.16);
  box-shadow: 0 20px 40px rgba(33, 48, 112, 0.12);
}

/* --- PREMIUM EDITORIAL HOME STYLES --- */

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }

.section-spacious {
  padding-top: calc(var(--section-spacing) * 1.4);
  padding-bottom: calc(var(--section-spacing) * 1.4);
}

.bg-muted { background-color: rgba(0,0,0,0.03); }
.bg-surface { background-color: var(--color-surface); }
.bg-white { background-color: var(--color-white); }
.border-none { border: none !important; }

/* === TAG PILL (used across sections) === */
.tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-box-accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================
   EDITORIAL HERO - PREMIUM FIRST IMPRESSION
   ========================================== */
.hero-editorial {
  padding: 28px 20px 48px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hero-editorial-inner {
  position: relative;
  z-index: 2;
}

.hero-display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--color-text-main);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.hero-accent-word {
  background: linear-gradient(135deg, var(--color-box-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-editorial-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 28px auto;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions-center {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Buttons - Solid Primary + Ghost */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-box-accent);
  color: #fff;
  border: 1px solid var(--color-box-accent);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(33, 48, 112, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hero-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 14px 36px rgba(46, 94, 131, 0.3);
  transform: translateY(-2px);
}

.btn-hero-primary:hover::after {
  opacity: 1;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid rgba(32, 32, 32, 0.18);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-ghost:hover {
  background: var(--color-text-main);
  color: var(--color-white);
  border-color: var(--color-text-main);
  transform: translateY(-2px);
}

/* Staggered Reveal Animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in[data-delay="0"] { animation-delay: 0.1s; }
.animate-in[data-delay="1"] { animation-delay: 0.25s; }
.animate-in[data-delay="2"] { animation-delay: 0.4s; }
.animate-in[data-delay="3"] { animation-delay: 0.55s; }

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

/* ==========================================
   MARQUEE BAND - FIXED INFINITE LOOP
   ========================================== */
.horizontal-band-section {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 8px 0;
  white-space: nowrap;
}

.mission-section.section-spacious {
  padding-top: calc(var(--section-spacing) * 0.9);
  padding-bottom: calc(var(--section-spacing) * 0.7);
}

.marquee-band {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.band-img {
  height: 300px;
  width: auto;
  border-radius: 16px;
  margin-right: 14px;
  display: inline-block;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
  filter: grayscale(20%);
}

.band-img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* ==========================================
   SECTION TITLE - SHARED
   ========================================== */
.section-title-large {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* ==========================================
   ASYMMETRICAL MISSION GRID
   ========================================== */
.asymmetrical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-left {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  position: relative;
}

.grid-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 480px;
}

.grid-top {
  border-radius: 20px;
  height: 50%;
  position: relative;
  overflow: hidden;
}

.grid-bottom {
  border-radius: 20px;
  height: 50%;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.grid-bottom-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-box-accent), var(--color-secondary));
  border-radius: 0 4px 4px 0;
}

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

/* Hover Zoom on images */
.hover-zoom-container {
  overflow: hidden;
}

.hover-zoom-img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-zoom-container:hover .hover-zoom-img {
  transform: scale(1.06);
}

.floating-btn-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-main);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.floating-btn-pill:hover {
  background: var(--color-box-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 48, 112, 0.2);
}

.box-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.box-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================
   TRUST BAR - SOCIAL PROOF
   ========================================== */
.trust-bar-section {
  padding: 6px 0 32px 0;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 36px 48px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(32, 32, 32, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-box-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(32, 32, 32, 0.1);
}

/* ==========================================
   "COMO ATUAMOS" - DARK STRIPE
   ========================================== */
.flex-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.intro-right { flex: 0 0 70%; }

.text-large-intro {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-main);
}

.features-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.feature-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.feature-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ==========================================
   EDITORIAL CTA
   ========================================== */
.editorial-cta-section {
  /* inherits section-spacious padding */
}

.editorial-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: var(--color-surface);
  min-height: 420px;
}

.editorial-cta-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-cta-content .tag-pill {
  align-self: flex-start;
  width: auto;
}

.editorial-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--color-text-main);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.editorial-cta-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 380px;
}

.editorial-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.editorial-cta-visual {
  position: relative;
  overflow: hidden;
}

.editorial-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-cta-card:hover .editorial-cta-img {
  transform: scale(1.04);
}

.editorial-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 48, 112, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ==========================================
   PREMIUM FOOTER
   ========================================== */
.footer-premium {
  background: var(--color-surface);
  border-top: 1px solid rgba(32, 32, 32, 0.06);
  margin-top: 0;
}

.footer-premium-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-about-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
  color: var(--color-box-accent);
}

.footer-contact-col p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-box-accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  background: rgba(33, 48, 112, 0.06);
  border-radius: 50px;
  border: 1px solid rgba(33, 48, 112, 0.1);
}

.footer-whatsapp-link:hover {
  background: var(--color-box-accent);
  color: #fff;
  border-color: var(--color-box-accent);
  transform: translateY(-1px);
}

.footer-whatsapp-link svg {
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(32, 32, 32, 0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-bar p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.footer-bottom-tagline {
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ==========================================
   DARK MODE STRIPE UTILITIES
   ========================================== */
.bg-dark {
  background-color: #202020 !important;
}

.text-white {
  color: #EDEDED !important;
}

.text-muted-dark {
  color: #A0A0A0 !important;
}

.bg-surface-dark {
  background-color: #2E2E2E !important;
  border: 1px solid rgba(255,255,255,0.05);
}

.dark-mode-pill {
  background-color: rgba(255,255,255,0.1) !important;
  color: #EDEDED !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.dark-mode-icon {
  background-color: #3A3A3A !important;
}

.dark-mode-icon svg {
  stroke: #EDEDED !important;
}

/* HOW IT WORKS - VISUAL TUNE TO MATCH REFERENCE */
.how-it-works-section {
  background: linear-gradient(180deg, #1c1d20 0%, #1a1b1e 100%) !important;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.how-it-works-section .standard-container {
  max-width: 1120px;
}

.how-it-works-section .flex-intro {
  max-width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.how-it-works-section .intro-right {
  flex: 1 1 auto;
  width: 100%;
}

.how-it-works-section .text-large-intro {
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: #f0f1f4;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.how-it-works-section .dark-mode-pill {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.86) !important;
  padding: 8px 18px;
  margin-bottom: 14px;
}

.how-it-works-section .features-3-col {
  gap: 14px;
  max-width: 100%;
}

.how-it-works-section .feature-card {
  min-height: 256px;
  border-radius: 22px;
  padding: 26px 22px;
}

.how-it-works-section .bg-surface-dark {
  background-color: #2b2d31 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-it-works-section .feature-step-number {
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.08);
}

.how-it-works-section .dark-mode-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background-color: #373a40 !important;
}

.how-it-works-section .feature-title {
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.how-it-works-section .feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bec2ca !important;
}

/* ==========================================
   RESPONSIVE - HOME SPECIFIC
   ========================================== */
@media (max-width: 1024px) {
  .footer-premium-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .editorial-cta-card {
    grid-template-columns: 1fr;
  }

  .editorial-cta-visual {
    height: 280px;
  }

  .trust-bar {
    gap: 32px;
    padding: 28px 32px;
  }
}

@media (max-width: 768px) {
  .hero-editorial {
    padding: 32px 16px 48px;
  }

  .hero-display-title {
    font-size: clamp(2.6rem, 9vw, 3.8rem);
    margin-bottom: 24px;
  }

  .hero-editorial-sub {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .hero-actions-center {
    gap: 16px;
  }

  .asymmetrical-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-left {
    height: 380px;
    border-radius: 24px;
  }
  .grid-right {
    height: auto;
    gap: 20px;
  }
  .grid-top {
    height: 300px;
    border-radius: 24px;
  }
  .grid-bottom {
    height: auto;
    min-height: 280px;
    padding: 32px 28px;
    border-radius: 24px;
  }

  .box-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .box-text {
    font-size: 0.95rem;
  }

  .flex-intro {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }

  .intro-left {
    width: 100%;
  }

  .intro-right {
    flex: 1;
    width: 100%;
  }

  .text-large-intro {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .features-3-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-3-col .feature-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .feature-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .feature-step-number {
    font-size: 3.5rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
  }

  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .editorial-cta-content {
    padding: 40px 28px;
  }

  .editorial-cta-title {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .editorial-cta-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .trust-bar {
    gap: 28px;
    padding: 32px 24px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    flex-wrap: wrap;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: none;
    width: 100%;
  }

  .trust-number {
    font-size: 2.2rem;
  }

  .trust-label {
    font-size: 0.85rem;
  }

  .footer-premium-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .band-img {
    height: 240px;
    border-radius: 14px;
    margin-right: 16px;
  }

  .horizontal-band-section {
    padding: 16px 0 12px 0;
  }

  .mission-section.section-spacious {
    padding-top: calc(var(--section-spacing) * 0.95);
    padding-bottom: calc(var(--section-spacing) * 0.9);
  }

  .trust-bar-section {
    padding: 8px 0 28px 0;
  }

  .section-title-large {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero-editorial {
    padding: 28px 12px 40px;
  }

  .hero-display-title {
    font-size: 2.3rem;
    margin-bottom: 18px;
  }

  .hero-editorial-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-actions-center {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .features-3-col {
    grid-template-columns: 1fr;
  }

  .features-3-col .feature-card:nth-child(3) {
    grid-column: 1;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
  }

  .trust-item {
    width: 100%;
  }

  .trust-number {
    font-size: 2rem;
  }

  .editorial-cta-content {
    padding: 32px 20px;
  }

  .editorial-cta-title {
    font-size: 1.8rem;
  }

  .editorial-cta-desc {
    font-size: 0.95rem;
  }

  .grid-left {
    height: 320px;
  }

  .grid-top {
    height: 260px;
  }

  .grid-bottom {
    min-height: 240px;
    padding: 24px 20px;
  }

  .box-title {
    font-size: 1.2rem;
  }

  .box-text {
    font-size: 0.9rem;
  }

  .asymmetrical-grid {
    gap: 16px;
  }
}

/* ==========================================
   SITE-WIDE REDESIGN BASED ON HOME (NON-HOME PAGES)
   ========================================== */
body:not(.home-page) {
  background:
    radial-gradient(circle at 12% 14%, rgba(46, 94, 131, 0.12) 0%, rgba(46, 94, 131, 0) 34%),
    radial-gradient(circle at 86% 18%, rgba(33, 48, 112, 0.1) 0%, rgba(33, 48, 112, 0) 30%),
    linear-gradient(180deg, #ededed 0%, rgba(237, 237, 237, 0.97) 100%);
}

body:not(.home-page) .bg-glow {
  opacity: 0.38;
}

body:not(.home-page) .home-navbar {
  justify-content: center;
  max-width: 90%;
  margin: 16px auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.home-page) .search-btn {
  background: #213070;
  color: #ededed;
  border-color: #213070;
}

body:not(.home-page) .search-btn:hover {
  background: #2e5e83;
  border-color: #2e5e83;
  color: #ededed;
}

body:not(.home-page) .action-btn,
body:not(.home-page) .btn-primary {
  background: #213070;
  border-color: #213070;
  color: #ededed;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(33, 48, 112, 0.2);
}

body:not(.home-page) .action-btn:hover,
body:not(.home-page) .btn-primary:hover {
  background: #2e5e83;
  border-color: #2e5e83;
  box-shadow: 0 16px 34px rgba(46, 94, 131, 0.24);
}

body:not(.home-page) .btn-secondary {
  border-radius: 50px;
}

body:not(.home-page) #main-content {
  padding-top: 18px;
}

body:not(.home-page) #main-content section,
body:not(.home-page) .catalog-page,
body:not(.home-page) .legal-container,
body:not(.home-page) .single-product-section,
body:not(.home-page) .blog-container {
  scroll-margin-top: 110px;
}

body:not(.home-page) .glass-card,
body:not(.home-page) .light-glass,
body:not(.home-page) .filters-sidebar,
body:not(.home-page) .value-card,
body:not(.home-page) .material-tag,
body:not(.home-page) .faq-item,
body:not(.home-page) .blog-card,
body:not(.home-page) .process-section,
body:not(.home-page) .search-dropdown,
body:not(.home-page) .pricing-light-box {
  background: rgba(237, 237, 237, 0.7) !important;
  border-color: rgba(32, 32, 32, 0.08) !important;
  box-shadow: 0 12px 32px rgba(33, 48, 112, 0.1) !important;
}

body:not(.home-page) .catalog-header-text,
body:not(.home-page) .legal-header,
body:not(.home-page) .values-header,
body:not(.home-page) .materials-header {
  border-color: rgba(32, 32, 32, 0.08) !important;
}

body:not(.home-page) h1,
body:not(.home-page) h2,
body:not(.home-page) h3 {
  letter-spacing: -0.02em;
}

body:not(.home-page) .footer.glass-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
  background: rgba(237, 237, 237, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body:not(.home-page) .footer-content {
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 40px;
}

body:not(.home-page) .footer-col h4 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body:not(.home-page) .footer-bottom {
  border-top: 1px solid rgba(32, 32, 32, 0.08);
}

@media (max-width: 1024px) {
  body:not(.home-page) .home-navbar {
    max-width: 96%;
  }
}

@media (max-width: 768px) {
  body:not(.home-page) .home-navbar {
    margin-top: 12px;
  }

  body:not(.home-page) #main-content {
    padding-top: 10px;
  }
}

/* ==========================================
   INTERNAL PAGES - DESIGN SYSTEM
   ========================================== */

/* --- PAGE HERO (compact editorial, NOT a copy of home hero) --- */
.page-hero {
  padding: 32px var(--container-padding) 40px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.page-hero .tag-pill {
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-text-main);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.65;
  font-weight: 400;
}

.page-hero.text-center .page-hero-sub {
  margin: 0 auto;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.page-hero.text-center .page-hero-actions {
  justify-content: center;
}

/* --- PAGE SECTION (standard container for internal content) --- */
.page-section {
  padding: 48px var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.page-section-tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page-section-header {
  margin-bottom: 32px;
}

.page-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  margin-bottom: 10px;
  line-height: 1.12;
}

.page-section-header p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 580px;
}

.page-section-header.text-center p {
  margin: 0 auto;
}

/* --- INTERNAL DARK STRIPE (different feel than home) --- */
.internal-dark-stripe {
  background: linear-gradient(180deg, #1c1d20 0%, #1a1b1e 100%);
  padding: 56px 0;
}

.internal-dark-stripe h2,
.internal-dark-stripe h3 {
  color: #f0f1f4;
}

.internal-dark-stripe p {
  color: #bec2ca;
}

.internal-dark-stripe .tag-pill {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.86);
}

/* --- ABOUT PAGE COMPONENTS --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-split.reverse {
  direction: rtl;
}

.about-split.reverse > * {
  direction: ltr;
}

.about-split-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  margin-bottom: 14px;
  line-height: 1.12;
}

.about-split-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Numbers dark bar */
.numbers-dark-bar {
  background: var(--color-text-main);
  color: var(--color-white);
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.numbers-dark-bar .num-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.numbers-dark-bar .num-label {
  font-size: 0.88rem;
  opacity: 0.75;
  font-weight: 400;
}

/* Value cards grid */
.values-grid-internal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.value-card-internal {
  padding: 32px 24px;
  border-radius: 22px;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.value-card-internal:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(33, 48, 112, 0.1);
}

.value-card-internal .vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(33, 48, 112, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-box-accent);
}

.value-card-internal h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.value-card-internal p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Materials tags grid */
.materials-grid-internal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.mat-tag {
  padding: 18px 14px;
  text-align: center;
  border-radius: 16px;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mat-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 48, 112, 0.08);
}

.mat-tag span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* --- SOLUTIONS PAGE COMPONENTS --- */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(33, 48, 112, 0.1);
}

.service-card .sc-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(33, 48, 112, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.service-card .sc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card .sc-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-main);
}

.service-card .sc-content p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.service-card .sc-content .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--color-box-accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.3s ease;
  width: fit-content;
}

.service-card:hover .sc-link {
  gap: 10px;
}

.service-card .sc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(33, 48, 112, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-box-accent);
}

/* --- PROJECTS / PORTFOLIO GRID --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.portfolio-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(33, 48, 112, 0.1);
}

.portfolio-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}

.portfolio-card-img .pc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-box-accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-card-body {
  padding: 22px 24px 26px;
}

.portfolio-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.portfolio-card-body p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- CATALOG REFINEMENTS --- */
.catalog-page-refined {
  padding: 24px var(--container-padding) 48px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  min-height: 70vh;
}

.catalog-page-refined .catalog-header-text {
  grid-column: 1 / 3;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.06);
}

.catalog-page-refined .catalog-header-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.catalog-page-refined .catalog-header-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 580px;
}

.filters-sidebar-refined {
  position: sticky;
  top: 110px;
  height: fit-content;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  border-radius: 22px;
  padding: 28px;
}

.filters-sidebar-refined .filter-group {
  margin-bottom: 28px;
}

.filters-sidebar-refined .filter-group h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.06);
  color: var(--color-text-main);
}

.filters-sidebar-refined .filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.filters-sidebar-refined .filter-label:hover {
  color: var(--color-text-main);
}

.filters-sidebar-refined .filter-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-box-accent);
  cursor: pointer;
}

/* --- CONTACT / FORM PREMIUM --- */
.form-premium-card {
  border-radius: 24px;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.form-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 24px 24px 0 0;
}

.form-premium-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-premium-card .form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.form-premium-card .form-field input,
.form-premium-card .form-field select,
.form-premium-card .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(32, 32, 32, 0.1);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.5);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-premium-card .form-field input:focus,
.form-premium-card .form-field select:focus,
.form-premium-card .form-field textarea:focus {
  border-color: var(--color-box-accent);
  box-shadow: 0 0 0 3px rgba(33, 48, 112, 0.08);
}

.form-premium-card .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-premium-card .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.form-premium-card .form-footer-note {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  max-width: 280px;
}

/* --- INTERNAL CTA SECTION --- */
.internal-cta-section {
  padding: 48px var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.internal-cta-bar {
  background: var(--color-text-main);
  color: var(--color-white);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 32px 64px rgba(33, 48, 112, 0.18);
}

.internal-cta-bar h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.08;
  color: #f0f1f4;
}

.internal-cta-bar p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
  opacity: 0.85;
  color: #bec2ca;
}

.internal-cta-bar .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.internal-cta-bar .btn-cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #ededed;
  color: #202020;
  border: 1px solid #ededed;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.internal-cta-bar .btn-cta-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.internal-cta-bar .btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #ededed;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.internal-cta-bar .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* --- PRICING CARDS REFINED --- */
.pricing-refined-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card-refined {
  padding: 40px 32px;
  border-radius: 22px;
  background: rgba(237, 237, 237, 0.7);
  border: 1px solid rgba(32, 32, 32, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pricing-card-refined:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(33, 48, 112, 0.1);
}

.pricing-card-refined.featured {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(33, 48, 112, 0.2);
  box-shadow: 0 24px 48px rgba(33, 48, 112, 0.16);
  transform: scale(1.03);
}

.pricing-card-refined.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card-refined .pc-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-card-refined .pc-badge.basic { background: rgba(32,32,32,0.06); color: var(--color-text-muted); }
.pricing-card-refined .pc-badge.recommended { background: var(--color-box-accent); color: #fff; }
.pricing-card-refined .pc-badge.scale { background: #b03a2e; color: #fff; }

.pricing-card-refined h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.pricing-card-refined .pc-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-card-refined .pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.pricing-card-refined .pc-features li .ck {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(33, 48, 112, 0.08);
  color: var(--color-box-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-card-refined .pc-price {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card-refined .pc-price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.pricing-card-refined .pc-price-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.pricing-card-refined .pc-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.93rem;
  font-weight: 600;
}

.pricing-card-refined .pc-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(32, 32, 32, 0.06);
  padding-top: 14px;
}

/* --- INTERNAL PAGE RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-split {
    gap: 32px;
  }
  .service-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-refined-wrapper {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-card-refined.featured {
    transform: none;
  }
  .pricing-card-refined.featured:hover {
    transform: translateY(-4px);
  }
  .catalog-page-refined {
    grid-template-columns: 1fr;
  }
  .catalog-page-refined .catalog-header-text {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 20px 16px 28px;
  }
  .page-hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .about-split,
  .about-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .numbers-dark-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 24px;
  }
  .form-premium-card {
    padding: 32px 20px;
  }
  .form-premium-card .form-row {
    grid-template-columns: 1fr;
  }
  .internal-cta-bar {
    padding: 40px 24px;
  }
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero-actions .btn-hero-primary,
  .page-hero-actions .btn-hero-ghost {
    text-align: center;
  }
  .filters-sidebar-refined {
    position: relative;
    top: 0;
  }
}

/* ==========================================
   HERO PARALLAX IMAGE
   ========================================== */
.hero-editorial {
  position: relative;
  overflow: hidden;
}

.hero-parallax-img {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: clamp(500px, 65vw, 900px);
  max-width: none;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  transition: none;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 70%, transparent 100%);
  filter: grayscale(0.15) contrast(1.05);
}

.hero-editorial-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-parallax-img {
    width: 90vw;
    bottom: -30px;
    opacity: 0.25;
  }
}
