/* Sobre #sobre — legado visual (apenas selecionadores Sobre + marcas + roller) */
:root {
  /* ===== CORES PRIMÁRIAS ===== */
  --color-primary: #006E7F;
  --color-primary-dark: #005a68;
  --color-primary-light: #008fa3;
  --color-secondary: #940A37;
  --color-secondary-dark: #7a082d;
  --color-secondary-light: #b30d48;
  
  /* ===== CORES NEUTRAS (Stripe/Hostinger Style) ===== */
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  
  /* ===== CORES SEMÂNTICAS ===== */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  
  /* ===== TIPOGRAFIA ===== */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 3.75rem;     /* 60px */
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  /* ===== ESPAÇAMENTO (8px grid) ===== */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
}

/* (tokens :root fechado — regras de secção abaixo) */
/* ===== BORDER RADIUS / secções ===== */
.section-premium {
  padding: var(--space-24) 0;
  position: relative;
  z-index: 1; /* Z-index padrão para não sobrepor a seção code */
}

.section-premium-light {
  background: var(--color-white);
  z-index: 1; /* Garantir que não sobreponha a seção code */
  position: relative;
}

.section-premium-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 110, 127, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Badge "Sobre Nós" com o mesmo visual do badge "Tire suas dúvidas" */
#sobre.section-premium-light .section-premium-badge {
  background: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

#sobre.section-premium-light .section-premium-badge::after {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transform: rotate(45deg);
  animation: badgeShine 3s linear infinite !important;
  pointer-events: none !important;
}
.section-premium-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-premium-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto var(--space-16);
}

.section-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(0, 110, 127, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-premium-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.section-premium-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-600);
}

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

@keyframes badgeShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-animate {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Hover effects premium */
.card-premium {
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.card-premium:hover::before {
  left: 100%;
}

/* Loading states */
.skeleton {
  background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-lg);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* ==========================================
   SEÇÃO SOBRE NÓS - IMAGEM SEM CAIXA
   ========================================== */

.sobre-nos-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}


.sobre-nos-image {
  display: block;
  width: 100%;
  height: auto;
  /* Sem border-radius nem box-shadow: PNG transparente segue o recorte do ficheiro, sem “caixa” rectangular */
  border-radius: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: none;
}

.home-hero-brands-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* Painel de marcas passou para #sobre: usa a largura da coluna */
#sobre .home-hero-brands-wrapper {
  max-width: 100%;
}

/* Nossas marcas em Sobre nós: visual alinhado à secção clara + logos maiores */
#sobre .hero-brands-glow {
  inset: -22px;
  background: radial-gradient(ellipse at center, rgba(0, 110, 127, 0.2), transparent 68%);
  filter: blur(30px);
  opacity: 0.6;
}

#sobre .hero-brands-panel {
  padding: 2.1rem 1.85rem 1.6rem;
  border-radius: 1.4rem;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 249, 250, 0.94)
  );
  border: 1px solid rgba(0, 110, 127, 0.14);
  box-shadow:
    0 22px 56px rgba(15, 30, 40, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#sobre .hero-brands-label {
  color: rgba(36, 38, 38, 0.5);
  margin: 0 0 1.35rem;
}

#sobre .hero-brands-slide {
  min-height: 300px;
  gap: 1rem;
}

#sobre .hero-brand-logo-wrap {
  min-height: 120px;
}

#sobre .hero-brand-logo-wrap:has(.hero-brand-logo--walking) {
  min-height: 175px;
}

#sobre .hero-brand-logo {
  max-height: 128px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

#sobre .hero-brand-logo.hero-brand-logo--walking {
  max-height: 210px;
}

#sobre .hero-brand-name {
  color: #242626;
}

#sobre .hero-brand-desc {
  color: rgba(36, 38, 38, 0.78);
}

#sobre .hero-brands-controls {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(0, 110, 127, 0.12);
}

#sobre .hero-brands-arrow {
  border: 1px solid rgba(0, 110, 127, 0.28);
  background: #006e7f;
  color: #fff;
}

#sobre .hero-brands-arrow:hover {
  background: #005a68;
  border-color: rgba(0, 110, 127, 0.45);
}

#sobre .hero-brands-dot {
  background: rgba(0, 110, 127, 0.22);
}

#sobre .hero-brands-dot[aria-selected="true"] {
  background: #006e7f;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  #sobre .hero-brands-panel {
    padding: 1.65rem 1.35rem 1.35rem;
  }

  #sobre .hero-brands-slide {
    min-height: 255px;
  }

  #sobre .hero-brand-logo-wrap {
    min-height: 100px;
  }

  #sobre .hero-brand-logo-wrap:has(.hero-brand-logo--walking) {
    min-height: 145px;
  }

  #sobre .hero-brand-logo {
    max-height: 104px;
  }

  #sobre .hero-brand-logo.hero-brand-logo--walking {
    max-height: 168px;
  }
}

.hero-brands-glow {
  position: absolute;
  inset: -16px;
  background: radial-gradient(ellipse at center, rgba(10, 186, 181, 0.35), transparent 72%);
  border-radius: 1.5rem;
  z-index: 0;
  filter: blur(28px);
  opacity: 0.55;
  animation: heroBrandsGlow 3.5s ease-in-out infinite;
}

@keyframes heroBrandsGlow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.03);
  }
}

.hero-brands-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.75rem 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(10, 18, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-brands-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 0 1rem;
}

.hero-brands-slide {
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: 100%;
}

.hero-brand-logo-wrap:has(.hero-brand-logo--walking) {
  min-height: 100px;
}

.hero-brand-logo {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Logo marca-mãe no carrossel: proporção maior que o cabeçalho */
.hero-brand-logo.hero-brand-logo--walking {
  max-height: 132px;
}

.hero-brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.hero-brand-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 26rem;
}

.hero-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #006e7f;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-brand-link:hover {
  background: #005a68;
  transform: translateY(-1px);
}

.hero-brands-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brands-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 110, 127, 0.45);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-brands-arrow:hover {
  background: rgba(0, 110, 127, 0.75);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-brands-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-brands-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-brands-dot[aria-selected="true"] {
  background: #00bab5;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .home-hero-brands-wrapper {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .hero-brands-panel {
    padding: 1.25rem 1rem 1rem;
  }

  .hero-brands-slide {
    min-height: 180px;
  }
}

.sobre-nos-text-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: flex-start;
}

/* Desktop/tablet: texto à esquerda, barra de scroll à direita (mesma linha) */
@media (min-width: 768px) {
  #sobre .sobre-nos-text-content {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }
  #sobre .sobre-nos-scrollbar {
    order: 2;
    flex: 0 0 12px;
    align-self: stretch;
  }
}

.sobre-nos-text-content {
  flex: 1;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

.sobre-nos-text-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Scrollbar customizada - lado direito (relative para o thumb absoluto; sticky na faixa) */
.sobre-nos-scrollbar {
  position: relative;
  flex: 0 0 12px;
  width: 12px;
  min-width: 12px;
  height: 600px;
  max-height: min(600px, 70vh);
  align-self: flex-start;
  top: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    #d4d4d4 8px,
    #d4d4d4 10px
  );
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  background-color: #f5f5f5;
}

.sobre-nos-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Foguete - corpo */
.sobre-nos-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #ff6b35 30%, #f7931e 70%, #ff6b35 100%);
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(255, 107, 53, 0.5);
}

/* Foguete - ponta superior */
.sobre-nos-scrollbar-thumb::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 12px solid #ffffff;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.sobre-nos-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff5722 0%, #e68900 50%, #ff5722 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.sobre-nos-scrollbar-thumb:hover::before {
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.sobre-nos-scrollbar-thumb:active {
  background: linear-gradient(180deg, #e64a19 0%, #d68900 50%, #e64a19 100%);
  transform: scale(1.02);
}

/* Só ecrãs estreitos: barra de scroll abaixo; ≥768px a barra fica à direita do texto */
@media (max-width: 767px) {
  .sobre-nos-text-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .sobre-nos-text-content {
    max-height: 500px;
    padding-right: 0;
    width: 100%;
  }

  .sobre-nos-scrollbar {
    width: 100%;
    height: 12px;
    position: relative;
    order: 2;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      #d4d4d4 8px,
      #d4d4d4 10px
    );
    background-color: #f5f5f5;
  }

  .sobre-nos-scrollbar-thumb {
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  }

  /* Foguete horizontal - corpo */
  .sobre-nos-scrollbar-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 6px;
    background: linear-gradient(90deg, #ffffff 0%, #ff6b35 30%, #f7931e 70%, #ff6b35 100%);
    border-radius: 3px;
    box-shadow: 0 0 4px rgba(255, 107, 53, 0.5);
  }

  /* Foguete horizontal - ponta esquerda */
  .sobre-nos-scrollbar-thumb::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 12px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
  }

  .sobre-nos-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff5722 0%, #e68900 50%, #ff5722 100%);
    transform: scaleY(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  }

  .sobre-nos-scrollbar-thumb:hover::before {
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
  }

  .sobre-nos-scrollbar-thumb:active {
    background: linear-gradient(90deg, #e64a19 0%, #d68900 50%, #e64a19 100%);
    transform: scaleY(1.05);
  }
}

/* Negritos no texto rolável de Sobre nós — gradiente azul marca → vermelho marca */
#sobre .sobre-nos-text-content strong {
  color: #006e7f;
  font-weight: 700;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  #sobre .sobre-nos-text-content strong {
    background: linear-gradient(115deg, #006e7f 0%, #0abab1 38%, #c41b4a 78%, #940a37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* Camada de vidro para cada seção com padrão de diamantes - usando elemento wrapper adicional */
#sobre .diamond-glass-layer,
#noticias .diamond-glass-layer,
#gerenciar-site .diamond-glass-layer,
#compare-plans .diamond-glass-layer,
#codigo-vivo .diamond-glass-layer,
section.home-section-cta .diamond-glass-layer,
footer .diamond-glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Padrão de diamantes - linhas diagonais para criar formato de losango */
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 29px,
      rgba(255, 255, 255, 0.25) 29px,
      rgba(255, 255, 255, 0.25) 30px,
      transparent 30px,
      transparent 59px,
      rgba(255, 255, 255, 0.25) 59px,
      rgba(255, 255, 255, 0.25) 60px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 29px,
      rgba(135, 206, 250, 0.3) 29px,
      rgba(135, 206, 250, 0.3) 30px,
      transparent 30px,
      transparent 59px,
      rgba(135, 206, 250, 0.3) 59px,
      rgba(135, 206, 250, 0.3) 60px
    ),
    /* Bordas dos diamantes para criar efeito de vidro */
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 59px,
      rgba(255, 255, 255, 0.35) 59px,
      rgba(255, 255, 255, 0.35) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 59px,
      rgba(176, 224, 230, 0.3) 59px,
      rgba(176, 224, 230, 0.3) 60px
    );
  background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
  background-position: 0 0, 30px 30px, 0 0, 0 0;
  backdrop-filter: blur(0.5px) saturate(1.2);
  -webkit-backdrop-filter: blur(0.5px) saturate(1.2);
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1; /* Acima dos fundos (z-index: 0) mas abaixo do conteúdo */
}


/* Garantir que o conteúdo das seções fique acima da parede de vidro */
.section-premium-container,
.container,
.hostinger-pricing-container,
.filmora-compare-container,
.tech-advantages-container {
  position: relative;
  z-index: 51; /* Acima da parede de vidro (z-index: 50) */
}

/* Efeito fragmentado removido - seção "sobre nós" com borda normal */
#sobre.section-premium-light {
  clip-path: none !important;
  overflow: visible !important;
  position: relative !important;
  margin-top: 0 !important;
  padding-top: var(--space-24, 6rem) !important;
}

/* Walking Updates: reforço de cascata (este ficheiro carrega após o bundle Astro) —
   recorte (overflow) e empilhamento relativo a #sobre (z:1) e ponte (z:0) */
#noticias.wp-sec-updates {
  overflow: visible;
  z-index: 10;
  position: relative;
}

/* Alinhar o logotipo do rodapé ligeiramente à direita em relação à fileira de redes */
.wp-footer-rodape-img {
  position: relative;
  left: 1.3rem;
}

