*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
:root {
    --bg: #3C465C;
    --primary: #78FFCD;
    --solid: #fff;
    --celesteClaro:#769ECB;
    --azulGris:#758f9c;
    --azulMorado:#516091;

    /*prueba*/
    --bs-blue: #0d6efd;
    --bs-indigo-: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --funBlue:#175a9e;
    --shark:#1e1e1f;
    --white_1:#f6f7f1;
    --bg-colorVidrio:rgba(255, 255, 255, .15);
    --backdrop-filterVidrio:blur(5px);
    --azulIntenso:#090979;
    --negroIn:#020024;
    --rojoOscuro:#C81D11;
    --rojoBrillante: #FF0800;
    --celesteBrillante:#00d4ff;
    --azulFooter:#1b2a4e;
    --azulNavBar: rgb(17, 0, 255);
    --blackTitulos:#444649;
    --greyPs:#616161;
    --blackYT:#181818;
    --linesYT:#303030;
    --blackYT2:#202020;
    --blackYT3:#313131;
    --whiteYT:#f9f9f9;
    --tittlepurple:#1f2667;
    /* --z1:#232741; */
    --z1:#0f172a;
    --z2:#2c2e43;
    --z3:#222733;
    --z4:#080d17;
    --dark-github:#0d1117;
    --dark-github-2: #161b22;
    --dark-beauty:#1e242c;
    --dark-beauty-2:#171925;
    --dark-brauty-3:#252934;

    /* Colores nuevos */
    --bs-indigo: #BE1206;
    --blur-indigo: rgba(74, 52, 169, 0.6);

    --gameBlue: #0f172a; /*15 23 42*/
    --gameBlueLight: #1e293b; 
    --gameLips: #be123c; /*190 18 60*/
    --gameBlood: #BE1206; /*190 18 6*/
}

body{
    font-family: sans-serif;
    max-width: 100% !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    background:var(--z1);
    /* height:2000vh; */
    color:var(--bs-light);

}
/* ---------------------------------- General ---------------------------------- */

.btn-neon{
    padding:10px 30px;
    background:#FF6600;
    border:1px solid var(--bs-light);
    border-radius:10px;
    filter: drop-shadow(0 0 10px #FF6600); 
    color:var(--bs-light);
    transition: all .4s ease;

}
.btn-neon:hover{
    filter: drop-shadow(0 0 15px #FF6600); 
    transition: all .4s ease;
}
section{
    padding:40px 0;
}

img {
    filter: drop-shadow(0 0 15px #FF6600); 
} 
/* Aplica la animación a la imagen */
img {
    animation: pulse-shadow 2s ease-in-out infinite; /* Repite la animación infinitamente */
}
/* Define la animación llamada "pulse-shadow" */
@keyframes pulse-shadow {
    0% {
        filter: drop-shadow(0 0 10px #FF6600); /* Estado inicial */
    }
    50% {
        filter: drop-shadow(0 0 15px #FF6600); /* Aumenta la sombra a la mitad de la animación */
    }
    100% {
        filter: drop-shadow(0 0 10px #FF6600); /* Vuelve al estado inicial al final de la animación */
    }
}

#optimizacion li{
    font-size:1.05rem;
    line-height:1.8rem;
}
p{
    font-size:1.09rem;
    line-height:1.8rem;
}
/* ---------------------------------- Inicio ---------------------------------- */
header{
    height:90vh;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background: linear-gradient(rgba(5,7,8, 0.3), rgba(5,7,8, 0.4)), url(./../img/hard_disc.jpg);
    /*Parallax*/
    background-attachment: fixed;
    background-size:cover;
    background-position:center;
    background-repeat: repeat;

    gap:20px;
}
header h1{
    font-size:6rem;
}
header h2{
    font-size:4rem;
}
header nav {
    position:fixed;
    top:80px;
    left:0;
    z-index:100;
    /* border:1px solid #fff; */
    width:400px;    

    opacity:0;
    transform:translateX(-100px);    
}
header .container-btn{
    padding:15px 20px 10px;
    position:fixed;
    top:0;
    left:0;
    z-index:200;
}
header .btn-neon{
    padding: 5px 10px;
    display:flex;
    border-radius:5px;
}
header button svg{
    width:40px;
    fill:var(--bs-light);
}
header nav ul{
    list-style:none;
    padding:20px;
    margin-left:20px;
    /* border:1px solid red; */
    display:flex;
    gap:10px;
    flex-direction:column;
    transition: all .4s ease;

    /* From https://css.glass */
    background: rgba(8, 13, 23, 0.54);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(8, 13, 23, 0.3);

    
}
header nav ul:hover{
    background: rgba(8, 13, 23);
    transition: all .4s ease;
}

header nav ul li{
    /* border-bottom:1px solid var(--bs-light); */
    font-size:1.1rem;
}
header nav ul li a{
    color: var(--bs-light);
    transition: all .4s ease;
    text-decoration:none;
    display:flex;
    width:100%;
}
header nav ul li a:hover{
    color:#FF6600;
    transition: all .4s ease;
    filter: drop-shadow(0 0 8px #FF6600);

}

.close-nav{
    animation: closeNav .5s ease;
    transform:translateX(-100%);
    opacity:0;
}
.open-nav{
    animation: openNav .5s ease;
    transform:translateX(0);
    opacity:1;
}
@keyframes closeNav{
    0%{
        transform:translateX(0);
        opacity:1;
    }
    50%{
        opacity:0;
    }
    100%{
        transform:translateX(-100%);
        opacity:0;
    }
} 
@keyframes openNav{
    0%{
        transform:translateX(-100px);
        opacity:1;
    }
    50%{
        opacity:1;
    }
    100%{
        transform:translateX(0);
        opacity:1;
    }
} 


#definicion{
    padding:80px 0;
}
#definicion .row .definicion-text{
    display:flex;
    align-items:center;
    background:var(--z4);
    padding:15px 20px;
    margin-bottom:20px;
    box-shadow: -7px 7px 7px rgb(0 0 0 / 10%);

}
#definicion .row .definicion-text p{
    font-size:1.1rem;
    text-align: justify;
    line-height:1.8;
}
#definicion .row .col-12 img{
    width:100%;
    /* border:1px solid var(--bs-light); */
}

#ssd-hdd .row .col-12{
    display:flex;
    flex-direction:column;
    /* justify-content: center; */
    align-items: center;
}
/* ---------------------------------- SSD HDD ---------------------------------- */

#ssd-hdd .contenedor-img{
    height:400px;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
}
#ssd-hdd .contenedor-btn-fotos{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#ssd-hdd img{
    width:100%;
    height: 100%;
}

#ssd-hdd img.hard-disc{
    width:80%;
}
#ssd-hdd .btn-neon{
    max-height:50px;
}
#ssd-hdd .contenedor-btn-chages{
    padding:10px 0;
}
#ssd-hdd .contenedor-btn-chages .btn-img{
    border:1px solid #FF6600;
    background:var(--z4);
    /* filter:drop-shadow(0 0 10px #FF6600); */
    color:#FF6600;
    padding:10px 10px;
    margin-right:5px;
    transition:all .4s ease;
}
#ssd-hdd .contenedor-btn-chages .btn-img:hover{
    background:#FF6600;
    transition:all .4s ease;
    filter:drop-shadow(0 0 10px #FF6600);
    border:1px solid var(--bs-light);
    color:var(--bs-light);
}
.border-end-neon{
    border-right: 1px solid #FF6600;
}
/* ---------------------------------- SSD HDD Comparation ---------------------------------- */

#ssd-hdd-comparation #subrayado-3{
    margin-bottom:0;
}

#ssd-hdd-comparation .img-comparation{
    display:flex;
    align-items:center;
    flex-direction:column;
    padding:0 0 80px 0 ;
}
#ssd-hdd-comparation .img-comparation img{
    width:90%;
}
#ssd-hdd-comparation .img-comparation-btn{
    display:flex;
    justify-content:end;
    width:100%;
    /* border:1px solid #fff; */
    gap:10px;
    transform:translateY(50px) translateX(-50px);
    z-index:10;
}
#ssd-hdd-comparation .img-comparation-btn .btn-neon{
    width:50px;
    padding:5px;
}
#ssd-hdd-comparation .img-comparation-btn .btn-neon svg{
    fill:var(--bs-light);
    width:100%;
}
#ssd-hdd-comparation .row .col-4, #ssd-hdd-comparation .row .col-12{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
#ssd-hdd-comparation .circulo-diferencias{
    border:1px solid var(--bs-light);
    width:120px;
    height:120px;
    border-radius:500px;
    overflow:hidden;
    display:flex;
    justify-content: center;
    align-items:center;
    background-color: #FF6600; /* Color naranja intenso */
    box-shadow: 0 0 15px #FF6600; /* Efecto de sombra */
    
}
#ssd-hdd-comparation .circulo-diferencias svg{
    width:60%;
    fill:var(--bs-light);
    transition: all .4s ease;

}

#ssd-hdd-comparation .col-4:hover .circulo-diferencias svg, 
#ssd-hdd-comparation .col-12:hover .circulo-diferencias svg{
    transition:.4s;
    animation:zoom-pop .6s ease;

}

@keyframes zoom-pop{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.25);
    }
    100%{
        transform:scale(1);
    }
}

/* ---------------------------------- Tipo de almacenamiento y demas ---------------------------------- */

#trta .trta-fila {
    margin-top:50px;
    display:flex !important;
    gap:20px;
    height:400px;
}

#trta .trta-fila .trta-block, .rendimiento .trta-block{
    background:var(--z4);
    width:50%;
    height:120px;
    padding:20px;
    box-shadow: -7px 7px 7px rgb(0 0 0 / 10%);
}

#trta .trta-fila .trta-block.second-one{
    margin-top:130px;
    height:150px;

}
#trta  .row{
	box-shadow:0 2px 13px -1px rgba(0,0,0,0.3);

}
#trta .rendimiento .svg-rendimiento {
    display:flex;
    justify-content:center;
    align-items:center;
    background:#FF6600;
    filter: drop-shadow(0 0 10px #FF6600); 
    animation: pulse-shadow 3s ease-in-out infinite; /* Repite la animación infinitamente */
}
#trta .rendimiento .svg-rendimiento svg{
    fill:var(--bs-light);
    width:150px;
    animation: tambaleo 3.5s linear infinite; /* Duración y tipo de animación */
}
#trta .rendimiento .svg-rendimiento:first-child svg{
    animation: tambaleo2 3.5s linear infinite; /* Duración y tipo de animación */
}

/* ---------------------------------- Rendimiento ---------------------------------- */
.rendimiento{
    padding:40px 0;
}
.rendimiento .trta-block{
    background:var(--z4);
    width:70%;
    height:120px;
    padding:20px;
    box-shadow: -7px 7px 7px rgb(0 0 0 / 10%);
    margin:auto;
    margin-bottom:40px;
}

.rendimiento .row{
    box-shadow: -7px 7px 7px rgb(0 0 0 / 10%);
    margin-bottom:20px;

}
.rendimiento .rend-text{
    background:var(--z4);
    padding:30px 40px;
}



/* ---------------------------------- como elegir capacidad de almacenamiento ---------------------------------- */
#capacidad-alm .img-vs {
    display:flex;
}
#capacidad-alm .img-vs img{
    width:300px;
    /* transform:scaleX(-1); */
}

.tambaleo-uno{
    animation: tambaleo 2.5s linear infinite; /* Duración y tipo de animación */
}
.tambaleo-dos{
    animation: tambaleo2 2.5s linear infinite; /* Duración y tipo de animación */

}
@keyframes tambaleo {
    0%, 100% {
      transform: translate(0, 0); /* Posición inicial */
    }
    25% {
      transform: translate(-5px, -5px); /* Mover hacia arriba y hacia la izquierda */
    }
    50% {
      transform: translate(5px, 5px); /* Mover hacia abajo y hacia la derecha */
    }
    75% {
      transform: translate(-5px, 5px); /* Mover hacia arriba y hacia la derecha */
    }
}

@keyframes tambaleo2 {
    0%, 100% {
      transform: translate(0, 0); /* Posición inicial */
    }
    25% {
        transform: translate(5px, 5px); /* Mover hacia abajo y hacia la derecha */
    }
    50% {
        transform: translate(-5px, -5px); /* Mover hacia arriba y hacia la izquierda */
    }
    75% {
        transform: translate(5px, -5px); /* Mover hacia abajo y hacia la  */

    }
}
#capacidad-alm .row {
    padding:50px 0;
}
#capacidad-alm .row .col-6 p{
    text-align:justify;
}

#capacidad-alm #carouselExampleIndicators, #slotm2 #carouselExampleIndicators2{
    width:100%;
    margin:auto;
}
#capacidad-alm #carouselExampleIndicators .carousel-inner, #slotm2 #carouselExampleIndicators2 .carousel-inner{
    width:80%;
    margin:auto;
}
.carousel-item .col-6{
    height:400px;
    padding:30px 40px;
    background:var(--z4);
}

.carousel-item .img-1{
    background:url(./../img/tipos_dispositivos.jpg);
    background-position:40%;
}
.carousel-item .img-2{
    background:url(./../img/uso_previsto.jpg);
    background-position-y:40%;
    background-size: cover;
}
.carousel-item .img-3{
    background:url(./../img/presupuesto.jpg);
    background-size: cover; 
}
.carousel-item .img-4{
    background:url(./../img/futuro.jpg);
}
.carousel-item .img-5{
    background:url(./../img/backup.jpg);
}
.carousel-item .img-6{
    background:url(./../img/compatibilidad.jpg);
    background-size:cover;
    background-position-y:40%;
}
/* ---------------------------------- Seguridad de Datos ---------------------------------- */

#seguridad-datos .img-seguridad-datos img{
    width:100%;
    filter:drop-shadow(none)
}

.etiqueta{
    background:var(--z4);
    width:70%;
    height:120px;
    padding:20px;
    box-shadow: -7px 7px 7px rgb(0 0 0 / 10%);
    margin:auto;
    margin-bottom:40px;
    margin-top:40px;
}


.myCard {
    background-color: transparent;
    width: 190px;
    height: 254px;
    perspective: 1000px;
}

.title {
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
}

.innerCard {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.myCard:hover .innerCard {
    transform: rotateY(180deg) scale(2); /* Añade esta línea para aumentar el ancho y alto */
}

.frontSide,
.backSide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    color: white;
    box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.frontSide,
.frontSide::before {
    background: linear-gradient(43deg, #FFA500 0%, #FF6347 46%, #FFD700 100%);
}

.backSide,
.backSide::before {
    background-image: linear-gradient(160deg, #FFA500 0%, #FF6347 100%);
}

.backSide {
    transform: rotateY(180deg);
}

.frontSide::before,
.backSide::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 110%;
    height: 110%;
    position: absolute;
    z-index: -1;
    border-radius: 1em;
    filter: blur(20px);
    animation: animateBright 5s linear infinite;
}

@keyframes animateBright {
    0% {
        opacity: 0.3;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}


/* Establece un tamaño de fuente para ul y li */
.backSide ul,
.backSide li {
    font-size: .54rem; /* Tamaño de fuente deseado */
    text-align:left;
    margin-left:-5px;
    margin-bottom:5px;
}

.myCard:hover .innerCard {
    transform: rotateY(180deg) scale(2);
}

.col-4 .myCard, .col-12 .myCard{
    margin:auto;
}

#seguridad-datos .col-4,#seguridad-datos .col-12{
    padding:65px 0;
}

/* ---------------------------------- Optimizacion ---------------------------------- */

#optimizacion .container{
    padding:20px 0;
}
.dos-columnas {
    margin-top:50px;
    column-count: 2; /* Divide en dos columnas */
    column-gap: 40px; /* Espacio entre columnas (ajusta según tus preferencias) */

    padding: 0; /* Quita el relleno predeterminado de la lista */
    padding-left:20px;
    list-style-type: none; /* Establece el tipo de marcador de lista (por ejemplo, disc) */
}

.dos-columnas li {
    margin-bottom: 40px; /* Espacio entre elementos (ajusta según tus preferencias) */

}

.dos-columnas li::before {
    content: ''; /* Elimina el contenido predeterminado del marcador */
    background-color: #FF6600;
    border:1px solid var(--bs-light);
    border-radius: 50%; /* Da forma de círculo al marcador */
    display: inline-block; /* Hace que el marcador sea parte del flujo de texto */
    width: 20px; /* Ajusta el tamaño del círculo según sea necesario */
    height: 20px; /* Ajusta el tamaño del círculo según sea necesario */
    margin-right: 15px; /* Añade un espacio entre el marcador y el texto */
    box-shadow: 0 0 10px #FF6600;
    animation: pulse-shadow 2s ease-in-out infinite; /* Repite la animación infinitamente */


}


/* ---------------------------------- SLOT M.2 ---------------------------------- */

.carousel-item .img-7{
    background:url(./../img/slotm2.jpg);
    background-size: cover;
}
.carousel-item .img-8{
    background:url(./../img/slotm2-3.jpg);
    background-size: cover;
    background-position-x: 40%;
}

/* ---------------------------------- Timeline ---------------------------------- */

#timeline{
    padding:80px 0;
}

.process-wrapper {
	margin:auto;
	max-width:1080px;
    padding:10px 0;
}

#progress-bar-container {
	position:relative;
	width:90%;
	margin:auto;
	height:100px;
	margin-top:65px;
}

#progress-bar-container ul {
	padding:0;
	margin:0;
	padding-top:15px;
	z-index:9999;
	position:absolute;
	width:100%;
	margin-top:-40px
}

#progress-bar-container li:before {
	content:" ";
	display:block;
	margin:auto;
	width:30px;
	height:30px;
	border-radius:50%;
	border:solid 2px var(--bs-light);
	transition:all ease 0.3s;
     
}

#progress-bar-container li.active:before, #progress-bar-container li:hover:before {
	border:solid 2px #fff;
    background:#FF6600;
	box-shadow: 0 0 15px #FF6600;
    /* animation: pulse-shadow 3s linear infinite;  */

}

#progress-bar-container li {
	list-style:none;
	float:left;
	width:16.666%; /* Cambiado del 20% al 16.666% para 6 elementos */
	text-align:center;
	color:#aaa;
	text-transform:uppercase;
	font-size:11px;
	cursor:pointer;
	font-weight:700;
	transition:all ease 0.2s;
	vertical-align:bottom;
	height:60px;
	position:relative;
}

#progress-bar-container li .step-inner {
	position:absolute;
	width:100%;
	bottom:0;
	font-size: 14px;
}

#progress-bar-container li.active, #progress-bar-container li:hover {
	color:var(--bs-light);
}

#progress-bar-container li:after {
	content:" ";
	display:block;
	width:6px;
	height:6px;
	background:#777;
	margin:auto;
	border:solid 7px #fff;
	border-radius:50%;
	margin-top:40px;
	box-shadow:0 2px 13px -1px rgba(0,0,0,0.3);
	transition:all ease 0.2s;
}

#progress-bar-container li:hover:after {
	background:#555;
}

#progress-bar-container li.active:after {
	background:#FF6600;
}

#progress-bar-container #line {
	width:80%;
	margin:auto;
	background: #eee;
	height:6px;
	position:absolute;
	left:10%;
	top:57px;
	z-index:1;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-bar-container #line-progress {
	content:" ";
	width:0%; /* Cambiado del 20% al 16.666% para 6 elementos */
	height:100%;
	/* background: #207893;	  */
	background: linear-gradient(to right, #FF6600 0%,#ff9000 100%); 
    /* background:#FF6600; */
    box-shadow: 0 0 15px #FF6600;
	position:absolute;
	z-index:2;
	border-radius:50px;
	transition:all ease 0.9s;
}


#progress-content-section {
	width:90%;
	margin: auto;
	background: var(--z4);
	border-radius: 4px;
}

#progress-content-section .section-content {
	padding:30px 40px;
	text-align:center;
}

#progress-content-section .section-content h2 {
	font-size:20px;
	text-transform:uppercase;
	/* color:#333; */
	letter-spacing:1px;
}

#progress-content-section .section-content p {
	font-size:1.05rem;
	line-height:1.8em;
	/* color:#777; */
}

#progress-content-section .section-content {
	display:none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode:forwards;
	transform:translateY(15px);
	opacity:0;
}

#progress-content-section .section-content.active {
	display:block;
}

@keyframes FadeInUp {
	0% {
		transform:translateY(15px);
		opacity:0;
	}
	
	100% {
		transform:translateY(0px);
		opacity:1;
	}
}

/* ---------------------------------- Dispositivo SSD NVMe ---------------------------------- */

#nvme .etiqueta{
    width:650px;
    padding:30px 40px;
    height:auto;
    text-align:justify;
    margin:30px 0;
    line-height:1.8rem;
}

#nvme .etq-1{
    margin-left:13%;
}
/* #nvme .etq-2{
    margin-left:5%;
} */
#nvme .etq-3{
    margin-left:13%;
}
#nvme .nvme-img {
    display:flex;
    align-items:center;
}
#nvme .nvme-img img{
    width:550px;
    animation: tambaleo 2.5s linear infinite;

}


.subrayado{      
    padding:2px;
    background: #FF6600;
    background: radial-gradient(circle, #FF6600 0%, rgba(2,0,36,0) 100%);
    filter: drop-shadow(0 0 15px #FF6600);
    margin:auto;
    margin-bottom:50px;
    opacity:0;
    /* animation: fade-sub 2s ease; */
    /* animation-delay:.4s; */
}

@keyframes fade-sub{
    0%{
        width:0;
        opacity:1;

    }
    100%{
        width:100%;
        opacity:1;
    }
}

/* ---------------------------------- Footer ---------------------------------- */
footer{
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
}
footer h1{
    color:#FF6600;
    filter: drop-shadow(0 0 10px #FF6600); 
    font-size:10rem;
    text-align:center;
    animation: pulse-shadow 3s ease-in-out infinite; /* Repite la animación infinitamente */
}