/* ===================================================================
   eventools.com.br — Landing Page
   Paleta extraída do logotipo oficial:
   navy #253B69 · pink #FF0081 · cyan #00B3CD
   =================================================================== */

:root {
  --navy: #253B69;
  --navy-dark: #182948;
  --navy-soft: #EEF1F8;
  --pink: #FF0081;
  --pink-dark: #D6006D;
  --pink-soft: #FFE5F3;
  --cyan: #00B3CD;
  --cyan-dark: #0092A8;
  --cyan-soft: #E1F8FB;
  --bg-soft: #F7F8FC;
  --text-body: #4B5468;
  --text-muted: #7D869B;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(37, 59, 105, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(37, 59, 105, 0.18);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
  font-family: "Baloo 2", "Inter", sans-serif;
  color: var(--navy);
  font-weight: 700;
}

p { color: var(--text-body); }

.text-muted-soft { color: var(--text-muted); }

.section-pad { padding-top: 96px; padding-bottom: 96px; }

@media (max-width: 767.98px) {
  .section-pad { padding-top: 64px; padding-bottom: 64px; }
}

.bg-soft { background-color: var(--bg-soft); }
.bg-navy { background-color: var(--navy) !important; }
.bg-cyan-soft { background-color: var(--cyan-soft); }
.bg-pink-soft { background-color: var(--pink-soft); }

.text-navy { color: var(--navy) !important; }
.text-pink { color: var(--pink) !important; }
.text-cyan { color: var(--cyan) !important; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-eyebrow i { font-size: 0.85rem; }

/* ---------- Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s ease;
}

.btn-pink {
  background-color: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(255, 0, 129, 0.55);
}

.btn-pink:hover, .btn-pink:focus {
  background-color: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background-color: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: #fff;
}

.btn-outline-light-soft {
  background-color: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-outline-light-soft:hover {
  background-color: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-sm-pill {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Navbar ---------- */
.navbar-eventools {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar-eventools.is-scrolled {
  box-shadow: 0 8px 30px -15px rgba(37, 59, 105, 0.35);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar-eventools .nav-link {
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

@media (min-width: 1200px) {
  .navbar-eventools .nav-link {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}

.navbar-eventools .nav-link.active,
.navbar-eventools .nav-link:hover {
  color: var(--pink);
}

.logo-mark {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}

.logo-mark .lm-navy { color: var(--navy); }
.logo-mark .lm-cyan { color: var(--cyan); }
.logo-mark .lm-pink {
  color: var(--pink);
  font-size: 0.62em;
  font-weight: 700;
  margin-left: 2px;
}

.logo-mark.logo-lg { font-size: 2rem; }
.logo-mark.logo-footer .lm-navy { color: #fff; }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #FBFBFE 0%, var(--bg-soft) 100%);
}

.hero-badges .badge-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid #E4E8F2;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: 50px;
  margin: 0 8px 8px 0;
  box-shadow: 0 6px 16px -10px rgba(37,59,105,0.25);
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-title .underline-pink {
  position: relative;
  white-space: nowrap;
}

.hero-title .underline-pink svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
}

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

.hero-lead {
  font-size: 1.15rem;
  max-width: 520px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.trust-avatars span:first-child { margin-left: 0; }

/* ---------- Hero visual mockup ---------- */
.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-blob {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, var(--cyan-soft), var(--pink-soft) 70%);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  filter: blur(2px);
  z-index: 0;
}

.hero-mockup {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  max-width: 400px;
  margin: 40px auto 0;
}

.hero-mockup .mockup-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-mockup .mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E4E8F2;
}

.mockup-app-header {
  background: linear-gradient(120deg, var(--navy), var(--cyan-dark));
  border-radius: var(--radius-md);
  padding: 18px;
  color: #fff;
  margin-bottom: 16px;
}

.mockup-app-header small {
  opacity: 0.75;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mockup-agenda-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #E9ECF5;
}

.mockup-agenda-item:last-child { border-bottom: none; }

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-agenda-item .agenda-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mockup-agenda-item .agenda-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.hero-float-card .fc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}

.hero-float-card .fc-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-float-card--ticket {
  top: 6%;
  left: -6%;
  transform: rotate(-4deg);
}

.hero-float-card--badge {
  bottom: 2%;
  right: -8%;
  transform: rotate(3deg);
}

@media (max-width: 991.98px) {
  .hero-float-card--ticket { left: 0; }
  .hero-float-card--badge { right: 0; }
}

@media (max-width: 575.98px) {
  .hero-float-card { padding: 10px 12px; }
  .hero-float-card .fc-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .hero-blob { width: 300px; height: 300px; }
}

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid #EEF1F8;
  border-bottom: 1px solid #EEF1F8;
}

.logo-strip .strip-item {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: #C4CBDB;
  font-size: 1.15rem;
  text-align: center;
  opacity: 0.9;
}

/* ---------- Feature cards ---------- */
.feature-card {
  background: #fff;
  border: 1px solid #EEF1F8;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.feature-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-link i { transition: transform 0.2s ease; }
.feature-link:hover i { transform: translateX(4px); }

.icon-bg-pink { background: linear-gradient(135deg, var(--pink), #FF4FA8); }
.icon-bg-navy { background: linear-gradient(135deg, var(--navy), #3B579C); }
.icon-bg-cyan { background: linear-gradient(135deg, var(--cyan), #4FD8EC); }

.badge-new {
  background: var(--pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ---------- Highlight blocks ---------- */
.highlight-block {
  padding: 40px 0;
}

.highlight-visual {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.highlight-visual .hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 24px solid rgba(37, 59, 105, 0.06);
  width: 260px;
  height: 260px;
}

.highlight-visual .hv-icon-cluster {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hv-icon-tile {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.hv-icon-tile:nth-child(2) { margin-top: 24px; }
.hv-icon-tile:nth-child(3) { margin-top: -24px; }

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--navy);
}

.highlight-list li i {
  color: var(--pink);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ---------- Stats ---------- */
.stats-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,179,205,0.35), transparent 70%);
  top: -100px;
  right: -60px;
}

.stat-item { position: relative; z-index: 1; text-align: center; }

.stat-number {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}

.stat-number .stat-plus { color: var(--cyan); }

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.testimonial-card .stars { color: var(--pink); margin-bottom: 16px; font-size: 0.9rem; }

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 20px;
}

/* ---------- CTA Contact ---------- */
.cta-section {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.cta-form-card .form-control,
.cta-form-card .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #E4E8F2;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.cta-form-card .form-control:focus,
.cta-form-card .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}

.cta-form-card label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
.accordion-eventools .accordion-item {
  border: none;
  border-bottom: 1px solid #E9ECF5;
  background: transparent;
}

.accordion-eventools .accordion-button {
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  padding: 1.25rem 0;
  box-shadow: none;
}

.accordion-eventools .accordion-button:not(.collapsed) {
  color: var(--pink);
  background: transparent;
}

.accordion-eventools .accordion-button:focus { box-shadow: none; }

.accordion-eventools .accordion-button::after {
  background-size: 1.1rem;
}

.accordion-eventools .accordion-body {
  padding: 0 0 1.25rem;
  color: var(--text-body);
}

/* ---------- Footer ---------- */
.footer-eventools {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}

.footer-eventools p {
  color: #fff;
}

.footer-eventools h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-eventools a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-eventools a:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.footer-social a:hover { background: var(--pink); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: #fff;
}

/* ---------- WhatsApp float button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 1050;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #E4E8F2;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-card);
  z-index: 1050;
}

.back-to-top.show { display: flex; }

/* ---------- Utilities ---------- */
.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
}

/* Reveal-on-scroll is opt-in via a body class the JS adds after it boots,
   so content stays fully visible if JS fails to load or run. */
body.js-aos [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-aos [data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   Cart icon + offcanvas + checkout modal
   =================================================================== */
.cart-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid #E4E8F2;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  padding: 0;
}

.cart-icon-btn:hover { background: var(--pink-soft); color: var(--pink); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50px;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.cart-offcanvas {
  width: 420px;
  max-width: 92vw;
}

.cart-offcanvas .offcanvas-header {
  border-bottom: 1px solid #EEF1F8;
  padding: 24px;
}

.cart-offcanvas .offcanvas-title {
  font-family: "Baloo 2", sans-serif;
  color: var(--navy);
  font-weight: 700;
}

.cart-offcanvas .offcanvas-body {
  padding: 24px;
}

.cart-event-group { border-bottom: 1px solid #EEF1F8; padding-bottom: 16px; }

.cart-event-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.cart-item-price {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border-radius: 50px;
  padding: 4px 10px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37,59,105,0.15);
}

.cart-item-qty span { font-size: 0.85rem; font-weight: 600; min-width: 14px; text-align: center; }

.cart-item-remove {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px;
}

.cart-item-remove:hover { color: var(--pink); }

.cart-footer {
  border-top: 1px solid #EEF1F8;
  padding-top: 16px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 6px;
}

.cart-summary-total {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  font-family: "Baloo 2", sans-serif;
  margin-top: 8px;
}

.checkout-modal-content {
  border-radius: var(--radius-lg);
  border: none;
  padding: 12px;
}

.checkout-modal-content .modal-title {
  font-family: "Baloo 2", sans-serif;
  color: var(--navy);
  font-weight: 700;
}

.checkout-modal-content .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

.checkout-modal-content .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid #E4E8F2;
  padding: 0.65rem 1rem;
}

.checkout-modal-content .form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}

.payment-options {
  display: flex;
  gap: 10px;
}

.payment-option {
  flex: 1;
  border: 1.5px solid #E4E8F2;
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.payment-option input { position: absolute; opacity: 0; pointer-events: none; }

.payment-option i { display: block; font-size: 1.3rem; margin-bottom: 6px; color: var(--text-muted); }

.payment-option:has(input:checked),
.payment-option.is-checked {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-soft);
}

.payment-option:has(input:checked) i,
.payment-option.is-checked i { color: var(--pink); }

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--navy);
}

.checkout-total-line span:last-child { font-family: "Baloo 2", sans-serif; font-size: 1.2rem; }

.checkout-disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ===================================================================
   Página de listagem de eventos
   =================================================================== */
.page-header {
  padding-top: 150px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, #FBFBFE 0%, var(--bg-soft) 100%);
}

.page-header .breadcrumb-eventools {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-header .breadcrumb-eventools a { color: var(--text-muted); text-decoration: none; }
.page-header .breadcrumb-eventools a:hover { color: var(--pink); }

.search-bar {
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  background: transparent;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-chip {
  border: 1.5px solid #E4E8F2;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-chip:hover { border-color: var(--pink); color: var(--pink); }

.category-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.event-card {
  background: #fff;
  border: 1px solid #EEF1F8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.event-card-banner {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 3.5rem;
}

.event-card-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 6px 12px;
  text-align: center;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.25);
}

.event-card-date .d-num { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); line-height: 1; display: block; }
.event-card-date .d-month { font-size: 0.62rem; font-weight: 700; color: var(--pink); letter-spacing: 0.05em; }

.event-card-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.event-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.event-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.event-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #EEF1F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-card-price {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
}

.event-card-price small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.7rem; }

.event-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.event-card:hover .event-card-arrow { background: var(--pink); color: #fff; }

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}

/* ===================================================================
   Página de detalhe do evento
   =================================================================== */
.event-hero {
  height: 320px;
  margin-top: 76px;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: #fff;
}

.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.1));
}

.event-hero-icon {
  position: absolute;
  right: 6%;
  top: 20%;
  font-size: 9rem;
  color: rgba(255,255,255,0.18);
}

.event-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.event-hero .badge-pill-cat {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.event-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 500;
}

.event-hero-meta span { display: flex; align-items: center; gap: 6px; }

.event-detail-nav {
  background: #fff;
  border-bottom: 1px solid #EEF1F8;
  position: sticky;
  top: 76px;
  z-index: 100;
}

.event-detail-nav .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 18px;
  border-bottom: 3px solid transparent;
}

.event-detail-nav .nav-link.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.event-section-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.ticket-card {
  background: #fff;
  border: 1px solid #EEF1F8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.ticket-tier {
  border: 1px solid #EEF1F8;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
}

.ticket-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.ticket-tier-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.ticket-tier-price {
  font-weight: 800;
  color: var(--pink);
  font-family: "Baloo 2", sans-serif;
  white-space: nowrap;
}

.ticket-tier-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ticket-tier-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border-radius: 50px;
  padding: 6px 14px;
}

.stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(37,59,105,0.15);
}

.stepper button:disabled { opacity: 0.4; }

.stepper span { min-width: 16px; text-align: center; font-weight: 700; }

.location-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-card .fc-icon { width: 52px; height: 52px; font-size: 1.4rem; }

.organizer-card {
  border: 1px solid #EEF1F8;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.organizer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .ticket-card { position: static; margin-top: 32px; }
  .event-hero { height: auto; padding-top: 32px; margin-top: 68px; }
  .event-hero-icon { display: none; }
}
