.telcel-info-box {
    background: #F5F5F5;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkmark-green {
    width: 40px;
    height: 40px;
    background: #00B140;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-green::after {
    content: '✓';
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.info-number {
    font-size: 20px;
    font-weight: 700;
    color: #0047BB;
    margin: 0;
}

.info-type-label {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0 0;
}

.info-type {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.btn-modificar {
    background: white;
    border: 2px solid #0047BB;
    color: #0047BB;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-modificar:hover {
    background: #0047BB;
    color: white;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.package-card-grid {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card-grid:hover {
    border-color: #0047BB;
    box-shadow: 0 4px 12px rgba(0, 71, 187, 0.15);
    transform: translateY(-2px);
}

.package-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-recomendado {
    background: #E91E63;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.package-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0047BB;
    margin: 0;
}

.package-main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #F0F0F0;
}

.package-detail {
    text-align: center;
    flex: 1;
}

.package-value {
    font-size: 22px;
    font-weight: 700;
    color: #0047BB;
    margin: 0 0 5px 0;
}

.package-label {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.package-extra-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 2px solid #F0F0F0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.info-row p {
    margin: 0;
    font-size: 13px;
    color: #333;
    flex: 1;
}

.info-text-label {
    font-weight: 600;
    color: #666;
}

.info-text-value {
    font-weight: 700;
    color: #0047BB;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.package-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.actions-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.package-partners {
    display: flex;
    gap: 8px;
    align-items: center;
}

.package-partners img {
    height: 20px;
    width: auto;
}

.link-detalles {
    color: #0047BB;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.link-detalles:hover {
    color: #003399;
    text-decoration: underline;
}

.btn-lo-quiero {
    background: #8B2E8F;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-lo-quiero:hover {
    background: #6D2370;
    transform: scale(1.05);
}

.package-notes {
    background: #F9F9F9;
    border-left: 4px solid #0047BB;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.package-notes p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

.package-notes a {
    color: #0047BB;
    text-decoration: none;
    font-weight: 600;
}

.package-notes a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-modificar {
        width: 100%;
        text-align: center;
    }
    
    .package-main-info {
        flex-wrap: wrap;
    }
    
    .package-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lo-quiero {
        width: 100%;
    }
}
