/* =============================================
   RESET E CONFIGURAÇÕES BASE
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* =============================================
   VARIÁVEIS DE CORES
   ============================================= */
:root {
  --primary-orange: #ff8c00;
  --secondary-orange: #ffa500;
  --light-orange: #ffd8a8;
  --dark-orange: #e67e00;
  --gradient-orange: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--secondary-orange) 100%
  );
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --text-lead: #0b0c0c;
  --text-lighter: #95a5a6;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e9ecef;
  /* --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15); */
  /* --shadow-orange: 0 10px 30px rgba(255, 140, 0, 0.15); */
  --transition: all 0.3s ease;
}

/* =============================================
   SEÇÃO HERO COM LOGO ANIMADA
   ============================================= */
.hero-section {
  background: var(--gradient-orange);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-ilustration {
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}
.logo-container {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  z-index: 2;
}

.animated-logo {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}
/* 
.logo-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
} */
.logo-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: none !important;
  /* animation: none !important; */
  transform: none !important;
  /* REMOVER A TRANSITION AQUI - ela causa o pulso */
  /* transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); */
}
.logo-frame img {
  width: 250px;
  height: 250px;
  /* border-radius: 20px; */
}
/* Configuração das animações das logos */
/* .logo-frame:nth-child(1) {
  animation: logoCycle 9s infinite;
}

.logo-frame:nth-child(2) {
  animation: logoCycle 9s infinite 3s;
}

.logo-frame:nth-child(3) {
  animation: logoCycle 9s infinite 6s;
} */
/* Configuração das animações das logos */
.logo-frame:nth-child(1) {
  animation: logoCycleSmooth 9s infinite;
}

.logo-frame:nth-child(2) {
  animation: logoCycleSmooth 9s infinite 3s;
}

.logo-frame:nth-child(3) {
  animation: logoCycleSmooth 9s infinite 6s;
}

/* NOVA ANIMAÇÃO MAIS SUAVE - SEM PULSAR */
@keyframes logoCycleSmooth {
  0% {
    opacity: 0;
    transform: translateZ(-30px) rotateY(-5deg) scale(0.95);
    z-index: 1;
  }
  10% {
    opacity: 1;
    transform: translateZ(0) rotateY(0) scale(1);
    z-index: 3;
  }
  30% {
    opacity: 1;
    transform: translateZ(0) rotateY(0) scale(1);
    z-index: 3;
  }
  35% {
    opacity: 1;
    transform: translateZ(0) rotateY(0) scale(1);
    z-index: 3;
  }
  40% {
    opacity: 0;
    transform: translateZ(-30px) rotateY(5deg) scale(0.95);
    z-index: 1;
  }
  100% {
    opacity: 0;
    transform: translateZ(-30px) rotateY(5deg) scale(0.95);
    z-index: 1;
  }
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.publication-info {
  position: relative;
  z-index: 2;
}

.publication-info .badge {
  font-size: 0.85rem;
  font-weight: 600;
  width: 100%;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =============================================
   SEÇÕES DE CONTEÚDO
   ============================================= */
.main-content {
  position: relative;
  z-index: 1;
}

.card-conduct {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-conduct::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-orange);
  border-radius: 5px 0 0 5px;
}

.card-conduct:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-orange);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.section-title i {
  font-size: 1.8rem;
  color: var(--primary-orange);
}

.section-body {
  color: var(--text-light);
}

/* =============================================
   TIPOGRAFIA E TEXTOS
   ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.2rem;
  font-weight: revert;
  color: var(--text-lead);
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.05) 0%,
    rgba(255, 165, 0, 0.05) 100%
  );
  border-left: 4px solid var(--primary-orange);
  padding: 2.5rem;
  margin: 2.5rem 0;
  border-radius: 12px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
  color: var(--primary-orange);
  opacity: 0.3;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  padding-left: 1rem;
}

/* =============================================
   LISTAS E CHECKLISTS
   ============================================= */
.checklist {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.checklist li {
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* =============================================
   COMPONENTES ESPECÍFICOS
   ============================================= */
.feature-item {
  display: flex;
  gap: 1rem;
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Alertas */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.alert-warning {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1) 0%,
    rgba(255, 235, 59, 0.05) 100%
  );
  border-left: 4px solid #ffc107;
}

.alert-info {
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1) 0%,
    rgba(13, 202, 240, 0.05) 100%
  );
  border-left: 4px solid #0dcaf0;
}

.alert-primary {
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1) 0%,
    rgba(13, 202, 240, 0.05) 100%
  );
  border-left: 4px solid #0d6efd;
}

.alert-title {
  font-size: 1.3rem;
  color: var(--text-dark);
}

/* Cards de Informação */
.info-card {
  border-left: 4px solid var(--primary-orange);
}

/* Grid de Sustentabilidade */
.sustainability-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sustainability-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sustainability-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.sustainability-icon i {
  font-size: 2rem;
  color: white;
}

.sustainability-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.sustainability-text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Restrições */
.restrictions-list {
  list-style: none;
  padding-left: 0;
}

.restrictions-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

/* Diretrizes de Mídia */
.guidelines-list {
  list-style: none;
  padding-left: 0;
}

.guidelines-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

/* Legal Container */
.legal-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid #28a745;
}

.legal-icon {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon i {
  font-size: 1.5rem;
  color: white;
}

.legal-content {
  flex: 1;
}

.legal-content p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Aplicação do Código */
.application-content {
  padding: 3rem 2rem;
}

.application-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.application-icon i {
  font-size: 3rem;
  color: white;
}

/* =============================================
   SEÇÃO DE ASSINATURA
   ============================================= */
.signature-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--primary-orange);
  text-align: center;
}

.signature-line {
  width: 200px;
  height: 1px;
  background: var(--text-light);
  opacity: 0.3;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.publication-details {
  color: var(--text-light);
  font-size: 1.1rem;
}

.official-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 1px;
}

.official-seal i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: white;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* =============================================
   BOTÃO VOLTAR AO TOPO
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* =============================================
   ANIMAÇÕES GERAIS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-conduct {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.card-conduct:nth-child(1) {
  animation-delay: 0.1s;
}
.card-conduct:nth-child(2) {
  animation-delay: 0.2s;
}
.card-conduct:nth-child(3) {
  animation-delay: 0.3s;
}
.card-conduct:nth-child(4) {
  animation-delay: 0.4s;
}
.card-conduct:nth-child(5) {
  animation-delay: 0.5s;
}
.card-conduct:nth-child(6) {
  animation-delay: 0.6s;
}
.card-conduct:nth-child(7) {
  animation-delay: 0.7s;
}
.card-conduct:nth-child(8) {
  animation-delay: 0.8s;
}
.card-conduct:nth-child(9) {
  animation-delay: 0.9s;
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

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

  .animated-logo {
    width: 250px;
    height: 250px;
  }

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

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .animated-logo {
    width: 220px;
    height: 220px;
  }

  .card-conduct {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .legal-item {
    flex-direction: column;
    text-align: center;
  }

  .legal-icon {
    margin: 0 auto;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .animated-logo {
    width: 200px;
    height: 200px;
  }

  .card-conduct {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .publication-info .badge {
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .publication-info .badge.me-2 {
    margin-right: 0 !important;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* =============================================
   UTILITÁRIOS
   ============================================= */
.text-primary {
  color: var(--primary-orange) !important;
}

.bg-primary {
  background-color: var(--primary-orange) !important;
}

.border-primary {
  border-color: var(--primary-orange) !important;
}

/* Efeito de brilho na logo durante a animação */
/* @keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
  }
} */

.logo-frame {
  animation: logoGlow 3s infinite ease-in-out;
}
/* =============================================
   ÍCONE FLUTUANTE NO HERO
   ============================================= */
.hero-illustration {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.5;
  }
}

/* Efeito de brilho pulsante */
.hero-illustration::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* =============================================
   SETINHA INDICADORA DE SCROLL
   ============================================= */
.scroll-indicator {
  position: fixed;
  /* bottom: 30px; */
  bottom: 0;
  right: 0;
  transform: translateX(-50%);
  color:var(--text-dark);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

.scroll-indicator:hover {
  /* color: white; */
  animation-play-state: paused;
}

/* =============================================
   OVERLAY DE PROTEÇÃO
   ============================================= */
#protectionOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9998;
  pointer-events: auto;
  display: none;
}

.protection-active #protectionOverlay {
  display: block;
}

/* =============================================
   ESTILOS DE IMPRESSÃO
   ============================================= */
@media print {
  /* Ocultar elementos não essenciais na impressão */
  .hero-illustration,
  .scroll-indicator,
  .back-to-top,
  .btn,
  .modal,
  .publication-info .badge,
  footer,
  .no-print {
    display: none !important;
  }

  /* Ajustes para impressão */
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
    background: white !important;
    color: black !important;
  }

  .hero-title {
    color: black !important;
    text-shadow: none !important;
  }

  .animated-logo {
    filter: grayscale(100%);
  }

  .card-conduct {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }

  /* Mostrar URL no rodapé da impressão */
  body::after {
    content: "Documento do Grupo Simoneti - Impresso em: " attr(data-print-date);
    display: block;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
  }
}

/* =============================================
   ANIMAÇÃO DA LOGO - MELHORADA
   ============================================= */
@keyframes logoCycle {
  0% {
    opacity: 0;
    transform: translateZ(-50px) rotateY(-15deg) scale(0.9);
    filter: blur(2px);
  }
  10% {
    opacity: 1;
    transform: translateZ(0) rotateY(0) scale(1);
    filter: blur(0);
  }
  30% {
    opacity: 1;
    transform: translateZ(0) rotateY(0) scale(1);
    filter: blur(0);
    /* box-shadow: 0 0 30px rgba(255, 140, 0, 0.3); */
  }
  40% {
    opacity: 0;
    transform: translateZ(-50px) rotateY(15deg) scale(0.9);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: translateZ(-50px) rotateY(15deg) scale(0.9);
  }
}

/* Efeito de brilho na logo
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.8));
    }
} */

/* .logo-frame {
    animation: logoGlow 3s infinite ease-in-out;
} */

/* =============================================
   RESPONSIVIDADE PARA O ÍCONE FLUTUANTE
   ============================================= */
@media (max-width: 768px) {
  .hero-illustration {
    font-size: 6rem;
  }

  .hero-illustration::after {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .hero-illustration {
    font-size: 5rem;
  }

  .hero-illustration::after {
    width: 120px;
    height: 120px;
  }

  .scroll-indicator {
    font-size: 1.5rem;
    bottom: 20px;
  }
}

/* =============================================
   ESTILOS PARA CONTEÚDO PROTEGIDO
   ============================================= */
.protected-content {
  position: relative;
}

.protected-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 95%,
    rgba(255, 140, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Efeito de marca d'água sutil */
.protected-content::after {
  content: "GRUPO SIMONETI";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 8vw;
  color: rgba(255, 140, 0, 0.03);
  font-weight: 900;
  letter-spacing: 2vw;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .protected-content::after {
    font-size: 10vw;
    letter-spacing: 1vw;
  }
}
/* Estilos para o botão do escudo */
#shieldScrollBtn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#shieldScrollBtn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    color: rgba(255, 255, 255, 0.8);
}

#shieldScrollBtn:active {
    transform: scale(0.95);
}

/* Efeito de ripple (opcional) */
#shieldScrollBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

#shieldScrollBtn:hover::after {
    opacity: 1;
}