@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* =============================================================== */

/* variaveis */
:root {
  --primary: #004a8f;
  --secondary: #f37021;
  --light-blue: #37a2e9;
  --blue: #177ec5;
  --dark-blue: #0e3a6f;

  --white: #fff;
  --black: #1d1d1d;
  --gray: #6c757d;
  --light-gray: #e6e6e6;

  --title-font: "Montserrat", sans-serif;
  --body-font: "Open sans", sans-serif;

  --blue-box-shadow: rgba(0, 74, 143, 0.15);
  --black-box-shadow: rgba(0, 0, 0, 0.15);
}

/* estilos reutilizaveis */

/* textos */
.main-title {
  color: var(--dark-blue) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-muted {
  color: var(--gray) !important;
}

.text-warning {
  color: var(--secondary) !important;
}

.text-light-blue {
  color: var(--blue);
}

/* botao */
.btn-primary {
  background-color: var(--primary);
  border-radius: 50px;
  padding: 14px 50px;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px var(--blue-box-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--blue-box-shadow);
}

.btn-primary i {
  font-size: 1.3rem;
}
/* =============================================================== */

/* style geral da pagina */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
}

h1,
h2,
h3 {
  font-family: var(--title-font);
}

/* =============================================================== */

/* animaçoes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 74, 143, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 74, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 74, 143, 0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================== */

/* float instagram */
.instagram-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 74, 143, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--white);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.instagram-float:hover {
  background-color: var(--dark-blue);
  transform: scale(1.05);
}

/* =============================================================== */

/* nav bar */
.top-nav .nav-link {
  position: relative;
  font-size: 1.2rem;
  color: var(--gray) !important;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  margin: 0 0.3rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* decoracao */
.top-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: var(--blue);
  transition: width 0.3s ease;
}

/* hover */
.top-nav .nav-link:hover {
  color: var(--blue) !important;
}

.top-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 2.5rem;
}

/* responsividade */
@media (max-width: 468px) {
  .navbar-brand img {
    max-height: 55px;
  }
}
/* =============================================================== */

/* cards geral */
.card {
  display: flex;
  align-items: center;
  flex: 1 1 280px;
  padding: 25px 0;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e6e6e6 !important;
  text-align: center;
  flex-direction: column;
}

.card-title {
  color: var(--primary) !important;
  font-size: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
}

/* =============================================================== */

/* decorações de borda dos cards */
.left-border-primary {
  border-left: 6px solid var(--primary) !important;
}

.left-border-secondary {
  border-left: 6px solid var(--secondary) !important;
}

.left-border-blue {
  border-left: 6px solid var(--blue) !important;
}

/* =============================================================== */

span {
  font-size: 1.2rem !important;
}

/* =============================================================== */

/* efeito de brilho dos btn */
.shine-white::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  filter: blur(4px);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 1s ease;
  pointer-events: none;
  z-index: 0;
}

.shine-white:hover::after {
  left: 150%;
}

/* =============================================================== */

/* footer */
#footer {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary));
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

#footer .footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

#footer .footer-links a:hover {
  color: var(--secondary);
}

#footer .social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

#footer .social-icons a:hover {
  transform: translateY(-3px);
  color: var(--secondary);
}

#footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
}

/* responsividade */
@media (max-width: 768px) {
  #footer {
    text-align: center;
  }
  #footer .social-icons {
    margin-top: 10px;
  }
}

/* =============================================================== */
