@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root,
[data-theme="dark"] {
  --bg-dark: #050811;
  --bg-card: rgba(11, 16, 33, 0.75);
  --bg-card-hover: rgba(16, 23, 46, 0.9);
  --bg-alt: #080c1b;
  --bg-header: rgba(5, 8, 17, 0.88);
  --bg-drawer: rgba(5, 8, 17, 0.97);
  --border-gold: rgba(207, 161, 52, 0.25);
  --border-gold-hover: rgba(207, 161, 52, 0.55);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-gold: #cfa134;
  --accent-gold-bright: #ffb302;
  --accent-gold-glow: rgba(207, 161, 52, 0.3);
  --accent-blue: #336ef9;
  --accent-blue-hover: #2562f0;
  --accent-blue-glow: rgba(51, 110, 249, 0.35);
  --accent-silver: #a0a5b5;
  --text-white: #ffffff;
  --text-muted: #8e95a5;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --bg-gradient: radial-gradient(circle at 15% 15%, rgba(51, 110, 249, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(207, 161, 52, 0.07) 0%, transparent 45%);
}

[data-theme="light"] {
  --bg-dark: #f2f5fb;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-alt: #e9eef8;
  --bg-header: rgba(242, 245, 251, 0.92);
  --bg-drawer: #ffffff;
  --border-gold: rgba(207, 161, 52, 0.45);
  --border-gold-hover: rgba(207, 161, 52, 0.8);
  --border-color: rgba(15, 23, 42, 0.1);
  --accent-gold: #b3841e;
  --accent-gold-bright: #d49000;
  --accent-gold-glow: rgba(207, 161, 52, 0.2);
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-blue-glow: rgba(37, 99, 235, 0.22);
  --accent-silver: #475569;
  --text-white: #0f172a;
  --text-muted: #475569;
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
  --bg-gradient: radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(207, 161, 52, 0.08) 0%, transparent 45%);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-bright);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.theme-toggle-btn:hover {
  transform: scale(1.06);
  border-color: var(--accent-gold-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 0 14px var(--accent-gold-glow);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: transform 0.4s ease;
}

.theme-toggle-btn:hover svg {
  transform: rotate(20deg);
}

.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
}


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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  padding-top: 84px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-white);
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 50px 0;
}

.bg-alt {
  background: rgba(8, 12, 27, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.text-center {
  text-align: center;
}

.mt-60 {
  margin-top: 60px;
}

.p-relative {
  position: relative;
}


@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatAnimReverse {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(18px) rotate(-3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(51, 110, 249, 0.4));
  }

  50% {
    transform: scale(1.07);
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(51, 110, 249, 0.7));
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(51, 110, 249, 0.4));
  }
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
  }

  50% {
    transform: translateY(-10px);
    box-shadow: 0 14px 28px var(--accent-gold-glow);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
  }
}

@keyframes heroSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
}


.floating-bg-element {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  max-width: 100vw;
  overflow: hidden;
}

.float-shape-1 {
  top: 15vh;
  left: -60px;
  width: 260px;
  animation: floatAnim 9s ease-in-out infinite;
}

.float-shape-2 {
  top: 55vh;
  right: -60px;
  width: 240px;
  animation: floatAnimReverse 11s ease-in-out infinite;
}

.float-shape-3 {
  bottom: 20vh;
  left: 5%;
  width: 80px;
  animation: floatAnim 7s ease-in-out infinite 1s;
}

.float-shape-4 {
  bottom: 30vh;
  right: 8%;
  width: 60px;
  animation: floatAnimReverse 8s ease-in-out infinite 2s;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  min-height: 84px;
  box-sizing: border-box;
  transition: var(--transition);
}

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

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  overflow: visible;
}

.logo-img {
  height: 78px !important;
  max-height: 78px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain;
  transform: scale(1.52) !important;
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

[data-theme="light"] .logo-img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
  transform: scale(1) !important;
  transform-origin: left center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85)) !important;
}

.logo-link:hover .logo-img {
  transform: scale(1.26) !important;
}

[data-theme="light"] .logo-link:hover .logo-img {
  transform: scale(1.04) !important;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.nav-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  transition: var(--transition);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-item.pill-link {
  background: rgba(207, 161, 52, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
}

.nav-link-item.pill-link:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 40px;
}

.desktop-contact-btn {
  display: none !important;
}

.desktop-contact-btn:hover {
  background: var(--accent-blue-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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


.mobile-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: var(--bg-drawer);
  backdrop-filter: blur(20px);
  padding: 30px 24px;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-link.highlight {
  color: var(--accent-gold);
}

.btn-whatsapp-mobile {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  font-family: var(--font-headings);
  font-size: 0.95rem;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
}

.floating-badge-hero {
  position: absolute;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 16, 33, 0.88);
  border: 1px solid var(--border-gold-hover);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 9px 16px;
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  animation: badgeFloat 5s ease-in-out infinite;
  pointer-events: none;
}

.floating-badge-hero svg {
  color: var(--accent-gold-bright);
  flex-shrink: 0;
}

.hero-float-1 {
  top: 22%;
  right: 8%;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 10%;
  left: 5%;
  animation-delay: 1.8s;
}

.hero-float-3 {
  top: 55%;
  right: 6%;
  animation-delay: 3.2s;
}


.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active .hero-slide-text>* {
  animation: heroSlide 0.7s ease both;
}

.hero-slide.active .hero-slide-text>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-slide.active .hero-slide-text>*:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-slide.active .hero-slide-text>*:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-slide.active .hero-slide-text>*:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-slide.active .hero-slide-text>*:nth-child(5) {
  animation-delay: 0.5s;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(5, 8, 17, 0.88) 0%,
      rgba(5, 8, 17, 0.65) 55%,
      rgba(5, 8, 17, 0.3) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-slide-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-slide-text .sub-title {
  margin-bottom: 10px;
}

.hero-viva-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold-bright) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-viva-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}


.hero-speed-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-speed-pill {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(207, 161, 52, 0.12);
  border: 1px solid var(--accent-gold-bright);
  padding: 8px 18px;
  border-radius: 12px;
  box-shadow: 0 0 18px var(--accent-gold-glow);
}

.speed-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold-bright);
}

.speed-unit {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-price-label {
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-price-label strong {
  color: var(--text-white);
  font-size: 1.2rem;
}


.hero-btn-cta {
  max-width: 360px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.hero-logo-overlay-box {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logob-floating {
  max-width: 200px;
  border-radius: 22px;
  padding: 16px;
  border: 2px solid rgba(207, 161, 52, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 28px var(--accent-gold-glow);
  transition: var(--transition);
  animation: floatAnim 6s ease-in-out infinite;
}

.hero-glob-deco {
  width: 90px;
  margin: 0 auto;
}

.pulse-anim {
  animation: pulseGlow 4s ease-in-out infinite;
}

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold-bright) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slider-dot.active {
  background: var(--accent-gold-bright) !important;
  transform: scale(1.35);
  box-shadow: 0 0 12px var(--accent-gold-bright);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(11, 16, 33, 0.85) !important;
  border: 1.5px solid var(--accent-gold-bright) !important;
  color: #ffffff !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.slider-arrow svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.slider-arrow:hover {
  background: var(--accent-gold-bright) !important;
  border-color: var(--accent-gold-bright) !important;
  color: #050811 !important;
  box-shadow: 0 0 22px rgba(255, 179, 2, 0.65);
}

.slider-arrow:hover svg {
  color: #050811 !important;
  stroke: #050811 !important;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.visual-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
}

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

.stats-banner-section {
  padding: 40px 0;
  background: #03060f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-banner-bg {
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  border-radius: 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  font-size: 1.5rem;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  color: #fff;
}


.usage-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.usage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.usage-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 28px var(--accent-gold-glow);
}

.usage-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.usage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.usage-card:hover .usage-img {
  transform: scale(1.08);
}

.usage-overlay-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.usage-overlay-tag.blue {
  background: rgba(51, 110, 249, 0.9);
  color: #fff;
}

.usage-overlay-tag.gold {
  background: var(--accent-gold-bright);
  color: var(--bg-dark);
}

.usage-card-content {
  padding: 28px;
}

.usage-card-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.usage-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.usage-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.usage-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
}

.usage-chip.blue {
  background: rgba(51, 110, 249, 0.1);
  border: 1px solid rgba(51, 110, 249, 0.25);
  color: var(--text-white);
}

.usage-chip.gold {
  background: rgba(207, 161, 52, 0.12);
  border: 1px solid rgba(207, 161, 52, 0.3);
  color: var(--accent-gold-bright);
}

.section-header {
  margin-bottom: 55px;
}

.sub-title {
  display: inline-block;
  color: var(--accent-gold-bright);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 34px 22px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-gold-glow);
}

.service-icon-wrapper {
  width: 68px;
  height: 68px;
  background: rgba(51, 110, 249, 0.08);
  border: 1px solid rgba(51, 110, 249, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background: rgba(207, 161, 52, 0.15);
  border-color: var(--accent-gold-bright);
}

.sv-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.service-tagline {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 0;
}

.about-wavy-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.about-accent-line {
  position: absolute;
  left: 20px;
  top: 25%;
  width: 5px;
  height: 120px;
  background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(51, 110, 249, 0.1) 100%);
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 15px var(--accent-blue-glow);
}

.about-img-layer {
  position: relative;
  transition: transform 0.6s ease;
}

.about-img-layer.layer-back {
  z-index: 3;
  width: 100%;
  max-width: 320px;
  margin-left: -40%;
  margin-bottom: -200px;
  filter: drop-shadow(0 15px 30px rgba(212, 194, 194, 0.4));
}

.about-img-layer.layer-front {
  z-index: 2;
  width: 60%;
  max-width: 360px;
  margin-top: 50px;
  filter: drop-shadow(0 20px 40px rgba(183, 133, 133, 0.5));
}

.about-img-layer:hover {
  transform: scale(1.03);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Íconos flotantes animados */
.about-floating-icon {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.icon-globe-blue {
  top: 15px;
  right: 25px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #336ef9 0%, #1d4ed8 100%);
  box-shadow: 0 8px 24px rgba(51, 110, 249, 0.5);
}

.icon-pill-top {
  top: -10px;
  left: 35%;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.about-wifi-badge {
  position: absolute;
  z-index: 3;
  top: 66%;
  left: 38%;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
  border: 2px solid #ffffff;
}

/* Animaciones Keyframes */
.float-anim-globe {
  animation: floatGlobe 4s ease-in-out infinite;
}

.float-anim-pill {
  animation: floatPill 5s ease-in-out infinite alternate;
}

.pulse-anim-wifi {
  animation: pulseWifi 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes floatGlobe {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(6deg);
  }
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes pulseWifi {

  0%,
  100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
  }

  50% {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.75);
  }
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.5;
}

.about-features-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  border-radius: 16px;
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(51, 110, 249, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper.yellow {
  background: rgba(207, 161, 52, 0.15);
}

.ab-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.about-feature-item strong {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 1rem;
}

.about-feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.about-author-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.author-avatar-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #c5d8ff;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(207, 161, 52, 0.3);
  padding: 4px;
}

.author-signature-wrapper {
  background: #c5d8ff;
  border-radius: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(207, 161, 52, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.author-signature {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.choose-bg-section {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.choose-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 17, 0.82) 0%, rgba(5, 8, 17, 0.92) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 26px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 28px var(--accent-gold-glow);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(207, 161, 52, 0.1) 0%, rgba(11, 16, 33, 0.92) 100%);
  border: 2px solid var(--accent-gold-bright);
  box-shadow: 0 12px 35px rgba(207, 161, 52, 0.22);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold-bright);
  color: var(--bg-dark);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.73rem;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(255, 179, 2, 0.45);
}

.plan-badge {
  display: inline-block;
  color: var(--accent-silver);
  font-family: var(--font-headings);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-badge.gold {
  color: var(--accent-gold-bright);
}

.plan-name {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
}

.plan-price .symbol {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--accent-gold-bright);
  font-weight: 700;
}

.plan-price .amount {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.plan-price .cents {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 6px;
}

.free-install-badge {
  display: inline-block;
  background: rgba(51, 110, 249, 0.1);
  border: 1px solid rgba(51, 110, 249, 0.3);
  color: var(--accent-blue);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.free-install-badge.gold {
  background: rgba(207, 161, 52, 0.12);
  border-color: rgba(207, 161, 52, 0.4);
  color: var(--accent-gold-bright);
}

.plan-body {
  flex: 1;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  color: var(--text-muted);
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li strong {
  color: var(--text-white);
}

.check-icon {
  color: var(--accent-blue);
  font-weight: 800;
}

.check-icon.gold {
  color: var(--accent-gold-bright);
}

.btn-primary-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--accent-gold-bright);
  color: var(--bg-dark);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 179, 2, 0.35);
  transition: var(--transition);
}

.btn-primary-plan:hover {
  background: #ffa000;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 179, 2, 0.55);
}

.btn-outline-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 12px;
  transition: var(--transition);
}

.btn-outline-plan:hover {
  background: rgba(207, 161, 52, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold-bright);
}


.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: var(--bg-dark);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 12px;
  box-shadow: 0 6px 22px var(--accent-gold-glow);
  transition: var(--transition);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  color: var(--bg-dark);
  box-shadow: 0 10px 30px rgba(207, 161, 52, 0.45);
}

.btn-large {
  max-width: 440px;
  margin: 0 auto;
  padding: 18px 34px;
  font-size: 1.1rem;
}

.contact-section-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 44px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.contact-lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 16px;
}

.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 0.98rem;
  display: block;
  margin-bottom: 4px;
}

.contact-detail-item p a {
  color: var(--accent-gold-bright);
}

.social-channels {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.social-title {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
}

.social-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-social {
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
  transition: var(--transition);
}

.btn-social.fb {
  background: #1877f2;
}

.btn-social.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-social:hover {
  transform: translateY(-2px);
  color: var(--text-white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #060b18 100%);
  border-top: 1px solid rgba(207, 161, 52, 0.2);
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}


footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #03050b;
  padding: 55px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

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

.footer-about {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: var(--accent-silver);
  font-size: 0.88rem;
  font-family: var(--font-headings);
}

.social-links a:hover {
  color: var(--accent-gold);
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.footer-contact-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  color: var(--text-muted);
}


.main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0 80px;
}

.sidebar {
  display: none;
}

.toc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 100px;
}

.toc-title {
  font-family: var(--font-headings);
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-link {
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.toc-link:hover {
  color: var(--accent-gold-bright);
  background: rgba(207, 161, 52, 0.08);
  transform: translateX(4px);
}

.toc-link.active {
  color: var(--accent-gold-bright);
  font-weight: 700;
  background: rgba(207, 161, 52, 0.15);
  border-left: 3px solid var(--accent-gold);
  transform: translateX(4px);
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 28px;
}


.hero {
  text-align: center;
  padding: 40px 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(207, 161, 52, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-logo-large {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 24px auto 0;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(207, 161, 52, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(207, 161, 52, 0.15);
  transition: var(--transition);
}

.hero-logo-large:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--accent-gold);
}


.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.card-alert {
  border-left: 4px solid var(--accent-gold);
  background: linear-gradient(90deg, rgba(207, 161, 52, 0.05) 0%, rgba(11, 16, 33, 0.7) 100%);
}

.card-alert .card-title::before {
  display: none;
}

.card-alert .card-title {
  color: var(--accent-gold);
}

.alert-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-list li {
  position: relative;
  padding-left: 22px;
}

.alert-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-item::before {
  content: "✕";
  color: #ff5e5e;
  font-weight: bold;
}

.badge-check {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.badge-check-item {
  background: rgba(207, 161, 52, 0.03);
  border: 1px solid rgba(207, 161, 52, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-check-item::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: bold;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a47b1e 100%);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-headings);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(207, 161, 52, 0.2);
}

.contact-btn:hover {
  transform: translateY(-2px);
  color: var(--bg-dark);
  box-shadow: 0 6px 20px rgba(207, 161, 52, 0.4);
}

.hero-slider-section .hero-viva-title,
.hero-slider-section .speed-unit,
.hero-slider-section .hero-price-label strong,
.hero-slider-section .floating-badge-hero {
  color: #ffffff !important;
}

.hero-slider-section .hero-viva-subtitle,
.hero-slider-section .hero-price-label {
  color: #d1d5db !important;
}

.hero-slider-section .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-bright) 50%, var(--accent-gold) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}


[data-theme="light"] .bg-alt {
  background: #eef2fb;
  border-top-color: rgba(15, 23, 42, 0.06);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .choose-bg-overlay {
  background: linear-gradient(180deg, rgba(234, 239, 250, 0.88) 0%, rgba(242, 245, 251, 0.95) 100%);
}

[data-theme="light"] .stats-banner-section {
  background: #e2e8f0;
  border-top-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .stat-number span,
[data-theme="light"] .stat-label {
  color: #0f172a;
}

[data-theme="light"] .cta-banner {
  background: linear-gradient(180deg, #f2f5fb 0%, #e2e8f0 100%);
  border-top-color: var(--border-gold);
}

[data-theme="light"] footer {
  background: #e2e8f0;
  border-top-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(15, 23, 42, 0.08);
  color: #64748b;
}


[data-theme="light"] .service-card,
[data-theme="light"] .plan-card,
[data-theme="light"] .card,
[data-theme="light"] .toc-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .usage-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .plan-card:hover,
[data-theme="light"] .card:hover,
[data-theme="light"] .contact-info-card:hover {
  background: #f8fafc;
  border-color: var(--border-gold-hover);
  box-shadow: 0 14px 40px rgba(207, 161, 52, 0.2);
}

[data-theme="light"] .plan-card.featured {
  background: linear-gradient(180deg, rgba(207, 161, 52, 0.08) 0%, #ffffff 100%);
  border-color: var(--accent-gold-bright);
}


[data-theme="light"] .section-title,
[data-theme="light"] .service-title,
[data-theme="light"] .usage-card-title,
[data-theme="light"] .plan-name,
[data-theme="light"] .plan-price .amount,
[data-theme="light"] .plan-price .cents,
[data-theme="light"] .about-lead,
[data-theme="light"] .about-feature-item strong,
[data-theme="light"] .card-title,
[data-theme="light"] .toc-title,
[data-theme="light"] .contact-detail-item strong,
[data-theme="light"] .social-title,
[data-theme="light"] .cta-title,
[data-theme="light"] .footer-col-title,
[data-theme="light"] .hero-title {
  color: #0f172a;
}

[data-theme="light"] .section-desc,
[data-theme="light"] .service-desc,
[data-theme="light"] .usage-card-desc,
[data-theme="light"] .plan-features li,
[data-theme="light"] .plan-price .period,
[data-theme="light"] .about-feature-item p,
[data-theme="light"] .contact-lead-text,
[data-theme="light"] .contact-detail-item p,
[data-theme="light"] .cta-subtitle,
[data-theme="light"] .footer-about,
[data-theme="light"] .footer-contact-item,
[data-theme="light"] .footer-links a,
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .toc-link,
[data-theme="light"] .card p,
[data-theme="light"] .card li {
  color: #475569;
}

[data-theme="light"] .card-alert {
  background: linear-gradient(90deg, rgba(207, 161, 52, 0.12) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-left-color: var(--accent-gold);
}

[data-theme="light"] .toc-title {
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .toc-link:hover {
  color: #b3841e;
  background: rgba(207, 161, 52, 0.1);
}

[data-theme="light"] .toc-link.active {
  color: #b3841e !important;
  font-weight: 700;
  background: rgba(207, 161, 52, 0.18);
  border-left-color: #b3841e;
}

[data-theme="light"] .plan-features li strong,
[data-theme="light"] .card strong,
[data-theme="light"] .card p strong {
  color: #0f172a;
}

[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, #0f172a 0%, var(--accent-gold) 50%, var(--accent-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


[data-theme="light"] #main-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-link-item {
  color: #1e293b;
  font-weight: 600;
}

[data-theme="light"] .nav-link-item:hover,
[data-theme="light"] .nav-link-item.active {
  color: var(--accent-blue);
  background: rgba(37, 99, 235, 0.08);
  border-radius: 8px;
}

[data-theme="light"] .nav-link-item.pill-link {
  background: rgba(207, 161, 52, 0.15);
  border: 1px solid var(--accent-gold);
  color: #b3841e;
  font-weight: 600;
}

[data-theme="light"] .nav-link-item.pill-link:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

[data-theme="light"] .desktop-contact-btn {
  display: none !important;
}

[data-theme="light"] .theme-toggle-btn {
  background: #ffffff;
  border: 1px solid rgba(207, 161, 52, 0.5);
  color: #d49000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: #f8fafc;
  border-color: #d49000;
  box-shadow: 0 0 14px rgba(207, 161, 52, 0.3);
}

[data-theme="light"] .mobile-menu-toggle .bar {
  background: #0f172a;
}

[data-theme="light"] .about-feature-item,
[data-theme="light"] .contact-detail-item,
[data-theme="light"] .badge-item,
[data-theme="light"] .badge-check-item {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

[data-theme="light"] .btn-outline-plan {
  border-color: var(--border-gold);
  color: #0f172a;
}

[data-theme="light"] .btn-outline-plan:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

[data-theme="light"] .hero-logo-large {
  background: #ffffff;
  border-color: var(--border-gold);
}

/* ==========================================================================
   MEDIA QUERIES RESPONSIVAS
   ========================================================================== */

/* < 576px */
@media (max-width: 575px) {

  .hero-viva-title,
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-speed-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .card {
    padding: 18px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .usage-banner-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider-section {
    height: 80vh;
    min-height: 520px;
  }

  .floating-badge-hero {
    display: none;
  }

  .slider-arrow {
    display: none;
  }

  .contact-info-card {
    padding: 22px 16px;
  }

  .about-wavy-bg {
    display: none;
  }

  .about-images-wrapper {
    overflow: hidden;
    max-width: 100%;
  }

  .about-img-layer.layer-back {
    margin-left: 0;
  }
}

/* < 992px */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-slide-content {
    grid-template-columns: 1fr;
  }

  .hero-logo-overlay-box {
    display: none;
  }

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

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

  .hero-float-1,
  .hero-float-2,
  .hero-float-3 {
    font-size: 0.78rem;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-card.featured {
    transform: scale(1.04);
  }

  .plan-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
  }

  .hero-viva-title {
    font-size: 3.2rem;
  }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 270px 1fr;
  }

  .sidebar {
    display: block;
  }

  .hero {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-logo-large {
    display: block;
    height: 140px;
    width: auto;
    margin: 0;
  }

  .hero-slide-content {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-logo-overlay-box {
    display: flex;
  }

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

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

/* ≥ 1440px */
@media (min-width: 1440px) {
  .main-wrapper {
    grid-template-columns: 310px 1fr;
    gap: 55px;
  }

  .hero-viva-title {
    font-size: 3.6rem;
  }

  .hero-slider-section {
    height: 95vh;
  }

  .card {
    padding: 38px;
  }
}

.modern-pin-svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--accent-gold-bright);
  transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.contact-detail-item:hover .modern-pin-svg,
.footer-contact-item:hover .modern-pin-svg {
  transform: translateY(-3px) scale(1.15);
  color: var(--accent-gold-bright);
  filter: drop-shadow(0 4px 10px rgba(207, 161, 52, 0.6));
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-pin-icon {
  margin-top: 3px;
  flex-shrink: 0;
}