/* DM Sans Light */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300; /* Light */
  font-display: swap;
  src: url('fonts/static/DMSans-Light.ttf') format('truetype');
}

/* Uso global */
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300; /* más fina */
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300; /* se mantiene fino */
  margin: 0 0 1rem;
}

/* Párrafos */
p {
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* Menú de navegación */
.navbar {
  font-weight: 300;
}

/* Botones */
.btn {
  font-weight: 300;
  letter-spacing: 0.5px;
}



/* ===== General ===== */
.navbar-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; /* Regular */
  letter-spacing: 2px; /* ajusta el valor según lo que quieras */
  font-size: 1rem;
}


/* Botón estilo moderno */
.btn-comprobante {
    background-color: #ffffff; /* púrpura moderno */
    color: #000000;
    border: none;
    border-radius: 50px; /* forma de píldora */
    padding: 14px 32px;
    font-weight: 500; /* semi-negrita */
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* sombra ligera */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-comprobante i {
  margin-right: 8px; /* espacio entre icono y texto */
}

.btn-comprobante:hover {
  background-color: #ffffff; /* tono más oscuro al pasar el mouse */
  transform: translateY(-2px); /* efecto de elevación */
}

/* Ocultar en móviles y tablets */
@media (max-width: 991px) {
  .btn-descarga {
    display: none !important;
  }
}





/* ===== Navbar ===== */
.navbar {
  padding: 15px 0;
}

.navbar .btn-outline-light {
  border: 2px solid #FFFFFF;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.navbar .btn-outline-light:hover {
  background-color: #FFFFFF;
  color: #4B1FB8;
}

/* Fondo sólido para el menú desplegable en móviles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95); /* blanco semitransparente */
    padding: 15px;
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    color: #2B1A4A !important; /* texto oscuro para contraste */
    margin: 5px 0;
  }

  .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #673DE6 !important; /* color destacado */
  }
}

/* Ocultar botón en móviles y tablets */
@media (max-width: 991px) {
  .navbar .btn-descarga {
    display: none !important;
  }
}


/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D0B1A, #4B1FB8);
  color: #FFFFFF;
  padding: 120px 20px;
  text-align: center;
}

/* Título principal */
.hero h1 {
    font-size: 3rem;   /* PC grande */
    font-weight: 300;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem; /* Tablets */
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;   /* Celulares */
  }
}

/* Subtítulo */
.hero p {
    font-size: 1rem;
    margin-top: 15px;
}

.hero p.text-muted {
  color: #F5F5F5 !important;
}

@media (max-width: 576px) {
  .hero p {
    font-size: 1rem;   /* Subtítulo más pequeño en móviles */
  }
}

/* Botón */
.btn-primary {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #4B1FB8;
  color: #FFFFFF;
}

@media (max-width: 576px) {
  .btn-primary {
    padding: 10px 24px; /* Botón más compacto en móviles */
    font-size: 0.7rem;
  }
}


/* ===== Servicios ===== */
.service-box-alt {
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden; /* asegura que la imagen se adapte al borde redondeado */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  height: 100%;              /* todas las fichas tendrán la misma altura */
  display: flex;             /* estructura flexible */
  flex-direction: column;    /* contenido en columna */
  justify-content: space-between; /* distribuye imagen, texto y botón */
}

.service-box-alt:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-img {
  width: 100%;       /* ocupa todo el ancho de la ficha */
  height: 160px;     /* altura controlada para que no descuadre */
  object-fit: cover; /* recorte elegante sin deformar */
  display: block;
}


.services-alt .btn {
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(135deg, #673DE6, #2B3A67);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.services-alt .btn:hover {
  background: linear-gradient(135deg, #2B3A67, #673DE6);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}







/* ===== Servicios ===== */





/* ===== Footer ===== */
/* Footer en blanco */
footer {
  background: #fff;
  color: #333;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd; /* línea sutil para separar */
}




footer small {
  opacity: 0.8;
}


/* Animación base */


/* Estado inicial: transparente */
.navbar {
  background: transparent;
  transition: background 0.4s ease;
}

/* Estado con degradado (cuando se hace scroll) */
.navbar.scrolled {
  background: linear-gradient(135deg, #2B1A4A, #4B1FB8);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado inicial */
.service-box-alt {
  opacity: 0;
  transform: translateY(30px);
}

/* Estado visible */
.service-box-alt.visible {
  animation: fadeUp 0.8s ease forwards;
}

/* ===== Clientes ===== */
.review-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-style: italic;
}

.client-logo {
  max-width: 100px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

.bg-purple {
  background: #673DE6;
}

.qualities i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200px * 10); /* ancho según cantidad de logos */
  animation: scroll 20s linear infinite;
}

.client-logo {
  max-width: 150px;
  margin: 0 30px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-style: italic;
}

.reviews {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff); /* mezcla suave rosado-azul */
  color: #333;
}

.review-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



/* Cinta de cualidades con degradado */
.qualities {
  background: linear-gradient(135deg, #673DE6, #2B3A67); /* degradado */
  color: #fff;
}

.quality-box {
  background: rgba(255,255,255,0.1); /* rectángulo semitransparente */
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.quality-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
/* ===== SERVICIOS ===== */
/* Banner de Servicios */
.banner-services {
  background: linear-gradient(135deg, #2B1A4A, #4B1FB8); /* igual que Inicio */
  height: 250px;
}

.banner-services h1 {
  font-size: 2.5rem;
  color: #fff;
}

.banner-services p {
  color: #ddd;
}

/* Bloques de servicios */
.services-page h3 {
  color: #673DE6;
}

.services-page ul {
  list-style: none;
  padding: 0;
}

.services-page ul li::before {
  content: "✔ ";
  color: #673DE6;
  font-weight: bold;
}


/* Íconos en Infraestructura TI */
.reviews {
  background: linear-gradient(135deg, #f3e7e9, #e3eeff); /* fondo suave */
}

.reviews .quality-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* texto alineado para lectura más cómoda */
}

.reviews .quality-box i {
  font-size: 2.5rem;
  color: #2B1A4A; /* íconos oscuros para contraste */
  margin-bottom: 10px;
}

.reviews .quality-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}



.benefit-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.benefit-box i {
  font-size: 2rem;
  color: #2B1A4A;
}
.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


.case-box {
  border-left: 4px solid #673DE6;
  font-size: 0.95rem;
}

.contact-section h2 {
  font-size: 2.2rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #673DE6;
  box-shadow: 0 0 6px rgba(103, 61, 230, 0.3);
}

.map-section iframe {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
