@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --azul-primario: #004a99;
  --azul-escuro: #002d5e;
  --azul-claro: #e6f0fa;
  --branco: #ffffff;
  --texto: #333333;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--texto);
  scroll-behavior: smooth;
}

.bg-blue{
   background-color: var(--azul-primario);
}

.text-blue{
  color:  var(--azul-primario);
}

.text-center{
  text-align: center!important;
}

/* Navbar estilo MP Aparas */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background-color: var(--branco);
}

.navbar-brand img {
  /*max-height: 50px;*/
  width: 95px;
}

.nav-link {
  color: var(--azul-escuro) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--azul-primario) !important;
}

/* Hero Section */
.hero {
  /*background: linear-gradient(rgba(0, 74, 153, 0.8), rgba(0, 45, 94, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');*/
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--branco);
  text-align: center;
}

.hero h1 {
  font-weight: 700;
  font-size: 3.5rem;
}

.btn-custom {
  background-color: var(--azul-primario);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: var(--azul-escuro);
  color: white;
  transform: translateY(-3px);
}

/* Seções Gerais */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--azul-primario);
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--azul-primario);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards de Serviços */
.service-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  text-align: center;
  padding: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3rem;
  color: var(--azul-primario);
  margin-bottom: 20px;
}

.service-card h2 {
  font-size: 23px;
  font-weight: 600;
}

/* Quem Somos (Alternado como MP Aparas) */
.about-section {
  background-color: var(--azul-claro);
}

/* Rodapé */
footer {
  background-color: var(--azul-escuro);
  color: white;
  padding: 50px 0 20px;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

input[name=sender] {
  /* bait input */
  /*
       don't use display:none or visibility:hidden
       cause that will not fool the bot
  */
  position: absolute;
  left: -2000px;
}

.ajax-load {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.social-icons-link:hover {
  text-decoration: none;
}

.social-icons-link img:hover {
  filter: brightness(120%);
}


/* SITE MAP */
.site-map-link {
  font-size: 20px;
}

/*WIDGETS*/
.widget-wrapper {
  position: fixed;
  z-index: 222;
  bottom: 20px;
}

.widget-position-right {
  right: 4px;
}

.widget-position-left {
  left: 4px;
}

.widget-wrapper li {
  margin: 5px 2px;
}

.widget-container {
  width: 50px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}

.widget-container:hover {
  box-shadow: 0 2px 10px black !important;
}

.widget-container {
  font-size: 2rem !important;
  color: white;
  padding: 0;
}

.about-img{
  width: 100%; 
  margin-top: -90px;
}

@media screen and (max-width: 700px) {
  .navbar-container{
    padding-left: 10px!important;
    padding-right: 10px!important;
  }
  .about-img{
    margin-top: -10px;
  }
}