@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Accent Color (Plema Orange) */
  --color-primary: #E87A1E;
  --color-primary-hover: #D0650C;
  --color-primary-light: rgba(232, 122, 30, 0.1);
  --color-primary-glow: rgba(232, 122, 30, 0.35);

  /* Common Colors */
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* --- LIGHT THEME VARIABLES --- */
body.light-theme {
  --color-bg-main: #f8fafc;
  --color-bg-surface: #ffffff;
  --color-bg-surface-alt: #f1f5f9;
  --color-bg-surface-glass: rgba(255, 255, 255, 0.8);
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #64748b;
  --color-border: #e2e8f0;
  --color-border-glow: rgba(232, 122, 30, 0.15);
  --color-hero-bg: radial-gradient(circle at 70% 30%, #fff7ed 0%, #f8fafc 80%);
  --color-glow: rgba(232, 122, 30, 0.06);
  --shadow-card-hover: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* --- DARK THEME VARIABLES --- */
body.dark-theme {
  --color-bg-main: #060913;
  --color-bg-surface: rgba(17, 24, 39, 0.45);
  --color-bg-surface-alt: rgba(31, 41, 55, 0.55);
  --color-bg-surface-glass: rgba(10, 15, 30, 0.6);
  --color-text-main: #f8fafc;
  --color-text-muted: #cbd5e1;
  --color-text-light: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.22);
  --color-border-glow: rgba(232, 122, 30, 0.55);
  --color-hero-bg: radial-gradient(circle at 70% 30%, #22140a 0%, #060913 80%);
  --color-glow: rgba(232, 122, 30, 0.25);
  --shadow-card-hover: 0 20px 45px rgba(232, 122, 30, 0.18);
}

/* Glassmorphism and glowing borders in Dark Theme - Wide Application */
body.dark-theme .product-card,
body.dark-theme .service-card,
body.dark-theme .testimonial-card,
body.dark-theme .contact-info-card,
body.dark-theme .contact-form,
body.dark-theme .faq-item,
body.dark-theme .cookie-banner,
body.dark-theme .btn,
body.dark-theme .theme-toggle,
body.dark-theme .back-to-top,
body.dark-theme .whatsapp-fab,
body.dark-theme .header,
body.dark-theme .form-input,
body.dark-theme .form-textarea {
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background exceptions for specific containers */
body.dark-theme .product-card,
body.dark-theme .service-card,
body.dark-theme .testimonial-card,
body.dark-theme .contact-info-card,
body.dark-theme .contact-form,
body.dark-theme .faq-item,
body.dark-theme .cookie-banner {
  background-color: rgba(17, 24, 39, 0.45) !important;
}

body.dark-theme .btn-primary {
  background-color: rgba(232, 122, 30, 0.2) !important;
  color: #fff !important;
  border: 1.5px solid rgba(232, 122, 30, 0.6) !important;
}

body.dark-theme .btn-secondary {
  background-color: rgba(31, 41, 55, 0.45) !important;
  color: #fff !important;
}

body.dark-theme .form-input,
body.dark-theme .form-textarea {
  background-color: rgba(6, 9, 19, 0.65) !important;
  color: var(--color-text-main) !important;
}

/* Glowing, scaling and active states */
body.dark-theme .product-card:hover,
body.dark-theme .service-card:hover,
body.dark-theme .testimonial-card:hover,
body.dark-theme .contact-info-card:hover,
body.dark-theme .theme-toggle:hover,
body.dark-theme .back-to-top:hover,
body.dark-theme .whatsapp-fab:hover,
body.dark-theme .btn:hover {
  border-color: rgba(232, 122, 30, 0.8) !important;
  box-shadow: 0 0 25px rgba(232, 122, 30, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-4px);
}

body.dark-theme .faq-item.active {
  border-color: rgba(232, 122, 30, 0.8) !important;
  box-shadow: 0 0 20px rgba(232, 122, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

body.dark-theme .faq-item:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15) !important;
}

body.dark-theme .form-input:focus,
body.dark-theme .form-textarea:focus {
  border-color: rgba(232, 122, 30, 0.8) !important;
  box-shadow: 0 0 15px rgba(232, 122, 30, 0.35) !important;
  background-color: rgba(6, 9, 19, 0.8) !important;
}



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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================
   REUSABLE UTILITIES & LAYOUT
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px var(--color-primary-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-primary-glow);
}

.btn-secondary {
  background-color: var(--color-bg-surface-alt);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-border);
  transform: translateY(-2px);
}

/* Typography Utilities */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight,
.section-title .accent {
  color: var(--color-primary);
  background: linear-gradient(120deg, var(--color-primary) 0%, #ff9e49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.sticky {
  background-color: var(--color-bg-surface-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header:not(.sticky) {
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 0;
  margin-right: 140px; /* Espaço para a logo ampliada scale(3.5) não bater no menu */
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transform: scale(3.1) translateY(-2px);
  transform-origin: left center;
  transition: transform var(--transition-normal);
}


/* Navigation List */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-main);
}

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

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

/* Controls (Theme Toggle & Menu Toggle) */
.theme-toggle {
  background: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
}

.theme-toggle:hover {
  background-color: var(--color-border);
  color: var(--color-primary);
  transform: rotate(15deg);
}

body.light-theme .sun-icon {
  display: none;
}

body.light-theme .moon-icon {
  display: block;
}

body.dark-theme .sun-icon {
  display: block;
}

body.dark-theme .moon-icon {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--color-hero-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background var(--transition-normal);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
}

body.dark-theme .hero-bg {
  opacity: 0.22;
  filter: hue-rotate(15deg);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Particles & Glow effects */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  opacity: 0.15;
  animation: floatParticle 8s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 10px;
  height: 10px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 80%;
  top: 15%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 8px;
  height: 8px;
  left: 40%;
  top: 70%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 12px;
  height: 12px;
  left: 70%;
  top: 60%;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  left: 85%;
  top: 80%;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  width: 14px;
  height: 14px;
  left: 20%;
  top: 50%;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  width: 10px;
  height: 10px;
  left: 50%;
  top: 30%;
  animation-delay: 1.5s;
}

.particle:nth-child(8) {
  width: 12px;
  height: 12px;
  left: 30%;
  top: 85%;
  animation-delay: 2.5s;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(232, 122, 30, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--color-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--color-primary);
  background: linear-gradient(120deg, var(--color-primary) 0%, #ff973c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-number::after {
  content: '+';
  color: var(--color-primary);
}

.hero-stat:last-child .hero-stat-number::after {
  content: '%';
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 70px 0;
  background-color: var(--color-bg-surface);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background-color: var(--color-bg-surface-alt);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(9, 13, 22, 0.4) 100%);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px var(--color-primary-light);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-bg-surface-alt);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.about-feature:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about-feature-icon {
  background-color: var(--color-primary-light);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==========================================
   PRODUCTS (3 PILARES)
   ========================================== */
.products {
  padding: 70px 0;
  background-color: var(--color-bg-main);
  position: relative;
}

.products-header {
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  overflow: hidden; /* Corta qualquer conteúdo ou borda especial nos cantos arredondados */
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
}

.product-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: inline-block;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.product-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Product features list */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-feature-item .check {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
}

.product-cta {
  width: 100%;
  margin-top: auto;
}

/* Featured product card (Middle Pilar) */
.product-card.featured {
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-bg-surface) 0%, var(--color-primary-light) 100%);
  box-shadow: var(--shadow-md);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E87A1E, #ffb875, #ff4e00, #E87A1E);
  background-size: 300% 100%;
  animation: borderGlow 6s linear infinite;
  z-index: 2;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================
   SUBPAGE HERO BACKGROUNDS
   ========================================== */
.product-page-hero {
  position: relative;
  overflow: hidden;
}

.product-page-hero .hero-bg-subpage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

body.dark-theme .product-page-hero .hero-bg-subpage {
  opacity: 0.2;
  filter: brightness(0.8);
}

.product-page-hero .hero-bg-subpage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ==========================================
   PRODUCT CARD THUMBNAILS
   ========================================== */
.product-card-thumb {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.05);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 70px 0;
  background-color: var(--color-bg-surface);
}

.services-header {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--transition-normal);
}

.service-card:hover {
  background-color: var(--color-bg-surface);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 70px 0;
  background-color: var(--color-bg-main);
}

.testimonials-header {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text-main);
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 40px 0;
  background-color: var(--color-bg-surface);
}

.cta-box {
  background: linear-gradient(135deg, #111827 0%, #1e150f 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-glow);
}

body.light-theme .cta-box {
  background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
}

.cta-box .section-title {
  color: var(--color-text-main);
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-box .section-description {
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#cta-whatsapp {
  background-color: #25d366;
  color: #fff;
  border: none;
}

#cta-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: 70px 0;
  background-color: var(--color-bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1rem;
}

/* Form Styles */
.contact-form {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

.form-group.full-width {
  grid-column: 1 / span 2;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.form-input {
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-size: 0.9375rem;
  transition: all var(--transition-normal);
  width: 100%;
}

.form-input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg-surface);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.form-submit-btn {
  width: 100%;
}

/* Validation status */
.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--color-danger);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 60px 0 24px;
  border-top: 1px solid #1f2937;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 24px;
  display: inline-block;
}

.footer-brand p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.logo-img-footer {
  height: 60px;
  transform: scale(2.3) translateY(-1px);
  transform-origin: left center;
}

/* Inversão inteligente no Light Mode apenas para o cabeçalho (rodapé é sempre escuro) */
body.light-theme .logo-img,
body.light-mode .logo-img {
  filter: invert(0.9) hue-rotate(180deg) saturate(2.5) contrast(1.2);
}

/* Evita que a logo do rodapé seja invertida no tema claro, já que o rodapé permanece escuro */
body.light-theme .logo-img-footer,
body.light-mode .logo-img-footer {
  filter: none;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: #1f2937;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  transition: all var(--transition-normal);
  border: 1px solid #374151;
}

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

.footer-social-link svg {
  display: block;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 24px;
}

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

.footer-link {
  transition: color var(--transition-fast);
  color: #94a3b8;
}

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

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: #f8fafc;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ==========================================
   WHATSAPP FAB (FLOAT ACTION BUTTON)
   ========================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.whatsapp-fab:hover {
  background-color: #128c7e;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-fab svg {
  display: block;
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: 76px;
  background-color: var(--color-bg-surface);
  color: var(--color-text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  pointer-events: none;
  font-family: var(--font-heading);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .header:not(.sticky) {
    padding: 16px 0;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Navigation Sidebar Mobile */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-surface);
    z-index: 999;
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-link {
    font-size: 1.125rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 16px;
  }

  .nav-cta .btn {
    width: 100%;
  }

  /* Theme Toggle positioning on Mobile */
  .header .container {
    gap: 16px;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-badge {
    right: 0;
    bottom: -10px;
    padding: 16px 20px;
  }

  .hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group.full-width {
    margin-bottom: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat {
    width: 40%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PARTNERS SECTION (LOGO WALL)
   ========================================== */
.partners {
  padding: 60px 0;
  background-color: var(--color-bg-surface);
  overflow: hidden;
}

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

.partners-track-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 48px;
  animation: scrollPartners 25s linear infinite;
  width: max-content;
}

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

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 40px;
  min-width: 180px;
  height: 80px;
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px var(--color-primary-light);
  transform: translateY(-2px);
}

.partner-logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.partner-logo:hover .partner-logo-text {
  color: var(--color-primary);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
  padding: 70px 0;
  background-color: var(--color-bg-main);
}

.faq-header {
  text-align: center;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item.active {
  border-color: var(--color-primary);
}

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

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--color-text-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-surface);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--color-primary-glow);
}

/* ==========================================
   COOKIE CONSENT BANNER (LGPD)
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  z-index: 10000;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-text svg {
  flex-shrink: 0;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ==========================================
   CONTACT MAP
   ========================================== */
.contact-map {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
}

/* ==========================================
   MOBILE TESTIMONIALS CAROUSEL
   ========================================== */
@media (max-width: 768px) {
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .contact-map iframe {
    height: 220px;
  }

  .partners-track {
    gap: 24px;
  }

  .partner-logo {
    min-width: 140px;
    padding: 16px 28px;
    height: 64px;
  }

  .faq-question {
    font-size: 0.9375rem;
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .back-to-top {
    bottom: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================
   FAQ SEARCH BAR
   ========================================== */
.faq-search-wrapper {
  max-width: 800px;
  margin: 0 auto 32px auto;
}

.faq-search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  color: var(--color-text-light);
  pointer-events: none;
  transition: color var(--transition-normal);
}

#faq-search {
  width: 100%;
  padding: 16px 24px 16px 52px;
  font-size: 1rem;
  font-family: var(--font-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-surface);
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

#faq-search:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(232, 122, 30, 0.15);
}

#faq-search:focus + .faq-search-icon {
  color: var(--color-primary);
}

/* Dynamic search hiding with fade */
.faq-item.faq-item-hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(10px);
}

/* ==========================================
   EXPANDABLE CONTACT WIDGET (FAB)
   ========================================== */
.contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.widget-toggle {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 122, 30, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.widget-toggle:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 122, 30, 0.55);
}

.widget-toggle .widget-icon-close {
  display: none;
}

/* Active open state */
.contact-widget.active .widget-toggle {
  background-color: #374151;
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-widget.active .widget-toggle .widget-icon-open {
  display: none;
}

.contact-widget.active .widget-toggle .widget-icon-close {
  display: block;
}

.widget-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.contact-widget.active .widget-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.widget-item-label {
  background-color: var(--color-bg-surface);
  color: var(--color-text-main);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-widget.active .widget-item-label {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger label slide-in animations */
.contact-widget.active .widget-item:nth-child(1) .widget-item-label { transition-delay: 0.05s; }
.contact-widget.active .widget-item:nth-child(2) .widget-item-label { transition-delay: 0.1s; }
.contact-widget.active .widget-item:nth-child(3) .widget-item-label { transition-delay: 0.15s; }

.widget-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

/* Brand specific icon colors */
.widget-item.whatsapp .widget-item-icon {
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.widget-item.phone .widget-item-icon {
  background-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.widget-item.email .widget-item-icon {
  background-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(232, 122, 30, 0.3);
}

.widget-item:hover .widget-item-icon {
  transform: scale(1.1);
}

.widget-item:hover .widget-item-label {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(232, 122, 30, 0.15);
}

/* Dark mode specific widget rules */
body.dark-theme .widget-item-label {
  background-color: rgba(17, 24, 39, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

body.dark-theme .contact-widget.active .widget-toggle {
  background-color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}