/* 
 * CM Automacoes - Styles CSS
 * Versão: 2025-01-15
 * Encoding: UTF-8
 */
:root {
  color-scheme: dark;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  
  /* Dark theme colors */
  --bg: #0a0e27;
  --bg-alt: #0f172a;
  --bg-card: #1a1f3a;
  --fg: #ffffff;
  --fg-muted: #94a3b8;
  --muted: #64748b;
  
  /* Primary colors - Health/Medical theme */
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-light: #60a5fa;
  --primary-glow: rgba(59, 130, 246, 0.5);
  
  /* Accent colors */
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.4);
  
  /* Minha Saude brand colors */
  --mp-pink: #ec4899;
  --mp-purple: #a855f7;
  --mp-gradient-start: #a855f7;
  --mp-gradient-end: #ec4899;
  --mp-heart-pink: #f472b6;
  --success: #10b981;
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-strong: rgba(255, 255, 255, 0.2);
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Prevenir mudança de tamanho ao mudar de página */
/* Força scrollbar sempre visível para evitar mudança de layout */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: clamp(16px, 1vw, 18px);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Garantir largura consistente */
html,
body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--fg);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: var(--fg-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: min(1400px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--fg);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__logo {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(59, 130, 246, 0.5);
  position: relative;
}

.hero__logo::after {
  display: none;
}


.hero__tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.hero__lead {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--fg-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__lead strong {
  color: var(--fg);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Sections */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section.alt {
  background: var(--bg-alt);
}

.section__header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section__header h2 {
  margin-bottom: 1.5rem;
}

.section__lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--fg-muted);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 999px;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--stroke-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card span {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--fg);
}

.card p {
  margin: 0;
  color: var(--fg-muted);
  flex-grow: 1;
}

/* Grids */
.products-preview,
.features-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.feature-showcase-item {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-showcase-item:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-showcase-item h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.feature-showcase-item ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.feature-showcase-item ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--fg-muted);
  line-height: 1.7;
}

.feature-showcase-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 1.75rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.benefit-item strong {
  display: block;
  color: var(--fg);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.pricing-header p {
  color: var(--fg-muted);
  font-size: 1.25rem;
}

.trial-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.pricing-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #ffffff;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.discount-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--success), #059669);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0;
  line-height: 1;
}

.pricing-period {
  font-size: 1.125rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-equivalent {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--fg-muted);
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  margin-top: 2rem;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: #000000;
  color: #ffffff;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--stroke);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section h4 {
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer__section p {
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__section ul li {
  margin-bottom: 0.75rem;
}

.footer__section ul li a {
  color: var(--fg-muted);
  transition: color 0.3s ease;
}

.footer__section ul li a:hover {
  color: var(--primary-light);
}

.footer__section a {
  color: var(--primary-light);
  font-weight: 500;
}

.footer__section a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 2rem;
  text-align: center;
}

.footer__bottom p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-cta {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-alt));
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  font-size: 1.25rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--fg-muted);
}

/* Product Cards Large */
.product-card-large {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-large:hover {
  transform: translateY(-8px);
  border-color: var(--stroke-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card-large.coming-soon {
  opacity: 0.7;
}

.product-card__header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.product-card__icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.product-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  display: block;
}

.product-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--fg-muted);
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-badge {
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Product Hero */
.product-hero {
  max-width: 900px;
  margin: 0 auto;
}

.product-hero__content h2 {
  margin-bottom: 2rem;
}

.product-hero__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--fg-muted);
}

/* Privacy Content */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content article {
  margin-bottom: 3rem;
}

.privacy-content article:last-child {
  margin-bottom: 0;
}

.privacy-content h2 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.privacy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.privacy-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.privacy-content strong {
  color: var(--fg);
  font-weight: 600;
}

.privacy-content time {
  font-weight: 600;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-item {
  margin-bottom: 2.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-item p,
.contact-item address {
  font-size: 1.125rem;
  color: var(--fg);
  margin: 0;
  line-height: 1.7;
}

.contact-item a {
  color: var(--primary-light);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-cta {
  margin-top: 2rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.highlight-grid article {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.highlight-grid article h3 {
  margin-bottom: 1rem;
  color: var(--fg);
}

.highlight-grid article p {
  color: var(--fg-muted);
  margin: 0;
  flex-grow: 1;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--fg-muted);
}

/* Product Cards Large */
.product-card-large {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-large:hover {
  transform: translateY(-8px);
  border-color: var(--stroke-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card-large.coming-soon {
  opacity: 0.7;
}

.product-card__header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.product-card__icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.product-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  display: block;
}

.product-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--fg-muted);
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-badge {
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Product Hero */
.product-hero {
  max-width: 900px;
  margin: 0 auto;
}

.product-hero__content h2 {
  margin-bottom: 2rem;
}

.product-hero__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--fg-muted);
}

/* Privacy Content */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content article {
  margin-bottom: 3rem;
}

.privacy-content article:last-child {
  margin-bottom: 0;
}

.privacy-content h2 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.privacy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.privacy-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.privacy-content strong {
  color: var(--fg);
  font-weight: 600;
}

.privacy-content time {
  font-weight: 600;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-item {
  margin-bottom: 2.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-item p,
.contact-item address {
  font-size: 1.125rem;
  color: var(--fg);
  margin: 0;
  line-height: 1.7;
}

.contact-item a {
  color: var(--primary-light);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-cta {
  margin-top: 2rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.highlight-grid article {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.highlight-grid article h3 {
  margin-bottom: 1rem;
  color: var(--fg);
}

.highlight-grid article p {
  color: var(--fg-muted);
  margin: 0;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--stroke);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

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

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--stroke);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modern Page Header */
.page-header-modern {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--bg);
  margin-top: 80px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-header-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 96rem;
  height: 96rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(59, 130, 246, 0.2) 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-bg 20s ease-in-out infinite;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40%;
  width: 80rem;
  height: 80rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-bg 15s ease-in-out infinite reverse;
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mp-pink);
  margin-bottom: 2rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.page-header-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.gradient-text-modern {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Modern Products Grid */
.products-grid-modern {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

/* Modern Product Card */
.product-card-modern {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 2px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(236, 72, 153, 0.15);
}

.product-card-modern:hover::before {
  opacity: 1;
}

.product-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card-modern:hover .product-card-glow {
  opacity: 1;
}

.product-card-modern.featured-product {
  border: 2px solid rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.product-badge-modern {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
  z-index: 10;
}

.product-card-header-modern {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.product-icon-modern {
  font-size: 5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(236, 72, 153, 0.3));
  animation: float-icon 6s ease-in-out infinite;
}

.product-title-wrapper {
  flex: 1;
}

.product-title-modern {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--fg);
  line-height: 1.2;
}

.product-tag-modern {
  color: var(--mp-pink);
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
}

.product-description-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--fg-muted);
  flex-grow: 1;
}

.product-description-modern strong {
  color: var(--fg);
  font-weight: 700;
}

.product-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.feature-badge-modern:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1rem;
}

.product-actions-modern {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  flex: 1;
  text-align: center;
}

.btn-gradient {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.5);
}

.btn-gradient .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-gradient:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-disabled {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  opacity: 0.6;
}

.coming-soon-modern {
  opacity: 0.7;
}

.coming-soon-modern:hover {
  opacity: 0.85;
}

@keyframes float-bg {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(180deg);
  }
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Modern Styles */
@media (max-width: 768px) {
  .product-card-header-modern {
    flex-direction: column;
    text-align: center;
  }

  .product-icon-modern {
    margin: 0 auto;
  }

  .product-actions-modern {
    flex-direction: column;
  }

  .btn-modern {
    width: 100%;
  }
}

/* ============================================
   PÁGINA DE VENDAS - ESTILOS COMPLETOS
   ============================================ */

/* Hero Section com Mockups */
.hero-section-vendas {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(6rem, 10vw, 8rem);
  overflow: hidden;
  background: #ffffff;
  margin-top: 80px;
  min-height: auto;
}

.hero-bg-gradients {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-gradients::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 96rem;
  height: 96rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-bg-hero 20s ease-in-out infinite;
}

.hero-bg-gradients::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40%;
  width: 80rem;
  height: 80rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-bg-hero 15s ease-in-out infinite reverse;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.hero-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.hero-app-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-app-name {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .hero-text-content {
    text-align: center;
    align-items: center;
  }

  .hero-logo-section {
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ec4899;
  width: fit-content;
}

.hero-badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  text-align: left;
}

@media (max-width: 1024px) {
  .hero-title {
    text-align: center;
  }
}

.gradient-text-hero {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .hero-description {
    max-width: 100%;
  }
}

.hero-description strong {
  color: #1a1a1a;
  font-weight: 700;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(236, 72, 153, 0.08);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.feature-icon-small {
  font-size: 1rem;
}

.hero-download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-btn-link {
  transition: transform 0.3s ease;
}

.download-btn-link:hover {
  transform: scale(1.05);
}

.download-badge-img {
  height: 3.5rem;
  width: auto;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.trust-badge:first-child {
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 999px;
  color: #059669;
  font-weight: 600;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.trust-dot.green {
  background: #10b981;
}

/* Mockups Container */
.hero-mockups-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockups-container {
  position: relative;
  width: 380px;
  height: 580px;
}

.mockups-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  transform: scale(0.75);
}

.phone-mockup {
  position: absolute;
  transition: transform 0.5s ease, z-index 0.5s ease;
}

.phone-mockup:hover {
  z-index: 30 !important;
  transform: rotate(0deg) !important;
}

.phone-frame {
  background: #1a1a1a;
  border-radius: 2.5rem;
  padding: 0.375rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  width: 180px;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-left {
  left: 0;
  top: 2rem;
  z-index: 10;
  transform: rotate(-12deg);
}

.phone-left .phone-frame {
  width: 200px;
}

.phone-left .phone-screen {
  width: 180px;
}

.phone-right {
  right: 0;
  top: 2rem;
  z-index: 10;
  transform: rotate(12deg);
}

.phone-right .phone-frame {
  width: 200px;
}

.phone-right .phone-screen {
  width: 180px;
}

.phone-center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: float-phone 6s ease-in-out infinite;
}

.phone-center .phone-frame {
  width: 220px;
  border-radius: 3rem;
  padding: 0.5rem;
}

.phone-center .phone-screen {
  width: 200px;
  border-radius: 2.5rem;
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  padding: 0.625rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 30;
  animation: pulse-float 2s ease-in-out infinite;
}

.floating-icon span {
  font-size: 1.25rem;
  display: block;
}

.floating-heart {
  left: -2rem;
  top: 33%;
  animation-delay: 0s;
}

.floating-activity {
  right: -2rem;
  top: 50%;
  animation-delay: 0.5s;
}

.floating-pill {
  left: -1rem;
  bottom: 25%;
  animation-delay: 1s;
}

/* Features Section */
.features-section-vendas {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #ffffff;
  position: relative;
}

.features-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.features-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  margin-bottom: 1.5rem;
}

.features-badge-icon {
  font-size: 1rem;
}

.features-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.gradient-text-features {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.features-grid-vendas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card-vendas {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card-vendas:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.feature-card-vendas:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-icon-pink {
  background: rgba(236, 72, 153, 0.1);
}

.feature-icon-purple {
  background: rgba(168, 85, 247, 0.1);
}

.feature-icon-blue {
  background: rgba(59, 130, 246, 0.1);
}

.feature-icon-green {
  background: rgba(16, 185, 129, 0.1);
}

.feature-icon-blue-light {
  background: rgba(59, 130, 246, 0.1);
}

.feature-icon-orange {
  background: rgba(245, 158, 11, 0.1);
}

.feature-icon-violet {
  background: rgba(139, 92, 246, 0.1);
}

.feature-icon-cyan {
  background: rgba(6, 182, 212, 0.1);
}

.feature-icon-large {
  font-size: 1.75rem;
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-card-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* Download Section */
.download-section-vendas {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.download-bg-gradients {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-bg-gradients::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.download-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.download-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.download-icon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  border-radius: 1.5rem;
  filter: blur(40px);
  transform: scale(1.5);
  opacity: 0.3;
}

.download-app-icon {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.25);
}

.download-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.download-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.gradient-text-download {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.download-how-it-works {
  font-size: 0.875rem;
  color: #64748b;
  background: rgba(236, 72, 153, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-how-it-works strong {
  color: #1a1a1a;
  font-weight: 700;
}

.download-buttons-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.download-btn-link-large {
  transition: transform 0.3s ease;
}

.download-btn-link-large:hover {
  transform: scale(1.05);
}

.download-badge-large {
  height: 4rem;
  width: auto;
}

.download-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

/* Footer Dark */
.footer-dark {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

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

.footer-section-dark h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}

.footer-logo-subtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-dark li {
  margin-bottom: 0.75rem;
}

.footer-links-dark a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-dark a:hover {
  color: #ffffff;
}

.footer-contact-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-dark li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.contact-icon {
  font-size: 1rem;
  margin-top: 0.125rem;
}

.footer-contact-dark a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-dark a:hover {
  color: #ffffff;
}

.footer-bottom-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-heart-message {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.heart-icon-footer {
  color: #ec4899;
}

/* Animações */
@keyframes float-bg-hero {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(180deg);
  }
}

@keyframes float-phone {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes pulse-float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.8;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-mockups-wrapper {
    order: -1;
  }

  .mockups-container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .hero-section-vendas {
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  }

  .hero-text-content {
    text-align: center;
    align-items: center;
  }

  .hero-features-list,
  .hero-trust-badges {
    justify-content: center;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto;
  }

  .floating-icon {
    display: none;
  }

  .features-grid-vendas {
    grid-template-columns: 1fr;
  }

  .download-buttons-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .download-badge-large {
    height: 3.5rem;
  }

  .download-trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom-dark {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   ESTILOS MODERNOS CLAROS - TODAS AS PÁGINAS
   ============================================ */

/* Navbar Light */
.navbar-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-light {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-decoration: none;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  transition: all 0.3s ease;
}

.logo-light:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.logo-light span:not(.logo-text-fallback) {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: clamp(64px, 8vw, 72px);
  height: clamp(64px, 8vw, 72px);
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text-fallback {
  font-size: 2rem;
  display: inline-block;
}

.logo-light span:not(.logo-text-fallback) {
  display: inline-block;
}

.nav-menu-light a {
  color: #64748b;
}

.nav-menu-light a:hover,
.nav-menu-light a.active {
  color: #1a1a1a;
}

.nav-cta-light {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-cta-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hero Index com Imagem */
.hero-index-with-image {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #ffffff;
  margin-top: clamp(70px, 10vw, 90px);
  overflow: hidden;
  min-height: calc(100vh - clamp(70px, 10vw, 90px));
  display: flex;
  align-items: center;
}

.hero-index-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.hero-index-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.hero-badge-orange {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-logo-section-index {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-index-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0;
}

.hero-logo-icon-index {
  width: clamp(100px, 12vw, 120px);
  height: clamp(100px, 12vw, 120px);
  object-fit: contain;
  border-radius: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 0 2px rgba(59, 130, 246, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-section-index:hover .hero-logo-icon-index {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4), 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hero-logo-icon-fallback {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 1rem;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.hero-index-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-index-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

.hero-index-description-secondary {
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

.hero-index-description strong {
  color: #1a1a1a;
  font-weight: 700;
}

.hero-index-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-index-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-index-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-arrow-index {
  transition: transform 0.3s ease;
}

.btn-index-primary:hover .btn-arrow-index {
  transform: translateX(4px);
}

.btn-index-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-index-secondary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Hero Image Wrapper */
.hero-index-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(400px, 50vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

/* Hero Mockup Container - Premium Floating SaaS Mockup */
.hero-mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(400px, 50vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

/* Background Gradient - Purple to Blue */
.hero-mockup-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4f46e5 100%);
  border-radius: 1.5rem;
  opacity: 0.95;
}

/* Abstract UI Particles Background */
.hero-mockup-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  border-radius: 1.5rem;
  pointer-events: none;
}

/* Subtle Security/Automation Visual Cue */
.hero-mockup-particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  border-radius: 1.5rem;
  opacity: 0.5;
}

/* Phone Carousel Wrapper */
.phone-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: clamp(280px, 30vw, 320px);
  margin: 0 auto;
  z-index: 10;
  animation: float-phone 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0) rotateY(-5deg);
  }
  50% {
    transform: translateY(-20px) rotateY(-5deg);
  }
}

/* Phone Frame */
.phone-frame-carousel {
  position: relative;
  width: 100%;
  max-width: clamp(280px, 30vw, 320px);
  aspect-ratio: 9 / 19.5;
  background: #1a1a1a;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(0.4rem, 1vw, 0.5rem);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  flex-shrink: 0;
}

/* Phone Notch */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 1.25rem 1.25rem;
  z-index: 20;
}

/* Phone Screen */
.phone-screen-carousel {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

/* Carousel Slides Container */
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Individual Slide */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.carousel-slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

/* Phone Screen Image */
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone Home Indicator */
.phone-home-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2.5px;
  z-index: 20;
}

/* Carousel Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  z-index: 15;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
  width: 24px;
  border-radius: 5px;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: all 0.3s ease;
  line-height: 1;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -60px;
}

.carousel-next {
  right: -60px;
}

/* Subtle Glow Effect */
.hero-mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 1.5rem;
  z-index: 0;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

/* Trust Bar Modern */
.trust-bar-modern {
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
}

.trust-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.trust-text {
  font-weight: 500;
}

/* Hero Modern Index (fallback) */
.hero-modern-index {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(6rem, 10vw, 8rem);
  background: #ffffff;
  margin-top: 80px;
  overflow: hidden;
}

.hero-modern-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
  pointer-events: none;
}

.hero-modern-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-modern-index {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title-modern-index {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-description-modern-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero-description-modern-index strong {
  color: #1a1a1a;
  font-weight: 700;
}

.hero-description-secondary {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

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

.btn-modern-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-arrow-modern {
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover .btn-arrow-modern {
  transform: translateX(4px);
}

.btn-secondary-modern {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary-modern:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-outline-modern {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-outline-modern:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Section Modern Light */
.section-modern-light {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #ffffff;
}

.section-alt-modern {
  background: #f8fafc;
}

.section-header-modern {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.eyebrow-modern-section {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title-modern {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-description-modern {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

/* Products Grid Modern Index */
.products-grid-modern-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card-modern-index {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.product-card-modern-index:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card-modern-index.featured {
  border: 2px solid #f59e0b;
  transform: scale(1.02);
}

.product-badge-modern-index {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-icon-large {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .product-logo-img {
    width: 64px;
    height: 64px;
  }
}

.product-title-modern-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-description-modern-index {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.product-company-modern-index {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.product-company-modern-index strong {
  color: #1a1a1a;
  font-weight: 700;
}

.product-tag-modern-index {
  color: #ec4899;
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 1rem;
}

.product-features-modern-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.product-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-actions-modern-index {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-actions-modern-index .btn-modern-index {
  flex: 1;
}

/* Features Grid Modern Index */
.features-grid-modern-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card-modern-index {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.feature-card-modern-index:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper-modern {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon-modern {
  font-size: 1.75rem;
}

.feature-label-modern {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f59e0b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-title-modern-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.feature-description-modern-index {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

/* Footer Modern Light */
.footer-modern-light {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4rem 0 2rem;
}

.footer-cta-modern {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.footer-cta-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.footer-content-modern-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section-modern-light h4 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-section-modern-light p {
  color: #64748b;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-section-modern-light ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-modern-light ul li {
  margin-bottom: 0.75rem;
}

.footer-section-modern-light ul li a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-modern-light ul li a:hover {
  color: #3b82f6;
}

.footer-section-modern-light a {
  color: #3b82f6;
  font-weight: 500;
}

.footer-section-modern-light a:hover {
  color: #2563eb;
}

.footer-bottom-modern-light {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-modern-light p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* Privacy Page Modern */
.privacy-content-modern {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-highlight-modern {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  border: 2px solid #10b981;
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.privacy-highlight-title {
  color: #10b981;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.privacy-highlight-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-highlight-list {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto 0;
  list-style: none;
  padding: 0;
}

.privacy-highlight-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #1a1a1a;
  font-weight: 500;
}

.privacy-highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.5rem;
}

.privacy-article-modern {
  margin-bottom: 3rem;
}

.privacy-article-modern:last-child {
  margin-bottom: 0;
}

.privacy-section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.privacy-subsection-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-subsubsection-title {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  color: #334155;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.privacy-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 1rem;
}

.privacy-paragraph strong {
  color: #1a1a1a;
  font-weight: 700;
}

.privacy-list-modern {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}

.privacy-list-modern li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #64748b;
}

.privacy-list-modern li strong {
  color: #1a1a1a;
  font-weight: 700;
}

.privacy-link-modern {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link-modern:hover {
  color: #2563eb;
  text-decoration: underline;
}

.privacy-address-modern {
  font-style: normal;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-address-modern strong {
  color: #1a1a1a;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* Page Header Logo */
.page-header-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-header-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header-logo-fallback {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 1rem;
  font-size: 3rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* Pricing Section Modern Light */
.pricing-section-modern-light {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-container-modern {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header-modern {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-company-badge-modern {
  margin-bottom: 1.5rem;
}

.pricing-company-text-modern {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.pricing-company-name-modern {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.pricing-discount-banner-modern {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(236, 72, 153, 0.3);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-discount-title-modern {
  color: #1a1a1a;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-discount-subtitle-modern {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin: 0.5rem 0 0;
  font-weight: 600;
}

.pricing-title-modern {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.pricing-subtitle-modern {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.pricing-cards-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pricing-card-modern-light {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card-modern-light:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured-modern {
  border-color: #f59e0b;
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff 0%, rgba(245, 158, 11, 0.03) 100%);
}

.pricing-featured-badge-modern {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.pricing-price-modern {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0;
  line-height: 1;
}

.pricing-price-large-modern {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.pricing-price-wrapper-modern {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pricing-period-modern {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-equivalent-modern {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.pricing-equivalent-green-modern {
  color: #10b981;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pricing-info-box-modern {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.5rem;
}

.pricing-info-box-green-modern {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
}

.pricing-info-text-modern {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.pricing-info-text-modern strong {
  color: #1a1a1a;
  font-weight: 700;
}

.pricing-features-modern-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  flex-grow: 1;
}

.pricing-features-modern-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  position: relative;
  padding-left: 2rem;
}

.pricing-features-modern-list li:last-child {
  border-bottom: none;
}

.pricing-features-modern-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-cta-modern {
  width: 100%;
  margin-top: 2rem;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.pricing-guarantee-modern {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.pricing-guarantee-title-modern {
  color: #10b981;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.pricing-guarantee-text-modern {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ Modern */
.faq-container-modern {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question-modern {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question-modern::-webkit-details-marker {
  display: none;
}

.faq-question-modern::after {
  content: '+';
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item-modern[open] .faq-question-modern::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer-modern {
  margin-top: 1rem;
  color: #64748b;
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .pricing-card-featured-modern {
    transform: scale(1);
  }

  .pricing-cards-modern {
    grid-template-columns: 1fr;
  }
}

/* Page Header Modern Light */
.page-header-modern-light {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  margin-top: 80px;
}

.page-header-content-modern {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-header-title-modern {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.page-header-subtitle-modern {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #64748b;
  line-height: 1.7;
}

/* About Content Modern */
.about-content-modern {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text-modern h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.values-list-modern {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.value-item-modern {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  border-left: 4px solid #3b82f6;
}

.value-title-modern {
  color: #3b82f6;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.value-description-modern {
  color: #64748b;
  display: block;
}

.about-card-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.about-data-list {
  margin: 0;
}

.data-item-modern {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.data-item-modern:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.data-label-modern {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f59e0b;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.data-value-modern {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.125rem;
}

/* Contact Grid Modern */
.contact-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-card-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: all 0.3s ease;
}

.contact-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-item-modern {
  margin-bottom: 2.5rem;
}

.contact-item-modern:last-child {
  margin-bottom: 0;
}

.contact-item-modern h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-item-modern p,
.contact-item-modern address {
  font-size: 1.125rem;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.7;
}

.contact-item-modern a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

.contact-item-modern a:hover {
  color: #2563eb;
}

.contact-card-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-description-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.contact-info-box-modern {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.5rem;
}

.contact-info-text-modern {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.contact-info-text-modern strong {
  color: #1a1a1a;
  font-weight: 700;
}

.contact-cta-modern {
  margin-top: 2rem;
}

.form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-modern {
  max-width: 800px;
  margin: 4rem auto 0;
}

.contact-form-modern .contact-card-modern {
  padding: 3rem;
}

.form-group-modern {
  margin-bottom: 1.5rem;
}

.form-label-modern {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.form-input-modern,
.form-select-modern,
.form-textarea-modern {
  width: 100%;
  padding: 0.875rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
}

.form-textarea-modern {
  resize: vertical;
  min-height: 120px;
}

.form-note-modern {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Responsive Modern Light */
@media (max-width: 968px) {
  .about-content-modern {
    grid-template-columns: 1fr;
  }

  .about-card-modern {
    position: static;
  }
}

@media (max-width: 1024px) {
  .hero-index-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    min-height: auto;
  }

  .hero-index-image-wrapper {
    order: -1;
    min-height: clamp(300px, 40vh, 400px);
    max-height: 500px;
  }
  
  .hero-mockup-container {
    min-height: clamp(300px, 40vh, 400px);
    max-height: 500px;
    padding: 1rem 0;
  }

  .hero-index-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .hero-index-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .logo-icon {
    width: clamp(56px, 10vw, 64px);
    height: clamp(56px, 10vw, 64px);
  }
  
  .hero-logo-icon-index {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);
  }

  .hero-logo-section-index {
    justify-content: center;
  }

  .hero-index-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-modern-index {
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  }
  
  .hero-mockup-main {
    width: 320px;
    height: 210px;
  }
  
  .hero-mockup-left {
    width: 140px;
    height: 240px;
    left: 5%;
  }
  
  .hero-mockup-right {
    width: 220px;
    height: 150px;
    right: 5%;
  }

  .hero-index-with-image {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .hero-index-image-wrapper {
    min-height: clamp(300px, 45vh, 400px);
  }
  
  .phone-carousel-wrapper {
    max-width: clamp(240px, 60vw, 280px);
  }
  
  .phone-frame-carousel {
    max-width: clamp(240px, 60vw, 280px);
  }
  
  .carousel-prev {
    left: clamp(-35px, -8vw, -40px);
  }
  
  .carousel-next {
    right: clamp(-35px, -8vw, -40px);
  }
  
  .carousel-arrow {
    width: clamp(32px, 8vw, 36px);
    height: clamp(32px, 8vw, 36px);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
  
  .carousel-dots {
    margin-top: 1rem;
    gap: 0.4rem;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dot.active {
    width: 20px;
  }

  .hero-mockup-main {
    width: 320px;
    height: 210px;
  }
  
  .hero-mockup-left {
    width: 140px;
    height: 240px;
    left: 5%;
  }
  
  .hero-mockup-right {
    width: 220px;
    height: 150px;
    right: 5%;
  }

  .hero-actions-modern,
  .hero-index-actions {
    flex-direction: column;
  }

  .btn-modern-index,
  .btn-index-primary,
  .btn-index-secondary {
    width: 100%;
  }

  .trust-bar-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .trust-bar-item {
    justify-content: center;
  }
}

  .products-grid-modern-index,
  .features-grid-modern-index {
    grid-template-columns: 1fr;
  }

  .product-actions-modern-index {
    flex-direction: column;
  }

  .contact-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .product-icon-modern,
  .page-header-bg::before,
  .page-header-bg::after,
  .hero-bg-gradients::before,
  .hero-bg-gradients::after,
  .phone-center,
  .floating-icon {
    animation: none !important;
  }
}
