.rectangle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.rectangle {
  width: 100%;
  max-width: 800px;
  height: 120px;
  border: 2px solid #303a4d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rectangle:hover {
  background-color: #303a4d;
  color: white;
}

.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-form.active {
  display: flex;
}

.form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #303a4d;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #303a4d;
  text-align: center;
}

.form-group input,
.form-group textarea {
  width: 80%;
  min-width: 200px;
  max-width: 400px;
  margin: 0 auto;
}

.form-group input:focus {
  outline: none;
  border-color: #4a5568;
}

.form-group textarea {
  width: 100%;
  min-width: 300px;
  max-width: 540px;
  margin: 0 auto;
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: #303a4d;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #4a5568;
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 40px;
  background-color: #f5f5f5;
}

.hero img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

.outro.outro_services {
  background: url('images/home/PPWLogo.png') center/contain no-repeat, #f5f5f5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.corner-logo {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  display: block;
}

.corner-logo img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}

.corner-logo img:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e1e4eb;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #303a4d;
}

.form-row {
  width: 100%;
}

.form-row .col {
  min-width: 0;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
} 