/* Neexor — estilos compartilhados (comportamento de menu, dropdown, FAQ, reveal) */

html { scroll-behavior: smooth; }
body { margin: 0; background: #ffffff; -webkit-font-smoothing: antialiased; font-family: 'Manrope', system-ui, sans-serif; }
a { color: #F5194C; text-decoration: none; }
a:hover { color: #FF6A2B; }
::selection { background: #F5194C; color: #fff; }
input, textarea, select, button { font-family: inherit; }

@keyframes neexor-roll-a { from { transform: translateY(108%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes neexor-roll-b { from { transform: translateY(108%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes neexor-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes neexor-glow { 0%,100% { opacity: .55; transform: translate3d(0,0,0) scale(1); } 50% { opacity: .9; transform: translate3d(0,-18px,0) scale(1.06); } }
@keyframes neexor-pulse { 0% { box-shadow: 0 0 0 0 rgba(245,25,76,.45); } 70% { box-shadow: 0 0 0 18px rgba(245,25,76,0); } 100% { box-shadow: 0 0 0 0 rgba(245,25,76,0); } }

body.nx-reveal [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
body.nx-reveal [data-reveal="scale"] { transform: scale(.965); }
body.nx-reveal [data-reveal].nx-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  body.nx-reveal [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* Header */
#site-header { background: rgba(255,255,255,1); border-bottom: 1px solid rgba(38,8,46,0); transition: background .35s ease, border-color .35s ease; }
#site-header.is-scrolled { background: rgba(255,255,255,.82); border-bottom-color: rgba(38,8,46,.1); }

.nav-links { display: flex; }
@media (max-width: 1119px) { .nav-links { display: none; } }

.nav-link { color: #26082E; padding: 10px 12px; border-radius: 10px; transition: background .2s ease, color .2s ease; }
.nav-link:hover { background: rgba(38,8,46,.05); color: #F5194C; }
.nav-link.is-accent { color: #F5194C; }

/* Dropdowns */
[data-dropdown] { position: relative; }
[data-dropdown-menu] {
  position: absolute; top: 100%; left: 50%; padding-top: 10px;
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .28s cubic-bezier(.16,1,.3,1), transform .28s cubic-bezier(.16,1,.3,1);
}
[data-dropdown].is-open [data-dropdown-menu] { opacity: 1; transform: translateY(0); pointer-events: auto; }
[data-dropdown-toggle] .caret { display: inline-block; transition: transform .25s ease; }
[data-dropdown].is-open [data-dropdown-toggle] .caret { transform: rotate(180deg); }

.dropdown-card { padding: 14px; border-radius: 20px; background: #fff; border: 1px solid rgba(38,8,46,.08); box-shadow: 0 24px 60px -20px rgba(38,8,46,.28); }
.dropdown-item { display: block; padding: 13px 14px; border-radius: 14px; color: #26082E; transition: background .2s ease; }
.dropdown-item:hover { background: #FAF7FB; color: #26082E; }
.dropdown-item .title { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; }
.dropdown-item .desc { display: block; margin-top: 3px; font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 12.5px; color: #6B5F72; }

/* Burger / mobile menu */
#burger-btn { all: unset; cursor: pointer; display: none; flex-direction: column; gap: 5px; padding: 12px; border-radius: 12px; border: 1px solid rgba(38,8,46,.16); }
@media (max-width: 1119px) { #burger-btn { display: flex; } }
#burger-btn .bar { display: block; width: 18px; height: 2px; background: #26082E; border-radius: 2px; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s ease; }
body.mobile-open #burger-btn .bar-top { transform: translateY(7px) rotate(45deg); }
body.mobile-open #burger-btn .bar-mid { opacity: 0; }
body.mobile-open #burger-btn .bar-bottom { transform: translateY(-7px) rotate(-45deg); }

#mobile-panel {
  display: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
  max-height: 0; opacity: 0; transition: max-height .4s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  border-top: 1px solid rgba(38,8,46,.08); background: #fff;
}
@media (max-width: 1119px) { #mobile-panel { display: block; } }
body.mobile-open #mobile-panel { max-height: calc(100vh - 72px); opacity: 1; }

.mobile-link { color: #26082E; padding: 12px; border-radius: 12px; font-size: 16px; display: block; }
.mobile-link:hover { background: #FAF7FB; color: #F5194C; }
.mobile-sublink { color: #6B5F72; padding: 12px; border-radius: 12px; font-size: 14.5px; padding-left: 22px; display: block; }
.mobile-sublink:hover { background: #FAF7FB; color: #F5194C; }

/* FAQ */
[data-faq] { border-top: 1px solid rgba(38,8,46,.12); }
[data-faq-toggle] { all: unset; cursor: pointer; box-sizing: border-box; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.02em; color: #26082E; transition: color .25s ease; }
[data-faq].is-open [data-faq-toggle] { color: #F5194C; }
[data-faq-toggle] .faq-icon { flex: 0 0 auto; font-size: 26px; font-weight: 500; color: #F5194C; transition: transform .35s cubic-bezier(.16,1,.3,1); }
[data-faq].is-open [data-faq-toggle] .faq-icon { transform: rotate(45deg); }
[data-faq-panel] { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .45s cubic-bezier(.16,1,.3,1), opacity .35s ease; }
[data-faq].is-open [data-faq-panel] { max-height: 320px; opacity: 1; }
[data-faq-panel] p { margin: 0; padding: 0 60px 30px 4px; font-size: 16.5px; line-height: 1.7; color: #6B5F72; text-wrap: pretty; }

/* Formulário */
[data-error] { font-size: 12.5px; font-weight: 600; color: #C1123C; display: none; }
[data-perfil] { all: unset; cursor: pointer; padding: 10px 16px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 13.5px; color: #6B5F72; background: #fff; border: 1px solid rgba(38,8,46,.16); transition: background .25s ease, color .25s ease, border-color .25s ease; }
[data-perfil].is-selected { color: #fff; background: #26082E; border-color: #26082E; }
