:root {
	--primary-color: #8B4513; /* Saddle Brown - reminiscent of leather */
	--secondary-color: #D2691E; /* Chocolate - warm western tone */
	--text-color: #2C1810; /* Dark brown, like aged wood */
	--background-color: #F5DEB3; /* Wheat - sandy desert tone */
	--accent-color: #5D4037; /* Deep brown - like old saloon wood */
  }
  
  * {
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	width: 100%;
	overflow-x: hidden;
	font-family: 'Courier New', monospace;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
	background-image: linear-gradient(rgba(245, 222, 179, 0.8), rgba(245, 222, 179, 0.8)), 
					  url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23A0522D' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	background-color: var(--accent-color);
	color: #F5DEB3;
	box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  }
  
  .logo {
	display: flex;
	align-items: center;
  }
  
  .logo img {
	height: 60px;
	margin-right: 15px;
	filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.3));
  }
  
  nav ul {
	display: flex;
	list-style: none;
  }
  
  nav ul li {
	margin-left: 20px;
  }
  
  nav ul li a {
	text-decoration: none;
	color: #F5DEB3;
	font-weight: bold;
	transition: color 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  nav ul li a:hover {
	color: var(--secondary-color);
  }
  
  #hero {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: #F5DEB3;
	text-align: center;
	padding: 4rem 1rem;
	background-image: 
	  linear-gradient(rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.8)),
	  url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L50 50 L100 0 Z' fill='%23A0522D' fill-opacity='0.1'/%3E%3C/svg%3E");
  }
  
  .cta-button {
	display: inline-flex;
	align-items: center;
	background-color: #F5DEB3;
	color: var(--accent-color);
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 20px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	transition: transform 0.2s;
  }
  
  .cta-button:hover {
	transform: scale(1.05);
  }
  
  #servicos {
	padding: 4rem 5%;
	text-align: center;
	background-color: rgba(245, 222, 179, 0.5);
  }
  
  .servicos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 2rem;
  }
  
  .servico {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	border: 2px solid var(--primary-color);
  }
  
  .servico i {
	width: 60px;
	height: 60px;
	color: var(--primary-color);
	margin-bottom: 15px;
  }
  
  #contato {
	background-color: var(--accent-color);
	color: #F5DEB3;
	padding: 4rem 5%;
	text-align: center;
  }
  
  .contato-info {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 2rem;
  }
  
  .contato-item {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .contato-item i {
	color: #F5DEB3;
  }
  
  footer {
	background-color: var(--text-color);
	color: #F5DEB3;
	text-align: center;
	padding: 1rem;
  }
  
  .hero-image-container {
	display: flex;
	justify-content: center;
	margin: 2rem 0;
  }
  
  .hero-image {
	width: 300px;
	height: 300px;
	object-fit: cover;
	position: flex;
  }
  
  .menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 30px;
	height: 20px;
	justify-content: space-between;
  }
  
  .menu-toggle span {
	width: 100%;
	height: 3px;
	background-color: #F5DEB3;
	transition: all 0.3s ease;
  }
  
  @media (max-width: 768px) {
	header {
	  flex-direction: column;
	  padding: 1rem 2%;
	}
  
	.logo {
	  flex-direction: column;
	  text-align: center;
	  margin-bottom: 1rem;
	}
  
	.logo img {
	  margin-right: 0;
	  margin-bottom: 10px;
	}
  
	nav {
	  display: none;
	  width: 100%;
	}
  
	nav.active {
	  display: block;
	}
  
	nav ul {
	  width: 100%;
	  background-color: var(--accent-color);
	  padding: 1rem 0;
	  flex-direction: column;
	  align-items: center;
	}
  
	nav ul li {
	  width: 100%;
	  text-align: center;
	  margin: 10px 0;
	}
  
	.menu-toggle {
	  display: flex;
	}
  
	.servicos-grid {
	  grid-template-columns: 1fr; /* Stack services vertically on mobile */
	  gap: 15px;
	}
  
	.hero-image-container {
	  margin: 1rem 0;
	}
  
	.hero-image {
	  width: 250px;
	  height: 250px;
	}
  
	.contato-info {
	  flex-direction: column;
	  align-items: center;
	}
  
	.contato-item {
	  margin-bottom: 15px;
	}
  
	.menu-toggle.active span:nth-child(1) {
	  transform: rotate(45deg) translate(5px, 5px);
	}
  
	.menu-toggle.active span:nth-child(2) {
	  opacity: 0;
	}
  
	.menu-toggle.active span:nth-child(3) {
	  transform: rotate(-45deg) translate(5px, -5px);
	}
  
	/* Adjust text sizes for better mobile readability */
	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.3rem; }
	h3 { font-size: 1.1rem; }
	p, span { font-size: 0.9rem; }
  }
  
  @media (max-width: 480px) {
	.hero-image {
	  width: 200px;
	  height: 200px;
	}
  
	.cta-button {
	  padding: 10px 20px;
	  font-size: 0.9rem;
	}
  }
  
  /* Ensure text doesn't overflow */
  h1, h2, h3, p {
	word-wrap: break-word;
	overflow-wrap: break-word;
  }
  
  /* Wild West-inspired Feather Icon styling */
  .feather {
	stroke: var(--primary-color);
	stroke-width: 2;
	fill: none;
  }