/* ============================================
   SimpliArg - style.css (UNICO para todo el sitio)
   Reglas globales + estilos por página (scoped)
   ============================================ */

/* ---------- Base / Reset global ---------- */
:root {
  --sa-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* brand */
  --sa-primary: #3aa0ff;
  --sa-primary-2: #1f5eff;

  /* dark palette (sitiosweb) */
  --sa-bg-0: #050b16;
  --sa-bg-1: #0b1a33;
  --sa-bg-2: #020617;

  --sa-text: #ffffff;
  --sa-muted: #cfd8e3;
  --sa-muted-2: #9fb2c7;

  --sa-radius-sm: 8px;
  --sa-radius-md: 16px;

  --sa-shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body { font-family: var(--sa-font); }

/* helper accesibilidad */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* para anchors con header fijo */
.section-offset { scroll-margin-top: 90px; }

/* ==================================================
   PAGE: sitiosweb.html  (TODO scoped a .page-sitiosweb)
   ================================================== */

body.page-sitiosweb {
  background: radial-gradient(circle at top, var(--sa-bg-1), var(--sa-bg-0));
  color: var(--sa-text);
}

/* Header / Nav */
.page-sitiosweb .glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5,10,25,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-sitiosweb .glass-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-sitiosweb .logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
}

.page-sitiosweb .logo span { color: var(--sa-primary); }

.page-sitiosweb .glass-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.page-sitiosweb .glass-nav a {
  color: var(--sa-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.page-sitiosweb .glass-nav a:hover { color: #ffffff; }

.page-sitiosweb .nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sa-primary), var(--sa-primary-2));
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 0 20px rgba(58,160,255,0.4);
}

.page-sitiosweb .energy-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--sa-primary), transparent);
  animation: energyFlow 3s linear infinite;
}

@keyframes energyFlow {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* Hero */
.page-sitiosweb .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 10%;
  background: radial-gradient(circle at top, var(--sa-bg-1), var(--sa-bg-2));
  position: relative;
}

.page-sitiosweb .hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-sitiosweb .hero-text h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-sitiosweb .hero-text h1 span { color: var(--sa-primary); }

.page-sitiosweb .hero-subtitle {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--sa-muted);
  max-width: 520px;
}

.page-sitiosweb .hero-pain {
  margin-top: 12px;
  font-size: 1rem;
  color: #ffb3b3;
}

.page-sitiosweb .hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-sitiosweb .btn-primary {
  background: linear-gradient(135deg, var(--sa-primary), var(--sa-primary-2));
  color: white;
  padding: 14px 28px;
  border-radius: var(--sa-radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-sitiosweb .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(58,160,255,0.45);
}

.page-sitiosweb .btn-secondary {
  border: 1px solid var(--sa-primary);
  color: var(--sa-primary);
  padding: 14px 26px;
  border-radius: var(--sa-radius-sm);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-sitiosweb .btn-secondary:hover { background: rgba(58,160,255,0.1); }

.page-sitiosweb .hero-microcopy {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--sa-muted-2);
}

.page-sitiosweb .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.page-sitiosweb .hero-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 90px rgba(0,0,0,0.65));
  animation: heroFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes heroFloat {
  0%   { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50%  { transform: translateY(-12px) rotateX(2deg) rotateY(-2deg); }
  100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
}

/* Responsive hero */
@media (max-width: 900px) {
  .page-sitiosweb .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .page-sitiosweb .hero-cta { justify-content: center; }
}

/* Video sections */
.page-sitiosweb .video-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.page-sitiosweb .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-sitiosweb .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5,10,25,0.75), rgba(5,10,25,0.85));
  z-index: 1;
}

.page-sitiosweb .content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 10%;
  color: #ffffff;
}

.page-sitiosweb .content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-sitiosweb .content h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.page-sitiosweb .content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px 0;
}

.page-sitiosweb .content span {
  letter-spacing: 2px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Ecommerce */
.page-sitiosweb .world-ecommerce { padding: 160px 10%; color: #ffffff; }
.page-sitiosweb .ecommerce-container { max-width: 1200px; margin: 0 auto; }

.page-sitiosweb .ecommerce-header { text-align: left; margin-bottom: 50px; }
.page-sitiosweb .ecommerce-header h2 { font-size: 2.6rem; color: #246aab; font-weight: 700; }
.page-sitiosweb .ecommerce-header p { color: var(--sa-muted); font-size: 1.1rem; }

.page-sitiosweb .ecommerce-store {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-sitiosweb .product-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sitiosweb .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.page-sitiosweb .product-img {
  height: 160px;
  border-radius: 10px;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
}

.page-sitiosweb .product-img.landing { background-image: url("media/Landing page.png"); }
.page-sitiosweb .product-img.corporativa { background-image: url("media/Web corporativa.png"); }
.page-sitiosweb .product-img.tienda { background-image: url("media/tienda online.png"); }

.page-sitiosweb .product-card h4 { margin: 10px 0; font-size: 1.05rem; color: #ffffff; }
.page-sitiosweb .product-desc { font-size: 0.9rem; opacity: 0.85; margin: 10px 0; }

.page-sitiosweb .price {
  display: block;
  color: var(--sa-primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.page-sitiosweb .product-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  background: var(--sa-primary);
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-sitiosweb .product-btn:hover { background: #60b8ff; transform: translateY(-2px); }

.page-sitiosweb .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sa-primary);
  color: #020617;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-sitiosweb .ecommerce-store { grid-template-columns: 1fr; }
}

/* Simpliarg section */
.page-sitiosweb .world-simpliarg {
  background: radial-gradient(circle at center, var(--sa-bg-1), var(--sa-bg-0));
  padding: 160px 10%;
  text-align: center;
  color: #ffffff;
}

.page-sitiosweb .simpliarg-container { max-width: 900px; margin: 0 auto; }

.page-sitiosweb .simpliarg-pre span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
}

.page-sitiosweb .world-simpliarg h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.page-sitiosweb .world-simpliarg h2 span { color: var(--sa-primary); }

.page-sitiosweb .simpliarg-logo {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.page-sitiosweb .simpliarg-logo span { color: var(--sa-primary); }

.page-sitiosweb .simpliarg-claim { font-size: 1.3rem; font-weight: 600; margin-top: 20px; }
.page-sitiosweb .simpliarg-sub { margin-top: 10px; font-size: 0.9rem; color: #94a3b8; letter-spacing: 1.5px; }

/* Offer */
.page-sitiosweb .offer {
  background: #b6b4bd;
  padding: 140px 10%;
  text-align: center;
  color: #0f172a;
}

.page-sitiosweb .offer-container { max-width: 900px; margin: 0 auto; }

.page-sitiosweb .offer h2 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 25px; }
.page-sitiosweb .offer h2 span { color: #2563eb; }

.page-sitiosweb .offer-text { font-size: 1.1rem; color: #334155; margin-bottom: 50px; }

.page-sitiosweb .offer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.page-sitiosweb .feature { background: #f1f5f9; padding: 14px; border-radius: 8px; font-weight: 500; }
.page-sitiosweb .feature-wide { grid-column: span 2; justify-self: center; max-width: 420px; }

.page-sitiosweb .offer-cta { margin-top: 30px; }

.page-sitiosweb .cta-button {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0;
  cursor: pointer;
}

.page-sitiosweb .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.35);
}

.page-sitiosweb .cta-sub { margin-top: 12px; font-size: 0.85rem; color: #64748b; }

@media (max-width: 700px) {
  .page-sitiosweb .offer-features { grid-template-columns: 1fr; }
  .page-sitiosweb .feature-wide { grid-column: auto; max-width: none; }
}

/* Final CTA / Form */
.page-sitiosweb .final-cta {
  background: linear-gradient(180deg, #020617, #0b1a33);
  color: #f8f8fb;
  padding: 160px 10%;
  text-align: center;
}

.page-sitiosweb .final-container { max-width: 800px; margin: 0 auto; }

.page-sitiosweb .final-cta h2 { font-size: 2.6rem; margin-bottom: 15px; }

.page-sitiosweb .final-text { color: #cbd5f5; margin-bottom: 50px; font-size: 1.1rem; }

.page-sitiosweb .lead-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.page-sitiosweb .form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.page-sitiosweb .lead-form input,
.page-sitiosweb .lead-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.page-sitiosweb .lead-form textarea {
  resize: none;
  height: 120px;
  margin-bottom: 20px;
}

.page-sitiosweb .lead-form .cta-button {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.page-sitiosweb .form-note { margin-top: 15px; font-size: 0.8rem; color: #94a3b8; }

@media (max-width: 700px) {
  .page-sitiosweb .form-group { grid-template-columns: 1fr; }
}

/* Scroll indicator */
.page-sitiosweb .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--sa-muted-2);
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

.page-sitiosweb .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--sa-muted-2);
  border-radius: 14px;
  margin: 0 auto 6px;
  position: relative;
}

.page-sitiosweb .wheel {
  width: 4px;
  height: 8px;
  background: var(--sa-muted-2);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* WhatsApp floating */
.page-sitiosweb .whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWA 2.5s infinite;
}

.page-sitiosweb .whatsapp-float img { width: 22px; height: 22px; }

.page-sitiosweb .whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.6);
}

@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* =========================
   INDEX (page-index) THEME
   Gris + Celeste
   ========================= */
.page-index {
  /* Fondo general */
  background: radial-gradient(1200px 600px at 15% 10%, rgba(29,103,193,0.18), transparent 60%),
              radial-gradient(900px 500px at 85% 25%, rgba(58,160,255,0.14), transparent 55%),
              linear-gradient(180deg, #f3f5f8 0%, #e9edf3 45%, #dfe5ee 100%);
  color: #0f172a;
  min-height: 100vh;
}

/* Si en el body del index seguís usando clases Tailwind de fondo, esto ayuda a que gane CSS */
.page-index.bg-background-light {
  background: radial-gradient(1200px 600px at 15% 10%, rgba(29,103,193,0.18), transparent 60%),
              radial-gradient(900px 500px at 85% 25%, rgba(58,160,255,0.14), transparent 55%),
              linear-gradient(180deg, #f3f5f8 0%, #e9edf3 45%, #dfe5ee 100%);
}

/* Navbar glass sobre gris */
.page-index .glass-nav {
  background: rgba(245, 248, 252, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* Texto del nav */
.page-index nav a {
  color: rgba(255, 255, 255, 0.72);
}
.page-index nav a:hover {
  color: #1d67c1;
}

/* Botón CTA del nav (celeste) */
.page-index nav a.bg-primary,
.page-index nav a[href="#contact"] {
  box-shadow: 0 14px 40px rgba(29,103,193,0.18);
}

/* Cards sobre fondo gris */
.page-index section .bg-white {
  background: rgba(255,255,255,0.78) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: blur(10px);
}

/* Secciones “blancas” pasarlas a gris suave para que no quede un bloque blanco duro */
.page-index .bg-white,
.page-index footer.bg-white {
  background: rgba(245, 248, 252, 0.65) !important;
}

/* Footer un poco más sobrio */
.page-index footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* Botones (celeste) */
.page-index .bg-primary {
  background: linear-gradient(135deg, #1d67c1, #3aa0ff) !important;
}
.page-index .hover\:bg-blue-700:hover {
  filter: brightness(0.95);
}

/* Oscurecer un toque los textos “slate-600” para que se lean perfecto en gris */
.page-index .text-slate-600 {
  color: rgba(15, 23, 42, 0.70) !important;
}
.page-index .text-slate-400 {
  color: rgba(15, 23, 42, 0.45) !important;
}