/* body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  background-color: #f5f5f5;
  color: #212121;
}



/* ================== HEADER ================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1px 50px;
  background: #212121;
  color: #fff;
}

.logo {
  font-size: -0.10rem;
  font-weight: bold;
}

.logo img {
  height: 100px;
  padding: 10px;
}

/* Ajuste da navegação */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.3s;
}

nav a[aria-current="page"] {
  color: #e63946 !important;
  font-weight: 600;
}

nav a:hover,
nav a.active {
  color: #e63946 !important; /* Vermelho destaque */
  transition: color 0.2s;
}

/* Ícones do topo */
.icons {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  display: flex;
}

  .navbar-expand-lg.w-100.bg-dark .container-fluid {
    background-color: #212121 !important;
  }

/* ================== HERO ================== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 110px;
  background: url("../img_/banner.jpg") no-repeat center center / cover;
}

.hero-banner {
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin-left: 50px;
  text-align: left;
}

.hero-banner h1 {
  font-size: 3.1rem;
  margin-bottom: 35px;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 500;
  font-family: 'Josefin Sans', sans-serif;
}

/* ================== MENU BOTÕES ================== */
.menu {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.menu-nav button {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  background: #e0e0e0;
  font-weight: 500;
  transition: 0.3s;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
}

.menu-nav button.active {
  background: #e63946;
  color: #fff;
}

.menu-nav button:hover {
  background: #cfcfcf;
}

/* ================== SEÇÕES ================== */
.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.section h1,
.section h2 {
  margin-bottom: 20px;
  color: #454545;
  font-family: 'Josefin Sans', sans-serif;
}

.section h1 {
  font-size: 25px;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
}

.section-subtitle {
  margin: 70px 0 90px;
  color: #454545;
  font-size: 22px;
  text-align: left;
}

/* ================== CARDS ================== */
.card {
  display: flex;
  flex-direction: row; /* imagem à direita */
  align-items: center;
  background: #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Josefin Sans", sans-serif;
}

.card-text {
  padding: 20px;
  flex: 1;
  font-size: 18px;
}

.card img {
  width: 180px;
  height: 120px;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Botão padrão */
.btn-vermelho {
  display: inline-block;
  margin: 20px 0 50px;
  padding: 10px 20px;
  background: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* Oculta elementos quando filtrado */
.hidden {
  display: none !important;
}

/* ================== FOOTER ================== */
.footer {
  background: #1c1c1c;
  color: #f0f0f0;
  font-family: "Josefin Sans", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1520px;
  margin: auto;
  padding: 40px 20px;
  gap: 50px;
}

/* Colunas */
.footer-col {
  flex: 1;
  min-width: 220px;
  padding: 20px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
  display: block;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer p {
  margin: 15px 0;
  line-height: 1.5;
  font-weight: 400;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.footer ul li {
  margin: 10px 0;
}

.footer ul li a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ff4c4c;
}

/* Redes sociais */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #f0f0f0;
  margin-right: 12px;
  font-size: 30px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff4c4c;
}

/* Linha inferior */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  color: #aaa;
}

/* ================== RESPONSIVIDADE ================== */
@media (max-width: 992px) {
  .hero {
    padding: 80px 40px;
    flex-direction: column;
    text-align: center;
  }

  .hero-banner {
    margin: 0 auto;
  }

  .card {
    flex-direction: row; /* Mantém imagem à direita */
    text-align: left;
  }
  .card img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
  }

  header {
    padding: 10px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .icons {
    display: none; /* Oculta ícones no mobile */
  }
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    min-height: auto;
  }

  .logo img {
    height: 60px;
  }

  nav ul {
    gap: 18px;
  }

  .icons {
    margin-top: 8px;
  }
}


