:root {
  --primary-light: #d6c4f2;
  --primary: #8541ea;
  --primary-dark: #42187e;
  --white: #ffffff;

  --text-main: #2f1f4a;
  --text-soft: #6d5d88;
  --bg-soft: #f8f4ff;
  --bg-lighter: #fcfaff;
  --border-soft: rgba(66, 24, 126, 0.10);
  --shadow-soft: 0 20px 60px rgba(66, 24, 126, 0.10);
  --shadow-card: 0 12px 30px rgba(66, 24, 126, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
}

.site-header {
  position: relative;
  top: 0;
  z-index: 999;
  background: #42187e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  padding: 0;
}

.site-header.scrolled {
  background: #42187e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.header-wrapper {
  min-height: 90px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  overflow: visible;
  margin: auto 0;
  transform: translateY(20px);
}

.site-logo img {
  height: 220px;
  width: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-header,
.btn-whatsapp,
.btn-blog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-whatsapp {
  background: #d6c4f2;
  color: #42187e;
  box-shadow: 0 12px 24px rgba(133, 65, 234, 0.22);
	text-decoration: none;
}

.btn-whatsapp:hover {
  background: #d6c4f2;
  color: #42187e;
  transform: translateY(-6px);
  text-decoration: none;
}

.btn-blog {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: rgba(133, 65, 234, 0.18);
	text-decoration: none;
}

.btn-blog:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-6px);
	text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0 10px;
}

.mobile-menu a {
  text-decoration: none;
  color: #34105f;
  font-weight: 600;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.hero-main-banner {
	width: 100%;
}

.hero-main-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* HERO */
.hero-section {
  position: relative;
  overflow: visible;
  z-index: 2;
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(214, 196, 242, 0.70), transparent 35%),
    radial-gradient(circle at bottom right, rgba(133, 65, 234, 0.10), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.hero-badge,
.section-kicker,
.floating-label {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: rgba(133, 65, 234, 0.10);
  color: var(--primary-dark);
  border-radius: var(--radius-pill);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary-dark);
  max-width: 700px;
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  margin-bottom: 34px;
}

.hero-mini-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mini-info-item {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}

.mini-info-item strong {
  display: block;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.mini-info-item span {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
}

.hero-media {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  width: 100%;
  max-width: 560px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  border: 1px solid rgba(133, 65, 234, 0.08);
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(133, 65, 234, 0.12);
  border-radius: 22px;
  padding: 18px 10px 16px;
  box-shadow: var(--shadow-card);
  z-index: 20;
}

.floating-card strong {
  display: block;
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.floating-card p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

.floating-card-one {
  top: 10%;
  left: -32%;
}

.floating-card-two {
	top: 98%;
	left: 22rem;
	z-index: 30;
}

.hero-text .feature-list {
	margin-top: 30px;
}

/* INTRO / BRANDS */
.brands-section {
  padding: 70px 0;
  background: var(--white);
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 42px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-intro p {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 auto;
  max-width: 700px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 20px;
  background: var(--bg-lighter);
  border: 1px solid var(--border-soft);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

/* FEATURES */
.feature-section {
  padding: 95px 0;
}

.feature-section .hero-actions {
	margin: 30px 0;
}

.feature-section-light {
  background: var(--bg-soft);
}

.feature-section-dark {
  background: linear-gradient(180deg, #42187e 0%, #5e26b0 100%);
}

.feature-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.feature-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.feature-content-light h2,
.feature-content-light p,
.feature-content-light .feature-list li,
.feature-content-light .section-kicker {
  color: var(--white);
}

.feature-content-light .section-kicker {
  background: rgba(255, 255, 255, 0.14);
}

.feature-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--white);
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-list {
  padding: 0;
  margin: 50px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-weight: 500;	
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

/*=============================================
HTML ANIMADO PARA SAUDE E SEGURANÇA DO TRABALHO
==============================================*/
.feature-demo-sst {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.sst-demo-shell {
  background: #ffffff;
  border: 1px solid rgba(133, 65, 234, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(66, 24, 126, 0.12);
  min-height: 720px;
  width: 100%;	
}

.sst-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(90deg, #42187e, #8541ea);
  color: #ffffff;
}

.sst-demo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sst-demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.sst-demo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.sst-demo-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  min-height: 640px;
  background: linear-gradient(180deg, #fcfbff 0%, #f4edff 100%);
  overflow: hidden;
  position: relative;
}

.sst-message {
  max-width: 82%;
  padding: 14px 16px 12px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(66, 24, 126, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: sstMessageIn 18s infinite;
}

.sst-message p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
}

.sst-message span {
  display: block;
  font-size: 12px;
  opacity: 0.75;
}

.sst-message.user {
  align-self: flex-start;
  background: #efeff2;
  color: #2b2b35;
}

.sst-message.ai {
  align-self: flex-end;
  background: linear-gradient(135deg, #42187e, #8541ea);
  color: #ffffff;
}

.sst-message-1 { animation-delay: 0s; }
.sst-message-2 { animation-delay: 2s; }
.sst-message-3 { animation-delay: 4s; }
.sst-message-4 { animation-delay: 6s; }
.sst-message-5 { animation-delay: 8s; }
.sst-message-6 { animation-delay: 10s; }
.sst-message-7 { animation-delay: 12s; }
.sst-message-8 { animation-delay: 14s; }
.sst-message-9 { animation-delay: 16s; }

@keyframes sstMessageIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  6%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=============================================
HTML ANIMADO PARA ESTACIONAMENTO
==============================================*/
.feature-demo-parking {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.parking-demo-shell {
  width: 100%;
  min-height: 340px;
  background: #ffffff;
  border: 1px solid rgba(133, 65, 234, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(66, 24, 126, 0.10);
}

.parking-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(90deg, #42187e, #8541ea);
  color: #ffffff;
}

.parking-demo-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.parking-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.parking-demo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
}

.parking-demo-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  min-height: 260px;
  background: linear-gradient(180deg, #fcfbff 0%, #f4edff 100%);
  overflow: hidden;
  position: relative;
}

.parking-message {
  max-width: 88%;
  padding: 10px 12px 9px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(66, 24, 126, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: parkingMessageIn 38s infinite;
}

.parking-message p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-line;
}

.parking-message span {
  display: block;
  font-size: 10px;
  opacity: 0.75;
}

.parking-message.user {
  align-self: flex-start;
  background: #efeff2;
  color: #2b2b35;
}

.parking-message.ai {
  align-self: flex-end;
  background: linear-gradient(135deg, #42187e, #8541ea);
  color: #ffffff;
}

.parking-message-1  { animation-delay: 0s; }
.parking-message-2  { animation-delay: 2s; }
.parking-message-3  { animation-delay: 4s; }
.parking-message-4  { animation-delay: 6s; }
.parking-message-5  { animation-delay: 8s; }
.parking-message-6  { animation-delay: 10s; }
.parking-message-7  { animation-delay: 12s; }
.parking-message-8  { animation-delay: 14s; }
.parking-message-9  { animation-delay: 16s; }
.parking-message-10 { animation-delay: 18s; }
.parking-message-11 { animation-delay: 20s; }
.parking-message-12 { animation-delay: 22s; }
.parking-message-13 { animation-delay: 24s; }
.parking-message-14 { animation-delay: 26s; }
.parking-message-15 { animation-delay: 28s; }
.parking-message-16 { animation-delay: 30s; }
.parking-message-17 { animation-delay: 32s; }
.parking-message-18 { animation-delay: 34s; }
.parking-message-19 { animation-delay: 36s; }

@keyframes parkingMessageIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  5%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*====================================
RESERVA PARA HOTEL
=====================================*/
.feature-demo-hotel {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.hotel-demo-shell {
  width: 100%;
  min-height: 340px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(66, 24, 126, 0.10);
}

.hotel-demo-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(90deg, #42187e, #8541ea);
  color: #fff;
}

.hotel-demo-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.hotel-demo-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hotel-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  opacity: 0;
  animation: hotelIn 32s infinite;
}

.hotel-message.user {
  align-self: flex-start;
  background: #efeff2;
}

.hotel-message.ai {
  align-self: flex-end;
  background: linear-gradient(135deg, #42187e, #8541ea);
  color: #fff;
}

.hotel-message span {
  font-size: 10px;
  opacity: 0.7;
}

.hotel-message-1 { animation-delay: 0s; }
.hotel-message-2 { animation-delay: 2s; }
.hotel-message-3 { animation-delay: 4s; }
.hotel-message-4 { animation-delay: 6s; }
.hotel-message-5 { animation-delay: 8s; }
.hotel-message-6 { animation-delay: 10s; }
.hotel-message-7 { animation-delay: 12s; }
.hotel-message-8 { animation-delay: 14s; }
.hotel-message-9 { animation-delay: 16s; }
.hotel-message-10 { animation-delay: 18s; }
.hotel-message-11 { animation-delay: 20s; }
.hotel-message-12 { animation-delay: 22s; }
.hotel-message-13 { animation-delay: 24s; }
.hotel-message-14 { animation-delay: 26s; }
.hotel-message-15 { animation-delay: 28s; }
.hotel-message-16 { animation-delay: 30s; }
.hotel-message-17 { animation-delay: 32s; }

@keyframes hotelIn {
  0% { opacity: 0; transform: translateY(15px); }
  5%,100% { opacity: 1; transform: translateY(0); }
}

/* STATS */
.stats-section {
  padding: 90px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: var(--bg-lighter);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.stat-card span {
  display: block;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* BENEFITS */
.benefits-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.benefit-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(66, 24, 126, 0.12);
}

.benefit-card h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.75;
}

/* TESTIMONIAL */
.testimonial-section {
  padding: 95px 0;
  background: var(--white);
}

.testimonial-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-content,
.quote-card {
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow-card);
}

.testimonial-content {
  background: linear-gradient(180deg, #f7f1ff 0%, #efe3ff 100%);
  border: 1px solid var(--border-soft);
}

.testimonial-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.testimonial-content p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
}

.quote-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary-dark);
  color: var(--white);
}

.quote-card p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-card strong {
  font-size: 16px;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  padding: 95px 0;
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.faq-item h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

/* CTA FINAL */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #42187e 0%, #8541ea 100%);
}

.final-cta-box {
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
}

.final-cta-box .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.final-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.final-cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta-box .btn-blog {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.final-cta-box .btn-blog:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.final-cta-box .btn-whatsapp {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.final-cta-box .btn-whatsapp:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* BLOG */
.blog-page,
.single-post,
.page-content,
.default-page,
.error-404 {
  background: var(--white);
}

.blog-card {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.blog-card-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--primary-dark);
}

.blog-card-excerpt {
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}

.blog-card-link {
  color: var(--primary);
  font-weight: 700;
}

.post-meta {
  color: var(--text-soft);
  font-size: 14px;
}

.post-content,
.page-text {
  color: var(--text-main);
  line-height: 1.9;
}

.post-content p,
.page-text p {
  margin-bottom: 18px;
}

/*================
SITE FOOTER
=================*/
.site-footer {
  background: #34105f;
  padding: 14px 0 14px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.site-footer .container {
  position: relative;
  padding-bottom: 34px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 90px;
  line-height: 0;
  overflow: visible;
  position: relative;	
  top: 20px;
}

.footer-logo img {
  height: 220px;
  width: auto;
  max-height: none;
  display: block;
}

.footer-copy {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-item i {
  font-size: 20px;
  flex-shrink: 0;
}

.footer-item:hover {
  color: #d6c4f2;
  transform: translateY(-2px);
}

/* 404 */
.error-content h1 {
  font-size: 90px;
  font-weight: 800;
  color: var(--primary-dark);
}

.error-content h2 {
  color: var(--primary-dark);
}

.error-content p {
  color: var(--text-soft);
}

.hero-main-demo {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(66, 24, 126, 0.14);
  background: #ffffff;
  border: 1px solid rgba(133, 65, 234, 0.08);
}

.demo-chat-shell {
  background: #ffffff;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.demo-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(90deg, #42187e, #8541ea);
  color: #ffffff;
}

.demo-chat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-chat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.demo-chat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.demo-chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #fcfbff 0%, #f6f0ff 100%);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.demo-message {
  max-width: 82%;
  padding: 14px 16px 12px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(66, 24, 126, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: demoMessageIn 18s infinite;
}

.demo-message p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
}

.demo-message span {
  display: block;
  font-size: 12px;
  opacity: 0.75;
}

.demo-message.user {
  align-self: flex-start;
  background: #efeff2;
  color: #2b2b35;
}

.demo-message.ai {
  align-self: flex-end;
  background: linear-gradient(135deg, #42187e, #8541ea);
  color: #ffffff;
}

.message-1 { animation-delay: 0s; }
.message-2 { animation-delay: 2s; }
.message-3 { animation-delay: 4s; }
.message-4 { animation-delay: 6s; }
.message-5 { animation-delay: 8s; }
.message-6 { animation-delay: 10s; }
.message-7 { animation-delay: 12s; }
.message-8 { animation-delay: 14s; }
.message-9 { animation-delay: 16s; }

@keyframes demoMessageIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  6%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .header-wrapper {
    min-height: 78px;
  }

  .hero-section {
    padding: 70px 0 60px;
  }

  .hero-media {
    min-height: auto;
  }

  .floating-card {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }

  .feature-section,
  .stats-section,
  .benefits-section,
  .testimonial-section,
  .faq-section,
  .final-cta-section {
    padding: 72px 0;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn-blog,
  .header-actions .btn-whatsapp {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    background: var(--white);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: block;
    padding: 12px 8px;
    color: var(--primary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(66, 24, 126, 0.06);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }
	
  .hero-main-demo {
    max-width: 100%;
  }

  .demo-chat-shell {
    min-height: 560px;
  }

  .demo-chat-body {
    min-height: 480px;
  }
	
  .site-footer {
    padding: 30px 0 26px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-contact {
    justify-content: flex-start;
    gap: 14px 18px;
  }
	
  .site-footer {
    padding: 30px 0 24px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-contact {
    justify-content: flex-start;
    gap: 14px 18px;
  }
	
  .parking-demo-shell {
    min-height: 680px;
  }

  .parking-demo-body {
    min-height: 600px;
  }
	
  .feature-demo-sst {
    max-width: 100%;
  }

  .sst-demo-shell {
    min-height: 620px;
  }

  .sst-demo-body {
    min-height: 540px;
  }
}

@media (max-width: 767px) {
	body, html {
		margin: 0;
		padding: 0;
		overflow-x: hidden;
	}
	
	.site-logo {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 90px;
	  overflow: visible;
	  margin: auto 0;
	  transform: translateY(20px);
	}

	.site-logo img {
	  height: 220px;
	  width: auto;
	  max-height: none;
	  display: block;
	  object-fit: contain;
	  justify-content: center;
	}
	
	.hero-media {
		min-height: auto;
		display: block;
		padding-top: 10px;
	}

	.hero-main-demo {
		width: 100%;
		max-width: 100%;
		border-radius: 24px;
		overflow: hidden;
	}

	.demo-chat-shell {
		min-height: auto;
		width: 100%;
	}

	.demo-chat-top {
		padding: 14px 14px;
		gap: 10px;
		align-items: center;
	}

	.demo-chat-brand {
		gap: 8px;
		min-width: 0;
	}

	.demo-chat-brand strong {
		font-size: 16px;
		line-height: 1.2;
	}

	.demo-chat-badge {
		min-height: 28px;
		padding: 0 10px;
		font-size: 11px;
		white-space: nowrap;
	}

	.demo-chat-body {
		padding: 14px;
		gap: 10px;
		min-height: auto;
	}

	.demo-message {
		max-width: 88%;
		padding: 12px 12px 10px;
		border-radius: 18px;
	}

	.demo-message p {
		margin: 0 0 6px;
		font-size: 13px;
		line-height: 1.45;
		word-break: break-word;
	}

	.demo-message span {
		font-size: 10px;
		line-height: 1.3;
	}

	.floating-card {
		position: static;
		max-width: 100%;
		margin-top: 14px;
		padding: 14px 16px;
		border-radius: 18px;
	}

	.floating-card-one,
	.floating-card-two {
		top: auto;
		left: auto;
	}

	.floating-label {
		padding: 8px 14px;
		font-size: 13px;
		margin-bottom: 10px;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}
	
	.feature-list {
		margin: 32px 0;
		padding-left: 15px;
	}

	.feature-list li {
		padding-left: 24px;
		margin-bottom: 16px;
		font-size: 15px;
		line-height: 1.6;
	}

	.feature-list li::before {
		left: 0;
		top: 9px;
		width: 8px;
		height: 8px;
	}

	.hero-text p,
	.section-intro p,
	.feature-content p,
	.final-cta-box p,
	.testimonial-content p,
	.faq-item p {
		font-size: 16px;
	}
	
	.hero-actions {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 14px;
		text-align: center;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
		text-align: center;
	}

	.brands-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.mini-info-item {
		width: 100%;
	}

	.feature-content h2,
	.section-intro h2,
	.testimonial-content h2,
	.final-cta-box h2 {
		font-size: 2.2rem;
	}

	.testimonial-section {
		padding: 60px 0;
	}

	.testimonial-box {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.testimonial-content,
	.quote-card {
		padding: 24px 20px;
		border-radius: 22px;
	}

	.testimonial-content h2 {
		font-size: 30px;
		line-height: 1.15;
		margin-bottom: 14px;
	}

	.testimonial-content p {
		font-size: 15px;
		line-height: 1.7;
		margin: 0;
	}

	.testimonial-content .section-kicker {
		padding: 10px 16px;
		font-size: 13px;
		line-height: 1.4;
		margin-bottom: 14px;
	}

	.testimonial-quote {
		width: 100%;
	}

	.quote-card {
		min-height: auto;
	}

	.quote-card p {
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.quote-card strong {
		font-size: 15px;
	}
	
	.header-actions {
		display: none !important;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-menu.active {
		display: flex;
	}

	.header-actions {
		display: none !important;
	}

	.menu-toggle {
		display: flex;
	}	
	
	.site-footer {
		padding: 28px 0 22px;
		overflow: hidden;
	}

	.site-footer .container {
		padding-bottom: 0;
	}

	.site-footer {
		padding: 36px 0 28px;
		overflow: hidden;
	}

	.site-footer .container {
		padding-top: 0;
		padding-bottom: 0;
	}

	.footer-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 22px;
		text-align: center;
	}

	.footer-brand {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0;
	}

	.footer-logo {
		height: auto;
		top: 0;
		justify-content: center;
		align-items: center;
		margin-top: -60px;
	}

	.footer-logo img {
		height: 220px;
		width: auto;
		max-width: 160px;
		display: block;
	}

	.footer-contact {
		position: relative;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: -60px;
	}

	.footer-item {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		font-size: 15px;
		text-align: center;
		flex-wrap: wrap;
		margin: 0;
		z-index: 2;
	}

	.footer-item i {
		font-size: 22px;
		line-height: 1;
	}

	.footer-item span {
		overflow-wrap: anywhere;
	}

	.footer-copy {
		position: static;
		left: auto;
		bottom: auto;
		transform: none;
		margin: 18px 0 0;
		padding: 0 14px;
		font-size: 14px;
		line-height: 1.5;
		text-align: center;
		white-space: normal;
	}
	
}
