@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --purple: hsl(325, 74%, 44%);
  --pink: rgb(209, 63, 202);
  --gradient: linear-gradient(90deg, var(--purple), var(--pink));
  --darkblue: rgb(40, 59, 226);
  --darkred: #FF0000;
  --gradient-blue: linear-gradient(90deg, var(--darkblue), var(--darkred));
  --purple-dark: hsl(286, 88%, 38%);

}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
}

*::selection {
  background: var(--darkblue);
  color: #fff;
}


html {
  font-size: 70.5%;
  overflow-x: hidden;
}

body {
  background: #f9f9f9;
}

#loader {
  display: none;
}


form {
  min-width: 100%;
}

.darkblueColor,
.darkblueColor:hover {
  color: #fff;
  background: var(--darkblue);
}

.purpleColor,
.purpleColor:hover {
  color: #fff;
  background: var(--purple);
}


section {
  margin-top: 5rem;
  min-height: 60vh;
  padding: 5rem 9%;
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-transform: capitalize;
}

.btn-main {
  display: inline-block;
  margin-top: 1rem;
  padding: .6rem 2rem;
  border-radius: 5rem;
  background: var(--darkblue);
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 4px -1rem 1rem 2px rgba(0, 0, 0, .1);
  transition: all .3s linear;
}


.btn-main:hover {
  color: var(--darkblue);
  background: #fff;
  border: 0.2rem solid var(--darkblue);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  text-transform: capitalize;
}

header .logo {
  font-size: 2rem;
  color: var(--darkblue);
}

header .logo span {
  color: var(--darkred);
}

.navbar-site a {
  font-size: 1.4rem;
  margin-left: 1rem;
  color: var(--darkblue);
}

.navbar-site a:hover {
  color: var(--darkred);
  transform: scale(1.1);
  overflow: hidden;
}

header input {
  display: none;
}

header label {
  font-size: 3rem;
  color: var(--purple);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0rem);
  }

  50% {
    transform: translateY(-1.5rem);
  }
}

/* media queries  */

@media (max-width:1200px) {

  html {
    font-size: 55%;
  }

}

@media (max-width:991px) {

  section {
    min-height: 100vh;
    padding: 0 5%;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  header .navbar-site a:hover {
    color: var(--darkred);
    transform: scale(1.1);
  }

  button.btn-modal {
    min-width: 100%;
  }


  .btn-main {
    padding: 1.2rem 6rem;
    font-size: 2.5rem;
  }

  .btn-m-float {
    font-size: 2.2rem !important;
    width: 20rem !important;
    height: 5rem !important;
  }

  .btn-login {
    font-size: 2.3rem !important;
  }

  .jwt img {
    width: 20%;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 1px;
    margin-left: 1px;
  }


  div.content-buttons {
    display: contents !important;
    margin: 0 0.7rem;
  }

}

@media (max-width:768px) {

  header label {
    visibility: visible;
    opacity: 0.7;
  }

  header .navbar-site {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 2rem;
    border-top: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: .2s linear;
  }

  header .navbar-site a {
    display: block;
    margin: 2rem 0;
    font-size: 2rem;
  }

  header input:checked~.navbar-site {
    transform: scaleY(1);
    opacity: 1;
  }

  header input:checked~label::before {
    content: '\f00d';
  }

  .home {
    flex-flow: column-reverse;
  }

  .home .image img {
    width: 100%;
  }

  .home .content h3 {
    font-size: 3.6rem;
  }

  .home .content p {
    font-size: 1.5rem;
  }

  .delivery {
    flex-flow: column-reverse;
  }

  .delivery .image img {
    width: 100%;
  }


  .delivery .content h3 {
    font-size: 3.6rem;
  }

  .delivery .content p {
    font-size: 1.5rem;
  }

  .input-field {
    font-size: 2.5rem;
  }

  div.confirmar ul li {
    font-size: 2rem;
    padding-left: 1rem;
    text-align: left;
  }

  ul li span {
    color: #605ef5;
    font-size: 2rem;
  }

  button.btn-modal {
    min-width: 100%;
  }

  .btn-main {
    padding: 1.2rem 6rem;
    font-size: 2.5rem;
  }

  .btn-login {
    font-size: 2.3rem !important;
  }

  .btn-m-float {
    font-size: 2.2rem !important;
    width: 20rem !important;
    height: 5rem !important;
  }

  .jwt img {
    width: 50%;
    height: fit-content;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 1px;
    margin-left: 1px;
  }

  div.content-buttons {
    display: contents !important;
    margin: 0 0.7rem;
  }

}

@media (max-width:450px) {


  .about .column .content .buttons a {
    width: 100%;
    text-align: center;
  }

  .about .column .content .buttons a:last-child {
    margin: 1rem 0;
  }

  .input-field {
    font-size: 2.5rem;
  }

  button.btn-modal {
    min-width: 100%;
  }

  .btn-login {
    font-size: 2.3rem !important;
  }


  div.confirmar ul li {
    font-size: 1.8rem;
    padding-left: 1rem;
    text-align: left;
  }

  ul li span {
    color: #605ef5;
    font-size: 1.8rem;
  }

  .jwt img {
    width: 50%;
    height: fit-content;
  }

  .btn-main {
    padding: 1.2rem 6rem;
    font-size: 2.5rem;
  }

  .btn-m-float {
    font-size: 2.2rem !important;
    width: 20rem !important;
    height: 5rem !important;
  }

  div.content-buttons {
    display: contents;
    margin: 0 0.7rem;
  }

}

.modal {
  display: none;
}

.modal.show {
  display: block;
}

.container-alert .swal2-modal {
  width: 800px;
  height: fit-content;
}

p.text-alert {
  font-size: 1.5rem;
}

#floating-button {
  width: 10rem;
  height: 55px;
  font-size: 1.7rem;
  color: #fff;
  border-radius: 5rem;
  background: var(--darkblue);
  position: fixed;
  right: 3rem;
  cursor: pointer;
  box-shadow: 4px -1rem 1rem 2px rgba(0, 0, 0, .1);
  transition: all .3s linear;
}

#container-floating {
  position: fixed;
  width: 70px;
  height: 70px;
  right: 30px;
  z-index: 50px;
}

#container-floating:hover {
  height: 400px;
  width: 90px;
  padding: 30px;
}

#container-floating:hover .plus {
  animation: plus-in 0.15s linear;
  animation-fill-mode: forwards;
}

.btn-m-float {
  display: inline-block;
  border-radius: 5rem;
  padding: 0 0.2rem;
  background: var(--darkblue);
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  width: 12rem;
  height: 3rem;
  position: fixed;
  top: 10rem;
  right: 30px;
  box-shadow: 6px 1rem 0.3rem 0px rgba(0, 0, 0, .1);
}

.btn-m-float:hover {
  color: var(--darkblue);
  background: rgba(255, 255, 255, 0.911);
  border: 0.2rem solid var(--darkblue);
  overflow: hidden;
}


.bgc-purple {
  background: var(--purple);
  color: #f9f9f9;
}

.bgc-purple:hover {
  background: var(--darkblue);
  color: #f9f9f9;
}

.bgc-darkblue {
  background: var(--darkblue);
  color: #f9f9f9;
}

.bgc-darkblue:hover {
  background: var(--purple);
  color: #f9f9f9;
}


.badge.badge-purple {
  font-size: 1.2rem;
  font-weight: 100;
}


.badge.badge-darkblue {
  font-size: 1.2rem;
  font-weight: 100;
}

.badge-terminos {
  font-size: 1.4rem;
  font-weight: 100;
}


small.b-radius {
  border-radius: 2rem;
}

button:disabled:hover {
  cursor: not-allowed;
  /* Agrega aquí cualquier otra propiedad que quieras anular */
}

input:disabled {
  cursor: not-allowed;
}

input.disabled {
  cursor: not-allowed;
}

.animate-float {
  animation: float 3s ease infinite;
}

input [type=email] {
  text-transform: lowercase !important;
}

.btn-sx {
  flex: 0.15;
  min-width: 7rem;
  margin-right: 0.5rem;
}


.btn-purple {
  background: var(--purple);
  color: #fff;
}

.btn-darkblue {
  background: var(--darkblue);
  color: #fff;
}

.btn-purple:hover {
  color: var(--purple);
  background: #fff;
  border: 0.2rem solid var(--purple);
}

.btn-darkblue:hover {
  color: var(--darkblue);
  background: #fff;
  border: 0.2rem solid var(--darkblue);
}