/* ==============================================
   BLACK TAXI ACESSIBILIDADE - CSS STYLES
   ============================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 0%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 0%);
  --primary: hsl(200, 85%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(200, 90%, 70%);
  --secondary: hsl(0, 0%, 96%);
  --secondary-foreground: hsl(0, 0%, 0%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(0, 0%, 90%);
  --accent-foreground: hsl(0, 0%, 0%);
  --border: hsl(0, 0%, 0%);
  --gradient-primary: linear-gradient(135deg, hsl(200, 85%, 60%) 0%, hsl(200, 90%, 70%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(200, 20%, 99%) 0%, hsl(200, 25%, 96%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(200, 85%, 60%, 0.15);
  --shadow-card: 0 8px 30px -8px hsla(200, 25%, 15%, 0.1);
  --shadow-glow: 0 0 40px hsla(200, 85%, 60%, 0.2);
  --radius: 0.75rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-white {
  background: var(--primary-foreground);
  color: var(--primary);
}

.btn-white:hover {
  background: hsla(0, 0%, 100%, 0.9);
}

.btn-ghost-white {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
}

.btn-ghost-white:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo img {
  height: 5rem;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu-cta {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  
  .header-cta {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-circle.top {
  top: 5rem;
  right: 0;
  width: 600px;
  height: 600px;
  background: hsla(200, 85%, 60%, 0.05);
}

.hero-bg-circle.bottom {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: hsla(200, 85%, 60%, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(200, 85%, 60%, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.trust-item {
  text-align: center;
}

.trust-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.trust-value svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.trust-value span {
  font-size: 1.5rem;
  font-weight: 700;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.2), transparent);
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-float-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(200, 85%, 60%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.hero-float-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-float-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-description {
    margin-left: 0;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .trust-item {
    text-align: left;
  }
  
  .trust-value {
    justify-content: flex-start;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* ==============================================
   HOW IT WORKS SECTION
   ============================================== */
.how-it-works {
  padding: 5rem 0;
  background: var(--secondary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsla(200, 85%, 60%, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-card {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(200, 85%, 60%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.step-card:hover .step-icon {
  background: hsla(200, 85%, 60%, 0.2);
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 8rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services {
  padding: 5rem 0;
  background: var(--background);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsla(200, 85%, 60%, 0.2);
  box-shadow: var(--shadow-glow);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card > .service-content > div > p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-features svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services {
    padding: 8rem 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-content {
    flex-direction: row;
  }
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta {
  padding: 5rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.05);
  filter: blur(60px);
}

.cta-bg-circle.top {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
}

.cta-bg-circle.bottom {
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.cta-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  display: grid;
  gap: 1.5rem;
}

.cta-contact-item h4 {
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cta-contact-item p {
  color: hsla(0, 0%, 100%, 0.8);
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
  
  .cta-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .cta {
    padding: 8rem 0;
  }
  
  .cta h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta h2 {
    font-size: 3rem;
  }
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  height: 5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsla(0, 0%, 100%, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a,
.footer-contact span {
  color: hsla(0, 0%, 100%, 0.7);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==============================================
   CONTACT FORM SECTION
   ============================================== */
.contact-section {
  padding: 5rem 0;
  background: var(--gradient-hero);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form-wrapper {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background);
  color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px hsla(200, 85%, 60%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  color: hsl(0, 70%, 50%);
  font-size: 0.75rem;
  min-height: 1rem;
}

.input-error {
  border-color: hsl(0, 70%, 50%) !important;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.form-success {
  background: hsla(120, 60%, 50%, 0.1);
  color: hsl(120, 60%, 35%);
}

.form-error-msg {
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 45%);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(200, 85%, 60%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: var(--primary);
}

.contact-info-card h4 {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--foreground);
  font-weight: 600;
  font-size: 1rem;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-cta-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-cta-buttons {
    flex-direction: row;
  }
  
  .contact-cta-buttons .btn {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .contact-form-wrapper {
    padding: 3rem;
  }
}
