.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Gotham', sans-serif;
  background-color: #fff;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  max-width: 900px;
  color: #165534;
  padding-left: 300px; /* agrega este */
}

.cta-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 35px;
  margin-bottom: 24px;
  color: #333;
}

.cta-button {
  background-color: #DFEFE9;
  color: #2F5D50;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #2F5D50;
  color: #fff;
}



.cta-image {
  flex: 0.9; /* Menos espacio en relación al texto */
  max-width: 600px; /* Limita el ancho máximo */
  text-align: right;
}

.cta-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.business-info {
  background-color: #fdf8ef;
  padding: 60px 30px;
  font-family: 'Gotham', sans-serif;
  text-align: center;
}

.business-info h2 {
  font-size: 50px;
  color: #2F5D50;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #333;
}

.info-item p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-family: 'Gotham', sans-serif;
}

.contact-image {
  flex: 0.8;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-form {
  flex: 1.2;
  background-color: #2F5D50;
  padding: 60px 40px;
  color: #fff;
  display: flex;
  align-items: center;
}

.contact-wrapper__form-area {
  width: 100%;
}

.contact-title {
  color: #fff;
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: bold;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .input-wrap {
  flex: 1;
}

.input-wrap {
  margin-bottom: 20px;
}

.input-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
}

.input-wrap textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-wrap {
  margin-top: 20px;
}

.submit-button {
  background-color: #fff;
  color: #2F5D50;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.submit-button:hover {
  background-color: #2F5D50;
  color: #fff;
  border: 2px solid #fff;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.service-area {
  padding: 60px 110px;
  background-color: #f9f9f9;
  font-family: 'Gotham', sans-serif;
}

.service-area h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}
.service-area p {
  font-size: 18px;;
  text-align: center;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  justify-content: space-between;
}

.map-embed {
  flex: 1 1 600px;
}

.area-list {
  flex: 1 1 300px;
}

.area-list h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.area-list ul {
  list-style: none;
  padding: 0;
  columns: 2;
}

.area-list li {
  margin-bottom: 8px;
}

.area-list .note {
  margin-top: 20px;
  font-style: italic;
}

.response-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Gotham', sans-serif;
  background-color: #fff;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.response-text {
  flex: 1;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  color: #333;
  padding: 30px;
}

.response-image {
  flex: 1;
  min-width: 300px;
}

.response-image img {
  width: 100%;
  max-height: 300px; 
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


@media (max-width: 768px) {
  .contact-cta {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-image {
    margin-top: 30px;
    text-align: center;
  }

  .cta-image img {
    width: 80%;
    max-width: 300px;
  }
  .cta-text {
    padding-left: 0; 
    text-align: center;
  }

  .cta-text h2 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 15px;
  }
    .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-item p {
    font-size: 14px;
  }
  .contact-section {
    flex-direction: column;
  }

  .contact-form {
    padding: 40px 20px;
  }
 .service-area {
    padding: 40px 20px;
  }

  .area-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .map-embed,
  .area-list {
    flex: 1 1 100%;
  }

  .area-list ul {
    columns: 1;
    text-align: center;
  }

  .area-list h3 {
    text-align: center;
  }

  .service-area h2,
  .service-area p {
    text-align: center;
  }
    .response-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .response-text {
    font-size: 16px;
  }

  .response-image img {
    max-width: 100%;
    height: auto;
  }
}
