@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;500;700;800;900;1000&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
}

body {
  background-color: #181a1f;
  padding: 0px 20px;
}

.container {
  padding: 10px 0px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.parent {
  height: 400px;
  width: 300px;
  padding: 20px;
  perspective: 1000px;
  cursor: pointer;
}

.card {
  padding-top: 100px;
  transform-style: preserve-3d;
  background-image: url("https://www07.abb.com/images/librariesprovider84/home-page/sky-essence-blanco-web4baee2f2c1f463c09537ff0000433538.png?sfvrsn=755a810a_1&CropWidth=292&CropHeight=292&Quality=High&CropX=0&CropY=0&Width=292&Height=292&Method=CropToFixedAreaCropToFixedAreaArguments&Key=841546d91545f9aed494e1d1cbcbacb4");
  background-position: center center;
  width: 100%;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
}
.card:hover {
  background-position: 80% 20%;
  transform: rotate3d(0.5, 1, 0, 30deg);
}

.content-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.811);
  border-radius: 0px 0px 10px 10px;
  box-shadow: rgba(0, 115, 255, 0.925) 0px 20px 50px -25px;
  transition: all 0.5s ease-in-out;
  padding: 50px 25px 25px 25px;
  transform-style: preserve-3d;
}
.content-box .card-title {
  color: white;
  font-size: 25px;
  font-weight: 900;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}
.content-box .card-title:hover {
  transform: translate3d(0px, 0px, 50px);
}
.content-box .card-content {
  padding-top: 15px;
  font-size: 12px;
  color: #b9b9b9;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}
.content-box .card-content:hover {
  transform: translate3d(0px, 0px, 50px);
}
.content-box .see-more {
  display: block;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  color: #0088ff;
  padding-top: 15px;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}
.content-box .see-more:hover {
  transform: translate3d(0px, 0px, 50px);
}

.date-box {
  position: absolute;
  top: 75px;
  left: 25px;
  height: 60px;
  width: 60px;
  background-color: black;
  border-radius: 10px;
  padding: 10px;
  box-shadow: #0066ff 0px 20px 60px 0px, #00c8ff 0px 18px 36px -18px;
  transform: translate3d(0px, 0px, 50px);
}
.date-box span {
  display: block;
  text-align: center;
}
.date-box .month {
  color: white;
  font-size: 11px;
  font-weight: 700;
}
.date-box .date {
  font-size: 20px;
  font-weight: 900;
  color: #0088ff;
}

.card2 {
  filter: hue-rotate(150deg);
}

.card3 {
  filter: hue-rotate(300deg);
}

.card4 {
  filter: hue-rotate(9deg);
}
a:link, a:visited, a:active {
  text-decoration:none;
  font-size: 20px;
  font-weight: 900;
  color: #0088ff;
}

.button-container {
  width: 100%; /* Ocupa el ancho completo */
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical (si es necesario) */
  margin-bottom: 20px;
}

.button-3d {
  background-color: rgba(0, 0, 0, 0.811);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: rgba(0, 115, 255, 0.925) 10px 0px 70px -5px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

.button-3d:hover {
  transform: translateY(-10px);
}

/* css boton movil */
.button-3d.mobile-presupuesto-btn {
  display: none; /* Oculto por defecto */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Asegura que el botón esté sobre otros elementos */
}


@media (max-width: 768px) { /* Ajusta el valor según tu criterio para dispositivos móviles */
  .button-3d.mobile-presupuesto-btn {
    display: block;
  }
	.button-container{
    display: none;
  }
}
