﻿.pricing {
    text-align: center;
    padding: 60px 20px;
}

/* TOGGLE */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.toggle-label {
    color: #777;
    font-weight: 500;
}

.toggle-label.active {
    color: #000;
}

/* Switch estilo Odoo */
.switch {
    position: relative;
    width: 60px;
    height: 26px;
}

.switch input {
    display: none;
}

.switch label {
    background: #ddd;
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.switch label::after {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    position: absolute;
    top: 3px;
    left: 4px;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + label {
    background: #6c63ff;
}

.switch input:checked + label::after {
    transform: translateX(22px);
}

/* CARDS */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #0B0F1A;
    padding: 30px;
    border-radius: 12px;
    width: 260px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

/* Hover tipo Odoo */
.card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Card destacada */
.featured {
    border: 2px solid #6c63ff;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c63ff;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.price {
    font-size: 28px;
    margin: 20px 0;
}

.amount {
    font-weight: bold;
    transition: 0.3s;
}

button {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}