/* ============================================================
   KM Brasil & LATAM 2026 — Modern Conference Landing Page
   ============================================================ */

:root {
  --blue: #1A365D;
  --blue-light: #2B5797;
  --blue-dark: #0F2440;
  --red: #C3213B;
  --red-light: #E53E5C;
  --red-dark: #9A1A30;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
  --trans: 0.25s cubic-bezier(.4, 0, .2, 1);
  --trans-slow: 0.5s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--gray-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(195, 33, 59, .35);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(195, 33, 59, .45);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: .95rem 2.5rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.highlight {
  color: var(--red);
}

.gradient-text {
  background: linear-gradient(135deg, var(--red-light), #FF6B7F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .8rem 0;
  transition: var(--trans-slow);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: .4rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 120px;
  width: auto;
  transition: var(--trans);
  display: block;
}

.logo-white {
  display: block;
}

.logo-color {
  display: none;
}

.navbar.scrolled .logo-img {
  height: 80px;
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo-color {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  font-size: .95rem;
  position: relative;
  transition: var(--trans);
}

.navbar.scrolled .nav-link {
  color: var(--gray-800);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--trans);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: .5rem;
}

.navbar.scrolled .btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-close-btn {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 1005;
  flex-shrink: 0;
  margin-left: auto;
  padding: .25rem;
  line-height: 1;
}

.navbar.scrolled .mobile-menu-btn,
body.menu-open .mobile-menu-btn {
  color: var(--gray-900) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--blue-dark);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 49, .55);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 2.5rem;
  max-width: 100%;
}

.hero-logo img {
  height: auto;
  max-height: 120px;
  max-width: min(100%, 500px);
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
}

.hero-title {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--gray-300);
  margin-bottom: 3rem;
  max-width: 640px;
}

.hero-info-bar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hib-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  min-width: 200px;
  text-align: left;
}

.hib-item i {
  font-size: 1.75rem;
  color: var(--red-light);
  flex-shrink: 0;
}

.hib-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.hib-value {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Navbar buttons over hero with white text */
.hero .btn-outline {
  border-color: rgba(255, 255, 255, .3);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

.nav-cta.btn-primary {
  padding: .5rem 1.4rem;
  font-size: .9rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  background: rgba(195, 33, 59, .08);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-text a {
  color: var(--red);
  font-weight: 600;
}

.about-text a:hover {
  text-decoration: underline;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
  align-items: flex-start;
}

.about-card:hover {
  transform: translateX(6px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.about-card i {
  font-size: 2rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-card h4 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: .3rem;
}

.about-card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   SPEAKERS
   ============================================================ */
.speakers {
  background: var(--gray-50);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.speaker-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--trans);
  text-align: center;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.speaker-photo {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-200);
}

.speaker-info {
  padding: 1.25rem 1rem;
}

.speaker-info h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .3rem;
}

.speaker-info span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  background: var(--white);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sch-tab {
  padding: .75rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font);
}

.sch-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.sch-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.sch-panel {
  display: none;
}

.sch-panel.active {
  display: block;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 110px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 95px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.tl-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.tl-time {
  position: absolute;
  left: -110px;
  top: 0.25rem;
  width: 85px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  background: var(--blue-dark);
  color: var(--white);
  padding: .3rem .4rem;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.tl-dot {
  position: absolute;
  left: -19px;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
  z-index: 2;
}

.tl-card {
  margin-left: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.tl-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.tl-type {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 6px;
  margin-bottom: .5rem;
}

.type-opening {
  background: #E3F2FD;
  color: #1565C0;
}

.type-talk {
  background: #FFF3E0;
  color: #E65100;
}

.type-keynote {
  background: #FCE4EC;
  color: #C62828;
}

.type-panel {
  background: #E8F5E9;
  color: #2E7D32;
}

.type-science {
  background: #EDE7F6;
  color: #4527A0;
}

.type-case {
  background: #E8EAF6;
  color: #283593;
}

.tl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .3rem;
}

.tl-speaker {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: .3rem;
}

.tl-place {
  font-size: .8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.tl-note {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem;
  background: #FFF8E1;
  border-color: #FFE082;
  color: var(--gray-700);
}

.tl-note i {
  font-size: 1.5rem;
  color: #F9A825;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--trans);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(195, 33, 59, .15);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .25rem;
}

.price-desc {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.price-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 600;
}

.price-features {
  text-align: left;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.price-features li:last-child {
  border: none;
}

.price-features i {
  color: var(--red);
  font-size: 1.1rem;
}

.price-card .btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}

.price-card .btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.pricing-empenho {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: .9rem;
  color: var(--gray-600);
}

.pricing-empenho a {
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   GROUP DISCOUNT & CALCULATOR (MODAL POPUP & BANNER)
   ============================================================ */
.pricing-group-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 2.25rem 3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.group-banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.group-banner-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.group-banner-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.group-banner-text p {
  color: var(--gray-300);
  font-size: 0.95rem;
  max-width: 540px;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gray-100);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}


.group-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.group-icon-bg {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(195, 33, 59, .1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.group-title-wrap h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gray-900);
}

.group-title-wrap p {
  color: var(--gray-600);
  font-size: .95rem;
}

.group-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: .45rem .85rem;
  border-radius: 50px;
  font-size: .85rem;
  color: var(--gray-700);
}

.g-badge i {
  color: var(--red);
}

.group-calc-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .75rem;
  font-size: .98rem;
}

.calc-select {
  width: 100%;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 600;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--gray-900);
  cursor: pointer;
  transition: var(--trans);
  outline: none;
}

.calc-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195, 33, 59, .15);
}

.calc-instructions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.calc-instructions p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.calc-instructions i {
  font-size: 1.15rem;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.calc-instructions a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

.calc-result-card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gray-300);
}

.calc-badge-discount {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  padding: .25rem .6rem;
  border-radius: 4px;
  letter-spacing: .05em;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
}

.calc-unit-val {
  font-size: 1.4rem;
  color: #4ADE80;
  font-weight: 800;
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin: .25rem 0;
}

.calc-total-box {
  text-align: left;
}

.calc-total-box span {
  font-size: .85rem;
  color: var(--gray-300);
}

.calc-total-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-top: .2rem;
}

.calc-savings-box {
  background: rgba(255, 255, 255, .1);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--gray-200);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.calc-savings-box strong {
  color: #4ADE80;
}

.calc-actions {
  margin-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .3);
  color: var(--white);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

@media (max-width: 900px) {
  .group-calc-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--white);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.location-card i {
  font-size: 1.75rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-card h4 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: .3rem;
}

.location-card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden !important;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  min-height: 300px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.location-map iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

.location-info .btn {
  align-self: flex-start;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  background: var(--gray-50);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--trans);
}

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

.partner-logo {
  height: 80px;
  max-width: 220px;
  width: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  display: block;
}

.partner-logo-placeholder {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.25rem;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-placeholder i {
  font-size: 2rem;
  color: var(--blue-light);
}

.partner-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .3rem;
}

.partner-card p {
  font-size: .9rem;
  color: var(--gray-500);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: clamp(4rem, 10vh, 6rem) 0;
  text-align: center;
}

.cta-container h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-container p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 150px;
  max-width: 100%;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .9rem;
  margin-bottom: .5rem;
}

.footer-realizacao {
  color: var(--gray-500);
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: .9rem;
  margin-bottom: .65rem;
  transition: var(--trans);
}

.footer-links a:hover {
  color: var(--red);
}

.social-icons {
  display: flex;
  gap: .75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--trans);
}

.social-icons a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: .8rem;
  color: var(--gray-400);
}

.footer-credit a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--red-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* ============================================================
   RESPONSIVE MOBILE STYLES
   ============================================================ */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

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

  .hero-info-bar {
    gap: .75rem;
  }

  .hib-item {
    padding: .75rem 1rem;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile adjustments */
  .nav-container {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    max-width: calc(100% - 60px);
    flex-shrink: 1;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 100% !important;
    object-fit: contain;
  }

  .navbar.scrolled .logo-img {
    height: 46px !important;
    max-height: 46px !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    z-index: 1005;
  }

  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2010;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: var(--trans);
  }

  .nav-close-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 2000;
    padding: 2rem;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links .nav-link {
    color: var(--gray-800) !important;
    font-size: 1.2rem;
  }

  .nav-links .btn-primary {
    margin-top: .5rem;
    width: 80%;
    max-width: 280px;
  }

  /* Hero Section Mobile */
  .hero {
    padding-top: 6rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .hero-bg {
    background-image: url('imagens/bannermobile.png') !important;
  }

  .hero-title {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .hero-info-bar {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hib-item {
    width: 100%;
    min-width: 100%;
    padding: 0.85rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Speakers Grid Mobile (2 Columns) */
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .speaker-photo {
    height: 160px;
  }

  .speaker-info {
    padding: 0.85rem 0.65rem;
  }

  .speaker-info h4 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .speaker-info span {
    font-size: 0.78rem;
  }

  /* Pricing & Banner Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 2.5rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .pricing-group-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }

  .group-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .group-banner-text p {
    max-width: 100%;
  }

  .pricing-group-banner .btn {
    width: 100%;
  }

  /* Modal Popup Mobile */
  .modal-overlay {
    padding: 0.75rem;
  }

  .modal-container {
    padding: 1.5rem 1.15rem;
    max-height: 94vh;
    border-radius: var(--radius);
  }

  .modal-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .group-title-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.75rem;
  }

  .group-badges {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .g-badge {
    justify-content: center;
    width: 100%;
    font-size: 0.8rem;
  }

  .calc-select {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 0.75rem 0.85rem;
  }

  .calc-result-card {
    padding: 1.25rem 1rem;
  }

  .calc-total-amount {
    font-size: 1.85rem;
  }

  /* Location Mobile */
  .location-map {
    aspect-ratio: 16/10;
    min-height: 250px;
  }

  .location-info .btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    height: 110px !important;
    max-height: 110px !important;
    width: auto;
    margin: 0 auto 1rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* Timeline Schedule Mobile */
  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .tl-time {
    position: static;
    display: inline-block;
    width: auto;
    margin-bottom: .5rem;
    font-size: 0.8rem;
  }

  .tl-dot {
    display: none;
  }

  .tl-card {
    margin-left: 0;
    padding: 1rem 1.15rem;
  }

  .schedule-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .sch-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .speaker-photo {
    height: 240px;
  }
}

/* ============================================================
   EVENT ENDED STYLES
   ============================================================ */
.ended-badge-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(195, 33, 59, 0.25);
  border: 1px solid var(--red-light);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.btn-disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
  pointer-events: none;
  background: var(--gray-500) !important;
  border-color: var(--gray-500) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.pricing-ended-notice {
  margin: 2rem 0;
  text-align: center;
}

.ended-notice-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.ended-notice-card i {
  font-size: 3.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.ended-notice-card h3 {
  font-size: 1.75rem;
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.ended-notice-card p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ended-notice-card a {
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   SUGGESTIONS & HOTEL
   ============================================================ */
.suggestions {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.suggestions .section-header .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.suggestions .section-header .section-title {
  color: var(--white);
}

.suggestions .section-header .section-title .highlight {
  color: var(--red-light);
}

.suggestions .section-header .section-subtitle {
  color: var(--gray-300);
}

.hotel-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-width: 1000px;
  margin: 0 auto;
}

.hotel-image {
  position: relative;
  min-height: 320px;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hotel-discount-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(195, 33, 59, 0.35);
  z-index: 2;
}

.hotel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  gap: 1.25rem;
}

.hotel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hotel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(195, 33, 59, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.hotel-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
}

.hotel-header p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.hotel-intro {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.hotel-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hotel-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--gray-700);
}

.hotel-highlights i {
  color: var(--red);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hotel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.hotel-actions .btn {
  white-space: normal;
  text-align: center;
}

.hotel-actions .btn-outline-dark {
  border-color: var(--blue);
  color: var(--blue);
}

.hotel-actions .btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* Hotel Modal */
.hotel-modal {
  max-width: 820px;
}

.hotel-modal-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}

.hotel-modal-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hotel-modal-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hotel-modal-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hotel-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(195, 33, 59, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.hotel-modal-intro h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
}

.hotel-modal-intro p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hotel-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hotel-modal-block {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.hotel-modal-block h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.hotel-modal-block h4 i {
  color: var(--red);
  font-size: 1.25rem;
}

.hotel-modal-block p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hotel-modal-block strong {
  color: var(--gray-900);
}

.hotel-address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.hotel-address i {
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hotel-reservation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.hotel-reservation-option {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.hotel-reservation-option h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.hotel-reservation-option h5 i {
  color: var(--blue-light);
  font-size: 1.1rem;
}

.hotel-reservation-option p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.hotel-reservation-option a {
  color: var(--red);
  font-weight: 700;
}

.hotel-coupon {
  display: inline-block;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  user-select: all;
}

.hotel-modal-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.hotel-modal-footer p {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 600;
}

.hotel-modal-footer i {
  color: var(--red);
  font-size: 1.35rem;
}

@media (max-width: 900px) {
  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hotel-image {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .hotel-content {
    padding: 1.5rem;
  }

  .hotel-modal-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hotel-reservation-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hotel-header h3 {
    font-size: 1.15rem;
  }

  .hotel-intro {
    font-size: 0.98rem;
  }

  .hotel-highlights li {
    font-size: 0.92rem;
  }

  .hotel-actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hotel-actions .btn {
    width: 100%;
    padding: 0.75rem 1.2rem;
    font-size: 0.92rem;
  }
}

/* ============================================================
   GUIDE PAGE — Guia do Participante
   ============================================================ */
.guide-page {
  background: var(--gray-50);
}

.guide-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 0.85rem 0;
  box-shadow: var(--shadow);
}

.guide-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.guide-back i {
  font-size: 1.1rem;
}

.guide-logo img {
  height: 34px;
  width: auto;
}

.guide-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 8rem 0 3rem;
  text-align: center;
}

.guide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.guide-hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.guide-hero p {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 680px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.guide-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.guide-nav-scroll {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.guide-nav-scroll::-webkit-scrollbar {
  display: none;
}

.guide-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--trans);
}

.guide-nav-item i {
  font-size: 1.1rem;
  color: var(--red);
}

.guide-nav-item:hover,
.guide-nav-item:focus {
  background: var(--red);
  color: var(--white);
}

.guide-nav-item:hover i,
.guide-nav-item:focus i {
  color: var(--white);
}

.guide-container {
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guide-section {
  scroll-margin-top: 130px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow);
  transition: var(--trans);
}

.guide-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(195, 33, 59, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guide-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.guide-card-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
}

.guide-card-content p {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.98rem;
}

.guide-card-content a {
  color: var(--red);
  font-weight: 600;
}

.guide-card-content strong {
  color: var(--gray-900);
}

.guide-lead {
  font-size: 1.05rem;
  color: var(--gray-800);
}

.guide-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.guide-detail i {
  color: var(--red);
  font-size: 1.2rem;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--gray-700);
  font-size: 0.98rem;
}

.guide-list li::marker {
  color: var(--red);
}

.guide-coupon {
  display: inline-flex;
  align-self: flex-start;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.08em;
  user-select: all;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.guide-links .btn-outline-dark {
  border-color: var(--blue);
  color: var(--blue);
}

.guide-links .btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.guide-card-content .btn {
  color: inherit;
}

.guide-card-content .btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.guide-card-content .btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  color: var(--white);
}

.guide-card-content .btn-outline-dark {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

.guide-card-content .btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.guide-full {
  width: 100%;
}

.guide-schedule {
  margin-top: 0.5rem;
}

.guide-tabs {
  margin-bottom: 1.25rem;
}

.guide-panels .sch-panel {
  display: none;
}

.guide-panels .sch-panel.active {
  display: block;
}

.guide-timeline {
  padding-left: 1rem;
}

.guide-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  padding: 1rem 0;
}

.guide-footer {
  background: var(--blue-dark);
  color: var(--gray-300);
  padding: 2rem 0;
  text-align: center;
}

.guide-footer p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.guide-footer a {
  color: var(--white);
  font-weight: 600;
}

.guide-footer-credit {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

.guide-footer-credit a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-footer-credit a:hover {
  color: var(--red-light);
}

.guide-footer-back {
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .guide-header-inner {
    padding: 0 1rem;
  }

  .guide-logo img {
    height: 30px;
  }

  .guide-hero {
    padding: 2rem 0 1.75rem;
  }

  .guide-hero p {
    font-size: 0.98rem;
  }

  .guide-nav {
    top: 56px;
  }

  .guide-section {
    scroll-margin-top: 115px;
  }

  .guide-nav-item {
    font-size: 0.82rem;
    padding: 0.5rem 0.85rem;
  }

  .guide-container {
    padding: 1.5rem 1rem 3rem;
    gap: 1rem;
  }

  .guide-section {
    scroll-margin-top: 120px;
  }

  .guide-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .guide-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .guide-card-content h2 {
    font-size: 1.15rem;
  }

  .guide-card-content p,
  .guide-list {
    font-size: 0.95rem;
  }

  .guide-links,
  .guide-card-content .btn {
    width: 100%;
  }

  .guide-links .btn,
  .guide-card-content .btn {
    width: 100%;
    text-align: center;
  }

  .guide-tabs {
    gap: 0.5rem;
  }

  .guide-tabs .sch-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .guide-timeline {
    padding-left: 0.5rem;
  }
}

/* ============================================================
   MURAL DE FOTOS
   ============================================================ */
.mural-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.mural-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
}

.mural-file-label:hover {
  border-color: var(--red);
  background: rgba(195, 33, 59, 0.04);
}

.mural-file-label i {
  font-size: 2.5rem;
  color: var(--red);
}

.mural-file-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}

.mural-file-hint {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.mural-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.mural-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}

.mural-alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.mural-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mural-alert-success {
  background: rgba(74, 222, 128, 0.12);
  color: #166534;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.mural-alert-success i {
  color: #22c55e;
}

.mural-alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.mural-alert-error i {
  color: #ef4444;
}

.mural-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mural-item {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}

.mural-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mural-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .mural-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .mural-file-label {
    padding: 1.5rem 1rem;
  }

  .mural-file-label i {
    font-size: 2rem;
  }
}

/* ============================================================
   MURAL — FORMULÁRIO RECOLHÍVEL
   ============================================================ */
.mural-gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.mural-gallery-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.mural-gallery-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

#mural-send-btn {
  flex-shrink: 0;
}

.mural-closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.mural-upload-area {
  display: none;
  margin-top: 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
  animation: fade-slide 0.25s ease;
}

.mural-upload-area.is-open {
  display: block;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   MURAL — LIGHTBOX
   ============================================================ */
.mural-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 36, 64, 0.92);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mural-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mural-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mural-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
}

.mural-lightbox-author {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.mural-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 1001;
}

.mural-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* ============================================================
   GUIA — BLOCO COMPACTO DO MURAL
   ============================================================ */
.guide-cta {
  padding: 1.5rem 0 0;
}

.guide-cta-card {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a365d 100%);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.guide-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.guide-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.guide-cta-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.guide-cta-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

.guide-cta .btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
  font-weight: 700;
  padding: 0.65rem 1.2rem;
}

.guide-cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-dark);
}

@media (max-width: 640px) {
  .guide-cta-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.85rem;
  }

  .guide-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   MURAL DE FOTOS — EXTRAS (nome, inputs, telão, aprovação)
   ============================================================ */
.mural-field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: -0.8rem;
}

.mural-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--trans);
}

.mural-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195, 33, 59, 0.08);
}

.mural-item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}

.mural-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.mural-author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(15, 36, 64, 0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.mural-author::before {
  content: 'Enviado por ';
  font-weight: 400;
  opacity: 0.9;
}

/* Botões auxiliares */
.btn-sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  gap: 0.35rem;
}

.btn-danger {
  background: var(--red-dark);
  color: var(--white);
  border: 1px solid var(--red-dark);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-danger:hover {
  background: #7a1528;
  border-color: #7a1528;
}

/* ============================================================
   TELA DE APROVAÇÃO
   ============================================================ */
.approval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.approval-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.approval-card:hover {
  box-shadow: var(--shadow);
}

.approval-approved {
  border-left: 4px solid #22c55e;
}

.approval-pending {
  border-left: 4px solid #f59e0b;
}

.approval-thumb {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}

.approval-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approval-info {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.approval-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.approval-name i {
  color: var(--red);
}

.approval-status {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.approval-status i {
  font-size: 1rem;
}

.approval-status .ph-check-circle {
  color: #22c55e;
}

.approval-status .ph-clock {
  color: #f59e0b;
}

.approval-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.approval-actions .btn {
  flex: 1 1 auto;
  min-width: 90px;
}

/* ============================================================
   TELÃO / CARROSSEL DE FOTOS
   ============================================================ */
.screen-body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0b1a2e 100%);
  color: var(--white);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
}

.screen-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-logo {
  height: 3.5rem;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.screen-title h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.screen-title p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
}

.screen-stage {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  overflow: hidden;
}

.screen-row {
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.screen-row-left .screen-track {
  animation: marquee-left 60s linear infinite;
}

.screen-row-right .screen-track {
  animation: marquee-right 60s linear infinite;
}

.screen-track {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0 0.5rem;
  will-change: transform;
}



.screen-card {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 36, 64, 0.85) 0%, transparent 50%);
}

.screen-card-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.screen-card-name::before {
  content: 'Enviado por ';
  font-weight: 400;
  opacity: 0.9;
}

.screen-footer {
  flex: 0 0 auto;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.screen-empty h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.screen-empty p {
  font-size: 1.25rem;
  opacity: 0.85;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .screen-card {
    width: 220px;
    height: 155px;
  }

  .screen-title h1 {
    font-size: 1.25rem;
  }

  .screen-title p {
    font-size: 0.85rem;
  }
}
.tl-expand-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #333333;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tl-expand-btn:hover {
    background: var(--red); /* Primary color approx */
    color: #ffffff;
}

/* FAQ & Trabalhos Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--blue-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(26, 54, 93, 0.05);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
    border-color: var(--blue);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(26, 54, 93, 0.03));
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-dark);
    cursor: pointer;
    transition: var(--trans);
}

.faq-question:hover {
    color: var(--red);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: #fafafa;
    color: var(--gray-900);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 2000px; /* arbitrary large value */
    border-top: 1px solid var(--gray-200);
}

.works-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.work-item:hover {
    border-color: var(--blue-light);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.08);
    transform: translateX(4px);
}

.work-id {
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 70px;
    text-align: center;
    font-size: 0.85rem;
    align-self: flex-start;
}

.work-title {
    margin: 0;
    font-size: 1rem;
    color: var(--blue-dark);
    font-weight: 500;
    line-height: 1.4;
}
