body { 
  background: #F7F6EF; 
}

.color-principal { 
  color: #489234; 
}

.bg-principal { 
  background-color: #489234 !important; 
}

.bg-secundario { 
  background-color: #73A937 !important; 
}

.oscuro { 
  color: #212121; 
}

.card-btn {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(73, 146, 52, 0.1);
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  border: none;
}

.card-btn:hover {
  background: #73A937;
  color: #fff;
}

.budget-option {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(73, 146, 52, 0.1);
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.budget-option:hover {
  border-color: #73A937;
  background: #f8f9fa;
}

.budget-option.selected {
  border-color: #489234;
  background: #489234;
  color: white;
}

.budget-option input[type="radio"] {
  display: none;
}

/* Botón Volver a empezar */
#btn-restart {
  border-color: #6c757d;
  color: #6c757d;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#btn-restart:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}

/* Scroll animado imágenes full height/width */
.img-panel {
  height: 100vh;
  width: 50vw;
  min-width: 400px;
  max-width: 900px;
  overflow: hidden;
  display: flex;
  background: #f7f6ef;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.scroll-col {
  flex: 1 1 0%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation-duration: 18s;
  animation-iteration-count: infinite;
}

.scroll-img {
  width: 95%;
  max-width: 410px;
  height: 28vh;
  min-height: 500px;
  object-fit: cover;
  border-radius: 26px;
  margin: 2.2vh auto;
  box-shadow: 0 2px 12px rgba(73,146,52,0.09);
  border: 3px solid #fff;
  background: #eee;
  transition: box-shadow .2s;
}

.scroll-content.down {
  animation-name: scroll-down;
  animation-timing-function: linear;
}

@keyframes scroll-down {
  0% { transform: translateY(0);}
  100% { transform: translateY(-52%);}
}

.scroll-content.up {
  animation-name: scroll-up;
  animation-timing-function: linear;
}

@keyframes scroll-up {
  0% { transform: translateY(-52%);}
  100% { transform: translateY(0);}
}

/* Responsive */
@media (max-width: 991px) {
  .img-panel { 
    display:none !important;
  }
}

/* Multi-step styles */
.img-space {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  border: 0px solid #489234;
  margin-bottom: 8px;
  display:block;
  margin-left:auto;
  margin-right:auto;
  transition: box-shadow 0.2s;
}

.space-label input[type="checkbox"]:checked + .img-space {
  box-shadow: 0 0 0 4px #73A93788;
  border-color: #73A937;
}

.space-label {
  cursor: pointer;
  text-align:center;
  font-size:15px;
  margin-bottom: 16px;
  user-select: none;
}

/* Opciones de servicio - Paso 1 */
.service-option {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(73, 146, 52, 0.1);
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-align: left;
}

.service-option:hover {
  border-color: #73A937;
  background: #f8f9fa;
}

.service-option.selected {
  border-color: #489234;
  background: #489234;
  color: white;
}

.service-option input[type="radio"] {
  display: none;
}

.service-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 15px;
  border: 0px solid #489234;
  transition: border-color 0.3s ease;
}

.service-option.selected .service-img {
  border-color: white;
}

.service-text {
  flex: 1;
  font-weight: 500;
  font-size: 16px;
}

.form-step { 
  display:none; 
}

.form-step.active { 
  display:block; 
}

/* Centrado vertical y sin scroll */
html, body { 
  height:100%; 
  margin:0; 
  padding:0;
}

.full-h { 
  height:100vh; 
  min-height:100vh; 
}