:root {
  --header-left: #14506b;
  --header-right: #1a2f7f;
  --brand-gold: #f8b400;
  --text-light: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0d1b2a;
}

.site-page {
  position: relative;
}

.site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2600;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 14% 14%, rgba(41, 182, 246, 0.2) 0%, rgba(6, 24, 47, 0) 42%),
              linear-gradient(180deg, rgba(4, 19, 40, 0.2) 0%, rgba(5, 26, 54, 0.9) 100%);
  transition: opacity 0.62s ease;
}

.site-page.page-enter {
  opacity: 0.06;
  transform: translateY(10px) scale(0.997);
}

.site-page.page-enter.page-enter-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.68s ease;
}

.site-page.page-leaving::after {
  opacity: 1;
}

.top-header {
  width: 100%;
  min-height: 112px;
  background: linear-gradient(90deg, var(--header-left) 0%, var(--header-right) 100%);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  position: relative;
  flex-wrap: nowrap;
}

.brand {
  text-decoration: none;
  color: var(--text-light);
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1;
}

.brand-logo {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  display: block;
}

.brand-mi {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-gold);
}

.brand-tv-latina {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}

.brand-tv {
  font-size: clamp(12px, 1.8vw, 21px);
  font-weight: 700;
  color: #f2f2f2;
  letter-spacing: 0.7px;
}

.brand-latina {
  margin-top: -2px;
  font-size: clamp(22px, 3.2vw, 37px);
  font-weight: 800;
  color: #f2f2f2;
  letter-spacing: 0.5px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 30px);
  margin-top: 2px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: clamp(11px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.96;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: #29b6f6;
  border-bottom-color: #29b6f6;
}

.main-nav a.is-active {
  opacity: 1;
  color: #29b6f6;
  border-bottom-color: #29b6f6;
}

main {
  width: 100%;
}

.site-footer {
  width: 100%;
  background: linear-gradient(90deg, rgba(9, 37, 63, 0.96) 0%, rgba(14, 58, 95, 0.96) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-inner {
  width: min(1220px, 100% - 32px);
  margin: 0 auto;
  min-height: 74px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-footer-count {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.site-footer-admin {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer-admin:hover,
.site-footer-admin:focus-visible {
  background: rgba(41, 182, 246, 0.2);
  border-color: rgba(41, 182, 246, 0.85);
}

.site-footer-logo {
  width: clamp(82px, 7.2vw, 116px);
  height: auto;
  object-fit: contain;
}

.admin-access-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2400;
}

.admin-access-modal.is-open {
  display: flex;
}

.admin-access-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.admin-access-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 360px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 23, 46, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  padding: 18px 16px 14px;
}

.admin-access-title {
  margin: 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 17px;
  text-align: center;
}

.admin-access-input {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  padding: 10px 11px;
  outline: none;
}

.admin-access-input:focus {
  border-color: #29b6f6;
  box-shadow: 0 0 0 2px rgba(41, 182, 246, 0.22);
}

.admin-access-status {
  margin: 9px 0 0;
  min-height: 18px;
  color: #d8ecff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
}

.admin-access-status.is-error {
  color: #ffd2d2;
}

.admin-access-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.admin-access-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  cursor: pointer;
}

.admin-access-btn-primary {
  border-color: rgba(41, 182, 246, 0.9);
  background: rgba(41, 182, 246, 0.25);
}

.admin-access-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.guias-page {
  background: #051a36;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.guias-main {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: radial-gradient(circle at 18% 12%, rgba(41, 182, 246, 0.2) 0%, rgba(5, 26, 54, 0) 44%),
              linear-gradient(180deg, #04152d 0%, #062448 100%);
}

.guias-shell {
  width: min(1220px, 100% - 48px);
  background: rgba(8, 24, 47, 0.72);
  border: 2px solid rgba(41, 182, 246, 0.62);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  padding: 30px 34px;
}

.guias-device-layer {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(124, 200, 255, 0.6);
  background: linear-gradient(145deg, rgba(6, 18, 35, 0.95) 0%, rgba(8, 30, 58, 0.86) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 10px 20px rgba(0, 0, 0, 0.24);
}

.guias-device-title {
  margin: 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.3;
}

.guias-device-subtitle {
  margin: 10px 0 0;
  color: #d9eeff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.45;
}

.guias-device-list {
  margin: 14px 0 0;
  padding-left: 24px;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.guias-device-list li + li {
  margin-top: 6px;
}

.guias-device-figure {
  margin: 14px 0 4px;
}

.guias-device-image {
  width: min(100%, 640px);
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(124, 200, 255, 0.45);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.guias-title {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  color: #ffffff;
}

.guias-text {
  margin: 14px 0 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  text-align: center;
  color: #d7e9ff;
}

.guias-state {
  margin: 20px auto 0;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(41, 182, 246, 0.82);
  background: rgba(8, 38, 74, 0.6);
  color: #9ad8ff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-inicio {
  width: 100%;
  min-height: calc(100vh - 112px);
  background-image: linear-gradient(rgba(8, 18, 34, 0.35), rgba(8, 18, 34, 0.35)), url('./Wallpaper/wallpaperiptv.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-inicio::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(7, 19, 34, 0) 0%, rgba(7, 19, 34, 0.42) 45%, rgba(7, 19, 34, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-glass {
  width: calc(100% - 26px);
  margin-left: 26px;
  min-height: auto;
  background: rgba(10, 20, 40, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(41, 182, 246, 0.75);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 18px;
}

.hero-glass-title {
  margin: 0;
  width: 100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.hero-glass-content {
  width: 100%;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 24px;
  line-height: 1.35;
  overflow: hidden;
}

.hero-glass-content p {
  margin: 0 0 12px;
}

.hero-demo-inline-link {
  color: #8ad8ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-demo-inline-link:hover,
.hero-demo-inline-link:focus-visible {
  color: #29b6f6;
}

.hero-glass-content p:last-child {
  margin-bottom: 0;
}

.elegant-divider {
  width: calc(100% - 24px);
  max-width: calc(100% - 24px);
  margin: -7px auto -7px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 0;
  transform: none;
  z-index: 5;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.elegant-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.parallax-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #071322;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 34, 0.9) 0%, rgba(7, 19, 34, 0.45) 16%, rgba(7, 19, 34, 0) 34%, rgba(7, 19, 34, 0) 72%, rgba(7, 19, 34, 0.34) 100%);
  pointer-events: none;
  z-index: 2;
}

.parallax-bg,
.parallax-foreground {
  position: absolute;
  inset: -12%;
  will-change: transform;
}

.parallax-bg {
  background-image: url('./Wallpaper/wallpaper2.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.86) saturate(1.05);
}

.parallax-foreground {
  inset: -8%;
  background: linear-gradient(180deg, rgba(5, 14, 30, 0.08), rgba(5, 14, 30, 0.28) 45%, rgba(5, 14, 30, 0.52));
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.28);
}

.parallax-content {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.planes-section {
  width: 100%;
  background: transparent;
  padding: 0;
}

.planes-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
}

.planes-title {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.plan-card {
  background: rgba(10, 20, 40, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plan-card-orange {
  border-color: rgba(255, 145, 41, 0.85);
}

.plan-card-green {
  border-color: rgba(57, 198, 132, 0.88);
}

.plan-card-blue {
  border-color: rgba(41, 182, 246, 0.88);
}

.plan-card:hover {
  transform: scale(1.045);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.plan-name {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 800;
}

.plan-save {
  margin: 8px 0 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 700;
}

.plan-price {
  margin: 14px 0 0;
  text-align: center;
  font-size: clamp(54px, 4.1vw, 72px);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.plan-note {
  margin: 10px 0 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
}

.plan-list {
  margin: 24px 0 28px;
  padding-left: 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.32;
}

.plan-btn {
  margin-top: auto;
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: rgba(10, 20, 40, 0.34);
  color: #ffffff;
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.plan-btn:hover {
  background: rgba(41, 182, 246, 0.3);
  transform: translateY(-2px);
}

.platform-feature-section {
  position: relative;
  width: 100%;
  min-height: 78vh;
  overflow: hidden;
  background: #061224;
}

.platform-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0.78) 0%, rgba(6, 18, 36, 0.42) 36%, rgba(6, 18, 36, 0.82) 100%);
  pointer-events: none;
  z-index: 2;
}

.platform-feature-bg,
.platform-feature-overlay {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.platform-feature-bg {
  background-image: url('./Wallpaper/wallpaperiptv.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.86) saturate(1.02);
}

.platform-feature-overlay {
  inset: -8%;
  background:
    radial-gradient(circle at 12% 24%, rgba(41, 182, 246, 0.16) 0%, rgba(41, 182, 246, 0) 42%),
    radial-gradient(circle at 88% 78%, rgba(248, 180, 0, 0.12) 0%, rgba(248, 180, 0, 0) 36%);
}

.platform-feature-parallax-content {
  position: relative;
  z-index: 4;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 72px 0 84px;
}

.platform-feature-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
}

.platform-feature-glass {
  width: calc(100% - 26px);
  margin-left: 26px;
  background: rgba(10, 20, 40, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(41, 182, 246, 0.75);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  padding: 28px 32px;
}

.platform-feature-title {
  margin: 0 0 16px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.platform-feature-content {
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.38;
}

.platform-feature-content p {
  margin: 0 0 14px;
}

.platform-feature-content p:last-child {
  margin-bottom: 0;
}

.platform-capturas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 4px 0 10px;
}

.captura-item {
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.captura-item img {
  display: block;
  width: clamp(170px, 22vw, 280px);
  height: auto;
  border-radius: 12px;
}

.captura-item:hover,
.captura-item:focus-visible {
  border-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.04);
}

.captura-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.captura-lightbox.is-open {
  display: flex;
}

.captura-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.captura-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1020px);
  max-height: 90vh;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  background: #061226;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  padding: 12px;
}

.captura-lightbox-content img {
  width: 100%;
  max-height: calc(90vh - 24px);
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.captura-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #0c2b4a;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.captura-lightbox-close:hover,
.captura-lightbox-close:focus-visible {
  background: #29b6f6;
  border-color: #29b6f6;
}

.demo-parallax-section {
  position: relative;
  width: 100%;
  min-height: 72vh;
  overflow: hidden;
  background: #041021;
}

.demo-parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 33, 0.55) 0%, rgba(4, 16, 33, 0.2) 34%, rgba(4, 16, 33, 0.66) 100%);
  pointer-events: none;
  z-index: 2;
}

.demo-parallax-bg,
.demo-parallax-overlay {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.demo-parallax-bg {
  background-image:
    linear-gradient(rgba(5, 18, 36, 0.18), rgba(5, 18, 36, 0.18)),
    url('./Wallpaper/wall3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.04) brightness(0.84);
}

.demo-parallax-overlay {
  inset: -8%;
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 182, 246, 0.2) 0%, rgba(41, 182, 246, 0) 42%),
    radial-gradient(circle at 85% 80%, rgba(248, 180, 0, 0.16) 0%, rgba(248, 180, 0, 0) 40%);
}

.demo-parallax-content {
  position: relative;
  z-index: 4;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.demo-parallax-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
}

.demo-parallax-glass {
  width: calc(100% - 26px);
  margin-left: 26px;
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(41, 182, 246, 0.72);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  padding: 28px 32px;
  text-align: center;
}

.demo-parallax-title {
  margin: 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.demo-parallax-text {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.35;
}

.demo-parallax-link {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.demo-parallax-link:hover,
.demo-parallax-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(41, 182, 246, 0.3);
  border-color: #29b6f6;
}

.contacto-parallax-section {
  position: relative;
  width: 100%;
  min-height: 76vh;
  overflow: hidden;
  background: #051324;
}

.contacto-parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 19, 36, 0.66) 0%, rgba(5, 19, 36, 0.3) 34%, rgba(5, 19, 36, 0.72) 100%);
  pointer-events: none;
  z-index: 2;
}

.contacto-parallax-bg,
.contacto-parallax-overlay {
  position: absolute;
  inset: -10%;
  will-change: transform;
}

.contacto-parallax-bg {
  background-image:
    linear-gradient(rgba(7, 23, 42, 0.14), rgba(7, 23, 42, 0.14)),
    url('./Wallpaper/wall4.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.82) saturate(1.05);
}

.contacto-parallax-overlay {
  inset: -8%;
  background:
    radial-gradient(circle at 12% 22%, rgba(41, 182, 246, 0.24) 0%, rgba(41, 182, 246, 0) 42%),
    radial-gradient(circle at 85% 82%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 40%);
}

.contacto-parallax-content {
  position: relative;
  z-index: 4;
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 74px 0;
}

.contacto-parallax-inner {
  width: min(1220px, 100% - 48px);
  margin: 0 auto;
}

.contacto-parallax-glass {
  width: calc(100% - 26px);
  margin-left: 26px;
  background: rgba(10, 20, 40, 0.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(41, 182, 246, 0.72);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  padding: 28px 32px;
}

.contacto-parallax-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contacto-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contacto-label {
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
}

.contacto-input,
.contacto-select,
.contacto-textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  padding: 10px 8px;
  outline: none;
}

.contacto-textarea {
  resize: vertical;
  min-height: 96px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
}

.contacto-select {
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #000000;
  color: #ffffff;
}

.contacto-select option {
  background-color: #000000;
  color: #ffffff;
}

.contacto-input:focus,
.contacto-select:focus,
.contacto-textarea:focus {
  border-color: #29b6f6;
  box-shadow: 0 0 0 2px rgba(41, 182, 246, 0.2);
}

.contacto-help {
  margin: 2px 0 4px;
  color: #d8ecff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.3;
}

.contacto-submit {
  margin-top: 10px;
  justify-self: start;
  min-width: 168px;
  min-height: 50px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(10, 20, 40, 0.34);
  color: #ffffff;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.contacto-submit:hover,
.contacto-submit:focus-visible {
  transform: translateY(-1px);
  background: rgba(41, 182, 246, 0.3);
  border-color: #29b6f6;
}

.contacto-status {
  margin: 8px 0 0;
  min-height: 22px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.35;
}

.contacto-status.is-info {
  color: #d8ecff;
}

.contacto-status.is-success {
  color: #7bffbd;
}

.contacto-status.is-error {
  color: #ffd2d2;
}

.contacto-social-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contacto-social-btn {
  flex: 1 1 0;
  max-width: 240px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contacto-social-btn:hover,
.contacto-social-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 255, 255, 0.92);
}

.contacto-social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contacto-social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.contacto-social-whatsapp {
  background: linear-gradient(135deg, rgba(18, 146, 88, 0.72) 0%, rgba(12, 114, 66, 0.86) 100%);
}

.contacto-social-telegram {
  background: linear-gradient(135deg, rgba(25, 130, 217, 0.72) 0%, rgba(13, 97, 171, 0.86) 100%);
}

.contacto-social-text {
  white-space: nowrap;
}

.contacto-success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}

.contacto-success-modal.is-open {
  display: flex;
}

.contacto-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.contacto-success-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 420px);
  border-radius: 14px;
  border: 2px solid rgba(41, 182, 246, 0.78);
  background: rgba(6, 18, 36, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  padding: 20px 18px 16px;
  text-align: center;
}

.contacto-success-text {
  margin: 0;
  color: #ffffff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.35;
}

.contacto-success-accept {
  margin-top: 16px;
  min-width: 140px;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(41, 182, 246, 0.22);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contacto-success-accept:hover,
.contacto-success-accept:focus-visible {
  transform: translateY(-1px);
  background: rgba(41, 182, 246, 0.36);
  border-color: #29b6f6;
}

@media (max-width: 900px) {
  .guias-shell {
    width: min(1220px, 100% - 24px);
    padding: 22px 16px;
    border-radius: 18px;
  }

  .guias-device-layer {
    margin-bottom: 18px;
    padding: 14px 14px;
    border-radius: 14px;
  }

  .guias-device-list {
    padding-left: 22px;
  }

  .guias-device-image {
    width: 100%;
  }

  .guias-main {
    padding: 26px 0;
  }
}

@media (max-width: 520px) {
  .guias-shell {
    width: calc(100% - 18px);
    padding: 18px 12px;
    border-radius: 14px;
  }

  .guias-text {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .top-header {
    min-height: 100px;
  }

  .header-inner {
    width: min(1220px, 100% - 36px);
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-inicio {
    min-height: calc(100vh - 100px);
    padding: 30px 0;
  }

  .hero-inicio::after {
    height: 150px;
  }

  .hero-inner {
    width: min(1220px, 100% - 36px);
  }

  .hero-glass {
    width: calc(100% - 24px);
    margin-left: 24px;
    min-height: auto;
    padding: 24px 26px;
  }

  .elegant-divider {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    height: 13px;
    margin: -6px auto -6px;
    left: 0;
    transform: none;
  }

  .planes-inner {
    width: min(1220px, 100% - 36px);
  }

  .planes-grid {
    gap: 22px;
  }

  .platform-feature-inner {
    width: min(1220px, 100% - 36px);
  }

  .platform-feature-glass {
    width: calc(100% - 24px);
    margin-left: 24px;
    padding: 24px 26px;
  }

  .platform-capturas {
    gap: 14px;
  }

  .demo-parallax-inner {
    width: min(1220px, 100% - 36px);
  }

  .demo-parallax-glass {
    width: calc(100% - 24px);
    margin-left: 24px;
    padding: 24px 26px;
  }

  .contacto-parallax-inner {
    width: min(1220px, 100% - 36px);
  }

  .contacto-parallax-glass {
    width: calc(100% - 24px);
    margin-left: 24px;
    padding: 24px 26px;
  }
}

@media (max-width: 900px) {
  .top-header {
    min-height: 88px;
  }

  .header-inner {
    width: min(1220px, 100% - 24px);
    justify-content: space-between;
    padding: 12px 0;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    padding: 8px 0;
    background: linear-gradient(180deg, rgba(21, 71, 105, 0.98) 0%, rgba(24, 45, 116, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    z-index: 10;
  }

  .header-inner.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    font-size: 11px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #29b6f6;
  }

  .hero-inicio {
    min-height: calc(100vh - 88px);
    padding: 22px 0;
  }

  .hero-inicio::after {
    height: 130px;
  }

  .hero-inner {
    width: min(1220px, 100% - 24px);
  }

  .hero-glass {
    width: calc(100% - 16px);
    margin-left: 16px;
    min-height: auto;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .elegant-divider {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin: -5px auto -5px;
    height: 12px;
    left: 0;
    transform: none;
  }

  .parallax-section {
    min-height: 78vh;
  }

  .planes-inner {
    width: min(1220px, 100% - 24px);
  }

  .planes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plan-card {
    padding: 24px 16px 18px;
  }

  .plan-card:hover {
    transform: scale(1.02);
  }

  .platform-feature-inner {
    width: min(1220px, 100% - 24px);
  }

  .platform-feature-glass {
    width: calc(100% - 16px);
    margin-left: 16px;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .platform-feature-section {
    min-height: 66vh;
  }

  .platform-feature-parallax-content {
    min-height: 66vh;
    padding: 42px 0 52px;
  }

  .demo-parallax-section {
    min-height: 66vh;
  }

  .demo-parallax-content {
    min-height: 66vh;
    padding: 46px 0;
  }

  .demo-parallax-inner {
    width: min(1220px, 100% - 24px);
  }

  .demo-parallax-glass {
    width: calc(100% - 16px);
    margin-left: 16px;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .contacto-parallax-section {
    min-height: 66vh;
  }

  .contacto-parallax-content {
    min-height: 66vh;
    padding: 46px 0;
  }

  .contacto-parallax-inner {
    width: min(1220px, 100% - 24px);
  }

  .contacto-parallax-glass {
    width: calc(100% - 16px);
    margin-left: 16px;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .contacto-submit {
    width: 100%;
    justify-self: stretch;
  }

  .captura-item img {
    width: clamp(150px, 30vw, 230px);
  }

  .site-footer-text {
    min-height: 70px;
    gap: 10px;
  }

  .site-footer-inner {
    min-height: 70px;
  }

  .site-footer-admin {
    left: 4px;
  }

}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100% - 18px);
    gap: 6px;
  }

  .brand {
    gap: 5px;
  }

  .main-nav {
    top: calc(100% + 6px);
  }

  .main-nav a {
    font-size: 10px;
    padding: 11px 12px;
  }

  .hero-inicio {
    padding: 14px 0;
  }

  .hero-inicio::after {
    height: 110px;
  }

  .hero-inner {
    width: calc(100% - 18px);
  }

  .hero-glass {
    width: calc(100% - 10px);
    margin-left: 10px;
    min-height: auto;
    border-radius: 14px;
    padding: 16px 12px;
  }

  .elegant-divider {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin: -4px auto -4px;
    height: 10px;
    left: 0;
    transform: none;
  }

  .parallax-section {
    min-height: 68vh;
  }

  .planes-inner {
    width: calc(100% - 18px);
  }

  .planes-section {
    padding: 0;
  }

  .planes-title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .plan-list {
    gap: 10px;
    margin: 16px 0 20px;
    font-size: 18px;
  }

  .plan-btn {
    min-height: 50px;
    font-size: 16px;
  }

  .parallax-content {
    padding: 28px 0;
  }

  .platform-feature-inner {
    width: calc(100% - 18px);
  }

  .platform-feature-glass {
    width: calc(100% - 10px);
    margin-left: 10px;
    border-radius: 14px;
    padding: 16px 12px;
  }

  .platform-feature-section {
    min-height: 60vh;
  }

  .platform-feature-parallax-content {
    min-height: 60vh;
    padding: 30px 0 34px;
  }

  .demo-parallax-section {
    min-height: 60vh;
  }

  .demo-parallax-content {
    min-height: 60vh;
    padding: 30px 0;
  }

  .demo-parallax-inner {
    width: calc(100% - 18px);
  }

  .demo-parallax-glass {
    width: calc(100% - 10px);
    margin-left: 10px;
    border-radius: 14px;
    padding: 16px 12px;
  }

  .contacto-parallax-section {
    min-height: 60vh;
  }

  .contacto-parallax-content {
    min-height: 60vh;
    padding: 30px 0;
  }

  .contacto-parallax-inner {
    width: calc(100% - 18px);
  }

  .contacto-parallax-glass {
    width: calc(100% - 10px);
    margin-left: 10px;
    border-radius: 14px;
    padding: 16px 12px;
  }

  .contacto-form {
    margin-top: 16px;
    gap: 8px;
  }

  .demo-parallax-link {
    margin-top: 16px;
    padding: 11px 18px;
  }

  .platform-capturas {
    margin-top: 18px;
    gap: 10px;
    justify-content: center;
  }

  .captura-item img {
    width: 150px;
  }

  .captura-lightbox-content {
    width: min(94vw, 680px);
    padding: 10px;
  }

  .captura-lightbox-close {
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .site-footer-text {
    min-height: 62px;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
    padding: 10px 0 2px;
  }

  .site-footer-inner {
    width: calc(100% - 18px);
    min-height: 76px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 0 8px;
  }

  .site-footer-logo {
    width: 92px;
  }

  .site-footer-count {
    position: static;
    transform: none;
    width: 50%;
    text-align: right;
    font-size: 11px;
    margin-top: 2px;
  }

  .site-footer-admin {
    position: static;
    transform: none;
    width: 50%;
    margin-top: 2px;
    margin-right: auto;
    text-align: left;
  }

}
