/*
============================================================
SERVISNET - HOJA DE ESTILOS DOCUMENTADA
============================================================

Este archivo controla toda la apariencia visual del sitio.

SECCIONES:
1. Configuración general y variables
2. Botones y componentes reutilizables
3. Barra de navegación
4. Hero principal
5. Slider de imágenes
6. Planes
7. Beneficios
8. Nosotros
9. Misión, Visión y Valores
10. Llamado a la acción
11. Contacto
12. Footer
13. Botones flotantes
14. Chatbot
15. Responsive para tablet y móvil

============================================================
*/

/* ===== 1. CONFIGURACIÓN GENERAL ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variables globales: colores, sombras, radios y tamaños */
:root {
  --primary: #0b7cf4;
  --primary-dark: #075fc1;
  --primary-soft: #eaf4ff;
  --text: #0d1b3f;
  --muted: #61708a;
  --border: #dbe6f2;
  --surface: #ffffff;
  --surface-soft: #f5f9ff;
  --dark: #061225;
  --success: #25d366;
  --shadow: 0 18px 50px rgba(11, 49, 110, 0.10);
  --shadow-strong: 0 28px 70px rgba(5, 32, 66, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #f3f8ff 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.section-tag.center {
  justify-content: center;
}

.section-tag.light {
  color: #b8dcff;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0878f7, #22a0f5);
  color: #fff;
  box-shadow: 0 14px 34px rgba(11, 124, 244, 0.26);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.btn-light {
  background: #fff;
  color: #072951;
}

.btn-outline-plan {
  width: 100%;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Header */
/* ===== 3. BARRA DE NAVEGACIÓN ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 230, 242, 0.9);
}

.nav-bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 220px;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #3d4b65;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-cta {
  min-height: 46px;
  padding-inline: 18px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

/* Hero */
/* ===== 4. SECCIÓN PRINCIPAL / HERO ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 78px;
  background: linear-gradient(135deg, #041327 0%, #07254a 55%, #0a3362 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 160, 245, 0.18), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(11, 124, 244, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.hero-copy h1 span {
  color: #90d2ff;
}

.hero-text {
  max-width: 660px;
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-pill {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 16px;
  min-width: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  font-size: 1rem;
}

.feature-pill strong, .feature-pill small {
  display: block;
}

.feature-pill strong {
  font-size: 0.88rem;
  color: #fff;
}

.feature-pill small {
  color: rgba(255,255,255,0.75);
  font-size: 0.76rem;
  margin-top: 2px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.slider-card {
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  padding: 18px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  color: #fff;
  margin-bottom: 14px;
}

.slider-kicker {
  display: block;
  color: #8dcfff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 6px;
}

.slider-header h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.slider-counter {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== 5. SLIDER DE IMÁGENES ===== */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}

.slider-note {
  margin-top: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}

/* Plans */
/* ===== 6. PLANES DE INTERNET ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11, 49, 110, 0.15);
}

.plan-card.featured {
  background: linear-gradient(180deg, #071b35 0%, #061225 100%);
  color: #fff;
  border-color: #061225;
}

.plan-label {
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.featured .plan-label {
  color: #9fd5ff;
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #c3e5ff;
  color: #051a31;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  border-radius: 999px;
}

.plan-speed {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 8px;
}

.plan-speed strong {
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-speed span {
  font-size: 0.8rem;
  color: var(--muted);
}

.featured .plan-speed span {
  color: #b8c9dc;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.featured .plan-price {
  color: #5ebaff;
}

.plan-price small {
  font-size: 0.78rem;
  margin-left: 4px;
  font-weight: 700;
  color: var(--muted);
}

.featured .plan-price small {
  color: #b8c9dc;
}

.plan-card ul {
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-bottom: 22px;
}

.featured ul {
  border-color: rgba(255,255,255,0.12);
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured li {
  color: #d2dce8;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.section-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Benefits */
/* ===== 7. BENEFICIOS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* About */
/* ===== 8. NOSOTROS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.about-copy > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.about-points {
  display: grid;
  gap: 16px;
}

.about-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
}

.about-item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.about-item strong {
  display: block;
  margin-bottom: 4px;
}

.about-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-visual {
  display: grid;
  gap: 18px;
}

.about-logo-card,
.about-contact-card {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-logo-card {
  padding: 26px;
}

.about-logo-card img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.about-contact-card {
  padding: 24px;
}

.about-contact-card h3 {
  margin-bottom: 8px;
}

.about-contact-card p {
  color: var(--muted);
}

/* Misión, visión y valores */
.mvv-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.mvv-card,
.values-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mvv-card {
  padding: 32px;
}

.mvv-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.mvv-card h3,
.values-head h3 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.mvv-card p,
.value-box p {
  color: var(--muted);
}

.values-card {
  padding: 32px;
}

.values-head {
  margin-bottom: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-box {
  padding: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #d8e9fb;
  border-radius: 18px;
}

.value-box strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.value-box p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Promo */
/* ===== 10. LLAMADO A LA ACCIÓN ===== */
.promo-section {
  background: linear-gradient(135deg, #041327 0%, #0a3362 100%);
  color: #fff;
}

.promo-box {
  display: grid;
  grid-template-columns: 1fr;
}

.promo-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.promo-copy p {
  max-width: 700px;
  color: rgba(255,255,255,0.8);
}

.promo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.simple-link {
  color: #b8dcff;
  font-weight: 800;
  align-self: center;
}

/* Contact */
/* ===== 11. CONTACTO ===== */
.contact-box {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: var(--muted);
  margin-bottom: 2px;
}

/* Footer */
/* ===== 12. FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #9eb2c7;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 26px;
  color: #7f93a9;
  font-size: 0.84rem;
  text-align: center;
}

/* Floating buttons */
/* ===== 13. BOTONES FLOTANTES ===== */
.whatsapp-float,
.chatbot-toggle {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1500;
}

.whatsapp-float {
  bottom: 22px;
  background: var(--success);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.chatbot-toggle {
  bottom: 92px;
  border: 0;
  background: linear-gradient(135deg, #0878f7, #22a0f5);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(11, 124, 244, 0.32);
}

.chatbot-toggle svg {
  width: 32px;
  height: 32px;
}

/* ===== 14. CHATBOT ===== */
.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 162px;
  width: min(360px, calc(100vw - 28px));
  height: 500px;
  display: none;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 26px 70px rgba(5, 32, 66, 0.24);
  z-index: 1550;
}

.chatbot-panel.open {
  display: flex;
}

.chatbot-header {
  min-height: 76px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0878f7, #22a0f5);
  color: #fff;
}

.chatbot-header strong,
.chatbot-header small {
  display: block;
}

.chatbot-header small {
  opacity: 0.88;
  margin-top: 2px;
}

.chatbot-header button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f7fbff;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.message.bot {
  background: #fff;
  border: 1px solid var(--border);
  border-top-left-radius: 6px;
}

.message.user {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  border-top-right-radius: 6px;
}

.quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.quick-actions button {
  border: 1px solid #cfe5fa;
  background: #fff;
  color: var(--primary-dark);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chatbot-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 12px;
  min-height: 46px;
  outline: none;
}

.chatbot-form button {
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .nav-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-features,
  .benefits-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav-menu a:hover {
    background: var(--primary-soft);
  }

  .hero-section {
    padding: 42px 0 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
  }

  .mvv-top,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .brand {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .plans-grid,
  .benefits-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .slider-card {
    padding: 14px;
  }

  .slider-header h3 {
    font-size: 1rem;
  }

  .whatsapp-float, .chatbot-toggle {
    right: 14px;
  }

  .chatbot-toggle {
    bottom: 82px;
  }

  .whatsapp-float {
    bottom: 14px;
  }

  .chatbot-panel {
    right: 14px;
    bottom: 150px;
    height: 470px;
  }
}


/* Logo ServisNet actualizado */
.brand {
  width: 230px;
  min-width: 230px;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.footer-logo {
  width: 235px;
  max-height: 135px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.about-logo-card img {
  width: min(100%, 440px);
  max-height: 420px;
  object-fit: contain;
  margin-inline: auto;
  background: transparent;
}

@media (max-width: 620px) {
  .brand {
    width: 178px;
    min-width: 178px;
  }

  .brand img {
    height: 54px;
  }
}


/* ==========================================================
   Actualización: Instalación Gratis destacada
   ========================================================== */
.free-installation-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 600px);
  margin: 0 0 24px;
  padding: 17px 20px;
  border-radius: 20px;

  /* Fondo azul corporativo de ServisNet */
  background:
    linear-gradient(135deg, rgba(8, 120, 247, 0.30), rgba(34, 160, 245, 0.20)),
    rgba(255,255,255,0.08);

  /* Borde azul claro para resaltar el bloque */
  border: 1px solid rgba(104, 192, 255, 0.46);

  /* Efecto moderno de profundidad */
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
}

.free-installation-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;

  /* Icono con degradado azul de la marca */
  background: linear-gradient(135deg, #0878f7, #22a0f5);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(11, 124, 244, 0.32);
}

.free-installation-banner small,
.free-installation-banner strong,
.free-installation-banner span {
  display: block;
}

.free-installation-banner small {
  color: #a8dcff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.free-installation-banner strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.free-installation-banner div > span {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}

/* ===== 9. MISIÓN, VISIÓN Y VALORES ===== */
/* ==========================================================
   Actualización: Misión, Visión y Valores
   ========================================================== */
.mvv-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.mvv-card {
  position: relative;
  min-height: 320px;
  padding: 32px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,124,244,0.10), transparent 34%),
    #fff;
  border: 1px solid #dbe8f5;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11,49,110,0.09);
  overflow: hidden;
}

.mvv-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0878f7, #25a1f3);
}

.mvv-icon-wrap {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #075fc1, #1699f4);
  box-shadow: 0 14px 30px rgba(11,124,244,0.22);
}

.mvv-icon-wrap svg {
  width: 38px;
  height: 38px;
}

.mvv-card-content h3 {
  font-size: 1.38rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.mvv-card-content p {
  color: #61708a;
  font-size: 0.97rem;
  line-height: 1.72;
}

.values-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11,124,244,0.04), rgba(255,255,255,0.94)),
    #fff;
  border: 1px solid #dbe8f5;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11,49,110,0.09);
}

.values-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.values-head > div {
  max-width: 620px;
}

.values-head > p {
  max-width: 390px;
  color: #61708a;
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-box {
  position: relative;
  min-height: 188px;
  padding: 22px;
  background: #fff;
  border: 1px solid #dce9f6;
  border-radius: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.value-box:hover {
  transform: translateY(-5px);
  border-color: #acd4f9;
  box-shadow: 0 16px 34px rgba(11,124,244,0.10);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eaf4ff;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.value-box strong {
  display: block;
  color: #075fc1;
  margin-bottom: 7px;
  font-size: 0.98rem;
}

.value-box p {
  color: #61708a;
  font-size: 0.87rem;
  line-height: 1.55;
}

/* Nuevo logo exclusivo del footer */
.footer-logo {
  width: 245px;
  max-height: 130px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

@media (max-width: 900px) {
  .mvv-top {
    grid-template-columns: 1fr;
  }

  .values-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .free-installation-banner {
    text-align: left;
    padding: 15px;
  }

  .free-installation-banner strong {
    font-size: 1.18rem;
  }

  .mvv-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .mvv-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .values-card {
    padding: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    margin-inline: auto;
    object-position: center;
  }
}

/* =========================================================
   AJUSTE: COTEJO DE "INSTALACIÓN GRATIS"
   Centra visualmente el símbolo ✓ dentro del botón azul.
   ========================================================= */
.free-installation-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  line-height: 1;
  padding: 0;
  font-size: 0;
}

.free-installation-icon::before {
  content: "✓";
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}
