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

body {
    background-color: #1a1a1a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ededed;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: black;
    box-shadow: 0px 5px 15px black;
    padding: 10px 30px;
}

.elementosheader {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
    max-width: 1300px;
    align-items: center;
    margin: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #ededed;
    text-decoration: none;
}

nav a:hover {
    color: #ff3b3b;
}

.seccionmain {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    margin: auto;
    padding: 97px 40px;
}

.seccionmainizquierda h1 {
    font-size: 90px;
    margin-bottom: 10px;
    line-height: 1.2em;
}

.rotador {
    display: inline-block;
    vertical-align: bottom;
    height: 1.2em;
    overflow: hidden;
    color: #ff3b3b;
}

.palabrasrotador {
    display: flex;
    flex-direction: column;
    animation: subir 15s infinite;
    line-height: 1.2em;
}

#botonconstruir {
    margin-top: 20px;
    box-shadow: 0 0 20px #ff0000;
}

@keyframes subir {
    0%, 10%   { transform: translateY(0%); }
    20%, 30%  { transform: translateY(-20%); }
    40%, 50%  { transform: translateY(-40.8%); }
    60%, 70%  { transform: translateY(-61%); }
    80%, 100%  { transform: translateY(-81%); }
}

.seccionmain p {
    font-size: 25px;
}

.botonconstruir {
    text-decoration: none;
}

.marcas {
    background-color: #121212;
    overflow: hidden;
}

.slidermarcas {
    display: flex;
    gap: 48px;
    animation: slider 60s linear infinite
}

.slidermarcas img {
    height: 100px;
    filter: grayscale(100%)
}

.slidermarcas img:hover {
    filter: none;
}

@keyframes slider {
    from {transform: translateX(0);}
    to {transform: translateX(-100%);}
}

.guiacomponentes {
    padding-top: 135px;
    padding-left: 100px;
    padding-right: 100px;
    background: linear-gradient(180deg, #121212 0%, #420000 400%);
}

.guiacomponentes h1{
    font-size: 60px;
    text-shadow: 0 0 50px #810202;
}
.guiacomponentes h2 {
    font-size: 30px;
}
.carousel-inner {
    padding-left: 100px;
    padding-right: 100px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;              
}

.carousel .carousel-item{
    transition: transform .5s ease-in-out;
}

.textocomponente { 
    width: 40%;
    color: #ededed; 
}

.textocomponente h2 {
    color: #ffffff;
    text-shadow: 0 0 40px #ff3b3b77;
}

.textocomponente p {
    color: #ededed;
    display: block;
    column-count: 1;
}

.yotroscomponentes {
    font-style: italic;
}

.textossd {
    font-style: italic;
}

.imgcomponente { 
    width: 700px;
}
.botonleermas {
    font-weight: bolder;
    background-color: transparent;
    border: 3px solid #ff0000;
    color: #ff0000;
    padding: 8px 20px;
    border-radius: 5px;
}

.botonleermas:hover {
    background-color: #ff0000;
    color: #000000;
}

.textocomponente .subtitulocomponente {
    margin-bottom: 10px;
    margin-bottom: 25px;
}

.textodestacado {
    font-weight: bold;
    text-shadow: 0 0 20px #ff0000;
}

.eningles {
    font-style: italic;
}

p.tipusado {
    color: rgb(0, 255, 0);
}

.gpunvidiatexto {
    font-weight: bold;
    text-shadow: 0 0 30px rgb(0, 255, 0);
}

.tablaclasificacion {
    padding-top: 135px;
    padding-left: 100px;
    padding-right: 100px;
    background: linear-gradient(360deg, #121212 0%, #420000 400%);
}
.tablaclasificacion h1 {
    font-size: 60px;
    text-shadow: 0 0 50px #810202
}

.tablaclasificacion h2 {
    font-size: 30px;
}

.h2chico {
    font-size: 15px;
}

.contenedorarmados {
    padding-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

.armado {
    width: 800px;
    height: 740px;
    background-color: #121212;
    border-radius: 15px;
    padding: 20px;
}
.armado a {
    text-decoration: none;
}

.armado a {
    color: #ff3b3b;
}


.armado img {
    display: block;
    margin: auto;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.armado p {
    color: #D3D3D3;
}

.armado h3 {
    color: #ededed;
    text-shadow: 0 0 2px #ededed;
}

.armadoprimerpuesto {
    transform: translateY(-25px);
    border: 3px solid #ffd700;
    box-shadow:0 0 25px #ffd700;
}

.armadosegundopuesto {
    border: 3px solid #C0C0C0;
    box-shadow:0 0 15px #C0C0C0;
}

.armadotercerpuesto {
    border: 3px solid #ce8946;
    box-shadow:0 0 15px #ce8946;
}

.precioanterior {
    text-decoration: line-through;
}

.linkimportante {
    text-decoration: none;
    color: #ededed;
    font-weight: bold;
    text-shadow: 0 0 2px #ededed;
}

.comoarmopc {
    padding: 150px 100px 100px;
    padding-bottom: 150px;
    background: linear-gradient(180deg, #121212 0%, #420000 400%);
}

.comoarmopc h1 {
    font-size: 60px;
    text-shadow: 0 0 50px #810202;
}

.comoarmopc h2 {
    font-size: 30px;
    margin-bottom: 70px;
}

.contenedorcomoarmopc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.textocomoarmopc {
    width: 50%;
}
.videocomoarmopc iframe {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

.tipusado {
    color: rgb(0, 255, 0);
}

.sostenibilidad {
    padding: 135px 100px 100px;
    color: #ededed;
    background: linear-gradient(360deg, rgb(0, 54, 0) 25%, #1a1a1a 99%);
}

.sostenibilidad h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.sostenibilidad h2 {
    font-size: 28px;
    color: #ededed;
    margin-bottom: 20px;
}

.sostenibilidad h3 {
    text-shadow: 0 0 30px rgb(0, 138, 0);
}

.sostenibilidadcontenedor {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.sostenibilidadtexto {
    width: 55%;
    line-height: 1.6;
}

.sostenibilidadtexto ul {
    list-style-type: circle;
    margin-top: 20px;
    margin-left: 20px;
    color: #ededed;
}

.verde {
    color: rgb(0, 231, 0);
}

.sostenibilidadimg {
    width: 50%;
    position: relative;
}

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

.foro {
    position: relative;
    height: 900px;
    background-image: url("imagenes/extras/foro2.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.forocontenido {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ededed;
}

.forocontenido h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.forocontenido h2 {
    font-size: 26px;
    margin-bottom: 40px;
    color: #bfbfbf;
    max-width: 900px;
}

.boton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff3b3b;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.7s ease;
}

.boton:hover {
    background-color: #fa5b5b;
}

.forocontenido p {
    position: absolute;
    bottom: 0px;    
}