﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0A0A0A;
  --navy: #1A237E;
  --navy-light: #283593;
  --navy2: #0d1540;
  --navy3: #111b55;
  --orange: #E64A19;
  --orange-light: #FF5722;
  --orange2: #ff9a3c;
  --white: #F5F5F5;
  --gray: #B0BEC5;
  --gray-dark: #37474F;
  --surface: #111827;
  --surface-2: #1F2937;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #0a0f2e 0%, #0d1540 50%, #1a0a3d 100%);
  color: var(--white);
  min-height: 100vh;
}

/* ── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.3s ease-in-out;
  /* Margens horizontais — sem padding no topo */
  padding: 0 2rem;
  pointer-events: none;
}

nav.nav-hidden {
  transform: translateY(-110%);
}

/* Card interno colado ao topo com margens laterais */
nav > * {
  pointer-events: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0 0 14px 14px;
  border-bottom: 3px solid var(--orange);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 0 2rem;
  height: 62px;
  width: 100%;
  pointer-events: auto;
}



/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a237e;
  letter-spacing: 0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  list-style: none;
  height: 100%;
}

.nav-links li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 0.95rem;
  height: 100%;
  font-size: 0.92rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links > li > a:hover {
  color: var(--orange);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links > li > a.active {
  color: var(--orange);
  font-weight: 600;
}

/* Arrow icon in dropdowns */
.arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  color: #999;
  transition: transform 0.2s ease;
  line-height: 1;
}

.dropdown:hover .arrow,
.dropdown.open .arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

/* Dropdown container */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0,0,0,0.06);
  min-width: max-content;
  z-index: 200;
  border: 1px solid #eef0f8;
}

/* Invisible bridge to prevent hover loss */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropIn 0.15s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.9rem;
  color: #444;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 450;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

.dropdown-menu a:hover {
  color: var(--orange);
  background: rgba(230, 74, 25, 0.07);
  transform: scale(1.03);
}

.dropdown-menu a.ver-tudo-btn {
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  margin-top: 4px;
  justify-content: center;
}

.dropdown-menu a.ver-tudo-btn:hover {
  color: white;
  background: var(--orange);
}

.dropdown-menu a.ver-tudo-btn::after {
  display: none;
}

/* Account button */
.nav-account {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.42rem 1.1rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-account:hover {
  background: #c94016;
  box-shadow: 0 4px 14px rgba(230, 74, 25, 0.35);
  transform: translateY(-1px);
}

.nav-account svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── HERO ────────────────────────────────────────── */
#home {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(244, 121, 32, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse at 10% 80%, rgba(26, 35, 126, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.8rem 2rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.btn-primary:hover {
  background: #d96800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.35);
}

.btn-outline {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── HERO VISUAL / CAROUSEL ──────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(244, 121, 32, 0.4);
  animation: spin 20s linear infinite;
  box-shadow: 0 0 20px rgba(244, 121, 32, 0.1) inset;
}

.hero-ring::before,
.hero-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-ring::before {
  inset: 15px;
  border: 1px solid rgba(244, 121, 32, 0.2);
  animation: spin 15s linear infinite reverse;
}

.hero-ring::after {
  inset: -15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: spin 25s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-1,
.orbit-2,
.orbit-3 {
  position: absolute;
  top: 50%;
  left: 50%;
}

.orbit-1 {
  animation: orbit-anim 8s linear infinite;
}

.orbit-1 .dot-core {
  position: absolute;
  top: -125px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--orange-light);
}

.orbit-2 {
  animation: orbit-anim 12s linear infinite reverse;
}

.orbit-2 .dot-core {
  position: absolute;
  top: -110px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: #4fc3f7;
  border-radius: 50%;
  box-shadow: 0 0 12px #4fc3f7;
}

.orbit-3 {
  animation: orbit-anim 18s linear infinite;
}

.orbit-3 .dot-core {
  position: absolute;
  top: -140px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 15px white;
}

@keyframes orbit-anim {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#heroLogoCanvas {
  position: relative;
  z-index: 10;
  width: 350px;
  height: 350px;
  max-width: 100vw;
  cursor: crosshair;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(244, 121, 32, 0.2);
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: max(20px, 4vh);
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  border: 2px solid rgba(244, 121, 32, 0.3);
  border-radius: 50%;
  animation: bounceDown 2s infinite;
  transition: all 0.3s;
  z-index: 10;
  text-decoration: none;
}

.scroll-down-arrow:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.scroll-down-arrow svg {
  width: 24px;
  height: 24px;
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ── CAROUSEL ────────────────────────────────────── */
#carousel-section {
  padding: 5rem 2rem;
  position: relative;
}

.section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-label h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.section-label p {
  color: var(--gray);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
}

.carousel-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.carousel-slide:hover .carousel-slide-bg {
  transform: scale(1.03);
}

/* Slide overlays */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 46, 0.85) 0%, rgba(244, 121, 32, 0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  width: 100%;
}

.slide-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--orange);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.slide-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slide-content p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 500px;
}

.slide-btn {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.5rem;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all .2s;
}

.slide-btn:hover {
  background: #d96800;
  gap: 12px;
}

/* Carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all .3s;
}

.carousel-dot.active {
  width: 28px;
  background: var(--orange);
}

/* ── SERVICES ────────────────────────────────────── */
#services {
  padding: 5rem 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  scroll-margin-top: 100px;
}

.service-card:target {
  border-color: var(--orange);
  box-shadow: 0 0 25px rgba(244, 121, 32, 0.5);
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  transform: scale(1.02);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 121, 32, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 121, 32, 0.2), rgba(244, 121, 32, 0.05));
  border: 1px solid rgba(244, 121, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: white;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
  transition: gap .2s;
}

.card-link:hover {
  gap: 10px;
}

/* Service Card Detail Modal (Expansion) */
.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 998;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 90%;
  max-width: 600px;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(230, 74, 25, 0.15);
  padding: 2.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  color: white;
  box-sizing: border-box;
}

.service-modal-card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.service-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.service-modal-close:hover {
  background: var(--orange);
  color: white;
  transform: rotate(90deg);
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.service-modal-header .card-icon {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 1.35rem;
}

.service-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.service-modal-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e0e0e0;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Customize Scrollbar for modal */
.service-modal-body::-webkit-scrollbar {
  width: 6px;
}
.service-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.service-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.service-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.service-modal-body p {
  margin-bottom: 1.25rem;
}

.service-modal-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.service-modal-bullets li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 0.925rem;
}

.service-modal-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
}

.service-modal-footer {
  display: flex;
  justify-content: flex-end;
}

.service-modal-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(230, 74, 25, 0.3);
}

.service-modal-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 74, 25, 0.4);
}

@media (max-width: 600px) {
  .service-modal-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .service-modal-header h3 {
    font-size: 1.3rem;
  }

  .service-modal-body {
    font-size: 0.875rem;
  }

  .service-modal-bullets li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .service-modal-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── PRODUCTS ────────────────────────────────────── */
#products {
  padding: 5rem 2rem;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  scroll-margin-top: 100px;
}

.product-card:target {
  border-color: var(--orange);
  box-shadow: 0 0 25px rgba(244, 121, 32, 0.5);
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  transform: scale(1.02);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(244, 121, 32, 0.15);
}

.product-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.product-thumb.t1 {
  background: linear-gradient(135deg, #1a237e, #283593);
}

.product-thumb.t2 {
  background: linear-gradient(135deg, #4a148c, #6a1b9a);
}

.product-thumb.t3 {
  background: linear-gradient(135deg, #006064, #00838f);
}

.product-thumb.t4 {
  background: linear-gradient(135deg, #b71c1c, #c62828);
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.825rem;
  color: var(--gray);
  line-height: 1.6;
}

.product-price {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
}

.product-btn {
  padding: 0.4rem 1rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.product-btn:hover {
  background: #d96800;
}

/* ── EVENTS / PUBLICAÇÕES ────────────────────────── */
#events {
  padding: 5rem 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.events-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all .3s;
}

.event-item:hover {
  border-color: rgba(244, 121, 32, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.event-date {
  text-align: center;
  min-width: 60px;
  border-right: 1px solid var(--card-border);
  padding-right: 1.5rem;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.event-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.event-badge {
  margin-left: auto;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(244, 121, 32, 0.15);
  color: var(--orange);
  border: 1px solid rgba(244, 121, 32, 0.3);
  white-space: nowrap;
}

/* ── REGISTER MODAL ──────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: linear-gradient(145deg, var(--navy2), #0e1a4a);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 6rem);
  overflow: hidden;
  margin: auto;
}

/* Inner scrollable content */
.modal > *:not(.modal-close) {
  /* padding handled by modal-inner wrapper */
}

/* Scrollable inner wrapper to keep scrollbar inside border-radius */
.modal-inner {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(100vh - 6rem);
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255,255,255,0.06);
}

.modal-inner::-webkit-scrollbar {
  width: 5px;
}

.modal-inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.modal-inner::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.modal-title span {
  color: var(--orange);
}

.modal p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 4px;
}

.modal-tab {
  flex: 1;
  padding: 0.5rem;
  text-align: center;
  border: none;
  background: none;
  color: var(--gray);
  cursor: pointer;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all .2s;
}

.modal-tab.active {
  background: var(--orange);
  color: white;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border .2s;
  font-family: inherit;
}

.form-group input:focus {
  border-color: var(--orange);
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #d96800;
}

.form-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* pw-eye inside dark modal — ensure it's visible */
.modal .pw-eye {
  color: rgba(255,255,255,.3);
}
.modal .pw-eye:hover {
  color: rgba(255,255,255,.75);
}


/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  background: #050819;
}

footer p {
  color: var(--gray);
  font-size: 0.825rem;
  line-height: 1.5;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.5rem;
}

.footer-logo span {
  color: var(--orange);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  width: 100%;
}

.footer-title {
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1200px;
  width: 100%;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1.1rem;
  transition: all .3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ── PAGE SECTIONS ───────────────────────────────── */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* Floating particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(244, 121, 32, 0.4);
  animation: float var(--dur) ease-in-out infinite var(--delay);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-40px) translateX(10px) scale(1.5);
    opacity: 0.8;
  }
}

/* ── HAMBURGER TOGGLE ─────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 300;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── RESPONSIVE: TABLET (≤ 968px) ─────────────────── */
@media (max-width: 968px) {
  /* Em mobile o nav ocupa largura completa */
  nav {
    padding: 0;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: 1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 1.5rem 2rem;
    overflow-y: auto;
    z-index: 250;
    gap: 0.25rem;
    height: auto;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 14px 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    height: auto;
  }

  .nav-links > li > a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    height: auto;
    width: 100%;
  }

  .nav-links > li > a::after {
    display: none;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    background: rgba(230, 74, 25, 0.08);
    color: var(--orange);
  }

  /* Dropdowns stacked on mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0 0 0 1rem;
    background: rgba(240, 242, 255, 0.6);
    border-radius: 10px;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-account {
    margin: 0 0 0 auto;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    order: 1;
  }

  /* Hero */
  #home {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 7rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap {
    width: 200px;
    height: 200px;
  }

  #heroLogoCanvas {
    width: 250px;
    height: 250px;
  }

  .orbit-1 .dot-core { top: -90px; }
  .orbit-2 .dot-core { top: -75px; }
  .orbit-3 .dot-core { top: -105px; }

  /* Carousel */
  .carousel-slide {
    height: 320px;
  }

  .slide-content {
    padding: 1.5rem;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  /* Events */
  .event-item {
    flex-wrap: wrap;
  }

  .event-badge {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ── RESPONSIVE: MOBILE (≤ 600px) ─────────────────── */
@media (max-width: 600px) {
  nav {
    padding: 0 1rem;
  }

  .nav-logo span {
    font-size: 1rem;
  }

  #home {
    padding: 5rem 1.25rem 7rem;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.7rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-logo-wrap {
    width: 160px;
    height: 160px;
  }

  #heroLogoCanvas {
    width: 180px;
    height: 180px;
  }

  .orbit-1 .dot-core { top: -70px; }
  .orbit-2 .dot-core { top: -55px; }
  .orbit-3 .dot-core { top: -85px; }

  /* Carousel */
  #carousel-section {
    padding: 3rem 1rem;
  }

  .carousel-slide {
    height: 260px;
  }

  .slide-content {
    padding: 1.25rem;
  }

  .slide-content h3 {
    font-size: 1.1rem;
  }

  .slide-content p {
    font-size: 0.825rem;
  }

  .slide-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Section labels */
  .section-label {
    margin-bottom: 2rem;
  }

  .section-label h2 {
    font-size: 1.3rem;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Events */
  .event-item {
    padding: 1rem;
    gap: 1rem;
  }

  .event-date {
    min-width: 50px;
    padding-right: 1rem;
  }

  .event-date .day {
    font-size: 1.5rem;
  }

  .event-info h4 {
    font-size: 0.9rem;
  }

  .event-info p {
    font-size: 0.8rem;
  }

  /* Footer */
  footer {
    padding: 3rem 1.25rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    font-size: 1.25rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  /* Modal */
  .modal {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Saber Mais (Detalhes) - Dynamic Page
   ========================================================================== */

.saber-mais-section {
  padding: 120px 2rem 5rem;
  min-height: 80vh;
  background: var(--bg);
  color: var(--text);
}

.saber-mais-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
}

.saber-mais-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.saber-mais-breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.saber-mais-breadcrumb a:hover {
  color: #fff;
}

.saber-mais-breadcrumb .current {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.saber-mais-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.saber-mais-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.saber-mais-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.saber-mais-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.saber-mais-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--orange);
  margin-top: 1rem;
}

.saber-mais-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(244, 121, 32, 0.1);
  color: var(--orange);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.saber-mais-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.saber-mais-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.saber-mais-content h2, .saber-mais-content h3 {
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.saber-mais-content p {
  margin-bottom: 1.2rem;
}

.saber-mais-content ul, .saber-mais-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.saber-mais-content li {
  margin-bottom: 0.5rem;
}

.saber-mais-bullets {
  background: rgba(26, 35, 126, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.saber-mais-bullets h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.saber-mais-bullets ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.saber-mais-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #ccc;
}

.bullet-check {
  color: var(--orange);
  font-weight: bold;
}

.saber-mais-event-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.4), rgba(244, 121, 32, 0.1));
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-date-display {
  background: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 1rem;
  min-width: 100px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.event-date-display .day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
}

.event-date-display .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.saber-mais-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.saber-mais-btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.saber-mais-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
  background: #f5893a;
}

.saber-mais-btn-outline {
  display: inline-block;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.saber-mais-btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .saber-mais-container {
    padding: 2rem 1.5rem;
  }
  
  .saber-mais-header h1 {
    font-size: 2rem;
  }
  
  .saber-mais-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .saber-mais-btn-primary, .saber-mais-btn-outline {
    text-align: center;
  }
  
  .saber-mais-event-info {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════
   GEINSOF SECURITY CAPTCHA
   ══════════════════════════════════════════════════════ */

/* ── Overlay ────────────────────────────────────────── */
.gcaptcha-overlay {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(5, 8, 30, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gcaptcha-overlay.gcaptcha-open {
  opacity: 1;
  pointer-events: all;
}
.gcaptcha-overlay.gcaptcha-closing {
  opacity: 0;
  pointer-events: none;
}

/* ── Modal Card ─────────────────────────────────────── */
.gcaptcha-modal {
  background: linear-gradient(145deg, #141c45 0%, #1a2460 60%, #0e1535 100%);
  border: 1px solid rgba(230, 74, 25, 0.35);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06),
              0 24px 60px rgba(0,0,0,0.7),
              0 0 60px rgba(230, 74, 25, 0.08);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.gcaptcha-overlay.gcaptcha-open .gcaptcha-modal {
  transform: translateY(0) scale(1);
}

/* ── Header ─────────────────────────────────────────── */
.gcaptcha-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}
.gcaptcha-shield {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(230, 74, 25, 0.4);
}
.gcaptcha-shield svg {
  width: 22px;
  height: 22px;
  stroke: white;
}
.gcaptcha-title-block {
  flex: 1;
}
.gcaptcha-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.1rem;
  letter-spacing: 0.01em;
}
.gcaptcha-subtitle {
  font-size: 0.75rem;
  color: rgba(176, 190, 197, 0.7);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gcaptcha-close-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.gcaptcha-close-btn:hover {
  background: rgba(230, 74, 25, 0.2);
  border-color: var(--orange);
  color: var(--orange);
}

/* ── Word Display (G·E·I·N·S·O·F) ──────────────────── */
.gcaptcha-word-display {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.65rem 1rem;
}
.gcaptcha-letter {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(176, 190, 197, 0.5);
  padding: 0.1rem 0.35rem;
  border-radius: 5px;
  transition: all 0.25s ease;
  position: relative;
}
.gcaptcha-letter::after {
  content: attr(data-pos);
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(176, 190, 197, 0.35);
  font-family: var(--font-body);
  font-weight: 400;
}
.gcaptcha-letter.active {
  color: var(--orange);
  background: rgba(230, 74, 25, 0.15);
  box-shadow: 0 0 12px rgba(230, 74, 25, 0.25);
  transform: scale(1.15) translateY(-2px);
}

/* ── Body ───────────────────────────────────────────── */
.gcaptcha-body {
  margin-bottom: 1rem;
}

/* ── Letter Challenge ───────────────────────────────── */
.gcaptcha-letter-challenge {
  text-align: center;
}
.gcaptcha-question {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.gcaptcha-highlight-letter {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  background: rgba(230, 74, 25, 0.15);
  padding: 0.05rem 0.4rem;
  border-radius: 6px;
  border: 1px solid rgba(230, 74, 25, 0.3);
  margin: 0 0.2rem;
  vertical-align: middle;
}
.gcaptcha-options {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gcaptcha-option-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcaptcha-option-btn:hover:not(:disabled) {
  background: rgba(26, 35, 126, 0.5);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 35, 126, 0.3);
}
.gcaptcha-option-btn.correct {
  background: rgba(76, 175, 80, 0.2) !important;
  border-color: #4CAF50 !important;
  color: #81c784 !important;
  box-shadow: 0 0 16px rgba(76, 175, 80, 0.3) !important;
}
.gcaptcha-option-btn.wrong {
  background: rgba(244, 67, 54, 0.15) !important;
  border-color: rgba(244, 67, 54, 0.5) !important;
  color: #ef9a9a !important;
}

/* ── Drag Challenge ─────────────────────────────────── */
.gcaptcha-drag-challenge {
  text-align: center;
}
.gcaptcha-drag-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0 0.5rem;
}
.gcaptcha-puzzle-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.gcaptcha-piece-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.gcaptcha-piece-label {
  font-size: 0.7rem;
  color: rgba(176, 190, 197, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.gcaptcha-canvas {
  display: block;
  border-radius: 8px;
}
.gcaptcha-piece-canvas {
  cursor: grab;
  border: 1.5px solid rgba(230, 74, 25, 0.5);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(230, 74, 25, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gcaptcha-piece-canvas:active { cursor: grabbing; }
.gcaptcha-piece-canvas:hover {
  box-shadow: 0 6px 22px rgba(230, 74, 25, 0.45);
  transform: scale(1.04);
}
.gcaptcha-piece-canvas.dragging {
  opacity: 0.5;
  transform: scale(0.92);
}
.gcaptcha-drop-zone {
  position: absolute;
  background: rgba(230, 74, 25, 0.08);
  border: 2px dashed rgba(230, 74, 25, 0.5);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
  cursor: copy;
}
.gcaptcha-drop-zone.drag-hover {
  background: rgba(76, 175, 80, 0.15);
  border-color: #4CAF50;
  box-shadow: 0 0 16px rgba(76, 175, 80, 0.2);
}
.gcaptcha-drag-hint {
  font-size: 0.75rem;
  color: rgba(176, 190, 197, 0.55);
  margin: 0.5rem 0 0;
}

/* ── Feedback ───────────────────────────────────────── */
.gcaptcha-feedback {
  min-height: 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  padding: 0;
  transition: all 0.25s ease;
}
.gcaptcha-feedback-success {
  color: #81c784;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  padding: 0.4rem 1rem;
}
.gcaptcha-feedback-error {
  color: #ef9a9a;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.25);
  padding: 0.4rem 1rem;
}

/* ── Footer Buttons ─────────────────────────────────── */
.gcaptcha-footer {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.gcaptcha-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.gcaptcha-btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
}
.gcaptcha-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.gcaptcha-btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  color: white;
  box-shadow: 0 4px 16px rgba(230, 74, 25, 0.35);
}
.gcaptcha-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff5722, var(--orange));
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(230, 74, 25, 0.5);
}
.gcaptcha-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ── Login Blocked Banner ───────────────────────────── */
.gcaptcha-login-blocked {
  background: rgba(230, 74, 25, 0.1);
  border: 1px solid rgba(230, 74, 25, 0.35);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 160, 100, 0.9);
  animation: gcaptcha-fadein 0.4s ease;
}
.gcaptcha-login-blocked-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gcaptcha-solve-btn {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.gcaptcha-solve-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,74,25,0.4);
}

/* ── Animations ─────────────────────────────────────── */
@keyframes gcaptcha-fadein {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.shake {
  animation: shake 0.45s ease;
}

@keyframes gcaptcha-success-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}
.gcaptcha-btn-primary:not(:disabled) {
  animation: gcaptcha-success-pulse 1.5s ease infinite;
}
.gcaptcha-btn-primary:disabled {
  animation: none;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 480px) {
  .gcaptcha-modal {
    padding: 1.4rem 1.2rem;
    border-radius: 14px;
  }
  .gcaptcha-word-display {
    gap: 0.25rem;
  }
  .gcaptcha-letter {
    font-size: 1.2rem;
    padding: 0.1rem 0.25rem;
  }
  .gcaptcha-drag-area {
    gap: 1rem;
  }
}

/* ══════════════════════════════════════════════════════
   GEINSOF SECURITY — Suspicious Activity Block Banner
   ══════════════════════════════════════════════════════ */

/* Banner inserido no topo do form quando IP é bloqueado */
.gsuspicious-block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1.5px solid rgba(220, 38, 38, 0.45);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
  animation: gsuspicious-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
             gsuspicious-pulse-border 2.5s ease-in-out 0.5s infinite;
}

.gsuspicious-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.6));
}

.gsuspicious-text {
  flex: 1;
}

.gsuspicious-text strong {
  display: block;
  color: #fca5a5;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.gsuspicious-text p {
  color: rgba(252, 165, 165, 0.75);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* Pulsing red glow on the border */
@keyframes gsuspicious-pulse-border {
  0%, 100% {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
  50% {
    border-color: rgba(220, 38, 38, 0.75);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.2);
  }
}

/* Entry animation */
@keyframes gsuspicious-appear {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* auth-message override for 'suspicious' type — already set inline,
   but adding here for any static styling needs */
.auth-message.suspicious-type {
  background: rgba(220, 38, 38, 0.18) !important;
  color: #fca5a5 !important;
  border: 2px solid rgba(220, 38, 38, 0.5) !important;
  font-weight: 600 !important;
  animation: gsuspicious-pulse-border 2.5s ease-in-out infinite;
}

/* Ellipsis Animation */
.ellipsis::after {
  content: '';
  animation: ellipsis-anim 1.5s infinite;
}

@keyframes ellipsis-anim {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}

/* ── Password Show/Hide Toggle ────────────────────── */
.pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pw-wrap input {
  width: 100%;
  padding-right: 2.8rem !important;
}

.pw-eye {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.35);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color .2s;
  line-height: 1;
}

.pw-eye:hover { color: rgba(255,255,255,.75); }

.pw-eye svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

/* ── SITE ALERT BANNER ───────────────────────────── */
.site-alert-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  padding: 0.55rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  animation: slideDownAlert 0.35s ease-out;
}

.site-alert-banner .alert-content {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.site-alert-banner .alert-content span {
  flex: 0 1 auto;
  text-align: center;
}

@keyframes slideDownAlert {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.site-alert-banner.alert-info {
  background: linear-gradient(90deg, #1565c0 0%, #1976d2 100%);
  color: #fff;
}

.site-alert-banner.alert-warning {
  background: linear-gradient(90deg, #E64A19 0%, #ff7043 100%);
  color: #fff;
}

.site-alert-banner.alert-danger {
  background: linear-gradient(90deg, #b71c1c 0%, #d32f2f 100%);
  color: #fff;
}

.site-alert-banner svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.9;
}