:root {
  --primary: #184b63;
  --secondary: #2b5d7a;
  --accent: #d8a63a;
  --light: #f7f8fb;
  --text: #1f2937;
  --muted: #6b7280;      
  --calisto-primary: #8B5CF6;
  --calisto-secondary: #6D28D9;
  --fobos-primary:#2C2A29;
  --fobos-secondary: #E55812;
  --proteus-primary: #0A2540 ;
  --proteus-secondary: #316F94;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--light);
  padding-top: 76px;
}

img {
  max-width: 100%;
}

.navbar {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(8px);
}

.navbar-brand img {
  object-fit: contain;
}

.nav-link {
  color: var(--primary) !important;
  font-weight: 600;
}

.btn-primary,
.btn-accent {
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24, 75, 99, 0.15);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-calisto {
  background: var(--calisto-primary);
  color: #fff;
}

.btn-calisto:hover {
  transform: translateY(-2px);
  background-color: var(--calisto-secondary);
  color: #fff;
  box-shadow: 0 11px 25px rgba(124, 42, 218, 0.692);
}

.btn-fobos {
  background: var(--fobos-secondary);
  color: #fff;
}

.btn-fobos:hover {
  transform: translateY(-2px);
  background-color: var(--fobos-primary);
  color: #fff;
  box-shadow: 0 11px 25px rgba(236, 155, 5, 0.692);
}

.btn-proteus {
  background: var(--proteus-secondary);
  color: #fff;
}

.btn-proteus:hover {
  transform: translateY(-2px);
  background-color: var(--proteus-primary);
  color: #fff;
  box-shadow: 0 11px 25px rgba(10, 139, 245, 0.692);
}


.btn-accent {
  background: var(--accent);
  color: #1f1f1f;
  font-weight: 700;
}

.hero-section {
  padding-top: 0;
}

.carousel-item {
  height: 78vh;
  min-height: 520px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 10%;
  right: 10%;
  text-align: left;
  max-width: 700px;
}

.carousel-caption h1,
.carousel-caption h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-title h2 {
  color: var(--primary);
  font-weight: 700;
}

.feature-card {
  border-radius: 1.2rem;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(24, 75, 99, 0.12) !important;
}

.feature-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 0.4rem;
}

.info-panel,
.cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #eef5f7 100%);
  border: 1px solid rgba(24, 75, 99, 0.08);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
}

.cta-box .btn-accent {
  background: var(--accent);
  color: #1f1f1f;
}

.footer {
  background: #f0f3f7;
  border-top: 1px solid rgba(24, 75, 99, 0.08);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.page-section {
  min-height: 80vh;
}

@media (max-width: 768px) {
  .carousel-item {
    height: 70vh;
  }

  .carousel-caption {
    left: 5%;
    right: 5%;
    text-align: center;
    top: 50%;
  }
}


/* CUSTOMIZADO */

/* Diminui a largura e altura da área clicável do botão */
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Ajuste a porcentagem conforme desejar */
}

/* Diminui o tamanho do ícone da seta (SVG) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem; /* Exemplo: 2rem ou 20px */
    height: 2rem;
}

.modal-content {
  border-radius: 1.5rem;
}

.modal-header {
  border-bottom: none;
}

.modal-body .form-label {
  font-weight: 600;
}

.modal-body .form-control {
  min-height: 48px;
}
