/* === Showcase === */
.showcase-container,
.card-container,
.card-container1,
.card-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  gap: 40px;
}

.card-container1 {
  background-color: #95d68d;
}

.card-container {
  background-color: #000;
}

#showcase1,
#showcase2 {
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  text-align: center;
  position: relative;
  color: white;
  backdrop-filter: blur(2px);
}

#showcase1 {
  background-color: rgba(180, 20, 0, 0.5);
}

#showcase2 {
  background: #c0c0c0;
}

.showcase::after {
  content: '';
  height: 80vh;
  width: 100%;
  background: url("../images/bg_6000_1536x868.png") center/cover no-repeat;
  display: block;
  filter: blur(10px);
  transition: all 1000ms;
}

.showcase:hover::after,
.showcase:hover .content {
  filter: blur(0);
}

.content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  margin-left: -145px;
  width: 300px;
  height: 350px;
  text-align: center;
  transition: all 1000ms;
}

.content .logo {
  height: 180px;
  width: 180px;
}

.content .title {
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px blue;
  margin-top: 1rem;
}

.content .text {
  line-height: 1.7;
  margin-top: 1rem;
}

/* === Sections === */
section,
.page-section {
  padding: 4rem 2rem;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 25px;
  position: relative;
}

.page-section {
  background: linear-gradient(rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0.47)) center/cover no-repeat;
  margin: 20px;
}

.page-section h2 {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.page-section p {
  font-size: 1.5rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
}

.dealer-bg { background-image: url('../images/DealerImage.png'); }
.geopro-bg { background-image: url('../images/GeoProImage.png'); }
.product-bg { background-image: url('../images/ProductImage.png'); }

.section-container {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(2px);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section,
.contact-cart {
  text-align: center;
  border-radius: 20px;
  padding: 40px;
  margin: auto;
  backdrop-filter: blur(2px);
}

.contact-section {
  background-color: rgba(0, 255, 255, 0.2);
}

.contact-cart {
  background-color: rgba(40, 40, 40, 0.2);
}

#contact a:link { color: #3b81d1; }
#contact a:visited { color: green; }
#contact a:hover { color: red; }
#contact a:active { color: yellow; }

.card {
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.orange-card,
.img-card {
  background-color: #cae6cf;
  color: black;
}

.orange-card { width: 40%; }
.img-card { width: 50%; }

.lineal {
  background: linear-gradient(160deg, lightgreen, lightblue);
  color: black;
}

.lineal1 {
  background: linear-gradient(90deg, #e6e6e6 0%, #ffffff 25%, #bfbfbf 50%, #ffffff 75%, #e6e6e6 100%);
}

.lineal2 {
  background: linear-gradient(160deg, lightgreen, lightblue);
  color: darkgreen;
}

.circle-div {
  background-color: #314963;
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  position: fixed;
  bottom: 21px;
  right: 25px;
  z-index: 1000;
  cursor: pointer;
}

.rect-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rectangle1,
.rectangle2 {
  width: 300px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 15px;
}

.float-container {
  border: 3px solid #fff;
  padding: 20px;
}

.float-child {
  width: 50%;
  float: left;
  padding: 20px;
  border: 2px solid blue;
}



