@charset "utf-8";
/* CSS Document */

:root {
  --brand-primary: #0E2A47;
  --brand-secondary: #0ea7b0;
  --text-color: #4a4a4a;
  --bg-light: #f8fafc;
}

/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--brand-primary);
  font-weight: 600;
}

.section {
  padding: 6rem 0;
}

.section.bg-body-tertiary {
  background: var(--bg-light);
}

.section-sub {
  color: #5e5e5e;
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.navbar-brand span {
  color: var(--brand-primary);
  font-weight: 600;
}

.navbar a.nav-link {
  color: var(--brand-primary) !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a.nav-link:hover,
.navbar a.nav-link:focus {
  color: var(--brand-secondary) !important;
}

.navbar .btn-primary {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  transition: opacity 0.3s ease;
}
.navbar .btn-primary:hover {
  opacity: 0.9;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.hero-badge {
  background-color: var(--brand-secondary);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
}

.hero .card {
  border: 0;
  border-radius: 1rem;
  background-color: #fff;
}

/* ===== CARDS ===== */
.card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.card-service .icon {
  font-size: 1.6rem;
  color: var(--brand-secondary);
}

/* ===== BOTÕES ===== */
.btn-primary {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline-light:hover {
  background-color: var(--brand-primary);
  color: #fff;
}

/* ===== RODAPÉ ===== */
footer {
  background: linear-gradient(180deg, #0E2A47 0%, #051220 100%);
  color: #dcdcdc;
  font-size: 0.95rem;
}

footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

footer a:hover {
  color: var(--brand-secondary);
  opacity: 0.85;
}

footer h6 {
  font-weight: 600;
  color: #b0b0b0;
  letter-spacing: 0.5px;
}

footer .text-light-emphasis {
  color: #9ca3af !important;
}

footer .link-opacity-75-hover {
  opacity: 0.85;
}
footer .link-opacity-75-hover:hover {
  opacity: 1;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.fab-whats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 6px 16px rgba(14, 167, 176, 0.35);
  z-index: 999;
  transition: all 0.3s ease;
}

.fab-whats:hover {
  transform: translateY(-3px);
  background: var(--brand-primary);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 991px) {
  .navbar .btn-primary {
    margin-top: 8px;
    width: 100%;
  }
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  h1.display-5 {
    font-size: 1.9rem;
  }
  .hero .card {
    margin-top: 2rem;
  }
}
