:root {
  --color-bg-main: #f8f8fb;
  --color-bg-secondary: #ffffff;
  --color-accent: #ff2f6d;
  --color-accent-hover: #e11d5d;
  --color-accent-2: #43258d;
  --color-text-main: #1f2340;
  --color-text-muted: #7a7f96;
  --color-border: rgba(67, 37, 141, 0.1);
  --gradient-primary: linear-gradient(90deg, #ff2f6d, #a12f7a 48%, #221764 100%);
  --glow-accent: 0 12px 28px rgba(85, 43, 145, 0.22);

  --color-bg: var(--color-bg-main);
  --color-surface: var(--color-bg-secondary);
  --color-surface-light: #f2f3f8;
  --color-text: var(--color-text-main);
  --color-text-secondary: var(--color-text-muted);
  --color-primary: var(--color-accent);
  --color-primary-dark: var(--color-accent-hover);
  --color-success: #10b981;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);

  --shadow-sm: 0 6px 16px rgba(34, 23, 100, 0.08);
  --shadow-md: 0 10px 24px rgba(34, 23, 100, 0.1);
  --shadow-lg: 0 16px 34px rgba(34, 23, 100, 0.12);
  --shadow-xl: 0 20px 44px rgba(34, 23, 100, 0.14);
  --shadow-2xl: 0 26px 56px rgba(34, 23, 100, 0.16);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
}

a {
  color: var(--color-accent);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover:not(.btn):not(.whatsapp-float):not(.footer-column a):not(.internal-card a) {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 47, 109, 0.14);
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top center, rgba(255, 47, 109, 0.08), transparent 22%),
    radial-gradient(circle at right 18%, rgba(67, 37, 141, 0.08), transparent 26%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.015;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(248, 248, 251, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s var(--ease-out);
}

.header.scrolled {
  background: rgba(248, 248, 251, 0.96);
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

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

.logo strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  position: relative;
}

.nav a.btn-primary {
  color: #ffffff;
}

.nav a:not(.btn):hover {
  color: var(--color-text);
  text-decoration: none;
  text-shadow: none;
}

.nav a:not(.btn):focus-visible {
  text-decoration: none;
  text-shadow: none;
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible,
.nav a:not(.btn):hover span,
.nav a:not(.btn):focus-visible span {
  text-decoration: none !important;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s var(--ease-out);
  border-radius: 2px;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  box-shadow: var(--glow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #e11d5d, #8b2f7b 48%, #1d1458 100%);
  box-shadow: 0 16px 34px rgba(67, 37, 141, 0.28);
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(255, 47, 109, 0.05);
  border-color: var(--color-accent-hover);
  box-shadow: 0 10px 22px rgba(255, 47, 109, 0.12);
  color: var(--color-accent-hover);
  text-decoration: none;
  text-shadow: none;
}

.btn:hover,
.btn:focus-visible,
.btn svg {
  text-decoration: none;
}

.btn:hover svg,
.btn:focus-visible svg {
  color: inherit;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

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

.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 47, 109, 0.08) 25%, transparent 50%, rgba(67, 37, 141, 0.08) 75%, transparent 100%),
    radial-gradient(circle at 50% 25%, rgba(161, 47, 122, 0.1), transparent 58%);
  background-size: 280px 100%, 100% 100%;
  animation: heroFloatBands 16s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -10% -5%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.14;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 47, 109, 0.14), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(67, 37, 141, 0.16), transparent 45%);
  filter: blur(28px);
  animation: heroFloatGlow 12s ease-in-out infinite;
}

.hero-content-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@keyframes heroFloatBands {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    background-position: 0 0, 50% 25%;
  }
  50% {
    transform: translate3d(2%, 1.5%, 0) scale(1.03);
    background-position: 160px 0, 50% 30%;
  }
  100% {
    transform: translate3d(-1%, -0.5%, 0) scale(1);
    background-position: 320px 0, 50% 25%;
  }
}

@keyframes heroFloatGlow {
  0% { transform: translate3d(-1%, -1%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 1.5%, 0) scale(1.05); }
  100% { transform: translate3d(-0.5%, 1%, 0) scale(1.02); }
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 47, 109, 0.08);
  border: 1px solid rgba(161, 47, 122, 0.18);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-content-centered .badge {
  margin-left: auto;
  margin-right: auto;
}

.badge svg {
  width: 16px;
  height: 16px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content-centered h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
}

.gradient-text {
  background: linear-gradient(135deg, #ff2f6d, #7d2d80, #221764);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.stat span {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.preview-card {
  position: relative;
  background: linear-gradient(145deg, var(--color-surface), #f6f3fb);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-2xl);
  transform: perspective(1000px) rotateY(-2deg);
  transition: all 0.4s var(--ease-out);
}

.preview-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-8px);
  box-shadow: 0 18px 36px rgba(34, 23, 100, 0.16);
  border-color: rgba(161, 47, 122, 0.18);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.preview-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.preview-time {
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
}

.preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.preview-card:hover .preview-image img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.preview-image:hover .preview-overlay {
  opacity: 1;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--color-bg);
  margin-left: 3px;
}

.preview-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.preview-content p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.preview-bar {
  height: 4px;
  background: rgba(67, 37, 141, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 65%;
  background: var(--gradient-primary);
  border-radius: 999px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  animation: floatCard 3s ease-in-out infinite;
}

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

.floating-card svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.card-label {
  font-size: 0.6875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.card-1 {
  top: 25%;
  left: -15%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -15%;
  animation-delay: 1s;
}

.brands-ticker {
  padding: 2rem 0;
  background: #f3f4f8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 47, 109, 0.08);
  border: 1px solid rgba(161, 47, 122, 0.18);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.features-section {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 47, 122, 0.18);
  box-shadow: 0 18px 36px rgba(34, 23, 100, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 47, 109, 0.1), rgba(67, 37, 141, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.devices-section {
  padding: 100px 0;
  background: #f3f4f8;
}

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

.devices-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.devices-content p {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.device-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-sans);
  color: inherit;
}

.device-item:hover {
  background: #ffffff;
  border-color: rgba(161, 47, 122, 0.18);
  transform: translateX(4px);
}

.device-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.device-item svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.device-item strong {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.device-item span {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.device-showcase {
  position: relative;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform: translateY(18px);
}

.device-showcase::before,
.device-showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
}

.device-showcase::before {
  width: 160px;
  height: 160px;
  top: 6%;
  left: 4%;
  background: radial-gradient(circle, rgba(255, 47, 109, 0.2) 0%, rgba(255, 47, 109, 0.08) 45%, transparent 72%);
  animation: deviceBubbleOne 7.5s ease-in-out infinite;
}

.device-showcase::after {
  width: 190px;
  height: 190px;
  right: 2%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(67, 37, 141, 0.18) 0%, rgba(161, 47, 122, 0.08) 48%, transparent 74%);
  animation: deviceBubbleTwo 9s ease-in-out infinite;
}

.device-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.97;
  filter: saturate(0.94) contrast(0.98) brightness(1.01) drop-shadow(0 20px 34px rgba(67, 37, 141, 0.14));
  animation: deviceFloat 6.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes deviceFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes deviceBubbleOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8px, -12px, 0) scale(1.06);
  }
}

@keyframes deviceBubbleTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, 8px, 0) scale(1.05);
  }
}

.device-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.device-modal.active {
  display: block;
}

.device-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.device-modal-panel {
  position: relative;
  width: min(680px, calc(100% - 2rem));
  margin: 8vh auto;
  background: linear-gradient(140deg, #ffffff, #f5f1fb);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  z-index: 1;
}

.device-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(67, 37, 141, 0.05);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.device-modal-close:hover {
  border-color: rgba(161, 47, 122, 0.18);
}

.device-modal-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.device-modal-intro {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.device-modal-steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-secondary);
}

.device-modal-steps li {
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

.pricing-section {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.connection-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.tab-button:hover {
  border-color: rgba(161, 47, 122, 0.18);
}

.tab-button.active {
  background: var(--gradient-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: var(--glow-accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(161, 47, 122, 0.18);
  box-shadow: 0 18px 36px rgba(34, 23, 100, 0.12);
}

.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(161, 47, 122, 0.18), 0 18px 36px rgba(34, 23, 100, 0.12);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  background: var(--gradient-primary);
  border-radius: 999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-period {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-right: 0.25rem;
}

.amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-left: 0.25rem;
}

.price-save {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  color: var(--color-success);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.price-features svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-section {
  padding: 100px 0;
  background: #f3f4f8;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(161, 47, 122, 0.18);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-section {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.cta-card {
  background: linear-gradient(135deg, rgba(255, 47, 109, 0.08), rgba(67, 37, 141, 0.1));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 47, 109, 0.08) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-visual {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.cta-badge svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.cta-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.cta-badge span {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}


.footer {
  background: #f3f4f8;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  color: var(--color-text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.footer-column a {
  display: block;
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  transition: color 0.2s;
  position: relative;
  width: fit-content;
}

.footer-column a:hover {
  color: var(--color-primary);
  text-decoration: none;
  text-shadow: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column a:hover span,
.footer-column a:focus-visible span {
  text-decoration: none !important;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  width: 100%;
}

.footer-column a:focus-visible {
  text-decoration: none;
  text-shadow: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.footer-bottom p:first-child {
  margin-bottom: 0.5rem;
}

.internal-main {
  padding: 150px 0 90px;
}

.internal-layout {
  max-width: 980px;
  margin: 0 auto;
}

.internal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.internal-header h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 1rem;
}

.internal-header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.internal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.internal-card {
  background: linear-gradient(140deg, #ffffff, #f5f1fb);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.internal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.internal-card h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.internal-card p,
.internal-card li {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.internal-card ul {
  padding-left: 1.1rem;
}

.internal-card a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: var(--color-primary);
  text-decoration: none;
  text-shadow: none;
}

.internal-card a:hover,
.internal-card a:focus-visible {
  color: var(--color-accent-hover);
  text-decoration: none !important;
  text-shadow: none;
}

.internal-card a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out);
}

.internal-card a:hover::after,
.internal-card a:focus-visible::after {
  width: 100%;
}

.internal-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.redirect-notice {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translate(-50%, 16px);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(161, 47, 122, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 1400;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.redirect-notice.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.redirect-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(67, 37, 141, 0.12);
  border-top-color: var(--color-primary);
  animation: spin 0.8s linear infinite;
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1300;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem 0.6rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.42);
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
}

.whatsapp-float__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-float__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.whatsapp-float__label {
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .devices-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .preview-card {
    transform: perspective(1000px) rotateY(0deg);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .device-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-1,
  .card-2 {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(248, 248, 251, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-stats {
    gap: 2rem;
  }

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


  .device-list {
    grid-template-columns: 1fr;
  }

  .device-item {
    padding: 1rem;
  }

  .device-modal-panel {
    margin: 6vh auto;
    padding: 1.5rem;
  }

  .connection-tabs {
    flex-direction: column;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .internal-main {
    padding: 120px 0 70px;
  }

  .internal-card {
    padding: 1.25rem;
  }

  .redirect-notice {
    width: calc(100% - 2rem);
    max-width: 520px;
    border-radius: var(--radius-md);
    white-space: normal;
  }

  .whatsapp-float {
    left: 1rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    padding: 0.55rem;
  }

  .whatsapp-float:hover {
    transform: translateY(-2px);
  }

  .whatsapp-float__label {
    display: none;
  }
}
