.x {
  box-sizing: border-box;
  border: 1px solid red;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff; /* Cor de fundo do header */
    padding: 10px 20px;
}

.logo img {
    width: 120px; /* Ajuste o tamanho do logo conforme necessário */
}

.navbar ul {
    display: flex;
    list-style-type: none;
}

.navbar ul li {
    margin-left: 20px; /* Espaçamento entre os itens de navegação */
}

.navbar ul li a {
    text-decoration: none;
    color: #333; /* Cor do texto dos links */
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #0066cc; /* Cor do texto ao passar o mouse */
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0e1726;
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.9rem;
  color: #0e1726;
  margin-bottom: 15px;
}

.learn-more {
  font-size: 0.9rem;
  color: #0078d4;
  text-decoration: none;
  font-weight: bold;
}

.learn-more:hover {
  text-decoration: underline;
}

.about-section {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  border-radius: 10px;
  height: 300px;
}

/* Add this media query for mobile responsiveness */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column; /* Stack items vertically */
    height: auto; /* Allow height to adjust based on content */
  }

  .about-content {
    padding-left: 0; /* Remove left padding on mobile */
    text-align: center; /* Center text on mobile */
  }

  .about-photo {
    max-width: 100%; /* Allow photo to take full width */
    text-align: center; /* Center the photo */
    margin-top: 20px; /* Add some space above the photo */
  }
}

.about-content {
  flex: 2;
  padding: 10px;
}

.about-photo {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.about-photo img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0e1726;
  margin-bottom: 10px;
}

.about-description {
  font-size: 1rem;
  color: #0e1726;
  margin-bottom: 15px;
}

.about-images {
  display: center;
  gap: 20px;
}

.about-images img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
}

.contact-section {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  background-image: url("https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/Features-background-1600X596?resMode=sharp2&op_usm=1.5,0.65,15,0&wid=2000&hei=745&qlt=95&fmt=png-alpha&fit=constrain");
  background-size: cover;
}

.contact-content {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.contact-title {
  font-size: 2em;
  color: #fff;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 1.1rem;
  color: #0e1726;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact -form button {
  padding: 12px 20px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005a8c;
}

.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-button {
  background-color: #0078d4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
}

.contact-button:hover {
  opacity: 0.8; /* Make the button slightly darker on hover */
}
