/* CAROUSEL DE IMAGENES */

.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 400px;
  background: #000;
}

.carousel-slide {
  display: none;
  height: 100%;
}

.carousel-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide.active{
    display: block;
}

.carousel-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {left: 10px;}
.carousel-btn.next {right: 10px;}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.carousel-dots .dot{
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background-color: #fff;
}

/* Sección Corporativa */
.corporativo {
  background-color: #e9f1f6;
  color: #002b45;
}

.servicios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.servicio {
  background-color: #ffffff;
  padding: 20px;
  flex: 1 1 250px;
  border-left: 5px solid #0077b6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Sección Gamer */
.gaming {
  background: linear-gradient(to right, #1a1a1a, #2c003e);
  color: #f0f0f0;
  text-align: center;
}
/*
.pcs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.pc {
  background-color: #222;
  border: 2px solid #ff004f;
  padding: 20px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}

.pc:hover {
  transform: scale(1.05);
}

.gaming .img_producto {
  width: 100%;
  height: 300px;  ajusta este valor según el diseño que quieras 
  object-fit: contain;
  border-radius: 8px;  opcional 
  overflow: hidden;
}

.gaming .boton-pc{
  background-color: #00c853;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

*/
.pcs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card-pc{
  display: 1 1 250px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  max-width: 400px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  box-shadow: 0 0 8px rgb(0, 0, 0 / 0.1);
}

.img-container{
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 8px; 
  overflow: hidden;
}

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

.nombre-producto{
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.precios{
  margin-bottom: 10px;
}

.precio-oferta{
  font-size: 1.3rem;
  font-weight: 700;
  color: #e60000;
  margin-right: 12px;
}

.precio-original{
  font-size: 1rem;
  color: #888;
  text-decoration: line-through;
}

.sku{
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 16px;
}

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

.espec-item h4{
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 4px;
  font-weight: 700;
}

.espec-item p{
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.ver-mas-pcs {
  background-color: #0056d2;        /* Azul más moderno */
  border: none;
  margin-top: 15px;
  padding: 12px 24px;               /* Espaciado interno */
  color: #fff;
  font-size: 18px;
  font-weight: 500;                 /* Texto un poco más fuerte */
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ver-mas-pcs:hover {
  background-color: #003fa3;        /* Más oscuro al pasar el mouse */
  transform: translateY(-2px);      /* Ligero levantamiento */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Seccion de tambien pudes encotrar en */
.titulo-empresas{
  text-align: center;
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tambien-en{
  display: flex;
  justify-content: center;
  background-color: #1a1a1a;
  gap: 10px;
  border-top: 2px solid #2d2d2d;
  border-bottom: 2px solid #2d2d2d;
}

.item-empresa{
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 10px;
  /*background-color: #2c2c2c;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  color: #f5f5f5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); */
  transition: transform 0.3 ease, background 0.3 ease;
  min-width: 80px;
  cursor: pointer;
}

.item-empresa img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  width: 150px;
}