* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a2e;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fa;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fa;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fb;
}


/* ============================================================ */
/* HEADER FIJO */
/* ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-bolivian {
  color: #1ba9e0;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.logo-servers {
  color: #2b2b3d;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.logo small {
  font-size: 9px;
  color: #7a7a8c;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

/* Navegación */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav > a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.main-nav > a:hover {
  color: #1ba9e0;
}

/* Dropdown de Servicios */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown > a i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a {
  color: #1ba9e0;
}

.nav-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #2b2b3d;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
  background: #eaf7fd;
  color: #1ba9e0;
}

/* Acciones del header: rueda + hamburguesa */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gear-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1ba9e0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gear-btn:hover {
  background: #1690bf;
  transform: rotate(35deg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #1a1a2e;
  cursor: pointer;
}

/* ============================================================ */
/* SLIDER DE SERVICIOS */
/* ============================================================ */
.services-slider {
  position: relative;
  margin-top: 78px;      /* alto del header fijo, para no taparlo */
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #0c0c14;
}

.slides-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
  flex-shrink: 0;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 16, 0.05) 0%,
    rgba(8, 8, 16, 0.55) 45%,
    rgba(8, 8, 16, 0.92) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.slide-content h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 480px;
}

.slide-content h2 span {
  display: block;
  color: #1ba9e0;
}

.slide-content p {
  color: #d6d6e0;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 440px;
  margin: 18px 0 26px;
}

.btn-slide {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1ba9e0;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-slide:hover {
  background: #1690bf;
  transform: translateX(2px);
}

/* Flechas */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.slide-arrow:hover {
  opacity: 1;
}

.slide-arrow.prev { left: 16px; }
.slide-arrow.next { right: 16px; }

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}

.slide-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slide-dots button.active {
  background: #1ba9e0;
  transform: scale(1.3);
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav > a,
  .nav-dropdown {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f4;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 12px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .slide-content {
    align-items: flex-start;
    text-align: left;
  }

  .slide-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .services-slider {
    height: 460px;
  }

  .slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 16, 0.25) 0%,
      rgba(8, 8, 16, 0.92) 75%
    );
  }

  .slide-content {
    justify-content: flex-end;
    padding-bottom: 48px;
  }
}

/* ============================================================ */
/* SECCIÓN Y GRID */
/* ============================================================ */
.services-section {
  padding: 60px 24px;
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================ */
/* TARJETA */
/* ============================================================ */
.service-card {
  background: #ffffff;
  border: 1px solid #e3e5ea;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 28px rgba(20, 40, 80, 0.1);
  border-color: #c8e3f4;
  transform: translateY(-2px);
}

/* Encabezado: ícono + título */
.service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1565a8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-title h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-title p {
  font-size: 12.5px;
  color: #5a5a6e;
  font-weight: 500;
  margin-top: 2px;
}

/* Foto */
.service-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 5 / 3;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto descriptivo corto */
.service-text {
  font-size: 13.5px;
  color: #4a4a5a;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Listado con checks */
.service-list {
  list-style: none;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #2b2b3d;
  font-weight: 500;
  padding: 5px 0;
}

.service-list li i {
  color: #1565a8;
  font-size: 12px;
  flex-shrink: 0;
}

/* Botón */
.service-btn {
  display: block;
  text-align: center;
  background: #1ba9e0;
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 0;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.service-btn:hover {
  background: #1690bf;
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}




/* ============================================================ */
/* SECCIÓN    ANTIVIRUS       */  
/* ============================================================ */
.av-section {
  background: linear-gradient(135deg, #eef6fc 0%, #f7fafd 60%, #ffffff 100%);
  padding: 56px 24px;
}

.av-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

/* ============================================================ */
/* LADO IZQUIERDO */
/* ============================================================ */
.av-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.av-shield-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #1565c0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.av-heading h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0d3d75;
  letter-spacing: 0.2px;
}

.av-subtitle {
  font-size: 14.5px;
  color: #3a526b;
  font-weight: 500;
  margin-top: 4px;
}

.av-description {
  font-size: 14px;
  color: #3a4a5c;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
}

.av-description strong {
  color: #0d3d75;
}

/* ============================================================ */
/* TARJETAS DE ANTIVIRUS */
/* ============================================================ */
.av-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.av-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(20, 50, 90, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.av-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 50, 90, 0.14);
}

.av-logo {
  height: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.av-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.av-card h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.av-card p {
  font-size: 12px;
  color: #5a5a6e;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Botones: cada marca con su color */
.av-btn {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 0;
  border-radius: 6px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.av-btn:hover {
  filter: brightness(0.92);
}

.av-btn-eset {
  background: #1d8f5e;
}

.av-btn-kaspersky {
  background: #00695f;
}

.av-btn-watchguard {
  background: #e0212b;
}

/* ============================================================ */
/* LADO DERECHO: imagen */
/* ============================================================ */
.av-right {
  display: flex;
  justify-content: center;
}

.av-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  display: block;
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 900px) {
  .av-inner {
    grid-template-columns: 1fr;
  }

  .av-right {
    order: -1;
  }

  .av-right img {
    max-width: 360px;
  }

  .av-cards {
    grid-template-columns: 1fr;
  }
}






/* ============================================================ */
/* SECCIÓN Y GRID                        BANNER DE PUBLICIDAD   */
/* ============================================================ */
.banners-section {
  padding: 48px 24px;
}

.banners-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================ */
/* BANNER BASE */
/* ============================================================ */
.promo-banner {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
}

/* Degradado de color propio + oscurecido a la izquierda para
   que el texto blanco siempre se lea bien */
.promo-overlay {
  position: absolute;
  inset: 0;
}

.promo-blue .promo-overlay {
  background: linear-gradient(
    90deg,
    #0a2a52 0%,
    #0d3a78 38%,
    rgba(13, 58, 120, 0.55) 65%,
    rgba(13, 58, 120, 0.15) 100%
  );
}

.promo-green .promo-overlay {
  background: linear-gradient(
    90deg,
    #06241f 0%,
    #0c3f36 38%,
    rgba(12, 63, 54, 0.55) 65%,
    rgba(12, 63, 54, 0.15) 100%
  );
}

/* ============================================================ */
/* CONTENIDO DE TEXTO */
/* ============================================================ */
.promo-content {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  max-width: 320px;
}

.promo-content h3 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.promo-content p {
  color: #e4ecf5;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ============================================================ */
/* BOTONES */
/* ============================================================ */
.promo-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 7px;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.promo-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.promo-btn-blue {
  background: #1ba9e0;
}

.promo-btn-green {
  background: #1d8f5e;
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 760px) {
  .banners-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    height: 220px;
  }
}

@media (max-width: 460px) {
  .promo-content {
    max-width: 100%;
  }

  .promo-content h3 {
    font-size: 17px;
  }
}


/* ============================================================ */
/* SECCIÓN                           FORMULARIO Y MAPAS       */
/* ============================================================ */
.contact-section {
  background: linear-gradient(135deg, #eaf4fb 0%, #f4f9fc 55%, #ffffff 100%);
  padding: 56px 24px;
}

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

/* Línea divisoria vertical */
.contact-divider {
  width: 1px;
  background: #d7e3ee;
  align-self: stretch;
}

/* ============================================================ */
/* TÍTULOS COMUNES */
/* ============================================================ */
.contact-left h2,
.contact-right h2 {
  font-size: 21px;
  font-weight: 800;
  color: #14233b;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.contact-left h2 span {
  color: #1ba9e0;
}

.contact-subtitle {
  font-size: 14px;
  color: #5a6b80;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 22px;
}

/* ============================================================ */
/* FORMULARIO */
/* ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-spacer {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 13.5px;
  color: #14233b;
  background: #ffffff;
  border: 1px solid #dde6ef;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa7b7;
}

.contact-form select {
  color: #6b7888;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.contact-form select:valid {
  color: #14233b;
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1ba9e0;
  box-shadow: 0 0 0 3px rgba(27, 169, 224, 0.15);
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0d3d78;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-submit:hover {
  background: #0a2f5e;
}

/* ============================================================ */
/* MAPA */
/* ============================================================ */
.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dde6ef;
  margin-bottom: 18px;
}

.map-wrapper iframe {
  width: 100%;
  height: 230px;
  border: 0;
  display: block;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1565c0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.map-btn:hover {
  background: #114e99;
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-divider {
    width: auto;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ============================================================ */
/* TESTIMONIOS  */
/* ============================================================ */




/* ============================================================ */
/* SECCIÓN Y TÍTULO */
/* ============================================================ */
.testimonials-section {
  padding: 56px 24px 64px;
}

.testimonials-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #14233b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.testimonials-title span {
  color: #1ba9e0;
}

/* ============================================================ */
/* WRAPPER: flechas + viewport */
/* ============================================================ */
.testimonials-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-viewport {
  flex: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

/* ============================================================ */
/* FLECHAS */
/* ============================================================ */
.t-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e7ee;
  color: #5a6b80;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.t-arrow:hover {
  background: #1ba9e0;
  border-color: #1ba9e0;
  color: #ffffff;
}

/* ============================================================ */
/* TARJETA */
/* ============================================================ */
.t-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff;
  border: 1px solid #e2e7ee;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.t-quote-icon {
  color: #1ba9e0;
  font-size: 20px;
  margin-bottom: 12px;
}

.t-text {
  font-size: 13.5px;
  color: #2b3a4e;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.t-divider {
  width: 28px;
  height: 2px;
  background: #1ba9e0;
  margin-bottom: 10px;
}

.t-name {
  font-size: 13px;
  font-weight: 700;
  color: #14233b;
  margin-bottom: 8px;
}

.t-stars {
  color: #f5a623;
  font-size: 12px;
  display: flex;
  gap: 3px;
}

/* ============================================================ */
/* DOTS */
/* ============================================================ */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cfdae5;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.t-dots button.active {
  background: #1ba9e0;
  transform: scale(1.3);
}

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 900px) {
  .t-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .t-card {
    flex: 0 0 100%;
  }

  .testimonials-title {
    font-size: 19px;
  }
}



/* ============================================================ */
/* ── Footer Bolivian Servers ── */
/* ============================================================ */


.bs-footer {
  background: #0f1724;
  color: #94a3b8;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  padding-top: 0;
}

.bs-footer__top-bar {
  background: #29ABE2;
  height: 4px;
}

.bs-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Logo y descripción */
.bs-footer__brand img {
  height: 44px;
  margin-bottom: 16px;
  display: block;
}

.bs-footer__brand p {
  color: #94a3b8;
  font-size: 13.5px;
  max-width: 260px;
  margin-bottom: 20px;
}

.bs-footer__social {
  display: flex;
  gap: 10px;
}

.bs-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.bs-footer__social a:hover {
  background: #29ABE2;
  color: #fff;
  border-color: #29ABE2;
}

.bs-footer__social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Columnas de links */
.bs-footer__col h4 {
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(41,171,226,0.25);
}

.bs-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bs-footer__col ul li {
  margin-bottom: 9px;
}

.bs-footer__col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.bs-footer__col ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #29ABE2;
  flex-shrink: 0;
  opacity: 0.6;
}

.bs-footer__col ul li a:hover { color: #29ABE2; }
.bs-footer__col ul li a:hover::before { opacity: 1; }

/* Contacto */
.bs-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.bs-footer__contact-item svg {
  width: 17px;
  height: 17px;
  stroke: #29ABE2;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.bs-footer__contact-item span {
  font-size: 13.5px;
  color: #94a3b8;
}

.bs-footer__contact-item a {
  color: #94a3b8;
  text-decoration: none;
}

.bs-footer__contact-item a:hover { color: #29ABE2; }

.bs-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.bs-footer__wa:hover { background: #1da851; }

.bs-footer__wa svg {
  width: 18px;
  height: 18px;
  fill: white;
  stroke: none !important;
}

/* Barra inferior */
.bs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.bs-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bs-footer__bottom p {
  font-size: 12.5px;
  color: #475569;
  margin: 0;
}

.bs-footer__bottom p span { color: #29ABE2; }

.bs-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.bs-footer__bottom-links a {
  font-size: 12.5px;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
}

.bs-footer__bottom-links a:hover { color: #29ABE2; }

/* Responsive */
@media (max-width: 900px) {
  .bs-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .bs-footer__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
    gap: 32px;
  }
  .bs-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
}
