/* ═══════════════════════════════════════════════════════════
   MARKENET — Design System & Styles
   Agência de SEO e Marketing Digital | Guarujá, SP
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Brand Colors */
  --brand-red: #E71D24;
  --brand-red-dark: #c01219;
  --brand-red-light: #ff3a42;
  --brand-red-subtle: rgba(231, 29, 36, 0.08);

  /* Neutrals */
  --color-black: #0a0a0a;
  --color-dark: #111827;
  --color-dark-2: #1f2937;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f8fafc;
  --color-white: #ffffff;

  /* Semantic */
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e5e7eb;

  /* WhatsApp */
  --whatsapp-green: #25D366;

  /* Typography */
  --font-primary: 'Montserrat', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', 'Montserrat', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .18);
  --shadow-red: 0 8px 30px rgba(231, 29, 36, .25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--brand-red);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--brand-red);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ─── Highlight ─── */
.highlight {
  color: var(--brand-red);
  position: relative;
}

/* ─── Section Common ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand-red);
  border-radius: var(--radius-full);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-4);
}

.section-lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--brand-red);
  color: white;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(231, 29, 36, .4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.logo:hover .logo-mark {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 24px rgba(231, 29, 36, .5);
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  transition: color var(--transition-base);
}

.site-header:not(.scrolled) .logo-text {
  color: white;
}

/* Desktop Nav */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-desktop a {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .nav-desktop a {
  color: var(--color-gray-700);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--brand-red);
  background: var(--brand-red-subtle);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand-red);
  color: white;
  border-color: var(--brand-red);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: white;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: white;
  color: var(--brand-red);
  border-color: white;
}

.btn-header {
  padding: 0.55rem 1.3rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header:not(.scrolled) .btn-header {
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(255, 255, 255, .1);
}

.site-header.scrolled .hamburger:hover {
  background: var(--color-gray-100);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header.scrolled .hamburger span {
  background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--brand-red);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile ul {
  padding: var(--space-4) 0;
}

.nav-mobile a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-gray-700);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.nav-mobile a:hover {
  color: var(--brand-red);
  background: var(--brand-red-subtle);
  border-left-color: var(--brand-red);
}

/* ═══════════════════════════════════
   HERO SECTION
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/hero-bg.png') center/cover no-repeat;
  z-index: 0;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(180, 15, 20, 0.4) 50%,
      rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) 0 var(--space-10);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-red-light);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .highlight {
  color: var(--brand-red-light);
  text-shadow: 0 0 30px rgba(231, 29, 36, .5);
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  animation: fadeInUp 0.8s 0.8s ease both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: var(--radius-full);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0;
  }
}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about {
  padding: var(--space-24) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-content .section-tag {
  display: flex;
  margin-bottom: var(--space-4);
}

.about-content h2 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  margin-bottom: var(--space-6);
}

.about-lead {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-gray-700);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 13px;
  height: 13px;
  stroke: white;
  stroke-width: 3;
}

.about-metric {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: white;
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red);
}

.metric-number {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1;
}

.metric-dot {
  font-size: var(--text-2xl);
}

.metric-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  opacity: 0.85;
}

/* About Image */
.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(231, 29, 36, .25);
  border-radius: calc(var(--radius-xl) + 12px);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.image-badge {
  position: absolute;
  bottom: -var(--space-6);
  right: -var(--space-6);
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.3;
  border-left: 4px solid var(--brand-red);
}

.image-badge strong {
  color: var(--brand-red);
  font-size: var(--text-base);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--brand-red);
}

/* ═══════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════ */
.services {
  padding: var(--space-24) 0;
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card.featured {
  background: var(--brand-red);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.service-card.featured::before {
  background: white;
  transform: scaleX(1);
  opacity: 0.3;
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.service-card.featured .service-link {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-link:hover {
  color: white;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-red-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.service-card:hover:not(.featured) .service-icon {
  background: var(--brand-red);
}

.service-card:hover:not(.featured) .service-icon svg {
  stroke: white;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-red);
  transition: stroke var(--transition-base);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, .2);
}

.service-card.featured .service-icon svg {
  stroke: white;
}

.service-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-dark);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-5);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.03em;
  transition: gap var(--transition-base);
  margin-top: auto;
}

.service-link:hover {
  gap: var(--space-3);
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(231, 29, 36, .2) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
}

.cta-text .section-tag.light {
  color: rgba(255, 255, 255, 0.7);
}

.cta-text .section-tag.light::before {
  background: rgba(255, 255, 255, 0.4);
}

.cta-text h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: white;
  margin-bottom: var(--space-5);
}

.cta-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-base);
  max-width: 520px;
  margin-bottom: var(--space-4);
}

.cta-numbers {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.cta-stat {
  text-align: center;
  padding: var(--space-5) var(--space-8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  min-width: 180px;
}

.cta-stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--brand-red-light);
  line-height: 1;
}

.cta-stat span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  display: block;
}

/* ═══════════════════════════════════
   FAQ SECTION
═══════════════════════════════════ */
.faq {
  padding: var(--space-24) 0;
  background: var(--color-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  margin-bottom: var(--space-4);
}

.faq-intro p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item[open] {
  border-color: var(--brand-red);
  box-shadow: 0 4px 20px rgba(231, 29, 36, .08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  gap: var(--space-4);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-gray-50);
}

.faq-item[open] .faq-question {
  color: var(--brand-red);
  background: var(--brand-red-subtle);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.faq-item[open] .faq-icon {
  background: var(--brand-red);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gray-600);
  transition: stroke var(--transition-base);
}

.faq-item[open] .faq-icon svg {
  stroke: white;
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* ═══════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════ */
.contact {
  padding: var(--space-24) 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: white;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.info-card:hover {
  border-color: var(--brand-red);
  box-shadow: 0 4px 16px rgba(231, 29, 36, .08);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-red-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-red);
}

.info-card div:last-child strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  margin-bottom: var(--space-1);
}

.info-card a,
.info-card address {
  font-size: var(--text-sm);
  color: var(--color-dark);
  font-weight: 500;
}

.info-card a:hover {
  color: var(--brand-red);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.form-group label span {
  color: var(--brand-red);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-dark);
  background: var(--color-gray-50);
  transition: all var(--transition-base);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-red);
  background: white;
  box-shadow: 0 0 0 3px rgba(231, 29, 36, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  text-align: center;
  margin-top: -var(--space-2);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: var(--space-16) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-brand .footer-logo {
  margin-bottom: var(--space-5);
}

.site-footer .logo-text {
  color: white;
}

.site-footer .logo-mark {
  box-shadow: none;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
  background: var(--brand-red);
  color: white;
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-nav h3,
.footer-services h3,
.footer-contact h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-5);
}

.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a,
.footer-services a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-nav a::before,
.footer-services a::before {
  content: '›';
  color: var(--brand-red);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: white;
  padding-left: var(--space-2);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--brand-red);
}

.footer-contact a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom nav {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: white;
}

/* ═══════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: all var(--transition-base);
  position: relative;
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .65), 0 0 0 10px rgba(37, 211, 102, .1);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--color-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: calc(var(--space-6) + 70px);
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-red);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animation class — progressive enhancement */
/* Elements are visible by default; JS adds body.js-loaded to enable animations */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal.visible,
.js-loaded .reveal-left.visible,
.js-loaded .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Keep non-js-loaded elements always visible */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .btn-header {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-img {
    height: 320px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-numbers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════ */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .cta-stat {
    min-width: 130px;
  }

  .image-badge {
    right: -10px;
    bottom: -10px;
  }

  .about-image-frame::before {
    display: none;
  }
}

/* ═══════════════════════════════════
   PORTFOLIO SECTION
═══════════════════════════════════ */
.portfolio {
  background: var(--color-bg-alt);
}

/* Portfolio Hero */
.portfolio-hero {
  position: relative;
  background:
    url('../images/hero-bg.png') center/cover no-repeat,
    var(--color-dark);
  min-height: 260px;
  display: flex;
  align-items: center;
}

.portfolio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(150, 10, 15, 0.5) 50%,
      rgba(10, 10, 10, 0.92) 100%);
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
}

.portfolio-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumb-separator {
  color: var(--brand-red);
  font-weight: 700;
  margin-right: var(--space-1);
}

.portfolio-hero-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.portfolio-hero-title .highlight {
  color: var(--brand-red-light);
  text-shadow: 0 0 30px rgba(231, 29, 36, .45);
}

.portfolio-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  max-width: 480px;
  margin: 0 auto;
}

/* Filter Buttons */
.portfolio-filters {
  background: white;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.portfolio-filters-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-600);
  background: transparent;
  border: 2px solid var(--color-gray-200);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  background: var(--brand-red-subtle);
}

.filter-btn.active {
  background: var(--brand-red);
  color: white;
  border-color: var(--brand-red);
  box-shadow: 0 4px 14px rgba(231, 29, 36, .3);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-12) 0;
}

/* Portfolio Card */
.portfolio-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.06);
}

/* Hover Overlay */
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(231, 29, 36, 0.85) 0%,
      rgba(10, 10, 10, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-overlay-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.portfolio-card:hover .portfolio-overlay-icon {
  transform: scale(1);
}

.portfolio-overlay-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-red);
}

/* Card Info Strip */
.portfolio-card-info {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  border-top: 3px solid transparent;
  transition: border-color var(--transition-base);
}

.portfolio-card:hover .portfolio-card-info {
  border-top-color: var(--brand-red);
}

.portfolio-category {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.portfolio-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

/* Portfolio Bottom CTA */
.portfolio-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  padding: var(--space-10) 0;
  margin-top: 0;
}

.portfolio-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.portfolio-cta-text h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.portfolio-cta-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

.portfolio-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: white;
  font-size: var(--text-2xl);
  font-weight: 800;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
  transition: color var(--transition-base);
}

.portfolio-cta-phone:hover {
  color: var(--brand-red-light);
}

.portfolio-cta-phone svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-red-light);
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .portfolio-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-5);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-8) 0;
  }

  .portfolio-filters-inner {
    gap: var(--space-2);
    justify-content: center;
  }

  .filter-btn {
    font-size: var(--text-xs);
    padding: 0.35rem 0.85rem;
  }

  .portfolio-cta-phone {
    font-size: var(--text-xl);
  }
}

/* ─── Print styles ─── */
@media print {

  .whatsapp-float,
  .back-to-top,
  .site-header {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  a {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
   BLOG & ARTICLE STYLES � Markenet
   ----------------------------------------------------------- */

/* -- Blog Hero -- */
.blog-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1b3e 50%, #0a0a1a 100%);
  overflow: hidden;
  padding-top: 80px;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(99,102,241,0.18) 0%, transparent 70%);
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
}
.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.blog-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.blog-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* -- Blog Breadcrumb -- */
.blog-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.blog-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.blog-breadcrumb a:hover { color: #6366f1; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); margin: 0 0.2rem; }

/* -- Blog Section Layout -- */
.blog-section { padding: 4rem 0 5rem; background: #0e0e1e; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) { .blog-layout { grid-template-columns: 1fr; } }

/* -- Blog Grid -- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr; } }

/* -- Blog Card -- */
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border-color: rgba(99,102,241,0.35);
}
.blog-card--featured {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.06);
}
.blog-card-image-link { display: block; overflow: hidden; }
.blog-card-image { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card-category-badge--ia { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.blog-card-category-badge--pro { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex; gap: 0.75rem; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.blog-card-read { background: rgba(99,102,241,0.12); color: #a5b4fc; padding: 0.15rem 0.6rem; border-radius: 999px; }
.blog-card-title { font-size: 1.15rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.75rem; }
.blog-card-title a { color: #fff; text-decoration: none; transition: color .2s; }
.blog-card-title a:hover { color: #6366f1; }
.blog-card-excerpt { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #6366f1; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.blog-card-link:hover { color: #818cf8; gap: 0.8rem; }
.blog-card-link svg { width: 18px; height: 18px; }

/* -- Blog CTA Strip -- */
.blog-cta-strip {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(99,102,241,0.2);
}
.blog-cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.blog-cta-strip-text h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem; }
.blog-cta-strip-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.blog-cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* -- Sidebar -- */
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
}
.sidebar-cta { text-align: center; border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.06); }
.sidebar-cta-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.sidebar-cta h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; line-height: 1.6; }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1rem 0; }
.sidebar-topics h3, .sidebar-contact-mini h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.sidebar-topics ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-topics li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color .2s; display: flex; align-items: center; gap: 0.3rem; }
.sidebar-topics li a:hover { color: #6366f1; }
.sidebar-contact-mini p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.sidebar-contact-mini strong { color: rgba(255,255,255,0.85); }
.sidebar-contact-mini a { color: #6366f1; text-decoration: none; }
.sidebar-contact-mini a:hover { color: #818cf8; }
.btn-full { width: 100%; display: flex; justify-content: center; }

/* -- Article Hero -- */
.article-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1b3e 60%, #0a0a1a 100%);
  overflow: hidden;
  padding-top: 80px;
}
.article-hero--ia { background: linear-gradient(135deg, #0a0a1a 0%, #1a0d3e 60%, #0a0a1a 100%); }
.article-hero--pro { background: linear-gradient(135deg, #0a0a1a 0%, #1a1200 50%, #0a0a1a 100%); }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(99,102,241,0.12) 0%, transparent 65%);
}
.article-hero-inner { position: relative; z-index: 2; padding: 4rem 0 3rem; }
.article-category-tag {
  display: inline-block; background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35); color: #a5b4fc;
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1.25rem;
}
.article-category-tag--ia { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.35); color: #c4b5fd; }
.article-category-tag--pro { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: #fcd34d; }
.article-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 1.25rem;
}
.article-hero-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.article-hero-meta strong { color: rgba(255,255,255,0.7); }

/* -- Article Layout -- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } }
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1025px) { .article-sidebar { position: sticky; top: 100px; } }

/* -- Article Body -- */
.article-featured-image { border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; }
.article-featured-image img { width: 100%; height: auto; display: block; }
.article-content { line-height: 1.85; color: rgba(255,255,255,0.8); }
.article-lead {
  font-size: 1.18rem; line-height: 1.75;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid #6366f1;
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.article-content h2 {
  font-size: 1.65rem; font-weight: 800; color: #fff;
  margin: 2.5rem 0 1rem; line-height: 1.3;
}
.article-content h3 { font-size: 1.2rem; font-weight: 700; color: #e2e8f0; margin: 1.75rem 0 0.75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol {
  margin: 0 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.article-content li { color: rgba(255,255,255,0.75); }
.article-content strong { color: #fff; }
.article-content em { color: #a5b4fc; }

/* -- Article Table -- */
.article-table-wrapper { overflow-x: auto; margin: 1.5rem 0; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.article-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.article-table th { background: rgba(99,102,241,0.2); color: #fff; padding: 0.85rem 1rem; text-align: left; font-weight: 700; white-space: nowrap; }
.article-table td { padding: 0.85rem 1rem; color: rgba(255,255,255,0.75); border-top: 1px solid rgba(255,255,255,0.06); }
.article-table tr:hover td { background: rgba(255,255,255,0.03); }

/* -- Article CTA Banner -- */
.article-cta-banner {
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.1) 100%);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.article-cta-banner--alt {
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(5,150,105,0.06) 100%);
  border-color: rgba(16,185,129,0.25);
}
.article-cta-banner-content { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.article-cta-banner-text strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.article-cta-banner-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.article-cta-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* -- Article FAQ -- */
.article-faq { margin: 3rem 0 2rem; }
.article-faq > h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.article-faq > p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

/* -- Article Final CTA -- */
.article-final-cta {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0 2rem;
  text-align: center;
}
.article-final-cta h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.article-final-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.65; }
.article-final-cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* -- Article Nav -- */
.article-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1rem;
}
.article-nav-back, .article-nav-next {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #6366f1; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: color .2s, gap .2s;
}
.article-nav-back:hover { color: #818cf8; }
.article-nav-next { margin-left: auto; }
.article-nav-next:hover { color: #818cf8; gap: 0.75rem; }
.article-nav svg { width: 18px; height: 18px; }

/* -- nav-active -- */
nav .nav-active { color: #6366f1 !important; }

/* ------- Responsive ------- */
@media (max-width: 768px) {
  .blog-cta-strip-inner { flex-direction: column; text-align: center; }
  .blog-cta-strip-actions { justify-content: center; }
  .article-cta-banner-content { flex-direction: column; }
  .article-cta-banner-actions { width: 100%; }
  .article-final-cta-actions { flex-direction: column; }
  .article-final-cta-actions .btn { width: 100%; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* -- Article page body backgrounds (fix inheritance from main body styles) -- */
.article-layout.container,
.article-body,
.article-content,
.article-sidebar { background: transparent; }

body { background-color: #0e0e1e; }

.article-layout { background: #0e0e1e; }

/* -- Article FAQ question text color fix -- */
.article-faq .faq-question { color: #e2e8f0 !important; }
.article-faq .faq-question:hover { color: #fff !important; }


/* ==========================================================================
   DROPDOWN / SUBMENU (Servi�os) 
   ========================================================================== */

/* -- Desktop Nav Dropdown -- */
.nav-desktop .has-dropdown {
  position: relative;
}

.nav-desktop .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop .has-dropdown .dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* Hover State - Rotaciona a Seta */
.nav-desktop .has-dropdown:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

.nav-desktop .has-dropdown:hover > a {
  color: var(--accent);
}

/* Corpo do Submenu Desktop */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  list-style: none; /* remove marcadores padr�o */
  margin: 0;
}

/* Revelando  o Submenu ao Hover (Ponte de Hover) */
.nav-desktop .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px); /* 10px cria uma margem sutil e segura */
}

/* Itens Internos Desktop */
.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background-color: rgba(5, 230, 224, 0.05);
  color: var(--accent);
}

/* ==========================================================================
   MOBILE DROPDOWN (Accordion Effect)
   ========================================================================== */

.nav-mobile .mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}

.nav-mobile .mobile-has-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-mobile .mobile-has-dropdown > a .dropdown-icon,
.nav-mobile .mobile-has-dropdown > a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* State de Expandido (Adicionado via JS depois ou hover pra simular) */
.nav-mobile .mobile-has-dropdown.active > a svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-mobile .mobile-has-dropdown.active > a {
    color: var(--accent);
}

.mobile-nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(0,0,0,0.1); /* leve destaque de profundidade */
  border-left: 2px solid var(--border);
  margin-left: 10px; /* Alinhar pra dentro */
}

/* Adicionando Classe Active no Dropdown */
.mobile-nav-dropdown.expanded {
  max-height: 500px; /* expansivo o suficiente para o seu conte�do */
}

.mobile-nav-dropdown li a {
  padding: 12px 20px;
  font-size: 1rem;
  color: var(--slate-300);
  display: block;
}

.mobile-nav-dropdown li a:hover,
.mobile-nav-dropdown li a[aria-current="page"] {
  color: var(--accent);
}


/* ==========================================================================
   DROPDOWN / SUBMENU (Serviços) 
   ========================================================================== */

/* -- Desktop Nav Dropdown -- */
.nav-desktop .has-dropdown {
  position: relative;
}

.nav-desktop .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop .has-dropdown .dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* Hover State - Rotaciona a Seta */
.nav-desktop .has-dropdown:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

.nav-desktop .has-dropdown:hover > a {
  color: #E71D24;
}

/* Corpo do Submenu Desktop */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: #0f172a; /* Deep Navy para contraste */
  border: 1px solid rgba(231, 29, 36, 0.4);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  list-style: none; 
  margin: 0;
  display: flex !important;
  flex-direction: column !important; /* Garantia de verticalidade */
}

/* Revelando o Submenu ao Hover */
.nav-desktop .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

/* Itens Internos Desktop */
.nav-dropdown li {
  margin: 0;
  width: 100%;
}

.nav-dropdown a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #ffffff !important; /* Contraste máximo */
  transition: all 0.2s !important;
  text-decoration: none !important;
  border-left: 4px solid transparent !important;
  text-align: left !important;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background-color: rgba(231, 29, 36, 0.15) !important;
  color: #ffffff !important;
  border-left-color: #E71D24 !important;
  padding-left: 30px !important;
}

/* ==========================================================================
   MOBILE DROPDOWN (Accordion Effect)
   ========================================================================== */

.nav-mobile .mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}

.nav-mobile .mobile-has-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-mobile .mobile-has-dropdown > a .dropdown-icon,
.nav-mobile .mobile-has-dropdown > a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* State de Expandido */
.nav-mobile .mobile-has-dropdown.active > a svg {
  transform: rotate(180deg);
  color: #E71D24;
}
.nav-mobile .mobile-has-dropdown.active > a {
    color: #E71D24;
}

.mobile-nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(255,255,255,0.05); 
  border-left: 3px solid #E71D24;
  margin-left: 15px;
}

.mobile-nav-dropdown.expanded {
  max-height: 1000px;
  padding: 10px 0;
}

.mobile-nav-dropdown li a {
  padding: 12px 20px;
  font-size: 1rem;
  color: #ffffff;
  display: block;
  font-weight: 600;
}

.mobile-nav-dropdown li a:hover {
  background-color: rgba(231, 29, 36, 0.1);
}



/* ==========================================================================
   SERVICE PAGES - HIGH CONTRAST & VISUAL ENHANCEMENT
   ========================================================================== */
.service-page-content h1 { color: #ffffff !important; text-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.service-page-content h2 { color: #ffffff !important; }
.service-page-content h3 { color: #f8fafc !important; }
.service-page-content p { color: #cbd5e1 !important; line-height: 1.8; }
.service-page-content .highlight { color: #E71D24 !important; font-weight: 800; }
.service-page-content .section-subtitle { color: #E71D24 !important; }

/* Enhanced Card Contrast */
.service-page-content .feature-card {
    background: #111827 !important; /* Slightly lighter than pure black for depth */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.service-page-content .feature-card h3 { color: #ffffff !important; }
.service-page-content .feature-card p { color: #94a3b8 !important; }

/* Timeline Step Contrast */
.service-page-content .process-step h4 { color: #ffffff !important; }
.service-page-content .process-step p { color: #94a3b8 !important; }
.service-page-content .step-num { color: rgba(231, 29, 36, 0.1) !important; } /* High contrast red ghost numbers */

/* FAQ Contrast */
.service-page-content .faq-question { color: #ffffff !important; }
.service-page-content .faq-answer p { color: #cbd5e1 !important; }
.service-page-content .faq-item { border-color: rgba(255,255,255,0.15) !important; }

/* ══════════════════════════════════════
   LGPD BANNER
   ══════════════════════════════════════ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  visibility:hidden;
  opacity: 0;
  pointer-events: none;
}

.lgpd-banner.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lgpd-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.lgpd-text {
  flex: 1;
}

.lgpd-text p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-gray-300);
}

.lgpd-text a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}

.lgpd-text a:hover {
  color: var(--brand-red);
}

.lgpd-actions {
  display: flex;
  gap: 1rem;
}

.lgpd-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lgpd-btn-accept {
  background: var(--brand-red);
  color: var(--color-white);
  border: none;
}

.lgpd-btn-accept:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lgpd-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .lgpd-actions {
    width: 100%;
    justify-content: center;
  }
}
