body {
  background-color: #000000;
  color: #ffffff;
      user-select: none;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh;
  background-color: #000;
  text-align: center;
}

.logo-container {
  margin-top: 20px;
  margin-bottom: 40px;
}

.image-header {
  width: 170px;
  height: auto;
}

.text-container {
  color: #ffffff;
}

.text-container h1 {
  margin: 0;
  font-size: 2rem;
}

.card-deck .card {
  perspective: 1000px;
  margin-bottom: 30px;
  width: 100%;
  height: 300px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 0.25rem;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  border-radius: 0.25rem;
}

.card-front {
  background-color: #ffffff;
  z-index: 2;
  color: #000000;
}

.card-back {
  background-color: #ffc451;
  color: #ffffff;
  transform: rotateY(180deg);
  z-index: 1;
}

.card:hover .card-front,
.card:hover .card-back {
  height: 300px;
}

.card .icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.card-back .icon {
  font-size: 30px;
}

.card-text {
  color: black;
  margin-bottom: 5px; /* Reduce el espacio entre los párrafos */
}


.card-title {
  color: brown;
  font-weight: 900;
}

.price{
    margin-top: 50px;
}
.implementacion {
  font-size: 12px;
  color: red;
  font-weight: bold;
  text-align: inherit;
  margin-top: -10px;
}
/*************section title**********/




.section-title {
  margin: 0;
  margin: 0;
   padding-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: white;
}
.sectores{
    font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .sectores {
    font-size: 16px;
  }
}



/*******cuarta targeta********/

.card-image {
  margin-left: 50px;
    width: 200px; 
    height: 150px; 
    object-fit: cover; 
    margin-bottom: 10px; 
    display: block; 
}


/******oferta******/
.imagen-oferta {
    width: 84px;
    height: 84px;
    vertical-align: middle;
}

.btn-text {
  color: white;
  /* o el color que tú quieras */
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/****************

.btn-text:hover {
  color: #000;
  text-decoration: none;
}

********************/

/************************************/
/*************boton arriba**********/
/**************************************/

.toupbutton {
  visibility: hidden;
  position: fixed;
  z-index: 4;
  left: 2rem;
  bottom: 10px;
  width: 48px;
  height: 48px;
  transition: all 0.5s ease;
  transform: scale(0);
  opacity: 0;
  background: #ffc451;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toupbutton i {
  font-size: 24px;
  color: #000;
  /* Cambia el color del ícono */
}

.toupbutton.upIsActive {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  cursor: pointer;
}