@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

/* === AREA KITS (scoped) === */
.area-kits {
  padding: 0 0 64px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .area-kits { padding-top: 20px; }
}
.area-kits *,
.area-kits *::before,
.area-kits *::after {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.area-kits img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* Container */
.area-kits > .container {
  max-width: 1210px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Grid dos kits */
.area-kits > .container > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) {
  .area-kits > .container > ul {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .area-kits > .container > ul .best-option { grid-row: 1; }
  .area-kits > .container > ul .k3 { grid-row: 2; }
}

/* Card wrapper */
.area-kits .kit-option {
  border: 1px solid #c1121f;
  border-radius: 12px;
  list-style: none;
  overflow: hidden;
}
.area-kits .kit-option.best-option {
  border-color: #ff6a00;
}

/* Link card */
.area-kits .kit-option > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.area-kits .kit-option.best-option > a {
  border-color: #ffe1cc;
  background: #fbf5f1;
}
.area-kits .kit-option > a:hover {
  transform: scale(1.03);
}

/* Header */
.area-kits .kit-option .header {
  font-size: 1.35rem;
  font-weight: 700;
  width: 100%;
  color: #fff;
  padding: 8px 6px;
  line-height: 1.2;
  background: #c1121f;
  text-align: center;
}

/* Main */
.area-kits .kit-option .main {
  padding: 16px 12px 0;
  width: 100%;
  text-align: center;
}
.area-kits .kit-option .main strong {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: #0e0d11;
  margin-bottom: 4px;
}
.area-kits .kit-option .main .days {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #5b5b5b;
}

/* Area img */
.area-kits .kit-option .main .area-img {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px;
  background: #fbf5f1;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area-kits .kit-option .main .area-img img {
  height: 180px;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .area-kits .kit-option .main .area-img img {
    height: auto;
    max-height: 180px;
  }
}

/* Save badge */
.area-kits .kit-option .main .area-img .save {
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(255, 0, 0, 0.75);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.area-kits .kit-option .main .area-img .save b {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.1;
}
.area-kits .kit-option .main .area-img .save small {
  color: #fff;
  font-size: 10px;
}
@media (max-width: 900px) {
  .area-kits .kit-option .main .area-img .save {
    width: 60px;
    height: 60px;
  }
}

/* Footer */
.area-kits .kit-option .footer {
  padding: 12px 16px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Price */
.area-kits .kit-option .footer .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #5b5b5b;
}
.area-kits .kit-option .footer .price strong {
  color: #0e0d11;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
}
.area-kits .kit-option .footer .price strong small {
  font-size: 1rem;
  color: currentColor;
}
@media (max-width: 900px) {
  .area-kits .kit-option .footer .price strong {
    font-size: 3rem;
  }
}

/* Checklist */
.area-kits .kit-option .footer > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  width: 100%;
}
.area-kits .kit-option .footer > ul > li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b5b5b;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
  padding-left: 8px;
}
.area-kits .kit-option .footer > ul > li::before {
  content: url(../img/checkverde.svg);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.area-kits .kit-option .footer > ul > li.orrivi::before {
  content: url(../img/ruim.svg);
}
.area-kits .kit-option .footer > ul > li.morromeno::before {
  content: url(../img/chekamarelo.svg);
}

/* Button */
.area-kits .kit-option .footer .button {
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
  display: block;
  width: 100%;
}
.area-kits .kit-option .footer .button img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.area-kits .kit-option .footer .cursor {
  position: absolute;
  width: 50px;
  transform: rotate(-20deg);
  right: 0;
  z-index: 10;
  top: 16px;
  animation: scrollClick 2.5s ease-in-out infinite;
}
@keyframes scrollClick {
  0%   { transform: translateY(0) rotate(-20deg) scale(1); }
  20%  { transform: translateY(10px) rotate(-20deg) scale(1); }
  40%  { transform: translateY(10px) rotate(-20deg) scale(0.95); }
  50%  { transform: translateY(10px) rotate(-20deg) scale(1); }
  70%  { transform: translateY(0) rotate(-20deg) scale(1); }
  100% { transform: translateY(0) rotate(-20deg) scale(1); }
}
@media (max-width: 900px) {
  .area-kits .kit-option .footer .cursor {
    width: 30px;
  }
}

/* Bandeiras */
.area-kits .kit-option .footer .bandeiras {
  width: 70%;
  max-width: 280px;
  margin: 0 auto 10px;
  display: block;
}
@media (max-width: 900px) {
  .area-kits .kit-option .footer .bandeiras {
    width: 90%;
  }
}

/* Valores */
.area-kits .kit-option .footer .valores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.area-kits .kit-option .footer .valores span,
.area-kits .kit-option .footer .valores s {
  font-size: 1.3rem;
  color: #1b1311;
}
.area-kits .kit-option .footer .valores small {
  color: currentColor;
  font-size: 0.75rem;
}
.area-kits .kit-option .footer .valores s {
  text-decoration: line-through;
  text-decoration-color: red;
}

/* === SELOS === */
.area-kits > .selos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0 0;
  list-style: none;
  margin: 0 auto;
  max-width: 1210px;
  width: 96%;
  gap: 16px;
}
.area-kits > .selos li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #3f5f6c;
  list-style: none;
}
.area-kits > .selos li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .area-kits > .selos {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
  }
  .area-kits > .selos li {
    font-size: 0.875rem;
    justify-content: flex-start;
  }
}
@media (max-width: 400px) {
  .area-kits > .selos {
    grid-template-columns: 1fr;
  }
}
