/* ─── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── BASE ────────────────────────────────────────────────── */
html {
  height: 100%;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Push footer to bottom on tall viewports */

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: relative;
  width: 100%;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7.2%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.navbar-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-divider {
  width: 1px;
  height: 27px;
  background: #004ed2;
  margin: 0 13px;
  flex-shrink: 0;
}

.navbar-title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #004ed2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.navbar-btn {
  height: 35px;
  padding: 0 16px;
  background: #24ae5b;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── HERO BANNER ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 299px;
  padding: 40px 16px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 109, 214, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 548px;
  width: 100%;
}

.hero-title {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.28;
}

.hero-search {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 740px;
  height: 50px;
  display: flex;
  align-items: stretch;
}

.hero-search-input {
  flex: 1;
  height: 50px;
  background: #ffffff;
  border: 1px solid #eaebf0;
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding: 0 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #1e2023;
  letter-spacing: 0.03em;
  outline: none;
  min-width: 0;
}

.hero-search-input::placeholder {
  color: #808289;
}

.hero-search-btn {
  width: 50px;
  height: 50px;
  background: #2e6dd6;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-search-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ─── CARDS SECTION ───────────────────────────────────────── */
.cards-section {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 7.2%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 470px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 200px;
  background: #a9abb1 center / cover no-repeat;
}

.card--participantes .card-image {
  background-image: url("images/card-participantes-2a4d8c.png");
}

.card--organizador .card-image {
  background-image: url("images/card-organizador-6058c5.png");
}

.card-title-area {
  height: 73px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.card-title {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1e2023;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: #c2c3c7;
}

.card-body {
  padding: 16px 30px 24px;
}

.card-desc {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #4c4f54;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  align-items: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #4c4f54;
}

.card-meta-dot {
  width: 3px;
  height: 3px;
  background: #4c4f54;
  border-radius: 50%;
  margin: 0 10px;
  flex-shrink: 0;
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-wrapper {
  flex: 1;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 7.2% 56px;
  display: flex;
  align-items: flex-start;
}

.cta-banner {
  position: relative;
  width: 100%;
  height: 297px;
  background: #0e61a3;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .cta-banner {
    height: auto;
  }
}

/* Decorative image — top-left corner (rotated 180° so blob fills top-left) */
.cta-deco-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  height: 160px;
  background: url("images/cta-deco-tl-78ee27.png") 0 0 / 100% 100% no-repeat;
  border-radius: 0 0 50px 0;
  pointer-events: none;
  transform: scale(-1, -1);
}

/* Decorative image — bottom-right corner */
.cta-deco-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 245px;
  height: 175px;
  background: url("images/cta-deco-br-78ee27b.png") 0 0 / 100% 100% no-repeat;
  border-radius: 0 0 50px 0;
  pointer-events: none;
}

.cta-text {
  text-align: center;
  z-index: 1;
  width: 770px;
  max-width: 100%;
  margin-bottom: 30px;
}

/* "Ainda não encontrou o que precisa?" — Work Sans SemiBold 30px */
.cta-heading {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 30px);
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* "Enviar um pedido de suporte!" — Work Sans Medium 20px */
.cta-subheading {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 20px);
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.cta-btn {
  width: 170px;
  height: 40px;
  background: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.15);
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e2023;
  z-index: 1;
  flex-shrink: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  width: 100%;
  background: #004ed2;
  padding: 12px 7.2%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  min-height: 50px;
}

.footer-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-copy {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  flex: 1;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet  ≤ 900px */
@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }

  .cards-section {
    padding: 48px 24px;
    gap: 24px;
  }
  .card {
    max-width: 100%;
  }

  .cta-wrapper {
    padding: 0 24px 48px;
    display: block;
  }

  .cta-banner {
    height: auto;
    min-height: 200px;
    padding: 40px 24px;
    gap: 20px;
    border-radius: 30px;
  }

  /* Hide decorations — too distorted at reduced sizes */
  .cta-deco-tl,
  .cta-deco-br {
    display: none;
  }

  .cta-text {
    margin-bottom: 0;
  }

  .footer {
    padding: 14px 24px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: auto;
  }
  .footer-copy {
    text-align: center;
  }
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
  /* Navbar: shrink title, keep both items on one row */
  .navbar {
    height: 56px;
    padding: 0 16px;
    gap: 8px;
  }
  .navbar-logo {
    width: 64px;
  }
  .navbar-divider {
    display: none;
  }
  .navbar-title {
    font-size: 14px;
  }
  .navbar-btn {
    padding: 0 10px;
    height: 32px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    gap: 18px;
    padding: 28px 16px 32px;
  }
  .hero-title {
    font-size: 22px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-search {
    height: 44px;
  }
  .hero-search-input {
    height: 44px;
    font-size: 14px;
  }
  .hero-search-btn {
    width: 44px;
    height: 44px;
  }

  /* Cards */
  .cards-section {
    padding: 28px 16px;
    gap: 20px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-body {
    padding: 14px 20px 20px;
  }
  .card-desc {
    font-size: 14px;
  }

  /* CTA */
  .cta-wrapper {
    padding: 0 16px 36px;
    display: block;
  }
  .cta-banner {
    border-radius: 20px;
    padding: 32px 16px;
    gap: 16px;
  }
  .cta-heading {
    font-size: 20px;
  }
  .cta-subheading {
    font-size: 15px;
    line-height: 1.4;
  }
  .cta-btn {
    width: 150px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 16px;
    gap: 6px;
  }
  .footer-copy {
    font-size: 11px;
  }
}

/* Extra small ≤ 380px — hide navbar title to prevent overflow */
@media (max-width: 380px) {
  .navbar-title {
    display: none;
  }
  .navbar-btn {
    font-size: 11px;
    padding: 0 8px;
  }
}

.Footer__footer {
 background: none; 
  padding: 0;
}

.Header__containerLi {
height: 35px;
  padding: 0 16px;
  background: #24ae5b;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0; 
  display:flex;
  align-items:center;
}

.Header__tClr{
 font-size: 0 
}

.Header__tClr::after {
   content: "Enviar pedido de suporte";
 font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  
}

.Header__containerLink {
	max-width: unset !important;
  padding:0;
}

