/* ============================================================
   CloudConsulting — Custom Styles
   Paleta: #16c0f0 · #0353a4 · #003559 · #061a40
   ============================================================ */

/* ---- Variables ---- */
:root {
  --cc-cyan:       #16c0f0;
  --cc-blue:       #0353a4;
  --cc-dark-blue:  #003559;
  --cc-navy:       #061a40;
  --cc-gray-bg:    #F5F7FA;
  --cc-gray-text:  #4A4A4A;
  --cc-white:      #ffffff;

  --font:          'Inter', system-ui, sans-serif;
  --radius:        12px;
  --radius-sm:     8px;
  --section-pad:   5rem 0;
  --transition:    all 0.22s ease;

  /* WatchGuard minisitio */
  /* Paleta WatchGuard */
  --wg-red:         #D0021B;
  --wg-red-dark:    #A60216;
  --wg-red-light:   rgba(208,2,27,.08);
  --wg-blue:        #25416C;
  --wg-navy:        #1E3456;
  --wg-charcoal:    #1F2937;
  --wg-gray-mid:    #666666;
  --wg-gray-light:  #F8F8F8;
  --wg-white:       #FFFFFF;
  /* Acentos */
  --wg-teal:        #00B9C6;
  --wg-plum:        #9E0045;
  --wg-amber:       #F7BC09;
  --wg-orange:      #F76409;
  --wg-pacific:     #367B88;
  /* Bordes y sombras */
  --border-light:   #E5E7EB;
  --border-mid:     #D1D5DB;
  --shadow-xs:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:      0 4px 12px rgba(0,0,0,.07);
  --shadow-md:      0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.12);
  /* Layout */
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      22px;
  --transition:     0.22s ease;
  /* Sections */
  --section-v:      5.5rem;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--cc-gray-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--cc-navy);
  font-weight: 700;
  line-height: 1.2;
}

/* ---- Icon sizes ---- */
.icon-xs { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sm { width: 20px; height: 20px; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; flex-shrink: 0; }
.icon-lg { width: 32px; height: 32px; flex-shrink: 0; }

/* ---- Utilities ---- */
.bg-light-cc   { background-color: var(--cc-gray-bg); }
.section-pad   { padding: var(--section-pad); }

/* ---- Section tags ---- */
.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-blue);
  background-color: rgba(3, 83, 164, 0.08);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
}
.tag-problem  { color: #c0392b; background-color: rgba(192, 57, 43, 0.08); }
.tag-solution { color: #0e9e60; background-color: rgba(14, 158, 96, 0.08); }

/* ---- Section titles / text ---- */
.section-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.9rem;
}
.section-text {
  color: var(--cc-gray-text);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Primary — cyan fill */
.btn-primary-cc {
  background-color: var(--cc-cyan);
  border: 2px solid var(--cc-cyan);
  color: var(--cc-navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.3rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary-cc:hover, .btn-primary-cc:focus {
  background-color: #0eadd9;
  border-color: #0eadd9;
  color: var(--cc-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 192, 240, 0.35);
}
.btn-primary-cc.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }

/* Outline dark — used on light backgrounds */
.btn-outline-cc {
  background-color: transparent;
  border: 2px solid var(--cc-blue);
  color: var(--cc-blue);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.3rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-cc:hover, .btn-outline-cc:focus {
  background-color: var(--cc-blue);
  color: #fff;
  transform: translateY(-1px);
}

/* Outline hero — used on dark hero background */
.btn-outline-hero {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.3rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-hero:hover, .btn-outline-hero:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline-hero.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }

/* CTA final buttons */
.btn-cta-primary {
  background-color: var(--cc-cyan);
  border: 2px solid var(--cc-cyan);
  color: var(--cc-navy);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--cc-navy);
}
.btn-cta-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 1px 0 #e8edf3;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1040;
}
#mainNav.scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-shadow: 0 2px 20px rgba(6, 26, 64, 0.1);
}
#mainNav .nav-link {
  color: var(--cc-navy);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--cc-blue);
  background-color: rgba(3, 83, 164, 0.06);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-phone {
  color: var(--cc-navy);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar-phone:hover { color: var(--cc-blue); }
.navbar-phone svg  { color: var(--cc-cyan); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background-color: var(--cc-navy);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}
.hero-geo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-geo-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Línea de escaneo — barre de arriba a abajo como radar */
.hero-scan-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 46%,
    rgba(22, 192, 240, 0.07) 49%,
    rgba(22, 192, 240, 0.14) 50%,
    rgba(22, 192, 240, 0.07) 51%,
    transparent 54%,
    transparent 100%
  );
  animation: scanLine 9s linear infinite;
}
@keyframes scanLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-row {
  min-height: 55vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(22, 192, 240, 0.1);
  border: 1px solid rgba(22, 192, 240, 0.28);
  color: var(--cc-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
}
.hero-badge svg { color: var(--cc-cyan); }

.hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.17;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.75;
}
.hero-deco {
  width: 340px;
  height: 340px;
  opacity: 0.1;
  filter: drop-shadow(0 0 60px rgba(22, 192, 240, 0.5));
  animation: float 6s ease-in-out infinite;
}
.hero-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--cc-white);
  padding: 3rem 0;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
}
.trust-item--border {
  border-left: 1px solid #e8edf3;
}
.trust-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cc-blue);
  line-height: 1;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--cc-gray-text);
  font-weight: 500;
}

/* ============================================================
   PROBLEMA / SOLUCIÓN
   ============================================================ */
.prob-sol-card {
  border-radius: var(--radius);
  padding: 2.5rem;
}
.problem-card {
  background-color: #fef9f8;
  border: 1px solid #f0ddd9;
}
.solution-card {
  background-color: #f5fbf8;
  border: 1px solid #c8e6d4;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.6rem 0;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.check-list li:last-child { border-bottom: none; }
.icon-check { margin-top: 2px; }
.problem-icon  { color: #c0392b; }
.solution-icon { color: #0e9e60; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid #e4eaf2;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 8px 28px rgba(3, 83, 164, 0.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22, 192, 240, 0.12), rgba(3, 83, 164, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cc-blue);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.65rem;
}
.service-desc {
  font-size: 0.91rem;
  color: var(--cc-gray-text);
  line-height: 1.7;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--cc-blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: color 0.2s;
}
.service-link:hover { color: var(--cc-cyan); }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(3px); }

/* CTA card variant */
.service-card--cta {
  background: linear-gradient(150deg, var(--cc-navy) 0%, var(--cc-dark-blue) 100%);
  border-color: transparent;
}
.service-card--cta:hover {
  border-color: var(--cc-cyan);
  transform: translateY(-3px);
}
.service-icon--cta {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cc-cyan);
}
.service-title--cta {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}
.service-desc--cta {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  flex-grow: 1;
}

/* ============================================================
   PROCESO
   ============================================================ */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(3, 83, 164, 0.09);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.process-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cc-cyan), var(--cc-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(3, 83, 164, 0.25);
}
.process-icon-wrap svg { width: 28px; height: 28px; }
.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.65rem;
}
.process-desc {
  font-size: 0.92rem;
  color: var(--cc-gray-text);
  line-height: 1.75;
}

/* ============================================================
   TECNOLOGÍAS
   ============================================================ */
.tech-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.tech-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.tech-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-blue);
  opacity: 0.65;
}
.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.tech-chip {
  background: #fff;
  border: 1px solid #dce6f0;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cc-navy);
  transition: var(--transition);
  cursor: default;
  /* TODO: Replace text with actual vendor logo images */
}
.tech-chip:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 2px 8px rgba(22, 192, 240, 0.18);
  color: var(--cc-blue);
}

/* ============================================================
   LOGO SLOTS — base compartida (tecnologías y clientes)
   ============================================================ */
.tech-logos-grid,
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Slot base — mismo tamaño en ambas secciones */
.tech-logo-card,
.client-slot {
  flex: 0 0 calc(25% - 0.95rem); /* 4 por fila */
  height: 110px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  transition: var(--transition);
}

/* Variante tecnologías */
.tech-logo-card {
  background: #fff;
  border: 1px solid #dce6f0;
}
.tech-logo-card:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 2px 12px rgba(22, 192, 240, 0.18);
}
.tech-logo-card img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.8;
  transition: var(--transition);
}
.tech-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Variante clientes */
.client-slot {
  background: #f8fafc;
  border: 1px solid #e0eaf2;
}
.client-slot:hover {
  border-color: var(--cc-blue);
  box-shadow: 0 2px 12px rgba(3, 83, 164, 0.1);
}
.client-slot img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: var(--transition);
}
.client-slot:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive logos */
@media (max-width: 767.98px) {
  .tech-logo-card,
  .client-slot {
    flex: 0 0 calc(50% - 0.65rem); /* 2 por fila en móvil */
    height: 90px;
  }
}
.sector-badge {
  display: inline-block;
  background: rgba(3, 83, 164, 0.07);
  color: var(--cc-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--cc-dark-blue) 0%, var(--cc-navy) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 192, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 192, 240, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.cta-support-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
  margin: 1.1rem auto 0;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.cta-final .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.cta-final .d-flex {
  margin-top: 1.75rem !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--cc-navy);
  padding: 5rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-brand-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-brand img { max-height: 35px; width: auto; }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--cc-cyan);
  border-color: var(--cc-cyan);
  color: var(--cc-navy);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.89rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cc-cyan); }

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.89rem;
}
.footer-contact svg { color: var(--cc-cyan); flex-shrink: 0; }
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--cc-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--cc-cyan); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --section-pad: 4rem 0; }

  .hero-section { padding: 4rem 0 5rem; }
  .hero-row { min-height: auto; }

  #navbarNav {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(6, 26, 64, 0.12);
    margin-top: 0.75rem;
  }
  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e8edf3;
  }
  .navbar-actions .btn-primary-cc {
    justify-content: center;
  }
  .trust-item--border { border-left: none; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }

  .prob-sol-card { padding: 1.75rem; }

  .tech-groups { gap: 1.75rem; }

  .cta-final { padding: 4rem 0; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-desc { max-width: 100%; }
}

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

/* ============================================================
   LEGAL PAGES (aviso de privacidad, etc.)
   ============================================================ */
.legal-hero {
  background: var(--cc-gray-bg);
  border-bottom: 1px solid #dce6f0;
  padding: 3.5rem 0 3rem;
}
.legal-hero-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.5rem;
}
.legal-hero-meta {
  font-size: 0.88rem;
  color: var(--cc-gray-text);
  opacity: 0.7;
  margin: 0;
}

.legal-body {
  padding: 4rem 0 5rem;
}
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8edf3;
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.85rem;
}
.legal-section p,
.legal-section li {
  font-size: 0.93rem;
  color: var(--cc-gray-text);
  line-height: 1.8;
}
.legal-section ul {
  padding-left: 1.3rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.legal-contact-list li {
  display: flex;
  align-items: center;
}
.legal-contact-list a {
  color: var(--cc-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-contact-list a:hover { color: var(--cc-cyan); }

.legal-firma {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cc-gray-bg);
}
.legal-firma p {
  font-size: 0.93rem;
  color: var(--cc-gray-text);
  line-height: 1.8;
}

/* ============================================================
   PAGE HERO (nosotros, servicios, clientes, tecnologías)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--cc-navy) 0%, var(--cc-dark-blue) 55%, #0a2a50 100%);
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(22, 192, 240, 0.09) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag { margin-bottom: 1rem; }
.page-hero-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 600px;
  line-height: 1.75;
  margin: 0;
}
.page-hero-subtitle a {
  color: var(--cc-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero-subtitle a:hover {
  color: #fff;
}

/* ============================================================
   NOSOTROS — Quiénes somos
   ============================================================ */
.about-visual {
  background: linear-gradient(145deg, rgba(3, 83, 164, 0.05) 0%, rgba(22, 192, 240, 0.06) 100%);
  border: 1px solid rgba(3, 83, 164, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.about-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 192, 240, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cc-cyan);
}
.about-stat-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cc-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-text span {
  font-size: 0.875rem;
  color: var(--cc-gray-text);
  line-height: 1.4;
}

/* ============================================================
   NOSOTROS — Valores
   ============================================================ */
.valor-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border: 1px solid #e8edf3;
  transition: var(--transition);
}
.valor-card:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 4px 24px rgba(22, 192, 240, 0.12);
  transform: translateY(-2px);
}
.valor-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(3, 83, 164, 0.1), rgba(22, 192, 240, 0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue);
  margin-bottom: 1.25rem;
}
.valor-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.5rem;
}
.valor-text {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   NOSOTROS — Por qué CloudConsulting
   ============================================================ */
.why-item {
  display: flex;
  gap: 1rem;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(22, 192, 240, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-cyan);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.why-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.3rem;
}
.why-content p {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   NOSOTROS — Team cards
   ============================================================ */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e8edf3;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: 0 6px 28px rgba(6, 26, 64, 0.09);
  transform: translateY(-2px);
}
.team-card-header {
  background: linear-gradient(135deg, var(--cc-dark-blue) 0%, var(--cc-blue) 100%);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.team-avatar-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
}
.team-card-body {
  padding: 1.75rem 2rem 2rem;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cc-blue);
  margin-bottom: 0.85rem;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  line-height: 1.75;
  margin: 0;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cc-blue);
  background: rgba(3, 83, 164, 0.08);
  border: 1px solid rgba(3, 83, 164, 0.15);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
}

@media (max-width: 767.98px) {
  .page-hero { padding: 4rem 0; }
}

/* ============================================================
   CLIENTES — Sector cards
   ============================================================ */
.sector-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  height: 100%;
  border: 1px solid #e8edf3;
  transition: var(--transition);
}
.sector-card:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 4px 20px rgba(22, 192, 240, 0.1);
  transform: translateY(-2px);
}
.sector-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(3, 83, 164, 0.09), rgba(22, 192, 240, 0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue);
  margin-bottom: 1.1rem;
}
.sector-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.5rem;
}
.sector-card-text {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CLIENTES — Trust pillars
   ============================================================ */
.trust-pillar {
  padding: 1rem;
}
.trust-pillar-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(3, 83, 164, 0.08), rgba(22, 192, 240, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue);
  margin-bottom: 1.25rem;
}
.trust-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.6rem;
}
.trust-pillar-text {
  font-size: 0.92rem;
  color: var(--cc-gray-text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICIOS — Nav pills (hero)
   ============================================================ */
.svc-nav-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.svc-nav-pill:hover {
  background: rgba(22, 192, 240, 0.25);
  border-color: var(--cc-cyan);
  color: var(--cc-cyan);
}

/* ============================================================
   SERVICIOS — Feature list
   ============================================================ */
.svc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--cc-gray-text);
  line-height: 1.55;
}
.svc-feature-list li svg {
  color: var(--cc-cyan);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ============================================================
   SERVICIOS — Detail card
   ============================================================ */
.svc-detail-card {
  background: var(--cc-gray-bg);
  border: 1px solid #dce6f0;
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
}
.svc-detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cc-dark-blue), var(--cc-blue));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
.svc-detail-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 1.25rem;
}
.svc-detail-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #e0eaf2;
}
.svc-detail-item:last-child { border-bottom: none; }

/* Botón brochure en page-hero de servicios */
.btn-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-cyan);
  color: var(--cc-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(22, 192, 240, 0.35);
}
.btn-brochure:hover {
  background: #0db3e2;
  color: var(--cc-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 192, 240, 0.45);
}
.svc-detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cc-blue);
  flex-shrink: 0;
}
.svc-detail-value {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  text-align: right;
}
.svc-detail-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.svc-tech-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cc-navy);
  background: #fff;
  border: 1px solid #dce6f0;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
}

/* ============================================================
   TECNOLOGÍAS — Area headers
   ============================================================ */
.tech-area-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #dce6f0;
}
.tech-area-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cc-dark-blue), var(--cc-blue));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.tech-area-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin: 0;
}

/* ============================================================
   TECNOLOGÍAS — Tech cards
   ============================================================ */
.tech-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e8edf3;
  padding: 1.75rem 2rem;
  height: 100%;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--cc-cyan);
  box-shadow: 0 4px 20px rgba(22, 192, 240, 0.1);
  transform: translateY(-2px);
}
.tech-card-logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.tech-card-logo img {
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: var(--transition);
}
.tech-card:hover .tech-card-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.tech-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.6rem;
}
.tech-card-desc {
  font-size: 0.9rem;
  color: var(--cc-gray-text);
  line-height: 1.7;
  margin: 0;
}
.tech-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cc-cyan);
  transition: var(--transition);
}
.tech-card:hover .tech-card-link {
  color: var(--cc-navy);
}

/* ============================================================
   CONTACTO — Form card
   ============================================================ */
.contact-form-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 0.4rem;
}
.contact-form-subtitle {
  font-size: 0.92rem;
  color: var(--cc-gray-text);
  margin-bottom: 2rem;
}
.contact-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cc-navy);
  margin-bottom: 0.4rem;
}
.contact-input {
  display: block;
  width: 100%;
  padding: 0.65rem 0.95rem;
  font-size: 0.93rem;
  font-family: var(--font);
  color: var(--cc-gray-text);
  background: #fff;
  border: 1.5px solid #dce6f0;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.contact-input:focus {
  border-color: var(--cc-blue);
  box-shadow: 0 0 0 3px rgba(3, 83, 164, 0.1);
}
.contact-input--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
textarea.contact-input { resize: vertical; min-height: 130px; }
.contact-disclaimer {
  font-size: 0.78rem;
  color: var(--cc-gray-text);
  opacity: 0.7;
  margin: 0;
}
.contact-disclaimer a {
  color: var(--cc-blue);
  text-decoration: none;
}
.contact-disclaimer a:hover { text-decoration: underline; }

/* ── Contact Form 7 — integración sin cambios visuales ──────── */
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-response-output   { display: none !important; }
.wpcf7-not-valid         { border-color: #dc2626 !important; }
.wpcf7-not-valid-tip {
  display: block;
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 4px;
}
.wpcf7 p { margin: 0; }
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* Success / Error states */
.contact-success {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--cc-navy);
}
.contact-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(14, 158, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e9e60;
  margin: 0 auto 1.25rem;
}
.contact-success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.contact-success p {
  font-size: 0.93rem;
  color: var(--cc-gray-text);
  max-width: 380px;
  margin: 0 auto;
}
.contact-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 62, 62, 0.07);
  border: 1px solid rgba(229, 62, 62, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #c53030;
  margin-top: 1rem;
}

/* ============================================================
   CONTACTO — Info column
   ============================================================ */
.contact-info { padding-top: 0.5rem; }
.contact-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cc-navy);
  margin-bottom: 1.75rem;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(3, 83, 164, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue);
  flex-shrink: 0;
}
.contact-info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cc-blue);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  display: block;
  font-size: 0.93rem;
  color: var(--cc-gray-text);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--cc-blue); }

.contact-support-box {
  background: var(--cc-gray-bg);
  border: 1px solid #dce6f0;
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* ============================================================
   CONTACTO — Mapa
   ============================================================ */
.contact-map-section {
  line-height: 0;
  border-top: 1px solid #e8edf3;
}
.contact-map-section iframe {
  display: block;
  filter: grayscale(15%);
}


/* ============================================================
   WatchGuard Minisitio — scoped under .wg-site
   ============================================================ */

/* ============================================================
   CloudConsulting — WatchGuard Minisitio
   styles.css  |  Bootstrap 5.3 + estilos propios
   Paleta WatchGuard · Tema corporativo · Roboto
   ============================================================ */

/* === VARIABLES ======================================================= */


/* === RESET / BASE ===================================================== */

.wg-site html { scroll-behavior: smooth; }

.wg-site body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wg-charcoal);
  background: var(--wg-white);
  -webkit-font-smoothing: antialiased;
}

.wg-site img { max-width: 100%; display: block; }
.wg-site a { color: var(--wg-blue); text-decoration: none; transition: color var(--transition); }
.wg-site a:hover { color: var(--wg-red); }
.wg-site address { font-style: normal; }

.wg-site h1,
.wg-site h2,
.wg-site h3,
.wg-site h4,
.wg-site h5,
.wg-site h6 {
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--wg-charcoal);
}

/* === TIPOGRAFÍA UTILITARIA ============================================ */
.wg-site .section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wg-red);
  margin-bottom: .65rem;
}

.wg-site .section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--wg-charcoal);
  margin-bottom: 1rem;
}

.wg-site .section-lead {
  font-size: 1.05rem;
  color: var(--wg-gray-mid);
  line-height: 1.8;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.wg-site .section-header { margin-bottom: 3.5rem; }

/* === BOTONES ========================================================== */
.wg-site .btn-primary-cc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wg-red);
  color: #fff;
  border: 2px solid var(--wg-red);
  padding: .65rem 1.65rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.wg-site .btn-primary-cc:hover {
  background: var(--wg-red-dark);
  border-color: var(--wg-red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(208,2,27,.28);
}
.wg-site .btn-primary-cc:active { transform: translateY(0); }

.wg-site .btn-outline-cc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--wg-blue);
  border: 2px solid var(--wg-blue);
  padding: .65rem 1.65rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.wg-site .btn-outline-cc:hover {
  background: var(--wg-blue);
  color: #fff;
  transform: translateY(-1px);
}

.wg-site .btn-outline-light-cc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  padding: .65rem 1.65rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.wg-site .btn-outline-light-cc:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

.wg-site .btn-lg-cc {
  padding: .8rem 2rem;
  font-size: .95rem;
}

/* === SCROLL REVEAL ==================================================== */
.wg-site .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.wg-site .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER =========================================================== */
.wg-site .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--wg-white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: .25rem 0;
}
.wg-site .site-header.is-scrolled {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.wg-site .site-header .navbar { padding: .75rem 0; }

/* Brand */
.wg-site .navbar-brand-cc {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  gap: .1rem;
}
.wg-site .brand-wordmark {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--wg-charcoal);
  letter-spacing: -.01em;
}
.wg-site .brand-wordmark strong {
  font-weight: 700;
  color: var(--wg-blue);
}
.wg-site .brand-wordmark img {
  height: 34px;
}
.wg-site .brand-partner-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wg-red);
  padding-left: 37px;
}

/* Nav links */
.wg-site .navbar-collapse-cc {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.wg-site .nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wg-site .nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: #444;
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.wg-site .nav-links a:hover,
.wg-site .nav-links a.is-active {
  color: var(--wg-blue);
  background: rgba(37,65,108,.06);
}

/* Toggler */
.wg-site .navbar-toggler-cc {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border-mid);
  border-radius: 6px;
  padding: .45rem .55rem;
  cursor: pointer;
}
.wg-site .navbar-toggler-cc span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--wg-charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.wg-site .navbar-toggler-cc.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wg-site .navbar-toggler-cc.is-open span:nth-child(2) { opacity: 0; }
.wg-site .navbar-toggler-cc.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .wg-site .navbar-toggler-cc { display: flex; }
  .wg-site .navbar-collapse-cc {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--wg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    margin-left: 0;
  }
  .wg-site .navbar-collapse-cc.is-open { display: flex; }
  .wg-site .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .wg-site .nav-links li { width: 100%; border-bottom: 1px solid var(--border-light); }
  .wg-site .nav-links a { display: block; padding: .75rem .25rem; border-radius: 0; }
  .wg-site .nav-links li:last-child { border-bottom: none; }
  .wg-site .nav-cta { margin-top: 1rem; width: 100%; }
  .wg-site .nav-cta .btn-primary-cc { width: 100%; justify-content: center; }
}

/* === HERO ============================================================= */
.wg-site .hero-section {
  background: var(--wg-white);
  padding-top: calc(80px + 4rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.wg-site .hero-copy { position: relative; z-index: 1; }
.wg-site .hero-visual { position: relative; z-index: 1; }

.wg-site .hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(208,2,27,.07);
  border: 1px solid rgba(208,2,27,.2);
  color: var(--wg-red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.wg-site .hero-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--wg-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.wg-site .hero-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--wg-charcoal);
  margin-bottom: 1.25rem;
}

.wg-site .hero-lead {
  font-size: 1.05rem;
  color: var(--wg-gray-mid);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

.wg-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 1.75rem;
}

.wg-site .partner-verify-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--wg-gray-mid);
  text-decoration: none;
  border-bottom: 1px dashed var(--border-mid);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.wg-site .partner-verify-link svg { color: var(--wg-teal); flex-shrink: 0; }
.wg-site .partner-verify-link:hover { color: var(--wg-blue); border-color: var(--wg-blue); }

/* Hero image */
.wg-site .hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wg-site .hero-img {
  width: 100%;
  height: auto;
}
.wg-site .hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--wg-charcoal);
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.wg-site .hero-image-badge svg { color: var(--wg-blue); flex-shrink: 0; }

/* === BARRA DE CERTIFICACIÓN ========================================== */
.wg-site .cert-bar {
  background: var(--wg-charcoal);
  padding: 1.25rem 0;
}
.wg-site .cert-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.wg-site .cert-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.wg-site .cert-item svg { flex-shrink: 0; opacity: .8; }
.wg-site .cert-item--highlight {
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .9rem;
  border-radius: 50px;
}
.wg-site .cert-item--highlight svg { color: var(--wg-amber); opacity: 1; }
.wg-site .cert-separator {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 767px) {
  .wg-site .cert-separator { display: none; }
}

/* === SECCIÓN SOLUCIONES ============================================== */
.wg-site .solutions-section {
  padding: var(--section-v) 0;
  background: var(--wg-white);
}

.wg-site .solution-card {
  background: var(--wg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.wg-site .solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wg-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.wg-site .solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}
.wg-site .solution-card:hover::before { transform: scaleX(1); }

.wg-site .solution-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wg-site .solution-card-icon--blue { background: rgba(37,65,108,.1);  color: var(--wg-blue); }
.wg-site .solution-card-icon--teal { background: rgba(0,185,198,.1);   color: var(--wg-teal); }
.wg-site .solution-card-icon--plum { background: rgba(158,0,69,.08);   color: var(--wg-plum); }
.wg-site .solution-card-icon--amber { background: rgba(247,188,9,.12);  color: #b38900; }

.wg-site .solution-card-body { flex: 1; display: flex; flex-direction: column; gap: .75rem; }

.wg-site .solution-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wg-charcoal);
  margin: 0;
}
.wg-site .solution-card-sub {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wg-gray-mid);
  margin: 0;
}
.wg-site .solution-card-desc {
  font-size: .9rem;
  color: var(--wg-gray-mid);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}
.wg-site .solution-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-top: 1px solid var(--border-light);
  padding-top: .875rem;
}
.wg-site .solution-card-benefits li {
  font-size: .83rem;
  color: var(--wg-charcoal);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.wg-site .solution-card-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  background: var(--wg-teal);
  border-radius: 50%;
}
.wg-site .solution-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--wg-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap var(--transition), color var(--transition);
  letter-spacing: .01em;
}
.wg-site .solution-card-link:hover { color: var(--wg-red); }

.wg-site .solution-card-media {
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.wg-site .solution-card-img {
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, var(--wg-gray-light) 0%, #e4e8ef 100%);
}

/* === SECCIÓN WATCHGUARD CLOUD ======================================== */
.wg-site .cloud-section {
  padding: var(--section-v) 0;
  background: var(--wg-gray-light);
}

.wg-site .cloud-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wg-site .cloud-img {
  width: 100%;
  height: auto;
  padding: 10px;
}

.wg-site .cloud-copy .section-lead { margin-left: 0; }

.wg-site .cloud-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .wg-site .cloud-features-grid { grid-template-columns: 1fr; }
}

.wg-site .cloud-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wg-site .cloud-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(37,65,108,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wg-blue);
  flex-shrink: 0;
}
.wg-site .cloud-feature-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--wg-charcoal);
  margin: 0 0 .2rem;
}
.wg-site .cloud-feature-desc {
  font-size: .83rem;
  color: var(--wg-gray-mid);
  line-height: 1.6;
  margin: 0;
}

/* === SECCIÓN POR QUÉ ================================================= */
.wg-site .why-section {
  padding: var(--section-v) 0;
  background: var(--wg-white);
}

/* Partner card */
.wg-site .partner-card {
  background: var(--wg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.wg-site .partner-card-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--wg-navy), var(--wg-blue));
  border-radius: var(--radius);
  color: #fff;
}
.wg-site .partner-card-badge svg { flex-shrink: 0; color: var(--wg-amber); }
.wg-site .partner-card-level {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wg-amber);
}
.wg-site .partner-card-vendor {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  margin-top: .1rem;
}
.wg-site .partner-card-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 200px;
  background: linear-gradient(135deg, var(--wg-gray-light) 0%, #dce5f0 100%);
}
.wg-site .partner-card-desc {
  font-size: .85rem;
  color: var(--wg-gray-mid);
  line-height: 1.7;
  margin: 0;
}
.wg-site .partner-card-verify {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--wg-blue);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: .55rem 1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.wg-site .partner-card-verify svg { color: var(--wg-teal); }
.wg-site .partner-card-verify:hover {
  background: var(--wg-blue);
  border-color: var(--wg-blue);
  color: #fff;
}
.wg-site .partner-card-verify:hover svg { color: #fff; }

/* Service items */
.wg-site .service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--wg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  height: 100%;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.wg-site .service-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-mid);
}
.wg-site .service-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wg-site .service-icon--blue { background: rgba(37,65,108,.1);  color: var(--wg-blue); }
.wg-site .service-icon--teal { background: rgba(0,185,198,.1);   color: var(--wg-teal); }
.wg-site .service-icon--plum { background: rgba(158,0,69,.08);   color: var(--wg-plum); }
.wg-site .service-icon--amber { background: rgba(247,188,9,.12);  color: #a07800; }

.wg-site .service-item-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--wg-charcoal);
  margin: 0 0 .3rem;
  line-height: 1.35;
}
.wg-site .service-item-desc {
  font-size: .82rem;
  color: var(--wg-gray-mid);
  line-height: 1.65;
  margin: 0;
}

/* === FORMULARIO INLINE CTA =========================================== */
.wg-site .cta-form-group {
  margin-bottom: 1rem;
}
.wg-site .cta-form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: .35rem;
}
.wg-site .cta-form-label span { color: rgba(255,255,255,.55); }
.wg-site .cta-form-control {
  width: 100%;
  padding: .65rem .9rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  font-size: .9rem;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
}
.wg-site .cta-form-control::placeholder { color: rgba(255,255,255,.5); }
.wg-site .cta-form-control:focus {
  outline: none;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.16);
}
.wg-site .cta-form-control:focus-visible { outline: 2px solid var(--wg-teal); outline-offset: 2px; }

/* Alertas dentro del card oscuro */
.wg-site .cta-contact-card .form-success {
  background: rgba(0,185,198,.12);
  border: 1px solid rgba(0,185,198,.3);
  color: #7ee8ee;
  padding: .875rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.wg-site .cta-contact-card .form-error {
  background: rgba(208,2,27,.12);
  border: 1px solid rgba(208,2,27,.3);
  color: #f08090;
  padding: .875rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.wg-site .cta-contact-card .field-error {
  font-size: .75rem;
  color: #f08090;
  margin-top: .25rem;
  display: none;
}

/* === CTA SECTION ===================================================== */
.wg-site .cta-section {
  padding: var(--section-v) 0;
  background: linear-gradient(135deg, var(--wg-navy) 0%, var(--wg-blue) 100%);
  position: relative;
  overflow: hidden;
}
.wg-site .cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.wg-site .cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .wg-site .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.wg-site .cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.wg-site .cta-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.wg-site .cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.wg-site .cta-checklist li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.wg-site .cta-checklist li svg { color: var(--wg-teal); flex-shrink: 0; }
.wg-site .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

/* Contact card */
.wg-site .cta-contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.wg-site .cta-contact-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.wg-site .cta-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.wg-site .cta-contact-item:last-child { margin-bottom: 0; }
.wg-site .cta-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wg-teal);
  flex-shrink: 0;
}
.wg-site .cta-contact-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 .2rem;
}
.wg-site .cta-contact-value {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.55;
}
.wg-site .cta-contact-value a { color: rgba(255,255,255,.9); }
.wg-site .cta-contact-value a:hover { color: #fff; }
.wg-site .cta-contact-highlight { color: var(--wg-teal); font-weight: 600; }

/* === FOOTER =========================================================== */
.wg-site .site-footer {
  background: var(--wg-charcoal);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.6);
}

.wg-site .footer-top { padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.wg-site .footer-brand { display: inline-block; text-decoration: none; margin-bottom: .75rem; }
.wg-site .footer-brand img { max-height: 35px; width: auto; }
.wg-site .footer-brand-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.wg-site .footer-brand-wordmark strong { font-weight: 700; color: #fff; }
.wg-site .footer-brand-desc {
  font-size: .83rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 280px;
  margin: .75rem 0 1rem;
}
.wg-site .footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.wg-site .footer-partner-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--wg-teal);
  border: 1px solid rgba(0,185,198,.3);
  padding: .35rem .8rem;
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition);
}
.wg-site .footer-partner-link:hover {
  color: var(--wg-teal);
  background: rgba(0,185,198,.1);
  border-color: rgba(0,185,198,.5);
}

.wg-site .footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.wg-site .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.wg-site .footer-nav-list a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.wg-site .footer-nav-list a:hover { color: rgba(255,255,255,.9); }

.wg-site .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 0;
}
.wg-site .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.wg-site .footer-contact-item svg { color: var(--wg-teal); opacity: .8; flex-shrink: 0; margin-top: .15rem; }
.wg-site .footer-contact-item a { color: rgba(255,255,255,.65); }
.wg-site .footer-contact-item a:hover { color: rgba(255,255,255,.9); }

/* Aviso legal WatchGuard */
.wg-site .footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.25rem;
}
.wg-site .footer-legal > a { display: block; flex-shrink: 0; line-height: 0; align-self: flex-start; }
.wg-site .footer-legal-logo {
  height: 52px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: .75;
  filter: brightness(0) invert(1);
}
.wg-site .footer-legal-text {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}
.wg-site .footer-legal-text strong { color: rgba(255,255,255,.65); font-weight: 600; }
.wg-site .footer-legal-text a { color: rgba(255,255,255,.65); text-decoration: underline; text-underline-offset: 2px; }
.wg-site .footer-legal-text a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 575px) {
  .wg-site .footer-legal { flex-direction: column; gap: .75rem; }
  .wg-site .footer-legal-logo { height: 40px; }
}

.wg-site .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}
.wg-site .footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.wg-site .footer-bottom nav a {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.wg-site .footer-bottom nav a:hover { color: rgba(255,255,255,.6); }

/* === CONTACT PAGE ===================================================== */
.wg-site .contact-hero {
  background: linear-gradient(135deg, var(--wg-navy) 0%, var(--wg-blue) 100%);
  padding: 8rem 0 4rem;
  position: relative;
}
.wg-site .contact-hero .section-title { color: #fff; }
.wg-site .contact-hero .section-lead { color: rgba(255,255,255,.7); }

.wg-site .contact-section { padding: 5rem 0; background: var(--wg-gray-light); }

.wg-site .contact-form-card {
  background: var(--wg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xs);
}

.wg-site .contact-info-card {
  background: var(--wg-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.wg-site .contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }

.wg-site .contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.wg-site .contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wg-teal);
}
.wg-site .contact-info-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.wg-site .contact-info-value {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin-top: .2rem;
}
.wg-site .contact-info-value a { color: rgba(255,255,255,.85); }
.wg-site .contact-info-value a:hover { color: #fff; }

/* === FORM FIELDS ====================================================== */
.wg-site .form-label-cc {
  font-size: .85rem;
  font-weight: 600;
  color: var(--wg-charcoal);
  margin-bottom: .4rem;
  display: block;
}
.wg-site .form-control-cc {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--wg-charcoal);
  background: var(--wg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.wg-site .form-control-cc:focus {
  outline: none;
  border-color: var(--wg-blue);
  box-shadow: 0 0 0 3px rgba(37,65,108,.1);
}
.wg-site .form-control-cc::placeholder { color: #adb5bd; }
.wg-site .form-select-cc {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.wg-site .form-group-cc { margin-bottom: 1.25rem; }
.wg-site .form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.wg-site .form-error {
  display: none;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.wg-site .field-error {
  font-size: .78rem;
  color: var(--wg-red);
  margin-top: .3rem;
  display: none;
}

/* === AVISO DE PRIVACIDAD ============================================== */
.wg-site .privacy-hero { background: var(--wg-navy); padding: 8rem 0 3rem; }
.wg-site .privacy-hero h1 { color: #fff; }
.wg-site .privacy-body { padding: 4rem 0 6rem; background: var(--wg-white); }
.wg-site .privacy-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--wg-charcoal);
}
.wg-site .privacy-body p,
.wg-site .privacy-body li {
  font-size: .95rem;
  color: var(--wg-gray-mid);
  line-height: 1.8;
}
.wg-site .privacy-body ul { padding-left: 1.5rem; }
.wg-site .privacy-body li { margin-bottom: .4rem; }

/* === ANIMACIONES ====================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === BOTÓN FLOTANTE WHATSAPP ========================================== */
.wg-site .whatsapp-fab,
.whatsapp-fab {
  position: fixed;
  bottom: 7rem;
  right: 1.75rem;
  z-index: 1050;
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wg-site .whatsapp-fab:hover,
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.32);
}
.wg-site .whatsapp-fab img,
.whatsapp-fab img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
@media (max-width: 575.98px) {
  .wg-site .whatsapp-fab,
  .whatsapp-fab {
    bottom: 6.5rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
  }
}

/* === TABLA COMPARATIVA ENDPOINT SECURITY ============================= */
.wg-site .ep-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.wg-site .ep-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wg-white);
  font-size: .88rem;
}

/* Header row */
.wg-site .ep-th {
  padding: 1rem .875rem;
  text-align: center;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--wg-red);
  white-space: nowrap;
}
.wg-site .ep-th--feature {
  text-align: left;
  color: var(--wg-charcoal);
  width: 45%;
  border-right: 1px solid var(--border-light);
}
.wg-site .ep-th--tier { color: var(--wg-red); min-width: 80px; }
.wg-site .ep-th--basic { color: var(--wg-red); }
.wg-site .ep-th--prime { color: var(--wg-red); }
.wg-site .ep-th--360 { color: var(--wg-red); }
.wg-site .ep-th--elite { color: var(--wg-red); }

/* Body rows */
.wg-site .ep-td {
  padding: .8rem .875rem;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  vertical-align: middle;
  color: var(--wg-gray-mid);
}
.wg-site .ep-td--feature {
  text-align: left;
  color: var(--wg-charcoal);
  font-weight: 500;
  border-right: 1px solid var(--border-light);
}

.wg-site .ep-table tbody tr:last-child .ep-td { border-bottom: none; }
.wg-site .ep-table tbody tr:hover { background: var(--wg-gray-light); }

.wg-site .ep-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--wg-red-light);
  color: var(--wg-red);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}
.wg-site .ep-dash {
  color: var(--border-mid);
  font-size: 1rem;
  font-weight: 300;
}

/* Responsive: stack en mobile */
@media (max-width: 640px) {
  .wg-site .ep-table thead { display: none; }
  .wg-site .ep-table,
.wg-site .ep-table tbody,
.wg-site .ep-table tr,
.wg-site .ep-td { display: block; width: 100%; }
  .wg-site .ep-table tr {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
  }
  .wg-site .ep-td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border-light);
    border-right: none;
  }
  .wg-site .ep-td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--wg-charcoal);
    font-size: .78rem;
    text-align: left;
    flex: 1;
    margin-right: 1rem;
  }
  .wg-site .ep-td--feature {
    background: var(--wg-gray-mid);
    color: #fff;
    font-weight: 600;
    justify-content: flex-start;
    border-right: none;
  }
  .wg-site .ep-td--feature::before { display: none; }
  .wg-site .ep-table tbody tr:hover { background: inherit; }
}

/* === PÁGINA GRACIAS (gracias.html) ==================================== */
.wg-site .ty-page {
  background: #f1f5f9;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.wg-site .ty-card {
  background: var(--wg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.wg-site .ty-card__header {
  background: var(--wg-red);
  padding: 2rem 2rem 1.5rem;
}

.wg-site .ty-card__header svg {
  display: block;
  margin: 0 auto 1rem;
}

.wg-site .ty-card__header h1 {
  color: var(--wg-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.wg-site .ty-card__body {
  padding: 2rem;
}

.wg-site .ty-card__body p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wg-site .ty-badge {
  display: block;
  margin: 0 auto 1.75rem;
  max-width: 180px;
  height: auto;
}

.wg-site .ty-contact-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  display: inline-block;
}

.wg-site .ty-contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: #374151;
  margin-bottom: .6rem;
}

.wg-site .ty-contact-list li svg {
  flex-shrink: 0;
  color: var(--wg-red);
}

.wg-site .ty-contact-list a {
  color: var(--wg-blue);
  text-decoration: none;
}

.wg-site .ty-contact-list a:hover { text-decoration: underline; }

.wg-site .ty-btn-back {
  display: inline-block;
  background: var(--wg-red);
  color: var(--wg-white);
  font-size: .95rem;
  font-weight: 500;
  padding: .7rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition);
}

.wg-site .ty-btn-back:hover {
  background: var(--wg-red-dark);
  color: var(--wg-white);
}

.wg-site .ty-card__footer {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  padding: 1rem 2rem;
  font-size: .78rem;
  color: #9ca3af;
}
