/**
 * Kat Blocks — shared.css · Olho de Tigre
 * ATENÇÃO: Este arquivo NÃO é carregado automaticamente pelo plugin.
 * Inclua-o no seu tema ou num bloco que seja sempre exibido (ex: topbar/nav).
 *
 * Contém: tokens globais, reset, utilitários e estilos base
 * utilizados por todos os blocos Kat deste projeto.
 */

/* ================================================
   DESIGN TOKENS — Olho de Tigre
   ================================================ */
:root {
  --ot-orange:        #E87B1E;
  --ot-orange-dark:   #C45F00;
  --ot-orange-light:  #F5A04A;
  --ot-orange-alpha:  rgba(232, 123, 30, 0.15);

  --ot-black:         #0D0D0D;
  --ot-dark:          #161616;
  --ot-dark-2:        #222222;
  --ot-dark-3:        #2E2E2E;
  --ot-white:         #FFFFFF;
  --ot-gray-400:      #9A9A9A;
  --ot-gray-600:      #6B6B6B;

  --ot-grad-hero:     linear-gradient(135deg, #C45F00 0%, #E87B1E 45%, #7A3800 100%);
  --ot-grad-overlay:  linear-gradient(100deg, rgba(180,75,0,0.82) 0%, rgba(100,40,0,0.70) 55%, rgba(20,12,5,0.60) 100%);
  --ot-grad-card:     linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.97) 100%);
  --ot-grad-cta:      linear-gradient(90deg, #E87B1E 0%, #C45F00 100%);
  --ot-grad-section:  linear-gradient(180deg, #0D0D0D 0%, #161616 100%);

  --ot-font-display:  'Oswald', sans-serif;
  --ot-font-body:     'Open Sans', sans-serif;

  --ot-fs-display:    clamp(2.2rem, 5.5vw, 4.2rem);
  --ot-fs-h1:         clamp(1.9rem, 4vw, 3.2rem);
  --ot-fs-h2:         clamp(1.5rem, 2.8vw, 2.4rem);
  --ot-fs-h3:         clamp(1.1rem, 1.8vw, 1.5rem);

  --ot-space-xs:      0.25rem;
  --ot-space-sm:      0.5rem;
  --ot-space-md:      1rem;
  --ot-space-lg:      1.5rem;
  --ot-space-xl:      2.5rem;
  --ot-space-2xl:     4rem;
  --ot-space-3xl:     6rem;

  --ot-radius-sm:     4px;
  --ot-radius-md:     8px;
  --ot-radius-lg:     16px;
  --ot-radius-pill:   999px;

  --ot-shadow-card:   0 8px 32px rgba(0,0,0,0.6);
  --ot-shadow-glow:   0 0 28px rgba(232,123,30,0.30);
  --ot-shadow-btn:    0 4px 16px rgba(232,123,30,0.45);

  --ot-transition:      all 0.28s cubic-bezier(0.4,0,0.2,1);
  --ot-transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ================================================
   GENERIC — reset, base, utilitários
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body{
	overflow-x: hidden;
	background: var(--ot-black);
	/* font-size: 1rem;
	line-height: 1.65; */
}

.page-blocks *{
  font-family: var(--ot-font-body);
  color: var(--ot-white);
  -webkit-font-smoothing: antialiased;
}

.page-blocks h1, .page-blocks h2, .page-blocks h3, .page-blocks h4, .page-blocks h5, .page-blocks h6{
  font-family: var(--ot-font-display);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ot-white);
}
.page-blocks h1 *,
.page-blocks h2 *,
.page-blocks h3 *,
.page-blocks h4 *,
.page-blocks h5 *,
.page-blocks h6 *{
	color: var(--ot-orange);
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}

.page-blocks p { color: rgba(255,255,255,0.72); }
.page-blocks img { max-width: 100%; height: auto; display: block; }
.page-blocks a { text-decoration: none; transition: var(--ot-transition); }

.section-pad    { padding: var(--ot-space-3xl) 0; }
.section-pad-sm { padding: var(--ot-space-2xl) 0; }

/* eyebrow label acima de títulos */
.eyebrow {
  display: inline-block;
  font-family: var(--ot-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ot-orange);
  margin-bottom: var(--ot-space-md);
}

/* linha laranja decorativa */
.accent-line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--ot-grad-cta);
  border-radius: 2px;
  margin: var(--ot-space-md) 0 var(--ot-space-lg);
}

/* padrão de pontos decorativo */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(232,123,30,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* visually hidden acessibilidade */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* Btn principal laranja */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ot-grad-cta);
  color: var(--ot-white);
  font-family: var(--ot-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.85rem;
  border: none;
  border-radius: var(--ot-radius-pill);
  cursor: pointer;
  transition: var(--ot-transition);
  box-shadow: var(--ot-shadow-btn);
}

.btn-primary a{
  color: inherit;
  display: inline-flex;
  align-items: center;
  background:none;
  padding: 0 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,123,30,0.55);
  color: var(--ot-white);
  filter: brightness(1.08);
}

/* Btn contorno laranja */
.btn-ot-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ot-orange);
  font-family: var(--ot-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.72rem 1.85rem;
  border: 2px solid var(--ot-orange);
  border-radius: var(--ot-radius-pill);
  cursor: pointer;
  transition: var(--ot-transition);
}

.btn-ot-outline:hover {
  background: var(--ot-orange);
  color: var(--ot-white);
  box-shadow: var(--ot-shadow-btn);
  transform: translateY(-2px);
}

/* Btn ghost (texto + seta) */
.btn-ot-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ot-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ot-orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--ot-transition);
}

.btn-ot-ghost:hover { color: var(--ot-orange-light); gap: 10px; }

.btn-primary span,
.btn-ot-outline span,
.btn-ot-ghost span{
	font-family: var(--ot-font-display);
	color:inherit;
}

/* Animações de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ================================================
   NAV — Navegação principal
   ================================================ */
.nav-ot {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  transition: var(--ot-transition);
}

.nav-ot.scrolled {
  background: rgba(8,8,8,0.99);
  border-bottom-color: rgba(232,123,30,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--ot-space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--ot-grad-cta);
  border-radius: var(--ot-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: var(--ot-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ot-white);
  line-height: 1;
}

.nav-brand-name span { color: var(--ot-orange); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item { position: relative; }

.nav-link-ot {
  font-family: var(--ot-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  padding: 0.5rem 0.9rem !important;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid transparent;
  transition: var(--ot-transition);
}

.nav-link-ot:hover,
.nav-link-ot.active {
  color: var(--ot-white) !important;
  border-bottom-color: var(--ot-orange);
}

.nav-arrow {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: var(--ot-transition);
}

.nav-item:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--ot-dark-2);
  border: 1px solid var(--ot-dark-3);
  border-top: 2px solid var(--ot-orange);
  border-radius: 0 0 var(--ot-radius-md) var(--ot-radius-md);
  padding: 0.5rem 0;
  box-shadow: var(--ot-shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--ot-transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.55rem 1.1rem;
  transition: var(--ot-transition);
}

.nav-dropdown a:hover {
  color: var(--ot-orange);
  background: rgba(232,123,30,0.06);
  padding-left: 1.4rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--ot-space-sm);
  flex-shrink: 0;
}

.btn-login {
  font-family: var(--ot-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ot-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--ot-radius-pill);
  padding: 0.45rem 1.25rem;
  background: transparent;
  transition: var(--ot-transition);
  cursor: pointer;
}

.btn-login:hover {
  border-color: var(--ot-orange);
  color: var(--ot-orange);
}

.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ot-white);
  border-radius: 2px;
  transition: var(--ot-transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(16px);
  padding: var(--ot-space-xl) var(--ot-space-lg);
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: var(--ot-transition-slow);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ot-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ot-white);
  padding: var(--ot-space-md) 0;
  border-bottom: 1px solid var(--ot-dark-3);
}

.nav-mobile-link:hover { color: var(--ot-orange); }

@media (max-width: 991px) {
  .nav-menu, .nav-actions { display: none !important; }
  .nav-toggler { display: flex; }
  .nav-mobile { display: block; }
}

/* ================================================
   FOOTER
   ================================================ */
.footer-ot {
  background: var(--ot-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--ot-space-3xl) 0 0;
}

.footer-brand-name {
  font-family: var(--ot-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ot-white);
  display: block;
  margin-bottom: var(--ot-space-md);
}

.footer-brand-name span { color: var(--ot-orange); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--ot-gray-400);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: var(--ot-space-xl);
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ot-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--ot-transition);
}

.footer-social a:hover {
  background: var(--ot-orange);
  border-color: var(--ot-orange);
  color: var(--ot-white);
}

.footer-col-title {
  font-family: var(--ot-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ot-orange);
  display: block;
  margin-bottom: var(--ot-space-lg);
}

.footer-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: var(--ot-transition);
}

.footer-link:hover { color: var(--ot-orange); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--ot-space-lg) 0;
  margin-top: var(--ot-space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ot-space-md);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--ot-gray-600);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: var(--ot-space-lg);
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--ot-gray-600);
  letter-spacing: 0.05em;
  transition: var(--ot-transition);
}

.footer-legal a:hover { color: var(--ot-orange); }

/* ================================================
   SCROLL TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: var(--ot-space-xl);
  right: var(--ot-space-xl);
  width: 44px;
  height: 44px;
  background: var(--ot-orange);
  border: none;
  border-radius: var(--ot-radius-sm);
  color: var(--ot-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--ot-transition);
  z-index: 900;
  box-shadow: var(--ot-shadow-btn);
}

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

.scroll-top:hover { background: var(--ot-orange-dark); transform: translateY(-2px); }

/* ================================================
   RESPONSIVO GLOBAL
   ================================================ */
@media (max-width: 767px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .scroll-top { bottom: 1rem; right: 1rem; }
}

@media (max-width: 575px) {
  .cta-actions { flex-direction: column; align-items: center; }
}
