/*
Theme Name: VicPy Informatica
Theme URI: https://vicpyinformatica.com
Author: VicPy Informatica
Author URI: https://vicpyinformatica.com
Description: Tema one-page para la landing de VicPy Informatica. Servicio tecnico, redes, servidores y venta de equipos. HTML5 semantico, CSS3 (Flexbox/Grid) y JavaScript vanilla.
Version: 1.2.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vicpy
Tags: one-page, business, blog, custom-menu, featured-images, responsive
*/
/* ============================================================
   VicPy Informatica - styles.css (v2.0 - visual vibrante)
   Gradientes violeta/rosa/cian, bloques coloridos, menos aire.
   Mobile-first + Flexbox y CSS Grid.
   ============================================================ */

/* ------------------------------------------------------------
   1. VARIABLES GLOBALES
------------------------------------------------------------ */
:root {
  /* Paleta vibrante */
  --ink: #0B1020;
  --ink-soft: #141A2E;
  --bg: #F5F6FB;

  --violet: #7C3AED;
  --violet-2: #A855F7;
  --pink: #EC4899;
  --cyan: #06B6D4;
  --teal: #10B981;
  --orange: #F97316;
  --blue: #3B82F6;

  --white: #FFFFFF;
  --gray-100: #E9ECF5;
  --gray-200: #C7CFDC;
  --gray-300: #9AA5B8;
  --text: #17202E;
  --muted: #525C6E;

  --wa: #25D366;
  --wa-dark: #1DB95B;
  --danger: #EF4444;
  --success: #22C55E;

  --font-head: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --grad-main: linear-gradient(120deg, var(--cyan), var(--blue) 40%, var(--violet));
  --grad-hot: linear-gradient(120deg, var(--violet), var(--pink));

  --header-h: 70px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 28px rgba(11, 16, 32, 0.10);
  --shadow-float: 0 18px 44px rgba(11, 16, 32, 0.28);
  --transition: 0.28s ease;
}

/* ------------------------------------------------------------
   2. RESET Y BASE
------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

main {
  display: block;
}

/* ------------------------------------------------------------
   3. UTILIDADES
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 60px;
}

.section__head {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.30);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.section__desc {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Secciones sobre fondo oscuro o degradado */
.section--dark {
  color: var(--white);
}

.section--dark .section__tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.section--dark .section__title {
  color: var(--white);
}

.section--dark .section__desc {
  color: rgba(255, 255, 255, 0.82);
}

/* ------------------------------------------------------------
   4. BOTONES
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* WhatsApp (verde, reservado solo para contactos reales de WhatsApp) */
.btn--whatsapp {
  background: var(--wa);
  border-color: var(--wa);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Degradado principal (para acciones web, no WhatsApp) */
.btn--primary {
  background: var(--grad-hot);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

/* Contorno cian */
.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--outline:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(6, 182, 212, 0.4);
}

/* ------------------------------------------------------------
   5. HEADER
------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 6px 22px rgba(11, 16, 32, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo strong {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.logo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.45);
}

.logo__badge svg {
  width: 22px;
  height: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-200);
  padding-block: 6px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  border-radius: 3px;
  background: var(--grad-main);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 3px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ------------------------------------------------------------
   6. HERO (vibrante)
------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(800px 500px at 88% -5%, rgba(124, 58, 237, 0.45), transparent 60%),
              radial-gradient(700px 480px at 2% 105%, rgba(6, 182, 212, 0.35), transparent 60%),
              linear-gradient(160deg, #0B1020, #141A2E 65%, #1C1130);
  color: var(--white);
  padding-block: 56px 66px;
}

/* Manchas de color difuminadas */
.hero::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.55), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25); }
  50%      { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0.08); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.hero__highlight {
  background: linear-gradient(90deg, #38BDF8, #A78BFA 55%, #F472B6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 560px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero__subtitle strong {
  color: #7DD3FC;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa);
  font-size: 0.74rem;
  font-weight: 700;
}

/* Tarjeta ilustrativa del hero */
.hero__visual {
  display: none;
}

.hero-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-card--main {
  padding: 20px;
  box-shadow: var(--shadow-float);
}

.hero-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-card__dots {
  display: inline-flex;
  gap: 5px;
}

.hero-card__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-card__dots i:nth-child(1) { background: #FF5F57; }
.hero-card__dots i:nth-child(2) { background: #FEBC2E; }
.hero-card__dots i:nth-child(3) { background: #28C840; }

.hero-card__title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card__body {
  display: grid;
  gap: 14px;
}

.hero-card__screen {
  display: grid;
  gap: 8px;
  background: rgba(11, 16, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
}

.hero-card__screen-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-card__screen-bar.short { width: 74%; }
.hero-card__screen-bar.thin { height: 6px; width: 54%; }

.hero-card__screen-bar.green {
  width: 62%;
  background: var(--grad-main);
}

/* Chips de servicios (coloridos, sin numeros inventados) */
.hero-card__chips {
  display: grid;
  gap: 8px;
}

.hero-card__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
}

.hero-card__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
}

.hero-card__chip-icon svg {
  width: 13px;
  height: 13px;
}

.hero-card__chip-icon--cyan   { background: rgba(6, 182, 212, 0.4);  color: #A5F3FC; }
.hero-card__chip-icon--teal   { background: rgba(16, 185, 129, 0.4); color: #A7F3D0; }
.hero-card__chip-icon--violet { background: rgba(124, 58, 237, 0.45); color: #DDD6FE; }

/* Chip de soporte (dentro de la tarjeta, no se sale del cuadro) */
.hero-card--float {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  color: #6EE7B7;
}

.hero-card__float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-hot);
  color: #fff;
}

.hero-card__float-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ------------------------------------------------------------
   7. MARQUESINA DE SERVICIOS (ticker animado)
------------------------------------------------------------ */
.marquee {
  background: linear-gradient(90deg, #7C3AED, #D946EF 45%, #06B6D4);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 5;
}

.marquee__track {
  display: flex;
  gap: 44px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee__track span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   8. SERVICIOS
------------------------------------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Borde superior degradado en hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 44px rgba(11, 16, 32, 0.16);
}

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

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 16, 32, 0.18);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__icon--cyan   { background: linear-gradient(135deg, #06B6D4, #0EA5E9); }
.card__icon--teal   { background: linear-gradient(135deg, #10B981, #059669); }
.card__icon--violet { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.card__icon--orange { background: linear-gradient(135deg, #F97316, #EA580C); }

.card__title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.card__link {
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity var(--transition);
}

.card__link:hover {
  opacity: 0.75;
}

/* ------------------------------------------------------------
   9. "POR QUE ELEGIRNOS" (degradado violeta/azul)
------------------------------------------------------------ */
.why {
  background: linear-gradient(120deg, #4C1D95, #4338CA 55%, #1D4ED8);
  position: relative;
  overflow: hidden;
}

.why::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45), transparent 65%);
  filter: blur(45px);
  pointer-events: none;
}

.why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why__item {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform var(--transition), background var(--transition);
}

.why__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 16, 32, 0.25);
}

.why__icon svg {
  width: 28px;
  height: 28px;
}

.why__item:nth-child(1) .why__icon { background: linear-gradient(135deg, #06B6D4, #0EA5E9); }
.why__item:nth-child(2) .why__icon { background: linear-gradient(135deg, #F59E0B, #F97316); }
.why__item:nth-child(3) .why__icon { background: linear-gradient(135deg, #10B981, #059669); }
.why__item:nth-child(4) .why__icon { background: linear-gradient(135deg, #F472B6, #EC4899); }

.why__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

/* ------------------------------------------------------------
   10. COBERTURA
------------------------------------------------------------ */
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.coverage__text {
  font-size: 1.04rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.coverage__text strong {
  color: var(--ink);
}

.coverage__address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.coverage__address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #06B6D4, #0EA5E9);
  color: #fff;
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.35);
}

.coverage__address-icon svg {
  width: 22px;
  height: 22px;
}

.coverage__address strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.coverage__address p {
  font-size: 0.95rem;
  color: var(--muted);
}

.coverage__list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.coverage__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.coverage__list strong {
  color: var(--ink);
}

.coverage__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  box-shadow: 0 6px 14px rgba(124, 58, 237, 0.3);
}

.coverage__list-icon svg {
  width: 18px;
  height: 18px;
}

.coverage__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  min-height: 300px;
  background: var(--gray-100);
}

.coverage__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ------------------------------------------------------------
   11. CONTACTO
------------------------------------------------------------ */
.contact {
  background:
    radial-gradient(700px 420px at 15% -5%, rgba(124, 58, 237, 0.4), transparent 55%),
    radial-gradient(600px 420px at 100% 110%, rgba(6, 182, 212, 0.3), transparent 55%),
    #0B1020;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form__group {
  display: grid;
  gap: 6px;
}

.form__group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.form__group textarea {
  resize: vertical;
  min-height: 110px;
}

.form__error {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--danger);
  min-height: 1em;
}

.form__group.invalid input,
.form__group.invalid textarea {
  border-color: var(--danger);
}

.form__group.invalid input:focus,
.form__group.invalid textarea:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form__status {
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.4em;
}

.form__status--ok {
  color: var(--success);
}

.form__status--error {
  color: var(--danger);
}

.form__status a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form__policy {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.form__policy a {
  color: var(--violet);
  font-weight: 700;
}

.contact__aside-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.contact__list {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 16, 32, 0.3);
}

.contact__list li:nth-child(1) .contact__list-icon { background: linear-gradient(135deg, #25D366, #059669); }
.contact__list li:nth-child(2) .contact__list-icon { background: linear-gradient(135deg, #06B6D4, #0EA5E9); }
.contact__list li:nth-child(3) .contact__list-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.contact__list-icon svg {
  width: 20px;
  height: 20px;
}

.contact__list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 2px;
}

.contact__list a,
.contact__list p {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.contact__list a:hover {
  color: #7DD3FC;
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 18px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact__social-btn svg {
  width: 18px;
  height: 18px;
}

.contact__social-btn:hover {
  background: rgba(236, 72, 153, 0.25);
  border-color: rgba(236, 72, 153, 0.5);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   12. FOOTER
------------------------------------------------------------ */
.footer {
  background: var(--ink);
  color: var(--gray-200);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #06B6D4, #8B5CF6 50%, #EC4899) 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding-block: 40px;
}

.logo--footer {
  font-size: 1rem;
}

.footer__slogan {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 10px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--gray-200);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: #7DD3FC;
}

.footer__contact {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.footer__contact a {
  color: var(--gray-200);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: #7DD3FC;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gray-200);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer__social a:hover {
  background: var(--grad-hot);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 18px;
}

.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  font-size: 0.82rem;
  color: var(--gray-300);
}

/* ------------------------------------------------------------
   13. ANIMACIONES AL SCROLL
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card--float,
  .hero__badge-dot,
  .marquee__track { animation: none; }
}

/* ------------------------------------------------------------
   15. RESPONSIVE - TABLET (>= 640px)
------------------------------------------------------------ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .hero-card__chips {
    grid-template-columns: 1fr 1fr;
  }
}

/* ------------------------------------------------------------
   16. RESPONSIVE - DESKTOP (>= 900px)
------------------------------------------------------------ */
@media (min-width: 900px) {
  .hero { padding-block: 76px 92px; }

  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }

  .hero__visual {
    display: block;
    position: relative;
    max-width: 420px;
    justify-self: end;
    width: 100%;
  }

  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .why__grid { grid-template-columns: repeat(4, 1fr); }

  .coverage__inner {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .contact__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1.4fr auto;
    align-items: start;
  }
}

/* ------------------------------------------------------------
   17. MENU MOVIL
------------------------------------------------------------ */
@media (max-width: 899px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-float);
    padding: 14px 20px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 13px 10px;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__link::after {
    display: none;
  }
}
/* ------------------------------------------------------------
   17. AJUSTES ESPECIFICOS DE WORDPRESS
------------------------------------------------------------ */
/* main como bloque para navegadores antiguos */
main {
  display: block;
}

/* Tipografia del contenido generado por WordPress (index.php) */
.entry-content {
  font-size: 1.05rem;
  color: var(--muted);
}

.entry-content :is(p, ul, ol, figure) {
  margin-bottom: 1.2em;
}

/* Compensar la barra de administracion de WordPress
   cuando el usuario esta logueado */
body.admin-bar-wp .header {
  top: 46px;
}

body.admin-bar-wp .nav {
  top: calc(var(--header-h) + 46px);
}

@media (min-width: 783px) {
  body.admin-bar-wp .header {
    top: 32px;
  }

  body.admin-bar-wp .nav {
    top: calc(var(--header-h) + 32px);
  }
}

/* Clase util estandar de WordPress */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}