



.container-fluid .navbar-nav a {
  font-size: 11px;
  color: #06a4ffa4;
  margin: 2px;
  padding: 0;
  
}

@font-face {
    font-family: LazenbyCompLiquid;
    src: url(LazenbyCompLiquid.ttf);
}

@font-face {
    font-family: BebasNeueRegular;
    src: url(BebasNeueRegular.ttf);
}

@font-face {
    font-family: MonotonRegular;
    src: url(MonotonRegular.ttf);
}

@font-face {
    font-family: ArcaneNine;
    src: url(ArcaneNine.otf);
}

@font-face {
  font-family: gotharctica;
  src: url(gotharctica.ttf);
}


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

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2398c7;
  text-shadow: 0 0 10px #999;
  font-size: 3rem;
}






/* Fondo y configuración general */
body {
  background-color:rgba(26, 28, 59, 0.993);
  color: #00ff7f;
  display: flex;
  justify-content: center;


}



.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #33ff00;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-100px) translateX(100px) scale(1.5);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}


/* Contenedor principal */


:root {
    --color-neon-primario: #ff00ff;
    --color-neon-secundario: #00ffff;
    --color-neon-terciario: #ffcc00;
}

.cubo {
    margin-bottom: 30%;
    margin-top: 20%;
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: rotacion 70s infinite linear;
    transition: transform 7s ease;
}

/* Animación de rotación del cubo */
@keyframes rotacion {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(360deg) rotateY(360deg);
    }
    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
}

/* Cara del cubo */
.cara {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--fondo-negro-transparente);
    border: 3px solid var(--color-neon-primario);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px var(--color-neon-primario),
        0 0 30px var(--color-neon-secundario),
        inset 0 0 10px var(--color-neon-terciario);
    font-size: 1.2em;
    animation: neon-bordes 3s infinite alternate;
    backdrop-filter: blur(4px);
}

/* Animación de los bordes */
@keyframes neon-bordes {
    0% {
        border-color: var(--color-neon-primario);
        box-shadow: 0 0 10px var(--color-neon-primario), 0 0 20px var(--color-neon-secundario);
    }
    50% {
        border-color: var(--color-neon-secundario);
        box-shadow: 0 0 20px var(--color-neon-secundario), 0 0 30px var(--color-neon-terciario);
    }
    100% {
        border-color: var(--color-neon-terciario);
        box-shadow: 0 0 30px var(--color-neon-terciario), 0 0 50px var(--color-neon-primario);
    }
}

/* Posición de cada cara */
.cara1 { transform: rotateY(0deg) translateZ(150px); }
.cara2 { transform: rotateY(90deg) translateZ(150px); }
.cara3 { transform: rotateY(180deg) translateZ(150px); }
.cara4 { transform: rotateY(270deg) translateZ(150px); }
.cara5 { transform: rotateX(90deg) translateZ(150px); }
.cara6 { transform: rotateX(-90deg) translateZ(150px); }

/* Hover pausa rotación */
.cubo:hover {
    animation-play-state: paused;
}

/* Contenido interno */
.cara h2 {
    margin: 0;
    color: var(--color-neon-texto);
    text-shadow: 0 0 10px var(--color-neon-primario), 0 0 25px var(--color-neon-secundario);
}

.cara p {
    margin: 5px 0;
    font-size: 0.9em;
    text-align: center;
    color: var(--color-neon-acento);
    text-shadow: 0 0 8px var(--color-neon-acento), 0 0 12px var(--color-neon-secundario);
}

/* Estrellas animadas */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-neon-terciario);
    border-radius: 50%;
    animation: twinkle 4s infinite alternate;
}

/* Botón neon */
.neon-button {
    position: relative;
    padding: 10px 20px;
    color: var(--color-neon-texto);
    background: transparent;
    border: 2px solid var(--color-neon-primario);
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 5px var(--color-neon-secundario);
    transition: color 0.3s ease, transform 0.3s ease;
}

.neon-button:hover {
    color: var(--color-neon-acento);
    transform: scale(1.1);
}

/* Brillo neon */
.neon-button::before,
.neon-button::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0.5;
    filter: blur(6px);
    transition: opacity 0.3s ease;
    z-index: -1;
    background: var(--color-neon-secundario);
}

/* Animaciones */
@keyframes neon-border {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.2); }
}

@keyframes neon-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes twinkle {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.4); }
}
:root {
  --color-neon-primario: #00f7ff;
  --color-neon-secundario: #9d00ff;
  --color-neon-terciario: #00ff87;
  --color-neon-texto: #ffffff;
  --color-neon-acento: #ff007c;
  --fondo-negro-transparente: rgba(10, 10, 31, 0.534);
}

    canvas#background {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -2;
      width: 100vw;
      height: 100vh;
    }

    .cubo {
      position: relative;
      width: 300px;
      height: 300px;
      margin: 80px auto;
      transform-style: preserve-3d;
      animation: rotar 20s linear infinite;
    }

    @keyframes rotar {
      from { transform: rotateX(0deg) rotateY(0deg); }
      to { transform: rotateX(360deg) rotateY(360deg); }
    }

  /*innovador*/


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

  


h1 {
  font-family: BebasNeueRegular;
  text-align: center;
  margin-top: 30px;
  font-size: 10px;
  color: #1b8c94;

}



.neon-button {
  display: inline-block;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #fff8f7;    
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}




.neon-button img {
  width: 50%;
}


@keyframes pulse {
  0%, 100% {
      transform: scale(1);
     
  }
  50% {
      transform: scale(1.05);
   
  }
}


.main  {


  text-align: center;
  margin-top: 5px;
  padding: 20%;
  opacity: 60%;
}


/* General styles */


h1, h2, h3 {
  color: #818991;
}





/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}











/* Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .container {
  
    padding: 10px;
  }
}




/*fuentes*/

h5 {
    font-family: LazenbyCompLiquid;
    font-size: 50%;
    color: #08d3f6;
}



/*texto y parrafos */

h1, h2 {
  color: #d4d7dd; /* Títulos en naranja vibrante */
  text-shadow: 2px 2px 4px #0bdd1c; /* Sombra para impacto */
}
p {
  line-height: 1.8;
  font-size: 1.1rem;
}
a {
  color: #0dcaf0; /* Enlaces en azul Bootstrap */
  text-decoration: none;
}
a:hover {
  color: #ff3e00; /* Enlaces cambian a naranja al pasar */
}
.blog-section {
  border: 2px solid #ff3e00; /* Borde naranja */
  border-radius: 10px;
  padding: 20px;
  background: rgba(255, 62, 0, 0.1); /* Fondo semitransparente */
  margin-bottom: 20px;
}
.blog-title {
  font-weight: bold;
  margin-bottom: 15px;
}
.btn-custom {
  background-color: #ff3e00;
  color: #fff;
  border: none;
}
.btn-custom:hover {
  background-color: #0dcaf0;
  color: #000;
}




/* Estilos generales para el botón de la barra de navegación */
.navbar-toggler {
 
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

/* Personalización del ícono del botón */
.navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #6d6e6bf6;
  position: relative;
  transition: background-color 0.3s, transform 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  padding: 2px;
  background-color: #d7dfd6;
  position: absolute;
  transition: transform 0.3s, top 0.3s, bottom 0.3s;
}

.navbar-toggler-icon::before {
 
  top: -10px;
}

.navbar-toggler-icon::after {
  bottom: -10px;
}

/* Animación cuando el botón está activo (navbar está colapsada) */


.navbar-toggler.collapsed .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(45deg);
}
/* Efecto hover */
.navbar-toggler:hover .navbar-toggler-icon {
  background-color: #bd1a1a;
}

.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background-color: #830ec7;
}




.redes-sociales a, li {
    text-decoration: none;
     
}

@media (min-width: 968px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}





.nav-scroller {
  
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-item a {

 
    font-size: 15px;
    color: #646263e5; 
    margin-bottom: 4px;
    padding: 0px;
    margin-top: 5px;
    margin-right: 50px;   
   
}

.nav-link   {   
      
       margin-left: 50px;
 
}




#facebook-icon {
    background-image: url('path/to/facebook-icon.png');
}

#twitter-icon {
    background-image: url('path/to/twitter-icon.png');
}

#instagram-icon {
    background-image: url('path/to/instagram-icon.png');
}

.redes-sociales {
    display: flex;
}

.redes-sociales a {
    margin:  5px;
    color: #666865;
    font-size: 14px;
    padding: 2px;
}






a:hover {
    text-decoration: underline;
}

i {
    margin-right: 5px;
}

/* Estilos generales */

header {

  margin-top: -20px;

}

/* Estilo para el enlace */
a {
  text-decoration: none; /* Quita el subrayado del enlace */
  color: #827c9c; /* Color inicial del enlace */
  transition: color 0.3s ease; /* Transición suave para el cambio de color */
}

a:hover {
  color: #007BFF; /* Color del enlace al pasar el mouse */
}

/* Estilo para el encabezado h3 */
h3 {
  font-family: BebasNeueRegular;
  color: #00FF00;
  font-size: 24px; /* Tamaño de fuente */
  margin: 0; /* Margen */
  position: relative; /* Necesario para la animación */

}

/* Definición de la animación */
@keyframes move {
  0% {
    left: 0;
  }
  100% {
    left: 10px; /* Desplazamiento hacia la derecha */
  }
}




iframe {
  margin-top: 10px;
  text-align: justify;
  border: solid 1px;
  color: #064a97;
  border-radius: 12px;
  

}

        
    button {
         font-family: BebasNeueRegular;
            padding: 10px 20px;
            font-size: 30px;
            margin-right: 10px;
        }
    




   /* 1. @font-face */
   @font-face {
    font-family: BebasNeueRegular;
    src: url(BebasNeueRegular.ttf);
  }
  
  /* 2. Reglas Globales */
  a, h2, p, ul {
    font-family: BebasNeueRegular;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  h2 {
    width: 80%;
    font-size: 12px;
    color: #5cce10;
    margin-top: 15px;
  }
  
  p {
    width: 90%;
    line-height: 1.3;
    margin-bottom: 12px;
    font-family: ArcaneNine;
    color: #00FF00;
  }
  


  
  /* 6. Navegación */
  .navbar-nav .nav-link {
    font-family: LazenbyCompLiquid;
    position: relative;
    overflow: hidden;
  }
  

  
  .navbar-nav .nav-link:hover p {
    background-color: #ff0800;
    left: 0;
  }
  
  .scroll-top-button {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 150px;
    font-size: 18px;
    color: rgb(247, 244, 244);
    background-color: #0c0c3dc0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: fixed;
    left: 10px;
    bottom: 20px;
    text-decoration: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.scroll-top-button:hover {
    background-color: #bf0101bf;
}



.whatsapp-icon-container {
  position: fixed;
  bottom: 100px; /* Ajusta la posición vertical según tu preferencia */
  right: 10px; /* Ajusta la posición horizontal según tu preferencia */
 
}

.whatsapp-icon {
  display: inline-block;
  width: 100px; /* Tamaño del icono */
  height: 60px; /* Tamaño del icono */ 
  color: #1fd50b; /* Color del icono */
  font-size: 30px; /* Tamaño del icono */
  text-align: right;
  padding: 15px;
}



.whatsapp-icon i {
  animation: neon 1.8s infinite alternate; /* Animación del efecto neon */
}

@keyframes neon {
  from {
    text-shadow: 0 0 5px #25d366, 0 0 10px #25d366, 0 0 20px #25d366, 0 0 30px #25d366, 0 0 40px #25d366, 0 0 55px #25d366, 0 0 75px #25d366;
  }
  to {
    text-shadow: 0 0 10px #25d366, 0 0 20px #25d366, 0 0 30px #25d366, 0 0 40px #25d366, 0 0 50px #25d366, 0 0 70px #25d366, 0 0 90px #25d366;
  }
}
   


/* Ajuste de videos iframe */
iframe {
width: 90%;   


}



/* General styles for buttons */
.btn {
 
  font-family: BebasNeueRegular;
  font-size: 14px;
  font-weight: bold;
  padding: 5px;
  margin: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;

}

/* Outline styles for different button types */

/*bottones del menu*/

.btn {
  
  font-family: BebasNeueRegular;
  font-size: 15px;
  width: 40%;
}

.btn-outline-primary {
  
  color: #0d6efd;
  border-color: #0d6efd;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

.btn-outline-secondary {
  
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
  background-color: transparent;
}

.btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #212529;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-info:hover {
  background-color: #0dcaf0;
  color: #fff;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
  background-color: transparent;
}


@font-face {
    font-family: 'LongTime';
    src: url('LongTime.ttf');
}

@font-face {
    font-family: 'Techovier';
    src: url('Techovier .otf');
}

@font-face {
    font-family: 'Victoire';
    src: url('Victoire.otf');
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY GENERAL */
body {
    background: linear-gradient(145deg, #10122c, #05151f);
    color: #ccc;   
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* BLOG POST */
.blog-post {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #131429c2;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,255,255,0.15), 0 0 50px rgba(7, 150, 131, 0.041);
    border: 2px solid rgba(34, 28, 58, 0.863);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(1, 5, 5, 0.3), 0 0 70px rgba(34, 37, 77, 0.034);
}

/* TITULOS PRINCIPALES */
section .blog-post h1 {
   
    font-size: 1.4rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 20px;
}


section.blog-post h2 {
    
    font-size: 2rem;    
    margin: 30px 0 15px;
    color: #00cccc;
    text-shadow: 0 0 8px #00cccc77;
}

section.blog-post h3 {
   
    font-size: 1.8rem;
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00;
    margin: 20px 0;
}

section.blog-post  .item-servicio  {
  
  font-size: 15px;
  right: 10px;
}

section.blog-post  .item-beneficio  {
  
  font-size: 14px;  
  right: 30px;
}



/* PÁRRAFOS */
.blog-post p {
  
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 15px;
}

/* LISTAS */
.blog-post ul,
.blog-post ol {
  
    margin: 20px 0 20px 20px;
    list-style: none;
}

.blog-post ul li,
.blog-post ol li {
  
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #c0c0c0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px 20px 12px 40px;
    transition: background 0.3s ease;
}

.blog-post ul li:hover,
.blog-post ol li:hover {
    background: rgba(0, 81, 255, 0.288);
}

/* ÍCONOS PEGADOS AL TEXTO */
.blog-post ul li::before {
    content: "✅";
    position: absolute;
    left: 12px;
    top: 10px;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(32, 207, 8, 0.404));
}



.blog-post ol li::before {
  
    content: "🔥";
    position: absolute;
    left: 12px;
    top: 10px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgb(255, 51, 0));
}

/* LINKS */
.blog-post a {
  
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.blog-post b {
  color: #a323ec;
}

.blog-post a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00ffff;
}

/* ANIMACIONES */
@keyframes neonglow {
    0%, 100% { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; }
    50% { text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff; }
}

h1, h2, h3 {
    animation: neonglow 3s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-post {
        padding: 20px;
    }
    .blog-post h1 {
        font-size: 1.8rem;
    }
    .blog-post h2 {
        font-size: 1.5rem;
    }
}



 .container  footer{
   width: 100%;
   height: 50%;
}

footer {
  
  margin-bottom: 50%;
  color: #ecf0f1; /* Texto claro */
  padding: 30px 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
  border-top: 3px solid #3498db; /* Línea superior azul para destacar */
}

footer p {
  margin: 0;
  font-size: 12px;
  color: #5e5e5b; /* Texto gris claro */
}

footer a {
  color: #134679; /* Color azul para los enlaces */
  text-decoration: none;  
  transition: color 0.3s ease;
}

footer a::hover {
  color: #1b10b7; /* Efecto hover en verde */
}



h2, h3, p {

  color: #e0e0ff;
}

h2 {
  text-align: center;
  font-size: 17px;
  color: #3609d8;
  text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
}

h3 {
  
  text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066;
}

p {
  font-family: BebasNeueRegular;
  color: #aaaaff;
  font-size: 15px;
}




