@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --first_color: #035d67;
  --sec_color: #2398a7;
  --third-color: #77b0aa;
  --fourth-color: #e3fef7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
  background-color: whitesmoke;
}

/*------------------------------ nav bar ------------------------------*/
nav {
  width: 100%;
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 110;
  position: sticky;
  top: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo a img {
  height: 70px;
  width: 70px;
  margin-right: 10px;
  cursor: pointer;
}

nav .logo a {
  text-decoration: none;
}

nav .logo a h1 {
  font-size: 1.3rem;
  background: rgb(4, 48, 83);
  background: linear-gradient(
    90deg,
    rgba(4, 48, 83, 1) 0%,
    rgba(18, 99, 135, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav ul li {
  margin-left: 0.8rem;
}
nav ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.3s ease-out;
}

nav ul li a:hover,
nav ul li .dropdown .dropbtn:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}
nav ul .insta:hover{
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}
nav ul .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

nav ul .youtube:hover {
  background: #ff0000;
  color: #fff;
}

nav ul li .dropdown {
  float: left;
  overflow: hidden;
}

nav ul li .dropdown .dropbtn {
  font-size: 95%;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

nav ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul li .dropdown:hover .dropdown-content {
  display: block;
}

.lines_icon {
  display: none;
  cursor: pointer;
}

.lines_icon .line {
  width: 25px;
  height: 1px;
  background-color: rgba(4, 48, 83, 1);
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.lines_icon-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.lines_icon-active .line:nth-child(2) {
  width: 0px;
}

.lines_icon-active .line:nth-child(1),
.lines_icon-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.lines_icon-active .line:nth-child(1) {
  transform: translateY(12px);
}

.lines_icon-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  display: block;
  position: fixed;
  top: 0;
  left: -60%;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 20% 5%;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 115;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.5s ease-out;
}

.menubar ul li a:hover {
  background: #a2e0ff;
}

.menubar ul li .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}

.menubar ul li .insta:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}

.menubar ul li .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

.menubar ul li .youtube:hover {
  background: #ff0000;
  color: #fff;
}

.menubar ul li .dropdown {
  float: left;
  overflow: hidden;
}

.menubar ul li .dropdown .dropbtn {
  font-size: 95%;
  margin-bottom: 32px;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

.menubar ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.menubar ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.menubar ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

.menubar ul li .dropdown:hover .dropdown-content {
  display: block;
}

/*------------------------------ prices ------------------------------*/
.head {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.head h1 {
  color: #21286d;
  font-size: 45px;
  font-weight: 800;
  border-bottom: 2px solid #21286d;
  font-style: italic;
}

.tabs {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 10px 0;
}

.tablinks {
  background-color: #39d4e9;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 20px;
  margin-right: 10px;
}

.tablinks:hover {
  background-color: #34bed1;
}

.tablinks.active {
  background-color: #21286d;
  color: #fff;
}

.tabcontent {
  display: none;
  padding: 3%;
  border: none;
  animation: fadeEffect 0.7s;
  box-shadow: 0 0 0 0;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.tabcontent.active {
  display: block;
}

.cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 150px;
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  width: 280px;
  height: auto;
  background: #000428;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 0.5rem;
}

.card .title {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.card .pricing {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.card .pricing .pricing-time,
.card .sub-title {
  font-size: 0.75rem;
  color: rgb(14, 204, 221);
  font-weight: 500;
}

.card .list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
  list-style: none;
}

.card .list .list-item .check {
  margin-right: 0.25rem;
  font-size: 1rem;
  color: rgb(14, 204, 221);
  font-weight: 900;
}

.card .button {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  height: fit-content;
  background-color: rgb(48, 64, 143);
  font-size: 0.75rem;
  color: white;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 2px 1px rgb(41, 65, 186);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  bottom: 0px;
}

.card .button .text-button {
  position: relative;
  z-index: 10;
}

.card .button::before,
.card .button::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.card .button::before {
  left: 0;
  background-image: radial-gradient(
    circle at 0% 45%,
    rgba(16, 5, 36, 1) 19%,
    rgba(16, 5, 36, 0.26) 46%,
    rgba(16, 5, 36, 0) 100%
  );
}
.card .button::after {
  right: 0;
  background-image: radial-gradient(
    circle at 100% 45%,
    rgba(16, 5, 36, 1) 19%,
    rgba(16, 5, 36, 0.26) 46%,
    rgba(16, 5, 36, 0) 100%
  );
}

.card .button:hover {
  box-shadow: 0px 0px 20px 0 rgb(41, 65, 186);
}

.card .button:hover::before,
.card .button:hover::after {
  width: 0;
  opacity: 0;
}

.descuente{
  display: flex;
  justify-content: center;
  width: 80%;
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.295);
}

.descuente p{
  font-size: 20px;
  color: #11185b;
}

/*------------------------------ Button ------------------------------*/

.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgb(22, 192, 0);
  padding: 10px;
  border-radius: 30%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.whatsapp i {
  font-size: 25px;
}

.free {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.free button {
  --black: #2398a7;
  --ch-black: #2398a7;
  --eer-black: #2398a7;
  --night-rider: #002529;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border: none;
  color: white;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition-duration: 2s;
  background-color: var(--ch-black);
}

.free button::before,
.free button::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px;
  background: linear-gradient(
    45deg,
    var(--ch-black),
    var(--eer-black),
    var(--night-rider),
    var(--ch-white),
    var(--night-rider),
    var(--eer-black),
    var(--ch-black),
    var(--ch-black)
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.free button::after {
  filter: blur(50px);
}