/* ===================================================
   VALENTINO WEB — Stylesheet
   Colores: Navy #0c1942 · Blue #1a5cdd · Cyan #00b8f0
=================================================== */

:root {
  --navy:        #0c1942;
  --blue:        #1a5cdd;
  --bright:      #2979ff;
  --cyan:        #00b8f0;
  --navy-light:  #1e3a8a;
  --light-blue:  #dbeafe;
  --lightest:    #f0f7ff;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;

  --grad-hero:   linear-gradient(135deg, #0c1942 0%, #1a5cdd 58%, #00b8f0 100%);
  --grad-blue:   linear-gradient(135deg, #1a5cdd 0%, #00b8f0 100%);
  --grad-card:   linear-gradient(135deg, #0c1942 0%, #1756c8 100%);

  --shadow-sm:   0 1px 4px rgba(12,25,66,.08);
  --shadow-md:   0 4px 20px rgba(12,25,66,.12);
  --shadow-lg:   0 10px 40px rgba(12,25,66,.18);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full:9999px;

  --t: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: 1.15rem; line-height: 1.3; font-weight: 700; }

.section-label {
  display: inline-block;
  background: var(--lightest);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--light-blue);
  margin-bottom: 1rem;
}
.section-title  { color: var(--navy); margin-bottom: .75rem; }
.section-sub    { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.centered       { text-align: center; }
.centered .section-sub { margin: 0 auto 3.5rem; }

/* ── Layout ── */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
section { padding: 96px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: .98rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1ab854; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,.45); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; transform: translateY(-2px); }

.btn-blue {
  background: var(--grad-blue);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: white; transform: translateY(-2px); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,25,66,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon img {
  height: 86px;
  width: 86px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) brightness(1.25);
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--t);
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: var(--grad-blue) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-weight: 600 !important;
  font-size: .88rem !important;
  box-shadow: 0 2px 12px rgba(0,184,240,.3);
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 18px rgba(0,184,240,.45) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   HERO BRAND IDENTITY (top of hero)
══════════════════════════════════════ */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-brand-icon {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-brand-icon img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) brightness(1.3);
  mix-blend-mode: screen;
}
.hero-brand-name {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
}
.brand-valentino { color: white; }
.brand-web       { color: var(--cyan); }
.hero-brand-slogan {
  color: rgba(255,255,255,.6);
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  letter-spacing: .03em;
}

<meta name="google-site-verification" content="D7HwQaf_ecULkjpyChXI7PqlOKa5uerKQJmAW9KlF4s" />

/* ══════════════════════════════════════
   PORTFOLIO BANNER (after hero)
══════════════════════════════════════ */
.portfolio-banner {
  background: var(--lightest);
  padding: 0;
  border-top: 4px solid var(--cyan);
}
.portfolio-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
}
.portfolio-banner-text h2 {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: .4rem;
}
.portfolio-banner-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
}
.btn-portfolio-big {
  background: var(--grad-hero);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 24px rgba(12,25,66,.3);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--t);
  text-decoration: none;
}
.btn-portfolio-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(12,25,66,.4);
}
.btn-portfolio-big svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-orb1 {
  position: absolute;
  top: -15%; right: -8%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(0,184,240,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  bottom: -15%; left: -5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(41,121,255,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; animation: pulse 2s infinite; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #00b8f0, #60e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero right — floating cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.hv-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 260px;
  transition: var(--t);
}
.hv-card:hover { background: rgba(255,255,255,.12); transform: translateX(-4px); }

.hv-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-card-icon svg { width: 22px; height: 22px; color: white; }

.hv-card-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hv-card-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   POR QUÉ
══════════════════════════════════════ */
.porque { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--t);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-blue);
}

.feature-icon {
  width: 52px; height: 52px;
  background: var(--lightest);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--blue); }

.feature-card h3 { color: var(--navy); margin-bottom: .5rem; }
.feature-card p  { color: var(--gray-600); font-size: .93rem; line-height: 1.65; }

/* ══════════════════════════════════════
   PRECIO
══════════════════════════════════════ */
.precio {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.precio::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,240,.1) 0%, transparent 60%);
}

.precio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.precio-text h2  { color: white; margin-bottom: 1rem; }
.precio-text > p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

.precio-includes {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.pi-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
}
.pi-check {
  width: 22px; height: 22px;
  background: rgba(0,184,240,.2);
  border: 1px solid rgba(0,184,240,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pi-check svg { width: 12px; height: 12px; color: var(--cyan); }

/* Price card */
.precio-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
}

.price-tag {
  margin-bottom: 1.5rem;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--cyan); vertical-align: top; margin-top: .5rem; display: inline-block; }
.price-amount   { font-size: 4rem; font-weight: 900; color: white; line-height: 1; }
.price-period   { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: .25rem; }

.no-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,.15);
  border: 1px solid rgba(74,222,128,.3);
  color: #4ade80;
  font-size: .88rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 2.5rem;
}

.precio-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   SOBRE VALENTINO WEB
══════════════════════════════════════ */
.sobre { background: white; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.sobre-text p  { color: var(--gray-600); font-size: .98rem; line-height: 1.75; margin-bottom: 1rem; }

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tag {
  background: var(--lightest);
  color: var(--blue);
  border: 1px solid var(--light-blue);
  font-size: .82rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: var(--r-full);
}

.sobre-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sobre-card {
  background: var(--lightest);
  border: 1px solid var(--light-blue);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
}
.sobre-card-val {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: .25rem;
}
.sobre-card-label {
  color: var(--gray-600);
  font-size: .82rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   PROCESO
══════════════════════════════════════ */
.proceso { background: var(--gray-50); }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

/* connector line */
.proceso-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: var(--light-blue);
  z-index: 0;
}

.proceso-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.proceso-step:hover { border-color: var(--light-blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.paso-num {
  width: 44px; height: 44px;
  background: var(--grad-blue);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(26,92,221,.35);
}

.proceso-step h3 { color: var(--navy); font-size: .95rem; margin-bottom: .4rem; }
.proceso-step p  { color: var(--gray-600); font-size: .8rem; line-height: 1.5; }

/* ══════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════ */
.testimonios { background: white; }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--light-blue); transform: translateY(-3px); }

.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }

.testi-text {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: 800;
  color: white;
}

.testi-name     { font-weight: 700; color: var(--navy); font-size: .88rem; }
.testi-business { color: var(--gray-400); font-size: .78rem; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { background: var(--gray-50); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--light-blue); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--t);
}
.faq-q:hover { background: var(--lightest); }

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lightest);
  border: 1px solid var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.faq-icon svg { width: 13px; height: 13px; color: var(--blue); transition: transform var(--t); }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); }
.faq-item.open .faq-icon svg { color: white; transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.72;
}
.faq-item.open .faq-a { max-height: 220px; }

/* ══════════════════════════════════════
   CONTACTO CTA
══════════════════════════════════════ */
.contacto {
  background: var(--grad-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,240,.1) 0%, transparent 65%);
}
.contacto-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.contacto h2    { color: white; margin-bottom: .75rem; }
.contacto-desc  { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }

/* Contact method cards */
.contact-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
  color: white;
  min-width: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  backdrop-filter: blur(12px);
  transition: var(--t);
  text-decoration: none;
}
.contact-card:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.contact-card svg  { width: 34px; height: 34px; margin-bottom: .35rem; }
.cc-title          { font-weight: 700; font-size: .95rem; }
.cc-value          { color: rgba(255,255,255,.62); font-size: .8rem; }
.cc-action         { color: var(--cyan); font-size: .8rem; font-weight: 600; margin-top: .2rem; }

.contacto-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0a0f28;
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-logo {
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  margin-bottom: 1.1rem;
}
.footer-brand-logo img { height: 36px; width: auto; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.7; max-width: 270px; margin-bottom: 1.25rem; }

.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--cyan);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.footer-col li + li { margin-top: .7rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color var(--t); display: flex; align-items: center; gap: 5px; }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; }

/* ══════════════════════════════════════
   FLOATING WA BUTTON
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-float svg   { width: 28px; height: 28px; }

/* ══════════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════════ */
.portfolio-hero {
  background: var(--grad-hero);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.portfolio-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,240,.12) 0%, transparent 65%);
}
.portfolio-hero h1  { color: white; margin-bottom: 1rem; position: relative; }
.portfolio-hero p   { color: rgba(255,255,255,.72); font-size: 1.05rem; position: relative; }

.portfolio-back {
  position: absolute;
  top: 1.5rem; left: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--t);
  z-index: 1;
}
.portfolio-back:hover { color: white; }
.portfolio-back svg  { width: 18px; height: 18px; }

.portfolio-section { background: var(--gray-50); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.portfolio-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--t);
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--light-blue); }

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Browser bar mockup */
.portfolio-thumb::before {
  content: '● ● ●';
  position: absolute;
  top: 12px; left: 14px;
  font-size: .45rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,.45);
  z-index: 1;
}

.portfolio-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb-label {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.25);
  letter-spacing: -2px;
}

.pc-body { padding: 1.5rem; }
.pc-category {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}
.pc-body h3    { color: var(--navy); margin-bottom: .4rem; font-size: 1.05rem; }
.pc-body p     { color: var(--gray-600); font-size: .88rem; line-height: 1.6; margin-bottom: 1.25rem; }
.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: .88rem;
  font-weight: 600;
  transition: gap var(--t), color var(--t);
}
.pc-link:hover { color: var(--cyan); gap: 8px; }
.pc-link svg   { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .proceso-steps { grid-template-columns: repeat(3, 1fr); }
  .proceso-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-wrap      { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .precio-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }

  .portfolio-banner-inner { flex-direction: column; text-align: center; }
  .btn-portfolio-big { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px 32px; }
  .hero-brand { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-brand-icon img { width: 160px; height: 160px; }
  .contact-cards { gap: .75rem; }
  .contact-card  { min-width: 130px; padding: 1.25rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(12,25,66,.98);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }

  .hero-buttons   { flex-direction: column; align-items: flex-start; }
  .proceso-steps  { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .sobre-cards    { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; gap: .5rem; text-align: center; }
  .contacto-btns  { flex-direction: column; align-items: center; }
}

@media (max-width: 420px) {
  .proceso-steps  { grid-template-columns: 1fr; }
  .sobre-cards    { grid-template-columns: 1fr; }
}
