
/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-section { background: var(--clr-bg); }

.hero-slide {
  width: 100%;
  height: clamp(280px, 44vw, 520px);
  background: #c8c8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  background: rgba(255,255,255,.55);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
}

/* Carousel controls — dark circular buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-size: 50%;
  background-color: rgba(0,0,0,.55);
  border-radius: 50%;
  padding: 0.4rem;
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255,255,255,.6);
  transition: background-color .2s;
}
.carousel-indicators .active { background-color: var(--clr-white); }

/* -------- frase rotativa -------- */
.frase-wrapper {
    overflow: hidden;
    width: 100%;
    background: var(--clr-red);
    padding: 6px 0;
  }

  .frase-rotativa {
    display: flex;
    width: fit-content;
    animation: frase-scroll 30s linear infinite;
  }

  .frase-track {
    display: flex;
  }

  .frase-track p {
    margin: 0 120px;
    color: white;
    font-size: 16px;
    white-space: nowrap;
  }

  @keyframes frase-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

/* ============================================================
   SECTION WHY
   ============================================================ */
.sec-why { background: var(--clr-bg); }
.sec-why .sec-sub { color: var(--clr-text-mid); }

.feat-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--clr-yellow);
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--clr-red);
  color: var(--clr-white);
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feat-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-red);
  margin-bottom: 0.5rem;
}

.feat-body {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   SECTION PRODUCTS
   ============================================================ */
.sec-products { background: var(--clr-white); }

.prod-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-img-wrap { flex-shrink: 0; }

.prod-info { padding-top: 1rem; }

.prod-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-red);
  margin-bottom: 0.35rem;
}

.prod-body {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.prod-card img{
  border-radius: 10px;
  display: block;
  width: 400;
}

/* Veja mais button */
.btn-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  transition: background .18s, box-shadow .18s;
}
.btn-see-more:hover,
.btn-see-more:focus-visible {
  background: var(--clr-red-dark);
  color: var(--clr-white);
  box-shadow: 0 4px 12px rgba(204,18,32,.3);
}
.btn-see-more .bi { font-size: 1.1rem; }

/* Product card link wrapper */
.prod-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.prod-card-link:hover .prod-card--link {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.prod-card--link {
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.prod-card--link .prod-title { transition: color .18s; }
.prod-card-link:hover .prod-title { color: var(--clr-red-dark); }

/* ============================================================
   SECTION ABOUT
   ============================================================ */
.sec-about { background: var(--clr-bg-alt); }

.about-p {
  font-size: 0.9375rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--clr-text-mid);
  margin-bottom: 0.75rem;
}

.about-check {
  color: var(--clr-yellow-dk);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.xp-badge {
  position: absolute;
  left: -14px;
  bottom: 28px;
  background: var(--clr-yellow);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
}
.xp-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-red);
  line-height: 1;
}
.xp-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* ============================================================
   SECTION FAQ
   ============================================================ */
.sec-faq { background: var(--clr-white); }

.faq-inner { width: min(860px, 100%); }

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-card) !important;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-red);
  background: var(--clr-white);
  padding: 1.1rem 1.4rem;
  box-shadow: none !important;
}
.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc1220'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-btn:not(.collapsed) { color: var(--clr-red); background: var(--clr-white); }
.faq-btn:focus { box-shadow: 0 0 0 .2rem rgba(204,18,32,.18) !important; }

.faq-body {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  padding: 1rem 1.4rem 1.1rem;
  line-height: 1.6;
}

/* ============================================================
   SECTION PARTNERS
   ============================================================ */
.sec-partners { background: var(--clr-bg); }

.partners-track-wrap {
  width: 100%;
  overflow: hidden;
  padding-block: 0.25rem;
}
.partners-track-wrap:hover .partners-track { animation-play-state: paused; }

.partners-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo{
  margin: 0px 30px;
}

.partner-logo img {
  flex-shrink: 0;
  width: 185px;
  height: 110px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: box-shadow .18s;
  user-select: none;
}
.partner-logo:hover { box-shadow: var(--shadow-md); }

/* ============================================================
   RESPONSIVE — home page
   ============================================================ */
@media (max-width: 991px) {
  .xp-badge { position: static; margin-top: 1rem; }
  .partners-track { animation-duration: 22s; }
}

@media (max-width: 767px) {
  .hero-slide { height: min(340px, 60vw); }
  .ticker-track { animation-duration: 18s; }
  .img-placeholder--building { min-height: 280px; }
}

@media (max-width: 480px) {
  .btn-see-more { width: 100%; justify-content: center; }
}
