* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    linear-gradient(rgba(10, 0, 0, 0.92), rgba(10, 0, 0, 0.96)),
    url("../img/bg.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  font-family: Arial, Helvetica, sans-serif;

  color: white;
}

/* =========================
   SECTION
========================= */

.joias-section {
  width: 100%;
  min-height: 100vh;

  padding:
    140px
    40px
    80px;
}

/* =========================
   TITULO
========================= */

.joias-title {
  text-align: center;

  font-size: 48px;

  color: #ff4d4d;

  margin-bottom: 60px;

  letter-spacing: 4px;

  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.7),
    0 0 25px rgba(255, 0, 0, 0.5);
}

/* =========================
   CONTAINER
========================= */

.joias-container {
  width: 100%;
  max-width: 1500px;

  margin: auto;

  display: flex;
  flex-direction: column;

  gap: 35px;
}

/* =========================
   CARD
========================= */

.joia-card {

  display: flex;
  align-items: center;

  gap: 40px;

  background:
    linear-gradient(
      135deg,
      rgba(40, 0, 0, 0.92),
      rgba(15, 0, 0, 0.95)
    );

  border: 1px solid rgba(255, 70, 70, 0.4);

  border-radius: 18px;

  padding: 35px;

  min-height: 260px;

  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.18),
    0 0 50px rgba(0, 0, 0, 0.5);

  transition: 0.3s;
}

.joia-card:hover {

  transform: translateY(-4px);

  border-color: rgba(255, 80, 80, 0.8);

  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.35),
    0 0 60px rgba(0, 0, 0, 0.6);
}

/* =========================
   IMAGEM
========================= */

.joia-image {
  min-width: 220px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.joia-image img {

  width: 200px;
  height: 200px;

  object-fit: contain;

  transition: 0.3s;
}

.joia-card:hover img {
  transform: scale(1.06);
}

/* =========================
   TEXTO
========================= */

.joia-info {
  flex: 1;
}

.joia-info h2 {

  font-size: 34px;

  color: #ff6b6b;

  margin-bottom: 20px;

  text-shadow:
    0 0 12px rgba(255, 0, 0, 0.5);
}

.joia-info p {

  font-size: 18px;

  line-height: 1.9;

  color: #e6e6e6;

  max-width: 950px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

  .joia-card {

    flex-direction: column;

    text-align: center;

    padding: 30px 20px;
  }

  .joia-image {
    min-width: auto;
  }

  .joia-image img {

    width: 170px;
    height: 170px;
  }

  .joia-info h2 {
    font-size: 28px;
  }

  .joia-info p {
    font-size: 16px;
  }

}