/* Links e highlights */
a {
  text-decoration: none;
}

.highlight {
  position: relative;
  color: var(--primary-color);
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: var(--secondary-color);
  z-index: -1;
}

/* Feature cards */
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card .card-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
}

.feature-card .card-body {
  padding: 1rem;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .9rem;
  color: var(--color-text-secondary);
}

.feature-card .btn-outline-primary {
  font-size: .8rem;
  padding: .4rem .8rem;
}

/* Feature box (direita) */
.feature-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
}

.feature-box img {
  width: 32px;
  height: 32px;
}

.feature-box h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.feature-box p {
  margin: 0;
  font-size: .85rem;
  color: var(--color-text-secondary);
}

/* Vantagens */
.adv-item img {
  width: 48px;
  height: 48px;
  margin-bottom: .75rem;
}

.adv-item h6 {
  font-weight: 600;
  margin-bottom: .5rem;
}

.adv-item p {
  font-size: .9rem;
  color: var(--color-text-secondary);
}

/* Depoimento */
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

blockquote+p {
  margin-top: .5rem;
  color: var(--color-secondary);
}

/* FAQ (Bootstrap já estiliza a accordion) */
.accordion-button:not(.collapsed) {
  color: var(--color-text);
  background: var(--color-bg-card);
}

/* CTA final */
#cta-end h2 {
  font-weight: 600;
  margin-bottom: .5rem;
}

#cta-end p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .85);
}

/* Outros ajustes */
img {
  max-width: 100%;
  height: auto;
}

.logo-img {
  height: 40px;
  width: auto;
}

.feature-box {
  border-radius: 10px;
}

.carousel-indicator {
  background-color: #cfcfcf80;
  height: 12px;
  border-radius: 100%;
  border: none;
  transition: background-color 0.3s;
}

.carousel-indicator.active,
.carousel-indicator:hover {
  background-color: white;
}

.carousel-indicator:focus {
  outline: none;
}

.feature-box {
  max-width: 550px;
  padding: 25px;
}

section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.container {
  height: 100%;
}

.bg-night-blue {
  background-color: #3A4771;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

#hero {
  position: relative;
  overflow: hidden;
}

.logo-fundo {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.05;
  width: 60%;
  max-width: 800px;
}

.logo-fundo.mini {
  width: 60%;
  max-width: 160px;
}

.logo-fundo img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .logo-fundo {
    display: none;
  }
}

.bg-cinza {
  background-color: #505050;
}