:root {
  --branding-color: #000060;
  --secondary-color: #f9f7fe;
  --heading-font-family: "Playfair Display", serif;
  --default-font-family: "Poppins", sans-serif;
}

.homelinks a {
  color: #000040;
  text-decoration: none;
}

.justify-text {
  text-align: justify;
}

.contact-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/img/contact.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 400px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 22px;
  max-width: 700px;
  color: white;
}

.about-caminho .intro {
  background: white;
  padding-top: 100px;
}

.about-intro {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 5px;
  filter: grayscale(80%);
}

.about-text {
  flex: 1;
}

.values-section {
  background-color: white;
  padding: 60px 20px;
}

.values-section h2 {
  font-weight: bold;
  margin-bottom: 15px;
}

.values-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.values li {
  border-bottom: 1px solid #e9e9e9;
}

.values {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allows stacking on small screens */
  text-align: left;
  background-color: white;
  list-style: none;
  padding-left: 60px;
}

.values p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  font-weight: 500;
}

.intro {
  background: white;
  padding-top: 100px;
}

.intro p {
  margin: 0 auto;
  font-size: 1.3rem;
  text-align: center;
  max-width: 80%;
}

.home-container {
  background: white;
  padding: 70px 35px;
}

.card {
  padding: 22px;
  background-color: white;
  display: flex;
  border: none;
}

.card p {
  text-align: center;
  font-weight: normal;
}

.card h5 {
  text-align: center;
  font-weight: bold;
}

.hero {
  height: 600px;
  background: url("/img/hero.jpg") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.home-image {
  padding: 120px 0;
  border-radius: 5px;
}

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #000060;
  text-align: center;
}

.hero h1 {
  color: #d4a03a;
  font-weight: bold;
}

.hero {
  font-family: Arial, sans-serif;
  font-weight: normal;
  line-height: 2;
  font-size: 24px;
  color: #000060;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact {
  background-color: #000040;
  display: flex !important; /* puts items in one row */
  justify-content: center; /* centers content */
  gap: 100px; /* space between items */
  padding: 10px 20px;
  margin: 0;
  color: white;
}

.contact li {
  margin: 0;
  list-style: none;
}

.form-container {
  max-width: 60%;
  margin: 0 auto;
}

.home-heading {
  padding-top: 250px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 80px;
}

.home {
  margin-top: 10px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.home h3 {
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  color: white;
}

.container {
  max-width: 94%;
  text-align: justify;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 0;
  margin: 0;
}

section {
  background-color: white;
  padding: 20px;
}

section h2 {
  padding-left: 60px;
}

h1 {
  text-align: center;
}

p {
  text-align: left;
}

.active {
  color: var(--branding-color);
  font-weight: bold;
}

.navigation {
  background-color: white;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.navigation nav {
  width: 100%;
  padding: 10px 10px;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 50px;
  position: relative;
}

nav ul {
  padding: 0;
  margin: 0;
  position: relative;
}

nav a {
  text-decoration: none;
  color: black;
  transition: all 100ms ease-in-out;
}

nav a:hover,
nav li.active a {
  color: #000060;
  font-weight: bold;
}

nav li.dropdown > a i {
  margin-left: 5px;
  font-size: 12px;
}

nav li .dropdown-menu {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  background-color: var(--secondary-color);
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav li .dropdown-menu li {
  margin: 0;
  line-height: 32px;
}

nav li .dropdown-menu li a {
  display: block;
  padding: 0px 10px;

  margin-left: 0px;
  color: black;
  text-decoration: none;
}

nav li:hover .dropdown-menu {
  display: block;
}

nav li .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.icon {
  color: #d4a03a;
}

.contact-box {
  background-color: #000040;
  color: white;
  padding: 15px;
}

.contact-box i {
  color: #d4a03a;
}

.btn {
  background-color: #000040;
  border: 2px solid #000040;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: #000060;
  border: 2px solid white;
  font-weight: bold;
}

footer {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: center;
}

footer a {
  font-weight: bold;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none; /* Hide menu by default */
    flex-direction: column;
    background-color: #fff; /* Optional for better visibility */
    position: absolute;
    top: 10px; /* Adjust based on your header's height */
    right: 0;
    left: 0;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .logo {
    width: 200px;
  }

  .menu-toggle {
    display: block; /* Show hamburger menu button */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-menu.show {
    display: flex; /* Show menu when toggled */
  }

  section {
    font-size: small;
  }

  .contact {
    font-size: small;
  }

  .contact-box {
    font-size: small;
  }

  .about-image {
    display: none;
  }

  .about-logo {
    display: none;
  }

  .values {
    padding: 0;
  }

  .values-heading {
    padding: 0;
  }
  .contact-hero p {
    font-size: 18px;
    max-width: 90%;
  }

  .contact-hero h1 {
    font-size: 33px;
    font-weight: bold;
  }
}
