    html, body {
      margin: 0;
      padding: 0;
      height: 100%; 
      font-family: 'Segoe UI', sans-serif;
      background-color: #e9e9e9;
    }
 

  .carousel-wrapper {
    position: relative;
  } 









    .card-custom { box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: none; }
    .card-custom:hover { transform: scale(1.01); transition: 0.2s; }
    .img-preview { max-width: 100px; border-radius: 5px; }










    .banner-container {
      position: relative;
      z-index: 1;
    }
  
    .banner-container img {
      width: 100%;
      max-height: 550px;
      object-fit: cover;
      display: block;
    }
  
    .banner-container::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 150px;
      width: 100%;
      background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #e9e9e9 100%);
      pointer-events: none;
    }
  
    .contenido-flotante {
      position: relative;
      z-index: 1;
      margin-top: -180px;
    }

    .btn-compartir-sobre {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 10;
      padding: 6px 10px;
      font-size: 0.75rem;
      border-radius: 20px;
      background-color: rgba(255, 255, 255, 0.783);
    }

    .badge-cercano {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #28a745;
      color: white;
      font-size: 0.8rem;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 20px;
      z-index: 5;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }








    .publicacion-card {
      transition: transform 0.2s ease;
    }
    .publicacion-card:hover {
      transform: scale(1.02);
    }
    .card-title{
      font-weight: 300;
      font-size: 18px;
    }
    .precio {
      color: #3e3e3e;
      font-size: 1.7rem;
      font-weight: 400;
      margin-bottom: 0px;
    }
    .titulo {
      font-weight: 600;
    }
    .carousel-inner img {
      border-radius: 0.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }







      .form-wrapper {
      max-width: 800px;
      margin: 60px auto;
      background: white;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(0,0,0,0.1);
      padding: 40px;
    }

    .step-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .step-subtitle {
      color: #888;
      margin-bottom: 30px;
    }

    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
    }

    .preview-img {
      width: 100%;
      max-height: 180px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 8px;
      display: none;
    }

    .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .top-header img {
      height: 80px;
    }

    .step-indicator {
      font-size: 0.95rem;
      color: #555;
    }

    .btn-group {
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }