/* --- DESIGN SYSTEM SETTING: PRESET C (BOLD ACCENT) --- */

:root {
  --vida-primary-accent: #ff5e36;
  --vida-primary-accent-hover: #e04a24;
  --vida-dark-earth: #111b15;
  --vida-milk-wash: #fcfbf7;
  --vida-light-sand: #f2efe9;
  --vida-text-deep: #1e2621;
  --vida-text-muted: #5a665e;
  --vida-pure-white: #ffffff;
  
  /* Fonts */
  --vida-font-display: 'Montserrat', sans-serif;
  --vida-font-body: 'Inter', sans-serif;
  
  /* Layout Scales (Compact/Normal/Spacious) */
  --vida-section-gap: 10dvh; /* Normal Scale */
  --vida-soft-radius: 16px;  /* Soft style */
  --vida-shadow-raised: 0 10px 30px rgba(17, 27, 21, 0.08); /* Raised Shadow */
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--vida-font-body);
  color: var(--vida-text-deep);
  background-color: var(--vida-milk-wash);
}

body {
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vida-font-display);
  font-weight: 800;
  text-transform: uppercase; /* Heading Case: Uppercase */
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Scroll-driven Progress Bar */
@keyframes progress-grow {
  to { width: 100%; }
}
.vida-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: var(--vida-pure-white);
  z-index: 10001;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* Scroll Reveal Animation */
@keyframes slide-in-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vida-reveal-stage {
  animation: slide-in-reveal linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

/* --- HEADER (Accent Color Theme, White Text) --- */
.vida-hdr-shell {
  background-color: var(--vida-primary-accent);
  color: var(--vida-pure-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--vida-shadow-raised);
}

.vida-hdr-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.vida-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vida-font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.vida-logo-anchor svg {
  fill: currentColor;
}

/* Desktop Navigation */
.vida-nav-menu-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vida-nav-item-link {
  font-family: var(--vida-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.vida-nav-item-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* CSS Only Hamburger */
.vida-menu-input {
  display: none;
}

.vida-menu-trigger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.vida-menu-trigger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--vida-pure-white);
  transition: all 0.3s ease;
}

/* --- HERO SECTION (Preset C: Fullscreen gradient, big decorative number) --- */
.vida-hro-gradient-outer {
  background: linear-gradient(135deg, var(--vida-primary-accent) 0%, #ff8260 100%);
  color: var(--vida-pure-white);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--vida-section-gap) 2rem;
}

.vida-hro-structural-box {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.vida-big-deco-num {
  position: absolute;
  font-size: 24rem;
  font-family: var(--vida-font-display);
  font-weight: 900;
  color: var(--vida-pure-white);
  opacity: 0.08;
  right: -5%;
  bottom: -15%;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.vida-hro-content-pane {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.vida-hro-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: var(--vida-soft-radius);
}

.vida-hro-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.vida-hro-descr {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
}

/* Custom CSS Shapes for Preset C Right Side Panel */
.vida-hro-abstract-canvas {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vida-hro-abstract-canvas::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float-shape 6s ease-in-out infinite alternate;
}

.vida-hro-abstract-canvas::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  border-radius: var(--vida-soft-radius);
  animation: float-shape 8s ease-in-out infinite alternate-reverse;
}

@keyframes float-shape {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(15deg); }
}

/* CTA Pill Buttons */
.vida-pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--vida-dark-earth);
  color: var(--vida-pure-white);
  font-family: var(--vida-font-display);
  font-weight: 800;
  border-radius: 999px; /* pill shape */
  box-shadow: var(--vida-shadow-raised);
  border: 2px solid var(--vida-dark-earth);
  cursor: pointer;
}

.vida-pill-cta:hover {
  background-color: transparent;
  color: var(--vida-dark-earth);
}

.vida-pill-cta-light {
  background-color: var(--vida-pure-white);
  color: var(--vida-primary-accent);
  border-color: var(--vida-pure-white);
}

.vida-pill-cta-light:hover {
  background-color: transparent;
  color: var(--vida-pure-white);
}

/* --- CONTENT SECTION (Preset C: Full width bg2.webp with diagonal edges) --- */
.vida-diagonal-section {
  background-image: linear-gradient(rgba(17, 27, 21, 0.8), rgba(17, 27, 21, 0.8)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  clip-path: polygon(0 8dvh, 100% 0, 100% 92dvh, 0 100%);
  padding: calc(var(--vida-section-gap) + 8dvh) 2rem;
  color: var(--vida-pure-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80dvh;
}

.vida-diagonal-inner {
  max-width: 800px;
  background-color: rgba(17, 27, 21, 0.85);
  backdrop-filter: blur(10px);
  padding: 3.5rem;
  border-radius: var(--vida-soft-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--vida-shadow-raised);
}

.vida-diagonal-inner h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--vida-primary-accent);
}

.vida-diagonal-inner p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* --- FEATURES GRID (Preset C: 3/4 column grid, big numbers, no circles) --- */
.vida-feat-backplate {
  padding: var(--vida-section-gap) 2rem;
  background-color: var(--vida-light-sand);
}

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

.vida-section-header-block {
  text-align: center;
  margin-bottom: 4rem;
}

.vida-section-header-block h2 {
  font-size: 3rem;
  color: var(--vida-dark-earth);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.vida-section-header-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--vida-primary-accent);
}

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

.vida-feat-brick-card {
  background-color: var(--vida-pure-white);
  padding: 3rem 2rem;
  border-radius: var(--vida-soft-radius);
  box-shadow: var(--vida-shadow-raised);
  border-top: 4px solid var(--vida-primary-accent);
  transition: transform 0.3s ease;
}

.vida-feat-brick-card:hover {
  transform: translateY(-5px);
}

.vida-feat-giant-num {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--vida-font-display);
  color: var(--vida-primary-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.vida-feat-brick-card h3 {
  font-size: 1.35rem;
  color: var(--vida-dark-earth);
  margin-bottom: 1rem;
}

.vida-feat-brick-card p {
  color: var(--vida-text-muted);
  font-size: 1rem;
}

/* --- HOW IT WORKS (Preset C: horizontal stepper with continuous connecting line) --- */
.vida-stepper-backplate {
  padding: var(--vida-section-gap) 2rem;
}

.vida-stepper-scaffold {
  max-width: 1200px;
  margin: 0 auto;
}

.vida-stepper-connector-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  gap: 2rem;
}

.vida-stepper-connector-line::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--vida-primary-accent);
  z-index: 1;
}

.vida-stepper-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vida-stepper-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--vida-pure-white);
  border: 4px solid var(--vida-primary-accent);
  color: var(--vida-primary-accent);
  font-family: var(--vida-font-display);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--vida-shadow-raised);
}

.vida-stepper-node:nth-child(even) .vida-stepper-node-circle {
  background-color: var(--vida-primary-accent);
  color: var(--vida-pure-white);
}

.vida-stepper-node h3 {
  font-size: 1.25rem;
  color: var(--vida-dark-earth);
  margin-bottom: 0.75rem;
}

.vida-stepper-node p {
  color: var(--vida-text-muted);
  font-size: 0.95rem;
  max-width: 250px;
  margin: 0 auto;
}

/* --- CTA STRIP (Preset C: Dark bg, flex-row style, heading left, cta right) --- */
.vida-strip-dark-bg {
  background-color: var(--vida-dark-earth);
  color: var(--vida-pure-white);
  padding: 5rem 2rem;
}

.vida-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.vida-strip-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vida-strip-left p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* --- EXPERT PAGE LAYOUTS --- */
.vida-expert-hro {
  background-image: linear-gradient(rgba(17, 27, 21, 0.7), rgba(17, 27, 21, 0.7)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  padding: var(--vida-section-gap) 2rem;
  color: var(--vida-pure-white);
  text-align: center;
}

.vida-expert-hro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.vida-expert-hro-inner h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

/* Expert Content Split Section */
.vida-expert-split-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vida-section-gap) 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vida-expert-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vida-expert-bio-text h2 {
  color: var(--vida-dark-earth);
  font-size: 2.25rem;
}

.vida-expert-bio-text p {
  color: var(--vida-text-muted);
  font-size: 1.05rem;
}

.vida-expert-image-card {
  border-radius: var(--vida-soft-radius);
  overflow: hidden;
  box-shadow: var(--vida-shadow-raised);
  border: 8px solid var(--vida-pure-white);
}

.vida-expert-image-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* stats horizontal block */
.vida-stats-stripe {
  background-color: var(--vida-primary-accent);
  color: var(--vida-pure-white);
  padding: 4rem 2rem;
}

.vida-stats-stripe-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.vida-stat-block-item h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.vida-stat-block-item p {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --- RESERVE PAGE LAYOUT --- */
.vida-reserve-scaffold {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vida-section-gap) 2rem;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 4rem;
  align-items: start;
}

.vida-form-housing {
  background-color: var(--vida-pure-white);
  padding: 3rem;
  border-radius: var(--vida-soft-radius);
  box-shadow: var(--vida-shadow-raised);
}

.vida-form-header-box {
  margin-bottom: 2.5rem;
}

.vida-form-header-box h1 {
  font-size: 2.25rem;
  color: var(--vida-dark-earth);
  margin-bottom: 0.75rem;
}

.vida-form-header-box p {
  color: var(--vida-text-muted);
}

.vida-input-pack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.vida-input-pack label {
  font-family: var(--vida-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--vida-dark-earth);
  text-transform: uppercase;
}

.vida-input-pack input[type="text"],
.vida-input-pack input[type="tel"],
.vida-input-pack textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--vida-light-sand);
  border-radius: var(--vida-soft-radius);
  font-family: var(--vida-font-body);
  font-size: 1rem;
  background-color: var(--vida-milk-wash);
  transition: border-color 0.3s ease;
}

.vida-input-pack input:focus,
.vida-input-pack textarea:focus {
  outline: none;
  border-color: var(--vida-primary-accent);
}

.vida-policy-consent-tick {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.vida-policy-consent-tick input[type="checkbox"] {
  margin-top: 0.25rem;
}

.vida-policy-consent-tick span {
  font-size: 0.9rem;
  color: var(--vida-text-muted);
}

/* Info Cards Right Column */
.vida-reserve-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vida-info-card-deck {
  background-color: var(--vida-light-sand);
  padding: 2.5rem;
  border-radius: var(--vida-soft-radius);
}

.vida-info-card-deck h3 {
  font-size: 1.35rem;
  color: var(--vida-dark-earth);
  margin-bottom: 1.5rem;
}

.vida-deck-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vida-deck-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--vida-text-deep);
}

.vida-bullet-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--vida-primary-accent);
  color: var(--vida-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* FAQ Section */
.vida-faq-accordion-plate {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem var(--vida-section-gap) 2rem;
}

.vida-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.vida-accordion-block {
  background-color: var(--vida-pure-white);
  border-radius: var(--vida-soft-radius);
  box-shadow: var(--vida-shadow-raised);
  padding: 2rem;
}

.vida-accordion-block h4 {
  font-size: 1.2rem;
  color: var(--vida-dark-earth);
  margin-bottom: 1rem;
}

.vida-accordion-block p {
  color: var(--vida-text-muted);
  font-size: 0.95rem;
}

/* --- LEGISLATIVE PAGES (Privacy / Terms / Thank) --- */
.vida-legalese-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--vida-section-gap) 2rem;
}

.vida-legalese-wrap h1 {
  font-size: 2.5rem;
  color: var(--vida-dark-earth);
  margin-bottom: 2rem;
}

.vida-legalese-wrap h2 {
  font-size: 1.5rem;
  color: var(--vida-dark-earth);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.vida-legalese-wrap p {
  color: var(--vida-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vida-thank-splash {
  background-image: linear-gradient(rgba(17, 27, 21, 0.8), rgba(17, 27, 21, 0.8)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  min-height: 70dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vida-pure-white);
  text-align: center;
  padding: 2rem;
}

.vida-thank-core {
  max-width: 600px;
  background-color: rgba(17, 27, 21, 0.9);
  padding: 4rem;
  border-radius: var(--vida-soft-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vida-thank-core h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--vida-primary-accent);
}

.vida-thank-core p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* --- COOKIE NOTICE --- */
.vida-cookie-banner-island {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  max-width: 600px;
  background-color: var(--vida-dark-earth);
  color: var(--vida-pure-white);
  padding: 2rem;
  border-radius: var(--vida-soft-radius);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .vida-cookie-banner-island {
    left: auto;
  }
}

.vida-cookie-banner-island p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.vida-cookie-buttons-row {
  display: flex;
  gap: 1rem;
}

.vida-cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--vida-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.vida-cookie-btn-allow {
  background-color: var(--vida-primary-accent);
  color: var(--vida-pure-white);
}

.vida-cookie-btn-reject {
  background-color: transparent;
  color: var(--vida-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- FOOTER (Deep Earth Style) --- */
.vida-footer-box {
  background-color: var(--vida-dark-earth);
  color: var(--vida-pure-white);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 6px solid var(--vida-primary-accent);
}

.vida-footer-upper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.vida-footer-about h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vida-footer-about p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 400px;
}

.vida-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.vida-footer-links-col a {
  font-size: 0.95rem;
  opacity: 0.8;
}

.vida-footer-links-col a:hover {
  opacity: 1;
  color: var(--vida-primary-accent);
}

.vida-disclaimer-card {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.vida-disclaimer-card p {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  line-height: 1.6;
}

.vida-footer-lower {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

/* --- RESPONSIBILITY MEDIA QUERIES --- */
@media (max-width: 992px) {
  .vida-hro-structural-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vida-hro-abstract-canvas {
    height: 300px;
  }
  .vida-stripe-container {
    flex-direction: column;
    text-align: center;
  }
  .vida-expert-split-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vida-reserve-scaffold {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vida-stepper-connector-line {
    flex-direction: column;
    gap: 3rem;
  }
  .vida-stepper-connector-line::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .vida-menu-trigger-label {
    display: flex;
  }
  .vida-nav-menu-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vida-dark-earth);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--vida-shadow-raised);
  }
  .vida-menu-input:checked ~ .vida-nav-menu-box {
    display: flex;
  }
  .vida-footer-upper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vida-footer-links-col {
    align-items: flex-start;
  }
  .vida-form-housing {
    padding: 2rem 1.5rem;
  }
}