:root {
  --coral: #e14b3b;
  --coral-dark: #b73729;
  --coral-navy: #16233a;
  --coral-navy-2: #1f3151;
  --ink: #1c2530;
  --muted: #6b7688;
  --bg: #f4f6fa;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Navbar */
.coral-navbar {
  background: var(--coral-navy);
  box-shadow: 0 2px 12px rgba(22, 35, 58, 0.15);
}
.coral-navbar .brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
}
.coral-navbar .nav-link { color: rgba(255, 255, 255, 0.82); font-weight: 500; }
.coral-navbar .nav-link:hover,
.coral-navbar .nav-link.active { color: #fff; }

/* Botões */
.btn-coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; }
.btn-outline-coral { color: var(--coral); border-color: var(--coral); }
.btn-outline-coral:hover { background: var(--coral); color: #fff; }
.text-coral { color: var(--coral) !important; }

/* Hero */
.coral-cont{
    padding: 0;
}
.coral-cont-cont{
    
}
.coral-hero {
  background: linear-gradient(135deg, var(--coral-navy) 0%, var(--coral-navy-2) 100%);
  color: #fff;
  border-radius: 0 0 28px 28px;
  margin-top: -24px;
}
.coral-hero .hero-badge {
  background: rgba(225, 75, 59, 0.18);
  color: #ffb4a8;
  border: 1px solid rgba(225, 75, 59, 0.4);
}

/* Cards */
.card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(28, 37, 48, 0.06);
}
.card-hover { transition: transform .15s ease, box-shadow .15s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(28,37,48,.12); }

/* Score ring / badge */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 700;
}

/* Stat cards */
.stat-card { border-left: 4px solid var(--coral); }
.stat-card .stat-value { font-size: 1.8rem; font-weight: 700; }

/* Avatar */
.avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.avatar-sm { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.avatar-placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--coral); color: #fff; font-weight: 700;
}

/* Footer */
.coral-footer {
  background: var(--coral-navy);
  color: rgba(255,255,255,.85);
}
.coral-footer .text-muted { color: rgba(255,255,255,.55) !important; }

/* Público - seções */
.section-title { font-weight: 700; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(225,75,59,.12); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}










.nav-link-2{
    font-weight:300;
    color: #ffffff;
    font-size: 1.1em;
    text-decoration: none;
    padding: 3px 3px 5px 3px;
    border-bottom: 1px solid transparent;
    transition: 0.5s;
    margin-right: 20px;
}
.nav-link-2:hover{
    padding: 3px 3px 15px 3px;
    border-bottom: 1px solid coral;
}
@media (max-width: 991px) {
    .nav-link-2{
        font-weight:300;
        color: #ffffff;
        font-size: 1.3em;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        padding: 0px 0px 5px 0px;
        transition: 0.5s;
    }
    .nav-link-2:hover{
        padding: 0px 0px 5px 0px;
        border-bottom: 1px solid coral;
        margin-left: 10px;
    }
}