body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #555555;
  background-color: #fcfcfc;
  line-height: 1.7;
   min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  
}

h1, h2, h3 {
  color: #222222;
  margin-top: 0;
}

header {
  background-color: #222222;
  padding: 20px 50px;
}

.mainNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.siteTitle {
  color: #fcfcfc;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.navLinks {
  display: flex;
  gap: 20px;
}

.navLinks a {
  color: #fcfcfc;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.navLinks a:hover {
  color: #b58b66;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.heroSection {
  text-align: center;
  padding: 80px 150px;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-bottom: 50px;
}

.heroSection h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.heroSection p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.btn {
  display: inline-block;
  background-color: #b58b66;
  color: #fcfcfc;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #222222;
}

/* OPTIMIZED: Portfolio Auto-Grid */
.projectList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.projectCard {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 25px;
  transition: 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  
}

.projectCard h2 {
  margin-bottom: 10px;
  color: #b58b66;
  font-size: 18px;
}

.projectCard:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: #222222;
  transform: translateY(-2px);
}

.Fotos   {
  width: 300px;
}

/* NEW: Services Wrapper Grid */
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.serviceItem {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  border-left: 3px solid #b58b66;
  padding-left: 15px;
}

.processList {
  margin-top: 40px;
  background-color: #e5e5e5;
  padding: 40px;
  border-radius: 8px;
}

.processList ol {
  margin: 0;
  padding-left: 20px;
}

.processList li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.pricingTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  margin-bottom: 87px;
}

.pricingTable th, .pricingTable td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.pricingTable th {
  background-color: #222222;
  color: #fcfcfc;
  font-size: 1.1rem;
}

.pricingTable tr {
  transition: 0.3s ease;
}

.pricingTable tr:hover {
  background-color: #f5f5f5;
}

/* OPTIMIZED: 2-Column Contact Form */
.contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto; 
}

/* Force message and button to span both columns */
.contactForm > div:nth-child(3), 
.contactForm .btn {
  grid-column: 1 / -1; 
}


.contactForm input, .contactForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  box-sizing: border-box; /* Prevent overflow blowout */
}

.link {
  color: #fcfcfc;
}

footer {
  background-color: #222222;
  color: #fcfcfc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;

    


    

  
}