* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", "Helvetica", sans-serif;
}

body {
  background-color: #ffffff;
  color: #3E3E3E;
  line-height: 1.6;
}
.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.navigation-clean {
  background: #0c343d;
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}

@media (min-width:768px) {
  .navigation-clean {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.navbar {
  background: #eee;
  color: #eee;
  font-size: 1.3rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (min-width:992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}
.nav-link {
  color: #1E3A5F;
}
.gradient-btn,.gradient-icon {
  border-radius: 12px;
  color: #fe0404;
  border:1.5px  solid #000000;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, green, white, red);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 12px 1000px 1px white inset;
  transition: all .3s ease;
  width: 180px;
  height: 46px;
}

.gradient-btn:hover,.gradient-btn.focus {
  border-radius: 12px;
  box-shadow: none;
  color: #ff0000;
  background-color: rgb(255, 255, 255);
}
.gradient-btn.focus {
  border-radius: 12px;
  box-shadow: none;
  color: #ff0000;
  background-color:rgb(255, 255, 255);
}
.nav .ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav .ul .li .a {
  color: #e1e4ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav .ul .li a:hover {
  color: #FF8C42;
}

.btn {
  background-color: #fb6901;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff5500; /* Un tono más oscuro de naranja */
}
.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url(../dist/img/grutenco_drywall_services.jpg);
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
select {
  margin-top: 10px;
  padding: 8px;
  font-size: 12px;
  background: #ffffff;
  color: #1E3A5F;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #071f32;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero .btn {
  background-color: #FF8C42;
  font-size: 1rem;
}

.services {
  background-color: #F5F5F5;
  padding: 3rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  color: #1E3A5F;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item  {
  background-color: #ffffff;
  text-align: left;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item h3 {
  margin-bottom: 1rem;
  color: #1E3A5F;
  text-align: center;
}
.projects {
  padding: 3rem 1rem;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects h2 {
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.project-item1 {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-image: url(../dist/img/pintura.jpg);
}

.project-item1:hover .project-overlay {
  opacity: .7;
}
.project-item2 {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-image: url(../dist/img/metal-drywall.jpg);
}

.project-item2:hover .project-overlay {
  opacity: .7;
}
.project-item3 {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-image: url(../dist/img/drywall.png);
}

.project-item3:hover .project-overlay {
  opacity: .7;
}
.project-item4 {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-image: url(../dist/img/pisos.png);
}

.project-item4:hover .project-overlay {
  opacity: .7;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3A9E5B;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
}
.about {
  background-color: #F5F5F5;
  padding: 3rem 1rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  color: #1E3A5F;
  margin-bottom: 1rem;
}
.testimonials {
  padding: 2rem 1rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  color: #1E3A5F;
  margin-bottom: 2rem;
}

.testimonial-item {
  background-color: #F5F5F5;
  margin: 1rem auto;
  padding: 1.5rem;
  max-width: 700px;
  border-radius: 8px;
}
.cta-section {
  background-color: #1E3A5F;
  color: #e1e4ff;
  text-align: center;
  padding: 1rem 1rem;
}

.contact-clean {
  background: #f1f7fc;
  padding: 10px 0;
}

@media (max-width:767px) {
  .contact-clean {
    padding: 20px 0;
  }
}

.contact-clean form {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  color: #505e6c;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

@media (max-width:767px) {
  .contact-clean form {
    padding: 30px;
  }
}

.contact-clean h2 {
  margin-top: 5px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  color: inherit;
}

.contact-clean form .form-control {
  background: #fff;
  border-radius: 2px;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.05);
  outline: none;
  color: inherit;
  padding-left: 12px;
  height: 42px;
}

.contact-clean form .form-control:focus {
  border: 1px solid #b2b2b2;
}

.contact-clean form textarea.form-control {
  min-height: 100px;
  max-height: 260px;
  padding-top: 10px;
  resize: vertical;
}

.contact-clean form .btn {
  padding: 16px 32px;
  border: none;
  background: none;
  box-shadow: none;
  text-shadow: none;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 1;
  outline: none !important;
}

.contact-clean form .btn:hover {
  opacity: 1;
}

.contact-clean form .btn:active {
  transform: translateY(1px);
}

.contact-clean form .btn-primary {
  background-color: #ff6200 !important;
  margin-top: 10px;
  color: #fff;
}

.cta-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
}

.error {
      color: red;
      font-size: 0.9rem;
    }

.summary {
      margin-top: 1rem;
      font-weight: bold;
    }

.note {
      font-size: 0.85rem;
      color: #555;
      font-style: italic;
    }
.disclaimer {
      margin-top: 1rem;
      padding: 10px;
      background-color: #fff3cd;
      border: 1px solid #ffeeba;
      color: #856404;
      font-size: 0.95rem;
      border-radius: 4px;
   }
input, select {
      width: 100%;
      padding: 6px;
      box-sizing: border-box;
    }
table {
      width: 100%;
      border-collapse: collapse;
      background: #f9fbff;
      margin-bottom: 1rem;
    }

th, td {
      border: 1px solid #1E3A5F;
      padding: 8px;
      text-align: center;
    }

.btnestimate {
  background-color: #1E3A5F;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin: 5px;
}

.modal-body {
  text-align: left;
}

footer {
  background-color: #1E3A5F;
  color: #ffffff;
  padding: 2rem 1rem;
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #FF8C42;
}

.footer-social a {
  color: #ffffff;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #FF8C42;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

