﻿/*
Theme Name: Creantia
Theme URI: https://creantia.com
Author: Creantia
Description: Tema moderno para sublimación y merchandising empresarial
Version: 1.0
*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --ink: #0B1423;
  --deep: #0F2040;
  --ocean: #0A3D62;
  --cyan: #00C2A8;
  --cyanl: #33D4BC;
  --gold: #F2C94C;
  --snow: #F0F4F8;
  --fog: #D6E4F0;
  --muted: #7A99B8;
  --white: #FFFFFF;
  --grid-c: rgba(0, 194, 168, 0.07);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --transition: all 0.25s ease;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-c) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-c) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px);} to { opacity: 1; transform: none;} }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:.5;} }
@keyframes float { 0%,100% {transform:translateY(0);} 50% {transform:translateY(-10px);} }

h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--cyan);
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(0,194,168,.3); border-radius: 100px;
  padding: 6px 18px; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cyan);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 14px 32px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-primary { background: var(--cyan); color: var(--ink); }
.btn-primary:hover { background: var(--cyanl); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.2); color: var(--white); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
  font-family: var(--mono);
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 580px;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(11,20,35,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0, 194, 168, .1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: 1140px; margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.brand-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
}
.brand-dot { color: var(--cyan); }

.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--cyan); display: flex;
  align-items: center; justify-content: center; color: var(--white);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 13px; font-weight: 600; background: var(--cyan); color: var(--ink) !important;
  padding: 9px 22px; border-radius: 100px; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--cyanl); transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(11, 20, 35, 0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--white); transition: color .2s; }
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 28px; color: var(--muted); background: none; border: none; cursor: pointer; }

#hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,168,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}
.hero-badge-wrap { margin-bottom: 28px; animation: fadeUp .8s ease both; }
.hero-slogan {
  font-size: clamp(17px, 2vw, 22px); font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.65); margin-bottom: 32px; animation: fadeUp .8s .2s ease both;
}
.hero-desc {
  font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.75;
  max-width: 460px; margin-bottom: 40px; animation: fadeUp .8s .3s ease both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .4s ease both; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07); animation: fadeUp .8s .5s ease both;
}
.hs-num { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--cyan); }
.hs-lbl {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.hero-visual { animation: fadeIn 1s .3s ease both; }
.hv-card {
  background: var(--deep); border: 1px solid rgba(0,194,168,.15);
  border-radius: var(--r-xl); padding: 32px 28px; position: relative; overflow: hidden;
}
.hv-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,168,.15) 0%, transparent 60%);
}
.hv-header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hv-icon {
  width: 40px; height: 40px; border-radius: 9px; border: 1.5px solid var(--cyan);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.hv-brand { font-family: var(--serif); font-weight: 400; font-size: 30px; letter-spacing: -0.02em; }
.hv-services { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hv-service {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,194,168,.05); border: 1px solid rgba(0,194,168,.1);
  border-radius: var(--r-md); padding: 12px 16px;
  transition: border-color .2s, background .2s;
}
.hv-service:hover { border-color: rgba(0,194,168,.3); background: rgba(0,194,168,.08); }
.hv-s-name { font-size: 14px; font-weight: 500; }
.hv-s-tag { font-size: 11px; color: var(--muted); }
.hv-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06);
}
.hv-f-txt { font-size: 12px; color: var(--muted); }
.hv-f-tag {
  background: rgba(0,194,168,.12); border: 1px solid rgba(0,194,168,.2);
  border-radius: 100px; padding: 4px 12px; font-size: 11px;
  font-weight: 600; color: var(--cyan);
}

#servicios, #productos, #testimonios { padding: 100px 0; background: var(--ink); }
#como-funciona, #por-que, #contacto { padding: 100px 0; background: var(--deep); }

.services-grid, .testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-top: 48px;
}
.service-card, .testi-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-xl); padding: 28px;
}
.service-card:hover, .testi-card:hover { border-color: rgba(0,194,168,.2); }
.sc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(0,194,168,.1);
  border: 1px solid rgba(0,194,168,.2); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.sc-title { font-family: var(--serif); font-weight: 500; font-size: 28px; margin-bottom: 10px; }
.sc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.sc-tag {
  font-size: 11px; font-weight: 500; background: rgba(0,194,168,.08);
  border: 1px solid rgba(0,194,168,.15); border-radius: 100px; padding: 3px 10px; color: var(--cyan);
}

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 52px;
}
.step { background: var(--ink); padding: 36px 28px; position: relative; overflow: hidden; }
.step:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.step:last-child { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.step-num { font-family: var(--mono); font-size: 30px; font-weight: 700; color: rgba(0,194,168,.35); margin-bottom: 20px; }
.step-title { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-arrow {
  position: absolute; top: 50%; right: -1px; transform: translateY(-50%);
  width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  border-left: 14px solid var(--deep); z-index: 2;
}
.step:last-child .step-arrow { display: none; }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-top: 48px;
}
.product-card {
  background: var(--deep); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-lg); padding: 28px 20px; text-align: center;
}
.pc-emoji { font-size: 36px; margin-bottom: 14px; }
.pc-name { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 6px; }
.pc-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

#por-que { position: relative; overflow: hidden; }
#por-que::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,168,.06) 0%, transparent 60%);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 52px;
}
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(11,20,35,.6); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg); padding: 20px;
}
.wi-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,194,168,.1); border: 1px solid rgba(0,194,168,.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.wi-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.wi-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

.wv-box {
  background: var(--ink); border: 1px solid rgba(0,194,168,.15);
  border-radius: var(--r-xl); padding: 36px 32px; animation: float 5s ease-in-out infinite;
}
.wv-title { font-family: var(--serif); font-weight: 500; font-size: 34px; margin-bottom: 6px; }
.wv-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.wv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wvs { background: var(--deep); border-radius: var(--r-md); padding: 16px; }
.wvs-val { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--cyan); }
.wvs-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: .08em; text-transform: uppercase; }
.wv-bar { margin-top: 20px; }
.wv-bar + .wv-bar { margin-top: 10px; }
.wv-bar-lbl { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.wv-bar-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.wv-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--cyanl)); }

.tc-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-text {
  font-size: 14px; color: rgba(255,255,255,.75);
  line-height: 1.75; font-style: italic; margin-bottom: 18px;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: var(--cyan); flex-shrink: 0;
}
.tc-name { font-weight: 600; font-size: 14px; }
.tc-role { font-size: 12px; color: var(--muted); }

#contacto { position: relative; overflow: hidden; }
#contacto::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,194,168,.07) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cta-highlight { color: var(--cyan); }
.cta-contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.cta-contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.cta-contact-icon { color: var(--cyan); font-size: 18px; }

.cta-form {
  background: var(--ink); border: 1px solid rgba(0,194,168,.12);
  border-radius: var(--r-xl); padding: 36px 32px;
}
.cf-title { font-family: var(--serif); font-weight: 500; font-size: 30px; margin-bottom: 22px; }
.cf-group { margin-bottom: 16px; }
.cf-label {
  font-size: 12px; font-weight: 500; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 7px;
}
.cf-input, .cf-select, .cf-textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  padding: 12px 16px; font-family: var(--sans); font-size: 14px;
  color: var(--white); transition: border-color .2s, background .2s; outline: none;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--cyan); background: rgba(0,194,168,.04); }
.cf-select option { background: var(--ink); color: var(--white); }
.cf-textarea { resize: vertical; min-height: 90px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit {
  width: 100%; background: var(--cyan); color: var(--ink);
  border-radius: 100px; padding: 14px; font-family: var(--sans);
  font-size: 15px; font-weight: 600; transition: background .2s, transform .2s;
  margin-top: 6px; cursor: pointer; border: none;
}
.cf-submit:hover { background: var(--cyanl); transform: translateY(-2px); }
.cf-submit:disabled { background: var(--ocean); cursor: default; transform: none; }
.cf-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.fg-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-top: 14px; }
.fg-col h4 {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.fg-col a { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 9px; transition: color .2s; }
.fg-col a:hover { color: var(--cyan); }
.fg-col p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05);
  flex-wrap: wrap; gap: 12px;
}
.fb-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
.fb-links a:hover { color: var(--cyan); }

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  display: flex; align-items: center; gap: 10px; background: #25D366;
  color: #fff; border-radius: 100px; padding: 12px 22px; font-size: 14px;
  font-weight: 600; box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.45); }
.wa-icon { font-size: 20px; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .step:first-child { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .step:last-child { border-radius: 0 0 var(--r-xl) var(--r-xl); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
}
