.plan-container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1450px;
}

.plan-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: black;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.plan-card.plan-card.basico, .plan-card.api {
    background-color: #daddde;
}

.plan-card.intermedio, .plan-card.inicial {
    background-color: #e4eaf2;
    position: relative;
}

.plan-header {
    text-align: center;
    padding-bottom: 15px;
}

.plan-title {
    font-family: 'satoshi-Bold', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-section {
    margin-bottom: 20px;
}

.price-section .price-original {
    text-decoration: line-through;
    color: #ff2600;
    font-size: 1rem;
    height: 1.2em; /* Reserve space */
}

.price-section .price-current {
    font-family: 'satoshi-Bold', sans-serif;
    font-size: 2.2rem;
    margin: 5px 0;
}

.price-section .price-period {
    font-size: 1rem;
    color: #000000;
}

.price-section .iva {
    font-size: 0.9rem;
    color: #000000;
}

.plan-button {
    display: block;
    width: 70%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin: 0px auto 25px auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.plan-button.suscribite {
    background-color: #FB0404;
}
.plan-button.suscribite:hover {
    background-color: #ff1e1e;
    color: white;
}

.plan-button.hablemos {
    background-color: #0747b4;
}
.plan-button.hablemos:hover {
    background-color: #053a9a;
    color: white;
}


.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.features-list .icon-check {
    color: #ff2600;
    margin-right: 10px;
    margin-top: 4px;
}

.label-nuevo {
    position: absolute;
    top: 18px;
    left: -40px;
    width: 160px;
    height: 32px;
    background: #34A853;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    font-family: 'satoshi-Bold', sans-serif;
    text-align: center;
    line-height: 32px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(7,71,180,0.18);
    z-index: 2;
    letter-spacing: 1px;
}


.label-elegido {
    background-color: #FB0404;
    color: white;
    text-align: center;
    padding: 8px 0;
    margin: -15px -15px 15px -15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-family: 'satoshi-Bold', sans-serif;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.plan-toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    font-family: 'satoshi-Regular', sans-serif;
    width: 300px;
}

.toggle-btn {
    background-color: transparent;
    border: none;
    padding: 8px 40px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333;
}

.toggle-btn.active {
    background-color: #0747b4;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
