/**************************************************************************************************************/
/****************** FONDO *************************************************************************************/
/**************************************************************************************************************/
/* Fondo general del menú - ARCHIVO (WEBP)*********************************************************************/
#bg-image {
  position: fixed;                                               /* Fijo para que siempre se mantenga visible */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;                                                 /* Ocupa toda la pantalla */
  background-image: url("../FOTOS_FONDOS/servicios_fondo.webp"); /* Ruta de tu imagen */
  background-size: cover;                                        /* Abarca toda el área sin distorsión */
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* Envía el fondo detrás de todo */
}

/*************************************************************************************************************/



/************************************************************************/
/******************** DASHBOARD MODERNO SIN ANIMACIONES *****************/
/************************************************************************/

.dashboard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to right, #0a0a0a, #111827, #0a0a0a);
  border-bottom: 2px solid #00ccff;
  box-shadow: 0 4px 25px rgba(0, 204, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

/* Logo circular */
.dashboard-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00ccff;
}

/* Menú principal */
.dashboard-menu {
  display: flex;
  gap: 40px;
}

/* Enlaces del menú */
.dashboard-menu a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* Al pasar el mouse */
.dashboard-menu a:hover {
  color: #00ccff;
  border-color: #00ccff;
}

/* Al seleccionar o estar activo */
.dashboard-menu a:active,
.dashboard-menu a.active {
  color: #ffffff;
  border-color: #00ccff;
  font-weight: 600;
}

/* Diseño responsive */
@media (max-width: 768px) {
  .dashboard {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    text-align: center;
  }

  .dashboard-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .dashboard-menu {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .dashboard-menu a {
    font-size: 1rem;
  }
}

/************************************************************************/



/****************************************************************/
/*      CONTENEDOR GENERAL DE LOS CUADROS CAMUFLAJE Y CUENTA    */
/****************************************************************/
.contenedor-ventas {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 200px;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

/* ------------------------------------------------------ */
/*            CUADRO GRANDE TRANSPARENTE                  */
/* ------------------------------------------------------ */
.ventana-ventas {
    width: 90%;
    max-width: 1050px;

    background: rgba(0, 0, 0, 0.70);
    border-radius: 20px;
    padding: 45px 40px;
    text-align: center;

    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.55),
        inset 0 0 12px rgba(255, 255, 255, 0.04);

    color: #ffffff;
}

/* ------------------------------------------------------ */
/*                TÍTULO PRINCIPAL: VENTAS                */
/* ------------------------------------------------------ */
.titulo-ventas {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;

    color: #ffffff;
    text-transform: uppercase;
    -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.35);
}

/* ------------------------------------------------------ */
/*                TEXTO DE DESCRIPCIÓN                    */
/* ------------------------------------------------------ */
.descripcion-ventas {
    font-size: 1.1rem;
    color: #d6d9df;
    margin-bottom: 35px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* ------------------------------------------------------ */
/*      CONTENEDOR QUE ORGANIZA LOS DOS CUADROS          */
/* ------------------------------------------------------ */
.contenedor-items {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: stretch;
}

/* ------------------------------------------------------ */
/*               CUADRO INDIVIDUAL (ITEM)                */
/* ------------------------------------------------------ */
.item-venta {
    width: 50%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;

    border: 1.4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.45),
        inset 0 0 10px rgba(255, 255, 255, 0.02);

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ------------------------------------------------------ */
/*              IMAGEN DEL SERVICIO                       */
/* ------------------------------------------------------ */
.item-imagen {
    width: 100%;

    /* altura adaptable y perfecta en todas las pantallas */
    aspect-ratio: 16 / 9;

    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;

    border: 2px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.40),
        0 6px 16px rgba(0, 0, 0, 0.45);
}

/* IMAGEN AJUSTADA CORRECTAMENTE */
.item-imagen img {
    width: 100%;
    height: 100%;

    /* Mantiene toda la imagen sin recortarla */
    object-fit: contain;

    /* Fondo elegante detrás si la imagen no llena el cuadro */
    background-color: #0e0e0e;
}

/* ------------------------------------------------------ */
/*                TÍTULO DE CADA CUADRO                   */
/* ------------------------------------------------------ */
.item-titulo {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: 0.6px;
}

/* ------------------------------------------------------ */
/*                BOTÓN PROFESIONAL                       */
/* ------------------------------------------------------ */
.btn-detallado {
    width: 85%;
    max-width: 270px;
    padding: 13px 20px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 12px;

    background: linear-gradient(180deg, #2a9dff, #006bdb);
    border: 1.6px solid rgba(0, 0, 0, 0.35);
    color: #ffffff;
    letter-spacing: 1px;
    cursor: pointer;

    box-shadow:
        0 6px 0 rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.06);

    transition: transform 0.15s ease, box-shadow 0.15s ease;

    /* ---------------------------------------------------------------- */
    display: inline-block;  /* permite que el <a> tenga tamaño de botón */
    text-align: center;
    text-decoration: none; /* elimina subrayado */
    /* ---------------------------------------------------------------- */
}

/* EFECTO AL PRESIONAR */
.btn-detallado:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

/* ------------------------------------------------------ */
/*               RESPONSIVE PARA CELULARES                */
/* ------------------------------------------------------ */
@media (max-width: 750px) {

    .ventana-ventas {
        padding: 32px 22px;
    }

    .contenedor-items {
        flex-direction: column;
        gap: 22px;
    }

    .item-venta {
        width: 100%;
    }

    .titulo-ventas {
        font-size: 2rem;
    }
}
/************************************************************************/



/************************************************************************/
/******************* FOOTER HORIZONTAL MODERNO Y FLUIDO *****************/
/************************************************************************/

.footer {
  width: 100%;
  background: linear-gradient(90deg, #0a0a12, #111122, #0a0a12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 50px;
  position: relative;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Imagen del logo */
.footer-logo {
  height: 160px;
  filter: drop-shadow(0 0 10px #00e1ff);
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 15px #00e1ff);
}

/* Contenedor de enlaces */
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Enlaces de redes */
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffffcc;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Ícono */
.social-link i {
  font-size: 1.4rem;
}

/* Efectos por red social (solo color al hover) */
.youtube:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}

.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
}

.instagram:hover {
  color: #ff69b4;
  border-color: #ff69b4;
  background: rgba(255, 105, 180, 0.1);
}

.twitch:hover {
  color: #9146ff;
  border-color: #9146ff;
  background: rgba(145, 70, 255, 0.1);
}

.tiktok:hover {
  color: #00fff7;
  border-color: #00fff7;
  background: rgba(0, 255, 247, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-right {
    flex-direction: column;
    gap: 12px;
  }

  .social-link {
    width: 80%;
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 25px;
  }
}

/************************************************************************/