﻿:root {
  --bg: #020817;
  --bg2: #071b3d;
  --blue: #1479ff;
  --blue2: #00a2ff;
  --gold: #f7c531;
  --green: #25d366;
  --white: #ffffff;
  --text: #dbe7ff;
  --muted: #93a4c7;
  --card: rgba(5, 18, 45, 0.86);
  --border: rgba(79, 140, 255, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 8, 23, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #001634;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
}

.logo strong {
  display: block;
  font-size: 24px;
  color: var(--white);
}

.logo span {
  color: var(--blue2);
  font-size: 13px;
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu a {
  color: var(--text);
  font-weight: 700;
  transition: 0.25s;
}

.menu a:hover {
  color: var(--gold);
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.95), rgba(8, 31, 83, 0.80)),
    radial-gradient(circle at 70% 20%, rgba(20, 121, 255, 0.35), transparent 35%),
    linear-gradient(135deg, #06122e, #071b3d 45%, #150b3d);
  padding: 90px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge,
.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span,
.highlight {
  color: var(--gold);
}

.hero-description {
  font-size: 20px;
  line-height: 1.7;
  max-width: 650px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f4a800);
  color: #071122;
}

.btn-secondary {
  border: 1px solid var(--blue);
  color: var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-card h2 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-card li {
  padding: 14px 16px;
  background: rgba(20, 121, 255, 0.12);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.section {
  padding: 90px 0;
}

.gray {
  background: #061126;
}

.section h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.section-description {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.plan,
.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}

.card h3,
.plan h3,
.contact-box h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 22px;
}

.card p,
.plan p,
.contact-box p {
  color: var(--muted);
  line-height: 1.6;
}

.plans {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan strong {
  display: block;
  margin-top: 20px;
  color: var(--gold);
}

.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.contact-box .btn {
  margin-top: 22px;
  width: 100%;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .contact-grid,
  .cards,
  .plans {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .featured {
    transform: none;
  }
}
/* ===== AJUSTES CONTACTO GALVIS DEVSTUDIO ===== */

body {
  background:
    linear-gradient(rgba(2, 8, 23, 0.88), rgba(2, 8, 23, 0.96)),
    url("../screen.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.contact-info p {
  margin-bottom: 8px;
}

.youtube-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.youtube-line img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.youtube-line a:hover {
  color: var(--gold);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    height: auto;
  }
}

/* CONTACTO GALVIS DEVSTUDIO */

.contact-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.contact-info p {
  margin-bottom: 8px;
}

.youtube-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.youtube-line img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    height: auto;
  }
}

/* ===== CORRECCION RESPONSIVE CONTACTO ===== */

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

.contact-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  overflow: hidden;
}

.contact-info {
  min-width: 0;
}

.contact-info p,
.youtube-line,
.youtube-line a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-actions .btn {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    height: auto;
    max-height: 420px;
  }

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

/* ===== FORMULARIO DE SOLICITUD ===== */

.support-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
}

.support-modal.active {
  display: grid;
}

.support-box {
  width: min(900px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  background: rgba(5, 18, 45, 0.98);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.support-box h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.support-box p {
  color: var(--muted);
  line-height: 1.6;
}

.support-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--gold);
  color: #071122;
  font-weight: 900;
}

.support-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

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

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  background: rgba(2, 8, 23, 0.9);
  color: var(--white);
  outline: none;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: var(--muted);
}

.file-label {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  color: var(--text);
}

.file-label span {
  color: var(--muted);
  font-size: 14px;
}

.form-note {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .support-box {
    padding: 24px;
  }
}

.success-message {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.55);
  color: #d8ffe8;
  padding: 18px;
  border-radius: 16px;
  line-height: 1.6;
}

#phoneCode {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  background: rgba(2, 8, 23, 0.9);
  color: var(--white);
  outline: none;
}

/* ===== ARCHIVOS ADJUNTOS ===== */

.drop-zone {
  cursor: pointer;
  transition: 0.25s;
}

.drop-zone.drag-active {
  border-color: var(--gold);
  background: rgba(247, 197, 49, 0.08);
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.file-list small {
  color: var(--gold);
  font-weight: 700;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.8);
  color: var(--text);
}

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

.file-item button {
  border: 0;
  border-radius: 10px;
  padding: 7px 10px;
  cursor: pointer;
  background: rgba(255, 70, 70, 0.16);
  color: #ffb4b4;
  font-weight: 800;
}

/* ===== FOOTER PROFESIONAL ===== */

.footer-pro {
  background: rgba(7, 0, 34, 0.96);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 42px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}

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

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 14px;
  outline: none;
}

.newsletter-form label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 14px;
}

.newsletter-form button {
  width: fit-content;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  background: var(--gold);
  color: #071122;
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 42px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ICONOS CONTACTO Y BANNER VISUAL ===== */

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-line img,
.youtube-line img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.work-banner {
  position: relative;
  width: min(1180px, 92%);
  margin: 40px auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: #020817;
}

.work-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.work-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.05), rgba(2, 8, 23, 0.75));
}

.work-banner-text {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  width: min(460px, 86%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(2, 8, 23, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.work-banner-text h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.work-banner-text p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .work-banner img {
    height: 520px;
  }

  .work-banner-text {
    left: 20px;
    right: 20px;
    top: 24px;
    width: auto;
  }
}

/* ===== LOGO ORBIX Y SLIDER PROMOCIONAL ===== */

.logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active {
  opacity: 1;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
}

.dot.active {
  opacity: 1;
  background: var(--gold);
}

/* ===== SLIDER FULL WIDTH RESPONSIVE ===== */

.full-banner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  min-height: 420px;
}

.full-banner .slider {
  position: relative;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  overflow: hidden;
}

.full-banner .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.full-banner .slide.active {
  opacity: 1;
  z-index: 2;
}

.full-banner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: min(470px, 86%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(2, 8, 23, 0.70);
  border: 1px solid rgba(79, 140, 255, 0.30);
  backdrop-filter: blur(10px);
}

.slide-text.right {
  right: 6%;
}

.slide-text.left {
  left: 6%;
}

.slide-text h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.slide-text p {
  color: var(--text);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
}

.full-banner .slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.full-banner .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.45;
}

.full-banner .dot.active {
  background: var(--gold);
  opacity: 1;
}

@media (max-width: 760px) {
  .full-banner .slider {
    height: 560px;
  }

  .slide-text,
  .slide-text.right,
  .slide-text.left {
    left: 20px;
    right: 20px;
    bottom: 30px;
    top: auto;
    transform: none;
    width: auto;
  }

  .slide-text h2 {
    font-size: 30px;
  }
}

/* ===== AJUSTES PAYVEX / GALVIS DEVSTUDIO ===== */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(2, 8, 23, 0.55);
  color: white;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.slider-prev {
  left: 22px;
}

.slider-next {
  right: 22px;
}

.slider-arrow:hover {
  background: var(--gold);
  color: #071122;
}

.slider-dots .dot {
  border: 0;
  cursor: pointer;
}

.about-section {
  background: rgba(2, 8, 23, 0.88);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.about-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.about-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

/* ===== CORRECCION LOGO PAYVEX COMPLETO ===== */

.logo-icon {
  width: 86px;
  height: 58px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo {
  gap: 16px;
}

/* ===== POSICIONAMIENTO FINAL TEXTOS SLIDER ===== */

.slide-text.left {
  left: 6%;
  right: auto;
}

.slide-text.right {
  right: 6%;
  left: auto;
}

.slide-text {
  max-width: 470px;
  background: rgba(2, 8, 23, 0.58);
}

/* ===== MODULOS PAYVEX PRO ===== */

.modules-pro {
  background:
    radial-gradient(circle at top left, rgba(20, 121, 255, 0.16), transparent 35%),
    rgba(2, 8, 23, 0.95);
}

.center {
  text-align: center;
}

.center-text {
  margin: 0 auto;
}

.modules-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(5, 18, 45, 0.86);
  border: 1px solid rgba(79, 140, 255, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transition: 0.28s ease;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 197, 49, 0.12), rgba(20, 121, 255, 0.08));
  opacity: 0;
  transition: 0.28s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

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

.module-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(20, 121, 255, 0.16);
  font-size: 30px;
}

.module-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
}

.module-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BENEFICIOS PAYVEX ===== */

.benefits-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.96), rgba(2, 8, 23, 0.98));
}

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

.benefits-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(5, 18, 45, 0.86);
  border: 1px solid rgba(79, 140, 255, 0.25);
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  transition: 0.25s;
}

.benefit-item:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FONDO GLOBAL CORREGIDO ===== */

html,
body {
  min-height: 100%;
}

body {
  background:
    linear-gradient(rgba(2, 8, 23, 0.72), rgba(2, 8, 23, 0.88)),
    url("../screen.webp") center center / cover fixed no-repeat !important;
}

/* ===== TRANSPARENCIA GENERAL PARA VER FONDO SCREEN ===== */

.hero,
.gray,
.modules-pro,
.benefits-section,
.about-section {
  background: rgba(2, 8, 23, 0.62) !important;
  backdrop-filter: blur(3px);
}

.card,
.plan,
.hero-card,
.module-card,
.about-card,
.contact-box,
.benefit-item {
  background: rgba(5, 18, 45, 0.72) !important;
  backdrop-filter: blur(8px);
}

.section {
  background-color: transparent !important;
}

.footer-pro {
  background: rgba(7, 0, 34, 0.78) !important;
}

/*======================
CAPTURAS PAYVEX
=======================*/

.screenshots-section{

padding:110px 0;

}

.screenshots-slider{

overflow:hidden;

margin-top:60px;

}

.screenshots-track{

display:flex;

gap:30px;

width:max-content;

animation:capturas 45s linear infinite;

}

.screenshots-track:hover{

animation-play-state:paused;

}

.screenshots-track img{

width:480px;

border-radius:22px;

box-shadow:0 20px 55px rgba(0,0,0,.35);

transition:.35s;

border:1px solid rgba(255,255,255,.12);

}

.screenshots-track img:hover{

transform:scale(1.05);

box-shadow:0 30px 80px rgba(0,0,0,.45);

}

@keyframes capturas{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@media(max-width:900px){

.screenshots-track img{

width:320px;

}

}


/*=================================
VISOR DE IMAGENES
==================================*/

.image-viewer{

position:fixed;

inset:0;

background:rgba(0,0,0,.88);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

backdrop-filter:blur(8px);

animation:fadeViewer .25s;

}

.image-viewer.active{

display:flex;

}

.image-viewer img{

max-width:92%;

max-height:92%;

border-radius:18px;

box-shadow:0 30px 90px rgba(0,0,0,.55);

animation:zoomViewer .25s;

}

.viewer-close{

position:absolute;

top:22px;

right:35px;

font-size:58px;

color:white;

cursor:pointer;

transition:.25s;

font-weight:bold;

}

.viewer-close:hover{

color:#FFC72C;

transform:rotate(90deg);

}

@keyframes fadeViewer{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes zoomViewer{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}


/* ===== MARCA PRINCIPAL GALVIS DEVSTUDIO ===== */

.brand-main-logo {
  width: 92px !important;
  height: 72px !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.brand-main-logo img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.logo strong {
  font-size: 28px;
}

.products-section {
  background: rgba(2, 8, 23, 0.64) !important;
  backdrop-filter: blur(4px);
}

.products-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.product-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: rgba(5, 18, 45, 0.76);
  border: 1px solid rgba(79, 140, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-card h3 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 14px;
}

.product-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 197, 49, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.featured-product {
  border-color: var(--gold);
}

.coming-soon {
  opacity: 0.82;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .brand-main-logo {
    width: 74px !important;
  }
}

/* ===== REPARACION HEADER GALVIS DEVSTUDIO ===== */

.brand-main-logo {
  width: 96px !important;
  height: 72px !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

.brand-main-logo img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.logo strong {
  font-size: 28px;
}

.products-section {
  background: rgba(2, 8, 23, 0.62) !important;
  backdrop-filter: blur(4px);
}

.products-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.product-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(5, 18, 45, 0.76);
  border: 1px solid rgba(79, 140, 255, 0.28);
}

.product-card h3 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 14px;
}

.product-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 197, 49, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.featured-product {
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
