
:root{
    --primary: #021A54;
    --secondary: #FF85BB;
    --btn-plan-color: #ca065b;
    --lastcolor: #F5F5F5;
    
    --trial: #ffc400;
    --text-color:#992363;
    --background-color: rgba(0,0,0,0.83);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #050505;
  color: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  background: url("images/bg.jpg") center/cover no-repeat;
  padding: 40px 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--background-color);
}

header,
.content {
  position: relative;
  z-index: 2;
}

header {
  text-align: center;
  margin-bottom: 120px;
}

.logo {
  color: var(--btn-plan-color);
  font-weight: 900;
  font-size: 28px;
}

.logo span {
  display: block;
  font-size: 12px;
  color: white;
}

.content h1,
.content h2 {
  text-align: center;
  font-size: 34px;
}

.content h2 {
  color: var(--btn-plan-color);
  margin-bottom: 35px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.tab-btn {
  background: #111;
  color: white;
  border: 1px solid #444;
  padding: 14px 35px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--btn-plan-color);
  color: #ffffff;
  border-color: var(--btn-plan-color);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1150px;
  margin: auto;
}

.card {
  background: rgba(15,15,15,0.95);
  border: 1px solid #333;
  border-radius: 14px;
  padding: 18px;
  transition: 0.3s;
}

.card:hover,
.card.active {
  border-color: var(--btn-plan-color);
  transform: translateY(-6px);
}

.hidden {
  display: none;
}

.plan-badge {
  background: linear-gradient(90deg, var(--btn-plan-color), var(--btn-plan-color));
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--btn-plan-color);
  font-size: 20px;
  margin-bottom: 20px;
}
.card h3 span {
  font-size: 30px;
  font-weight: 600;
}

.index-plan-price{
  color: var(--btn-plan-color);
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}
ul {
  list-style: none;
  margin-bottom: 25px;
}

ul li {
  font-size: 14px;
  line-height: 1.9;
  border-bottom: 1px solid #222;
  padding: 8px 0;
}

ul li::before {
  content: "✔ ";
  color: var(--btn-plan-color);
}

.choose {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #222;
  color: white;
  border: 1px solid #444;
  cursor: pointer;
  font-size: 16px;
}

.choose:hover {
  background: var(--btn-plan-color);
  color: black;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 10;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 25px;
}

@media (max-width: 900px) {
  header {
    margin-bottom: 80px;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .content h1,
  .content h2 {
    font-size: 25px;
  }

  .tabs {
    flex-direction: column;
  }
}
.card.hidden {
  display: none !important;
}