  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }

  .text-white .form-label,
  .text-white input {
    color: white !important;
  }

  :root {
      --md-sys-color-primary: #31B700;
      --md-sys-color-secondary: #00263A;
  }
    
  /* Si necesitas cambiar el color del placeholder también */
  .text-white input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .card {
      background-color: rgba(255, 255, 255, 0.845);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border: none;
  }

  * {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  .form-section {
    display: none; /* Ocultar todas las secciones por defecto */
  }

  .form-section.active {
    display: block; /* Mostrar solo la sección activa */
  }

  .cart-total-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background-color: #28a745;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
  }