body {
  font-family: 'Montserrat', sans-serif;
  /* background: linear-gradient(to right, #007BFF, #f9f9f9); */ /* Comentado correctamente */
  background: rgb(115, 57, 170);
  padding: 20px;
  margin: 0;

  background-image: url('/images/trazo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right -200px bottom -130px;
  background-attachment: fixed;
}


    .extra-description {
      font-size: 0.75em;
      margin-left: 30px;
      color: #555;
      line-height: 1.4;
    }
    .extra-description a {
      font-size: 0.75em;
      color: #0077cc;
      text-decoration: underline;
    }
    .plans { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
    .plan-card {
      border: 2px solid #ccc;
      border-radius: 5px;
      padding: 15px;
      cursor: pointer;
      text-align: center;
      background-color: #0096E9;
      color: white;
      transition: 0.3s;
    }
    .plan-card:hover {
      border-color: #0077cc;
      background: #112e51;
    }
    .plan-card.active {
      border-color: #0077cc;
      background-color: #1e3a8a;
    }

.bivid-header {
  background-color: rgb(115, 57, 170);
  padding: 0 40px; /* Quitamos padding vertical, lo controlamos con altura */

  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px; /* Aumentamos altura para dar espacio vertical */
}

.bivid-header-container {
  position: relative;
  height: 100%;
}

.bivid-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bivid-logo img {
  height: 40px;
  width: 103px; 
}

.bivid-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Esto centra verticalmente dentro del header */
}

.bivid-title h1 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
  font-weight: 900;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
h1 {
  font-weight: 900;
  color: #0077cc;
  text-align: center;
}
label, legend {
  /*margin-top: 15px;*/
  font-weight: 600;
}
input[type="text"], input[type="email"], select {
  width: 100%;
  padding-top: 8px;
  padding-right: 0px;
  padding-bottom: 8px;
  padding-left: 5px;
  margin-top: 5px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

input[type="tel"] {
	width: 100px;
	padding-top: 8px;
  padding-right: 0px;
  padding-bottom: 8px;
  padding-left: 5px;
  margin-top: 5px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

fieldset {
  border: none;
  margin-top: 15px;
}
fieldset label {
  display: block;
  margin-bottom: 5px;
}
.total {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
button {
  background-color: #0077cc;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}
button:hover {
  background-color: #005fa3;
}
.form-group {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #333;
}

.form-group input[type="checkbox"] {
  margin-right: 10px;
}

.form-group a {
  color: #0077cc;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
}

@media (max-width: 914px) {
  .bivid-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }

  .bivid-logo {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }

  .bivid-title {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bivid-title h1 {
    font-size: 1.4rem;
    text-align: center;
  }
	
  .bivid-header {
    height: 150px; /* Aumentamos altura para dar espacio vertical */
}
}
