.contato {
    padding: 4rem 1rem;
    background-color: #fff;
  }
  
  .contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* aumentamos o espaço entre form e mapa */
    align-items: start;
    max-width: 1000px;
    margin: 2rem auto;
  }
  
  .contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contato-form input,
  .contato-form textarea {
    max-width: 100%;
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
  }

  
  .contato-form .btn {
    background-color: var(--amarelo);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .contato-form .btn:hover {
    background-color: #e6b800;
  }
  
  .contato-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contato-info {
    margin-top: 1rem;
  }
  
  .contato-info p,
  .contato-info h4 {
    margin-bottom: 0.6rem;
  }

  
  .btn-phone {
    background-color: var(--amarelo);
    color: #111;
    padding: 0.69rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    border: none;
  }


 

  @media (max-width: 768px) {
    .contato-grid {
        display: block;
        padding: 20px;
    }

    .contato-form {
        width: 100%;
        margin-bottom: 20px;
    }

    .contato-form input,
    .contato-form textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px;
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    .contato-map-wrapper iframe {
        width: 100%;
        height: 300px;
    }

    .contato-info {
        margin-top: 20px;
        font-size: 1rem;
    }

    .contato-info a {
        display: inline-block;
        margin-top: 10px;
    }

    .g-recaptcha {
        margin-bottom: 20px;
    }
}